From a8c6bc9cd3f11aa95a53c653fc3dcd4e4466b955 Mon Sep 17 00:00:00 2001 From: ShivangiReja <45216704+ShivangiReja@users.noreply.github.com> Date: Wed, 19 Nov 2025 14:01:29 -0800 Subject: [PATCH 1/3] Add support for the latest Response properties --- api/OpenAI.net8.0.cs | 9 +- api/OpenAI.netstandard2.0.cs | 8 +- specification/base/typespec/chat/models.tsp | 9 - specification/base/typespec/common/models.tsp | 7 + .../base/typespec/responses/models.tsp | 22 + specification/client/responses.client.tsp | 2 + src/Custom/Responses/OpenAIResponse.cs | 4 + .../Responses/OpenAIResponsesModelFactory.cs | 2 + .../Responses/ResponseCreationOptions.cs | 8 + .../ChatCompletionOptions.Serialization.cs | 48 +- .../Models/Chat/ChatCompletionOptions.cs | 8 +- .../Responses/OpenAIResponse.Serialization.cs | 19 +- .../Models/Responses/OpenAIResponse.cs | 3 +- .../ResponseCreationOptions.Serialization.cs | 60 +- .../Responses/ResponseCreationOptions.cs | 10 +- src/Generated/OpenAIModelFactory.cs | 9 +- tspCodeModel.json | 18737 ++++++++-------- 17 files changed, 9636 insertions(+), 9329 deletions(-) diff --git a/api/OpenAI.net8.0.cs b/api/OpenAI.net8.0.cs index 400f5b51e..449bb3a6d 100644 --- a/api/OpenAI.net8.0.cs +++ b/api/OpenAI.net8.0.cs @@ -1723,6 +1723,8 @@ public class ChatCompletionOptions : IJsonModel, IPersist [Experimental("OPENAI001")] public ChatResponseModalities ResponseModalities { get; set; } [Experimental("OPENAI001")] + public string SafetyIdentifier { get; set; } + [Experimental("OPENAI001")] public long? Seed { get; set; } [Experimental("OPENAI001")] public ChatServiceTier? ServiceTier { get; set; } @@ -5598,6 +5600,7 @@ public class OpenAIResponse : IJsonModel, IPersistableModel Metadata { get; } public string Model { get; } public IList OutputItems { get; } @@ -5670,7 +5673,7 @@ public class OpenAIResponseClient { [Experimental("OPENAI001")] public static class OpenAIResponsesModelFactory { public static MessageResponseItem MessageResponseItem(string id = null, MessageRole role = MessageRole.Assistant, MessageStatus? status = null); - public static OpenAIResponse OpenAIResponse(string id = null, DateTimeOffset createdAt = default, ResponseStatus? status = null, ResponseError error = null, ResponseTokenUsage usage = null, string endUserId = null, ResponseReasoningOptions reasoningOptions = null, int? maxOutputTokenCount = null, ResponseTextOptions textOptions = null, ResponseTruncationMode? truncationMode = null, ResponseIncompleteStatusDetails incompleteStatusDetails = null, IEnumerable outputItems = null, bool parallelToolCallsEnabled = false, ResponseToolChoice toolChoice = null, string model = null, IDictionary metadata = null, float? temperature = null, float? topP = null, ResponseServiceTier? serviceTier = null, string previousResponseId = null, bool? backgroundModeEnabled = null, string instructions = null, IEnumerable tools = null); + public static OpenAIResponse OpenAIResponse(string id = null, DateTimeOffset createdAt = default, ResponseStatus? status = null, ResponseError error = null, ResponseTokenUsage usage = null, string endUserId = null, ResponseReasoningOptions reasoningOptions = null, int? maxOutputTokenCount = null, int? maxToolCallCount = null, ResponseTextOptions textOptions = null, ResponseTruncationMode? truncationMode = null, ResponseIncompleteStatusDetails incompleteStatusDetails = null, IEnumerable outputItems = null, bool parallelToolCallsEnabled = false, ResponseToolChoice toolChoice = null, string model = null, IDictionary metadata = null, float? temperature = null, float? topP = null, ResponseServiceTier? serviceTier = null, string previousResponseId = null, bool? backgroundModeEnabled = null, string instructions = null, IEnumerable tools = null); public static ReasoningResponseItem ReasoningResponseItem(string id = null, string encryptedContent = null, ReasoningStatus? status = null, IEnumerable summaryParts = null); public static ReasoningResponseItem ReasoningResponseItem(string id = null, string encryptedContent = null, ReasoningStatus? status = null, string summaryText = null); public static ReferenceResponseItem ReferenceResponseItem(string id = null); @@ -5764,10 +5767,12 @@ public enum ResponseContentPartKind { [Experimental("OPENAI001")] public class ResponseCreationOptions : IJsonModel, IPersistableModel { public bool? BackgroundModeEnabled { get; set; } + public string ConversationId { get; set; } public string EndUserId { get; set; } public IList IncludedProperties { get; } public string Instructions { get; set; } public int? MaxOutputTokenCount { get; set; } + public int? MaxToolCallCount { get; set; } public IDictionary Metadata { get; } public bool? ParallelToolCallsEnabled { get; set; } [Serialization.JsonIgnore] @@ -5776,12 +5781,14 @@ public class ResponseCreationOptions : IJsonModel, IPer public ref JsonPatch Patch { get; } public string PreviousResponseId { get; set; } public ResponseReasoningOptions ReasoningOptions { get; set; } + public string SafetyIdentifier { get; set; } public ResponseServiceTier? ServiceTier { get; set; } public bool? StoredOutputEnabled { get; set; } public float? Temperature { get; set; } public ResponseTextOptions TextOptions { get; set; } public ResponseToolChoice ToolChoice { get; set; } public IList Tools { get; } + public int? TopLogProbabilityCount { get; set; } public float? TopP { get; set; } public ResponseTruncationMode? TruncationMode { get; set; } protected virtual ResponseCreationOptions JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); diff --git a/api/OpenAI.netstandard2.0.cs b/api/OpenAI.netstandard2.0.cs index c715d602b..3d9a8eb33 100644 --- a/api/OpenAI.netstandard2.0.cs +++ b/api/OpenAI.netstandard2.0.cs @@ -1521,6 +1521,7 @@ public class ChatCompletionOptions : IJsonModel, IPersist public ChatReasoningEffortLevel? ReasoningEffortLevel { get; set; } public ChatResponseFormat ResponseFormat { get; set; } public ChatResponseModalities ResponseModalities { get; set; } + public string SafetyIdentifier { get; set; } public long? Seed { get; set; } public ChatServiceTier? ServiceTier { get; set; } public IList StopSequences { get; } @@ -4914,6 +4915,7 @@ public class OpenAIResponse : IJsonModel, IPersistableModel Metadata { get; } public string Model { get; } public IList OutputItems { get; } @@ -4981,7 +4983,7 @@ public class OpenAIResponseClient { } public static class OpenAIResponsesModelFactory { public static MessageResponseItem MessageResponseItem(string id = null, MessageRole role = MessageRole.Assistant, MessageStatus? status = null); - public static OpenAIResponse OpenAIResponse(string id = null, DateTimeOffset createdAt = default, ResponseStatus? status = null, ResponseError error = null, ResponseTokenUsage usage = null, string endUserId = null, ResponseReasoningOptions reasoningOptions = null, int? maxOutputTokenCount = null, ResponseTextOptions textOptions = null, ResponseTruncationMode? truncationMode = null, ResponseIncompleteStatusDetails incompleteStatusDetails = null, IEnumerable outputItems = null, bool parallelToolCallsEnabled = false, ResponseToolChoice toolChoice = null, string model = null, IDictionary metadata = null, float? temperature = null, float? topP = null, ResponseServiceTier? serviceTier = null, string previousResponseId = null, bool? backgroundModeEnabled = null, string instructions = null, IEnumerable tools = null); + public static OpenAIResponse OpenAIResponse(string id = null, DateTimeOffset createdAt = default, ResponseStatus? status = null, ResponseError error = null, ResponseTokenUsage usage = null, string endUserId = null, ResponseReasoningOptions reasoningOptions = null, int? maxOutputTokenCount = null, int? maxToolCallCount = null, ResponseTextOptions textOptions = null, ResponseTruncationMode? truncationMode = null, ResponseIncompleteStatusDetails incompleteStatusDetails = null, IEnumerable outputItems = null, bool parallelToolCallsEnabled = false, ResponseToolChoice toolChoice = null, string model = null, IDictionary metadata = null, float? temperature = null, float? topP = null, ResponseServiceTier? serviceTier = null, string previousResponseId = null, bool? backgroundModeEnabled = null, string instructions = null, IEnumerable tools = null); public static ReasoningResponseItem ReasoningResponseItem(string id = null, string encryptedContent = null, ReasoningStatus? status = null, IEnumerable summaryParts = null); public static ReasoningResponseItem ReasoningResponseItem(string id = null, string encryptedContent = null, ReasoningStatus? status = null, string summaryText = null); public static ReferenceResponseItem ReferenceResponseItem(string id = null); @@ -5065,10 +5067,12 @@ public enum ResponseContentPartKind { } public class ResponseCreationOptions : IJsonModel, IPersistableModel { public bool? BackgroundModeEnabled { get; set; } + public string ConversationId { get; set; } public string EndUserId { get; set; } public IList IncludedProperties { get; } public string Instructions { get; set; } public int? MaxOutputTokenCount { get; set; } + public int? MaxToolCallCount { get; set; } public IDictionary Metadata { get; } public bool? ParallelToolCallsEnabled { get; set; } [Serialization.JsonIgnore] @@ -5076,12 +5080,14 @@ public class ResponseCreationOptions : IJsonModel, IPer public ref JsonPatch Patch { get; } public string PreviousResponseId { get; set; } public ResponseReasoningOptions ReasoningOptions { get; set; } + public string SafetyIdentifier { get; set; } public ResponseServiceTier? ServiceTier { get; set; } public bool? StoredOutputEnabled { get; set; } public float? Temperature { get; set; } public ResponseTextOptions TextOptions { get; set; } public ResponseToolChoice ToolChoice { get; set; } public IList Tools { get; } + public int? TopLogProbabilityCount { get; set; } public float? TopP { get; set; } public ResponseTruncationMode? TruncationMode { get; set; } protected virtual ResponseCreationOptions JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); diff --git a/specification/base/typespec/chat/models.tsp b/specification/base/typespec/chat/models.tsp index 19f658716..06ed55974 100644 --- a/specification/base/typespec/chat/models.tsp +++ b/specification/base/typespec/chat/models.tsp @@ -192,15 +192,6 @@ model CreateChatCompletionRequest { search_context_size?: WebSearchContextSize = "medium"; }; - @doc(""" - An integer between 0 and 20 specifying the number of most likely tokens to - return at each token position, each with an associated log probability. - `logprobs` must be set to `true` if this parameter is used. - """) - @minValue(0) - @maxValue(20) - top_logprobs?: int32 | null; - // Tool customization: apply a named union type @doc(""" An object specifying the format that the model must output. diff --git a/specification/base/typespec/common/models.tsp b/specification/base/typespec/common/models.tsp index e276cd828..2a98a7d7c 100644 --- a/specification/base/typespec/common/models.tsp +++ b/specification/base/typespec/common/models.tsp @@ -249,6 +249,9 @@ model ModelResponsePropertiesForRequest { @minValue(0) @maxValue(2) temperature?: float32 | null = 1; + + /** An integer between 0 and 20 specifying the number of most likely tokens to return at each token position, each with an associated log probability. */ + top_logprobs?: int32 | null; @doc(""" An alternative to sampling with temperature, called nucleus sampling, @@ -265,6 +268,10 @@ model ModelResponsePropertiesForRequest { /** 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). */ user?: string; + /**A stable identifier used to help detect users of your application that may be violating OpenAI's usage policies. + The IDs should be a string that uniquely identifies each user. We recommend hashing their username or email address, in order to avoid sending us any identifying information. [Learn more](https://platform.openai.com/docs/guides/safety-best-practices#safety-identifiers).*/ + safety_identifier?: string; + service_tier?: ServiceTier; } model ModelResponsePropertiesForResponse { diff --git a/specification/base/typespec/responses/models.tsp b/specification/base/typespec/responses/models.tsp index 6d3461a9e..7ae2a6114 100644 --- a/specification/base/typespec/responses/models.tsp +++ b/specification/base/typespec/responses/models.tsp @@ -87,6 +87,25 @@ model CreateResponse { * for more information. */ stream?: boolean | null = false; + + /** The conversation that this response belongs to. + * Items from this conversation are prepended to input_items for this response request. + * Input items and output items from this response are automatically added to this conversation after this response completes. */ + conversation?: ConversationParam | null; +} + +/**The conversation that this response belongs to. Items from this conversation are prepended to `input_items` for this response request. +Input items and output items from this response are automatically added to this conversation after this response completes.*/ +union ConversationParam { + string, + `ConversationParam-2`, +} + +/** The conversation that this response belongs to. */ +@summary("Conversation object") +model `ConversationParam-2` { + /** The unique ID of the conversation. */ + id: string; } model Response { @@ -178,6 +197,9 @@ model ResponseProperties { /** 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). */ max_output_tokens?: int32 | null; + /** The maximum number of total calls to built-in tools that can be processed in a response. This maximum number applies across all built-in tool calls, not per individual tool. Any further attempts to call a tool by the model will be ignored. */ + max_tool_calls?: int32 | null; + @doc(""" Inserts a system (or developer) message as the first item in the model's context. diff --git a/specification/client/responses.client.tsp b/specification/client/responses.client.tsp index 839fa9ef6..a91ec5e22 100644 --- a/specification/client/responses.client.tsp +++ b/specification/client/responses.client.tsp @@ -8,6 +8,8 @@ using TypeSpec.HttpClient.CSharp; @@alternateType(CreateResponse.service_tier, DotNetResponseServiceTier); @@alternateType(Response.service_tier, DotNetResponseServiceTier); +@@alternateType(CreateResponse.conversation, string); +@@clientName(CreateResponse.conversation, "ConversationId"); // ------------ ItemResources ------------ @@usage(ItemResource, Usage.input | Usage.output); diff --git a/src/Custom/Responses/OpenAIResponse.cs b/src/Custom/Responses/OpenAIResponse.cs index 7e976c39f..7f672306f 100644 --- a/src/Custom/Responses/OpenAIResponse.cs +++ b/src/Custom/Responses/OpenAIResponse.cs @@ -30,6 +30,10 @@ public partial class OpenAIResponse [CodeGenMember("MaxOutputTokens")] public int? MaxOutputTokenCount { get; } + // CUSTOM: Renamed. + [CodeGenMember("MaxToolCalls")] + public int? MaxToolCallCount { get; } + // CUSTOM: Renamed. [CodeGenMember("Text")] public ResponseTextOptions TextOptions { get; } diff --git a/src/Custom/Responses/OpenAIResponsesModelFactory.cs b/src/Custom/Responses/OpenAIResponsesModelFactory.cs index fa96d3d3c..4be348242 100644 --- a/src/Custom/Responses/OpenAIResponsesModelFactory.cs +++ b/src/Custom/Responses/OpenAIResponsesModelFactory.cs @@ -20,6 +20,7 @@ public static OpenAIResponse OpenAIResponse( string endUserId = null, ResponseReasoningOptions reasoningOptions = null, int? maxOutputTokenCount = null, + int? maxToolCallCount = null, ResponseTextOptions textOptions = null, ResponseTruncationMode? truncationMode = null, ResponseIncompleteStatusDetails incompleteStatusDetails = null, @@ -57,6 +58,7 @@ public static OpenAIResponse OpenAIResponse( endUserId: endUserId, reasoningOptions: reasoningOptions, maxOutputTokenCount: maxOutputTokenCount, + maxToolCallCount: maxToolCallCount, textOptions: textOptions, truncationMode: truncationMode, incompleteStatusDetails: incompleteStatusDetails, diff --git a/src/Custom/Responses/ResponseCreationOptions.cs b/src/Custom/Responses/ResponseCreationOptions.cs index 540e1fc36..e911f783b 100644 --- a/src/Custom/Responses/ResponseCreationOptions.cs +++ b/src/Custom/Responses/ResponseCreationOptions.cs @@ -45,6 +45,10 @@ public partial class ResponseCreationOptions [CodeGenMember("MaxOutputTokens")] public int? MaxOutputTokenCount { get; set; } + // CUSTOM: Renamed. + [CodeGenMember("MaxToolCalls")] + public int? MaxToolCallCount { get; set; } + // CUSTOM: Renamed. [CodeGenMember("Text")] public ResponseTextOptions TextOptions { get; set; } @@ -73,6 +77,10 @@ public partial class ResponseCreationOptions [CodeGenMember("Tools")] public IList Tools { get; } + // CUSTOM: Renamed. + [CodeGenMember("TopLogprobs")] + public int? TopLogProbabilityCount { get; set; } + internal ResponseCreationOptions GetClone() { ResponseCreationOptions copiedOptions = (ResponseCreationOptions)this.MemberwiseClone(); diff --git a/src/Generated/Models/Chat/ChatCompletionOptions.Serialization.cs b/src/Generated/Models/Chat/ChatCompletionOptions.Serialization.cs index 7c570c987..40ee254c3 100644 --- a/src/Generated/Models/Chat/ChatCompletionOptions.Serialization.cs +++ b/src/Generated/Models/Chat/ChatCompletionOptions.Serialization.cs @@ -14,7 +14,7 @@ namespace OpenAI.Chat { public partial class ChatCompletionOptions : IJsonModel { - public ChatCompletionOptions() : this(null, default, default, null, default, null, null, null, default, default, default, default, null, default, null, null, default, default, null, null, default, default, default, null, default, null, null, null, default, null, null, default) + public ChatCompletionOptions() : this(null, default, default, default, null, null, default, null, null, null, default, default, default, default, null, null, null, default, default, null, null, default, default, default, null, default, null, null, null, default, null, null, default) { } @@ -77,6 +77,11 @@ protected virtual void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWrit writer.WritePropertyName("temperature"u8); writer.WriteNumberValue(Temperature.Value); } + if (Optional.IsDefined(TopLogProbabilityCount) && !Patch.Contains("$.top_logprobs"u8)) + { + writer.WritePropertyName("top_logprobs"u8); + writer.WriteNumberValue(TopLogProbabilityCount.Value); + } if (Optional.IsDefined(TopP) && !Patch.Contains("$.top_p"u8)) { writer.WritePropertyName("top_p"u8); @@ -87,6 +92,11 @@ protected virtual void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWrit writer.WritePropertyName("user"u8); writer.WriteStringValue(EndUserId); } + if (Optional.IsDefined(SafetyIdentifier) && !Patch.Contains("$.safety_identifier"u8)) + { + writer.WritePropertyName("safety_identifier"u8); + writer.WriteStringValue(SafetyIdentifier); + } if (Optional.IsDefined(ServiceTier) && !Patch.Contains("$.service_tier"u8)) { writer.WritePropertyName("service_tier"u8); @@ -163,11 +173,6 @@ protected virtual void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWrit writer.WritePropertyName("web_search_options"u8); writer.WriteObjectValue(WebSearchOptions, options); } - if (Optional.IsDefined(TopLogProbabilityCount) && !Patch.Contains("$.top_logprobs"u8)) - { - writer.WritePropertyName("top_logprobs"u8); - writer.WriteNumberValue(TopLogProbabilityCount.Value); - } if (Optional.IsDefined(ResponseFormat) && !Patch.Contains("$.response_format"u8)) { writer.WritePropertyName("response_format"u8); @@ -324,8 +329,10 @@ internal static ChatCompletionOptions DeserializeChatCompletionOptions(JsonEleme } IDictionary metadata = default; float? temperature = default; + int? topLogProbabilityCount = default; float? topP = default; string endUserId = default; + string safetyIdentifier = default; ChatServiceTier? serviceTier = default; IList messages = default; string model = default; @@ -335,7 +342,6 @@ internal static ChatCompletionOptions DeserializeChatCompletionOptions(JsonEleme float? frequencyPenalty = default; float? presencePenalty = default; ChatWebSearchOptions webSearchOptions = default; - int? topLogProbabilityCount = default; ChatResponseFormat responseFormat = default; ChatAudioOptions audioOptions = default; bool? storedOutputEnabled = default; @@ -389,6 +395,16 @@ internal static ChatCompletionOptions DeserializeChatCompletionOptions(JsonEleme temperature = prop.Value.GetSingle(); continue; } + if (prop.NameEquals("top_logprobs"u8)) + { + if (prop.Value.ValueKind == JsonValueKind.Null) + { + topLogProbabilityCount = null; + continue; + } + topLogProbabilityCount = prop.Value.GetInt32(); + continue; + } if (prop.NameEquals("top_p"u8)) { if (prop.Value.ValueKind == JsonValueKind.Null) @@ -404,6 +420,11 @@ internal static ChatCompletionOptions DeserializeChatCompletionOptions(JsonEleme endUserId = prop.Value.GetString(); continue; } + if (prop.NameEquals("safety_identifier"u8)) + { + safetyIdentifier = prop.Value.GetString(); + continue; + } if (prop.NameEquals("service_tier"u8)) { if (prop.Value.ValueKind == JsonValueKind.Null) @@ -491,16 +512,6 @@ internal static ChatCompletionOptions DeserializeChatCompletionOptions(JsonEleme webSearchOptions = ChatWebSearchOptions.DeserializeChatWebSearchOptions(prop.Value, prop.Value.GetUtf8Bytes(), options); continue; } - if (prop.NameEquals("top_logprobs"u8)) - { - if (prop.Value.ValueKind == JsonValueKind.Null) - { - topLogProbabilityCount = null; - continue; - } - topLogProbabilityCount = prop.Value.GetInt32(); - continue; - } if (prop.NameEquals("response_format"u8)) { if (prop.Value.ValueKind == JsonValueKind.Null) @@ -670,8 +681,10 @@ internal static ChatCompletionOptions DeserializeChatCompletionOptions(JsonEleme return new ChatCompletionOptions( metadata ?? new ChangeTrackingDictionary(), temperature, + topLogProbabilityCount, topP, endUserId, + safetyIdentifier, serviceTier, messages, model, @@ -681,7 +694,6 @@ internal static ChatCompletionOptions DeserializeChatCompletionOptions(JsonEleme frequencyPenalty, presencePenalty, webSearchOptions, - topLogProbabilityCount, responseFormat, audioOptions, storedOutputEnabled, diff --git a/src/Generated/Models/Chat/ChatCompletionOptions.cs b/src/Generated/Models/Chat/ChatCompletionOptions.cs index c2ecc3d49..f05be37bb 100644 --- a/src/Generated/Models/Chat/ChatCompletionOptions.cs +++ b/src/Generated/Models/Chat/ChatCompletionOptions.cs @@ -17,13 +17,15 @@ public partial class ChatCompletionOptions private JsonPatch _patch; #pragma warning disable SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. - internal ChatCompletionOptions(IDictionary metadata, float? temperature, float? topP, string endUserId, ChatServiceTier? serviceTier, IList messages, string model, IList internalModalities, ChatReasoningEffortLevel? reasoningEffortLevel, int? maxOutputTokenCount, float? frequencyPenalty, float? presencePenalty, ChatWebSearchOptions webSearchOptions, int? topLogProbabilityCount, ChatResponseFormat responseFormat, ChatAudioOptions audioOptions, bool? storedOutputEnabled, bool? stream, IList stopSequences, IDictionary logitBiases, bool? includeLogProbabilities, int? deprecatedMaxTokens, int? n, ChatOutputPrediction outputPrediction, long? seed, InternalChatCompletionStreamOptions streamOptions, IList tools, ChatToolChoice toolChoice, bool? allowParallelToolCalls, ChatFunctionChoice functionChoice, IList functions, in JsonPatch patch) + internal ChatCompletionOptions(IDictionary metadata, float? temperature, int? topLogProbabilityCount, float? topP, string endUserId, string safetyIdentifier, ChatServiceTier? serviceTier, IList messages, string model, IList internalModalities, ChatReasoningEffortLevel? reasoningEffortLevel, int? maxOutputTokenCount, float? frequencyPenalty, float? presencePenalty, ChatWebSearchOptions webSearchOptions, ChatResponseFormat responseFormat, ChatAudioOptions audioOptions, bool? storedOutputEnabled, bool? stream, IList stopSequences, IDictionary logitBiases, bool? includeLogProbabilities, int? deprecatedMaxTokens, int? n, ChatOutputPrediction outputPrediction, long? seed, InternalChatCompletionStreamOptions streamOptions, IList tools, ChatToolChoice toolChoice, bool? allowParallelToolCalls, ChatFunctionChoice functionChoice, IList functions, in JsonPatch patch) { // Plugin customization: ensure initialization of collections Metadata = metadata ?? new ChangeTrackingDictionary(); Temperature = temperature; + TopLogProbabilityCount = topLogProbabilityCount; TopP = topP; EndUserId = endUserId; + SafetyIdentifier = safetyIdentifier; ServiceTier = serviceTier; Messages = messages ?? new ChangeTrackingList(); Model = model; @@ -33,7 +35,6 @@ internal ChatCompletionOptions(IDictionary metadata, float? temp FrequencyPenalty = frequencyPenalty; PresencePenalty = presencePenalty; WebSearchOptions = webSearchOptions; - TopLogProbabilityCount = topLogProbabilityCount; ResponseFormat = responseFormat; AudioOptions = audioOptions; StoredOutputEnabled = storedOutputEnabled; @@ -65,6 +66,9 @@ internal ChatCompletionOptions(IDictionary metadata, float? temp public float? TopP { get; set; } + [Experimental("OPENAI001")] + public string SafetyIdentifier { get; set; } + [Experimental("OPENAI001")] public ChatServiceTier? ServiceTier { get; set; } diff --git a/src/Generated/Models/Responses/OpenAIResponse.Serialization.cs b/src/Generated/Models/Responses/OpenAIResponse.Serialization.cs index 0e79bae7b..2a988d158 100644 --- a/src/Generated/Models/Responses/OpenAIResponse.Serialization.cs +++ b/src/Generated/Models/Responses/OpenAIResponse.Serialization.cs @@ -14,7 +14,7 @@ namespace OpenAI.Responses { public partial class OpenAIResponse : IJsonModel { - internal OpenAIResponse() : this(null, default, default, null, default, null, null, null, default, default, null, null, null, null, default, null, null, default, default, null, null, null, null, default, default) + internal OpenAIResponse() : this(null, default, default, null, default, null, null, null, default, default, default, null, null, null, null, default, null, null, default, default, null, null, null, null, default, default) { } @@ -132,6 +132,11 @@ protected virtual void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWrit writer.WritePropertyName("max_output_tokens"u8); writer.WriteNumberValue(MaxOutputTokenCount.Value); } + if (Optional.IsDefined(MaxToolCallCount) && !Patch.Contains("$.max_tool_calls"u8)) + { + writer.WritePropertyName("max_tool_calls"u8); + writer.WriteNumberValue(MaxToolCallCount.Value); + } if (Optional.IsDefined(Instructions) && !Patch.Contains("$.instructions"u8)) { writer.WritePropertyName("instructions"u8); @@ -280,6 +285,7 @@ internal static OpenAIResponse DeserializeOpenAIResponse(JsonElement element, Bi ResponseReasoningOptions reasoningOptions = default; bool? backgroundModeEnabled = default; int? maxOutputTokenCount = default; + int? maxToolCallCount = default; string instructions = default; ResponseTextOptions textOptions = default; IList tools = default; @@ -405,6 +411,16 @@ internal static OpenAIResponse DeserializeOpenAIResponse(JsonElement element, Bi maxOutputTokenCount = prop.Value.GetInt32(); continue; } + if (prop.NameEquals("max_tool_calls"u8)) + { + if (prop.Value.ValueKind == JsonValueKind.Null) + { + maxToolCallCount = null; + continue; + } + maxToolCallCount = prop.Value.GetInt32(); + continue; + } if (prop.NameEquals("instructions"u8)) { if (prop.Value.ValueKind == JsonValueKind.Null) @@ -538,6 +554,7 @@ internal static OpenAIResponse DeserializeOpenAIResponse(JsonElement element, Bi reasoningOptions, backgroundModeEnabled, maxOutputTokenCount, + maxToolCallCount, instructions, textOptions, tools ?? new ChangeTrackingList(), diff --git a/src/Generated/Models/Responses/OpenAIResponse.cs b/src/Generated/Models/Responses/OpenAIResponse.cs index c1139b604..096c01dc8 100644 --- a/src/Generated/Models/Responses/OpenAIResponse.cs +++ b/src/Generated/Models/Responses/OpenAIResponse.cs @@ -36,7 +36,7 @@ internal OpenAIResponse(IDictionary metadata, float? temperature } #pragma warning disable SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. - internal OpenAIResponse(IDictionary metadata, float? temperature, float? topP, string endUserId, ResponseServiceTier? serviceTier, string previousResponseId, string model, ResponseReasoningOptions reasoningOptions, bool? backgroundModeEnabled, int? maxOutputTokenCount, string instructions, ResponseTextOptions textOptions, IList tools, ResponseToolChoice toolChoice, ResponseTruncationMode? truncationMode, string id, string @object, ResponseStatus? status, DateTimeOffset createdAt, ResponseError error, ResponseIncompleteStatusDetails incompleteStatusDetails, IList outputItems, ResponseTokenUsage usage, bool parallelToolCallsEnabled, in JsonPatch patch) + internal OpenAIResponse(IDictionary metadata, float? temperature, float? topP, string endUserId, ResponseServiceTier? serviceTier, string previousResponseId, string model, ResponseReasoningOptions reasoningOptions, bool? backgroundModeEnabled, int? maxOutputTokenCount, int? maxToolCallCount, string instructions, ResponseTextOptions textOptions, IList tools, ResponseToolChoice toolChoice, ResponseTruncationMode? truncationMode, string id, string @object, ResponseStatus? status, DateTimeOffset createdAt, ResponseError error, ResponseIncompleteStatusDetails incompleteStatusDetails, IList outputItems, ResponseTokenUsage usage, bool parallelToolCallsEnabled, in JsonPatch patch) { // Plugin customization: ensure initialization of collections Metadata = metadata ?? new ChangeTrackingDictionary(); @@ -49,6 +49,7 @@ internal OpenAIResponse(IDictionary metadata, float? temperature ReasoningOptions = reasoningOptions; BackgroundModeEnabled = backgroundModeEnabled; MaxOutputTokenCount = maxOutputTokenCount; + MaxToolCallCount = maxToolCallCount; Instructions = instructions; TextOptions = textOptions; Tools = tools ?? new ChangeTrackingList(); diff --git a/src/Generated/Models/Responses/ResponseCreationOptions.Serialization.cs b/src/Generated/Models/Responses/ResponseCreationOptions.Serialization.cs index cdd8162f1..3392a8e09 100644 --- a/src/Generated/Models/Responses/ResponseCreationOptions.Serialization.cs +++ b/src/Generated/Models/Responses/ResponseCreationOptions.Serialization.cs @@ -13,7 +13,7 @@ namespace OpenAI.Responses { public partial class ResponseCreationOptions : IJsonModel { - public ResponseCreationOptions() : this(null, default, default, null, default, null, null, null, default, default, null, null, null, null, default, null, null, default, default, default, default) + public ResponseCreationOptions() : this(null, default, default, default, null, null, default, null, null, null, default, default, default, null, null, null, null, default, null, null, default, default, default, null, default) { } @@ -75,6 +75,11 @@ protected virtual void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWrit writer.WritePropertyName("temperature"u8); writer.WriteNumberValue(Temperature.Value); } + if (Optional.IsDefined(TopLogProbabilityCount) && !Patch.Contains("$.top_logprobs"u8)) + { + writer.WritePropertyName("top_logprobs"u8); + writer.WriteNumberValue(TopLogProbabilityCount.Value); + } if (Optional.IsDefined(TopP) && !Patch.Contains("$.top_p"u8)) { writer.WritePropertyName("top_p"u8); @@ -85,6 +90,11 @@ protected virtual void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWrit writer.WritePropertyName("user"u8); writer.WriteStringValue(EndUserId); } + if (Optional.IsDefined(SafetyIdentifier) && !Patch.Contains("$.safety_identifier"u8)) + { + writer.WritePropertyName("safety_identifier"u8); + writer.WriteStringValue(SafetyIdentifier); + } if (Optional.IsDefined(ServiceTier) && !Patch.Contains("$.service_tier"u8)) { writer.WritePropertyName("service_tier"u8); @@ -115,6 +125,11 @@ protected virtual void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWrit writer.WritePropertyName("max_output_tokens"u8); writer.WriteNumberValue(MaxOutputTokenCount.Value); } + if (Optional.IsDefined(MaxToolCallCount) && !Patch.Contains("$.max_tool_calls"u8)) + { + writer.WritePropertyName("max_tool_calls"u8); + writer.WriteNumberValue(MaxToolCallCount.Value); + } if (Optional.IsDefined(Instructions) && !Patch.Contains("$.instructions"u8)) { writer.WritePropertyName("instructions"u8); @@ -219,6 +234,11 @@ protected virtual void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWrit writer.WritePropertyName("stream"u8); writer.WriteBooleanValue(Stream.Value); } + if (Optional.IsDefined(ConversationId) && !Patch.Contains("$.conversation"u8)) + { + writer.WritePropertyName("conversation"u8); + writer.WriteStringValue(ConversationId); + } Patch.WriteTo(writer); #pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. @@ -245,14 +265,17 @@ internal static ResponseCreationOptions DeserializeResponseCreationOptions(JsonE } IDictionary metadata = default; float? temperature = default; + int? topLogProbabilityCount = default; float? topP = default; string endUserId = default; + string safetyIdentifier = default; ResponseServiceTier? serviceTier = default; string previousResponseId = default; string model = default; ResponseReasoningOptions reasoningOptions = default; bool? backgroundModeEnabled = default; int? maxOutputTokenCount = default; + int? maxToolCallCount = default; string instructions = default; ResponseTextOptions textOptions = default; IList tools = default; @@ -263,6 +286,7 @@ internal static ResponseCreationOptions DeserializeResponseCreationOptions(JsonE bool? parallelToolCallsEnabled = default; bool? storedOutputEnabled = default; bool? stream = default; + string conversationId = 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()); #pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. @@ -299,6 +323,16 @@ internal static ResponseCreationOptions DeserializeResponseCreationOptions(JsonE temperature = prop.Value.GetSingle(); continue; } + if (prop.NameEquals("top_logprobs"u8)) + { + if (prop.Value.ValueKind == JsonValueKind.Null) + { + topLogProbabilityCount = null; + continue; + } + topLogProbabilityCount = prop.Value.GetInt32(); + continue; + } if (prop.NameEquals("top_p"u8)) { if (prop.Value.ValueKind == JsonValueKind.Null) @@ -314,6 +348,11 @@ internal static ResponseCreationOptions DeserializeResponseCreationOptions(JsonE endUserId = prop.Value.GetString(); continue; } + if (prop.NameEquals("safety_identifier"u8)) + { + safetyIdentifier = prop.Value.GetString(); + continue; + } if (prop.NameEquals("service_tier"u8)) { if (prop.Value.ValueKind == JsonValueKind.Null) @@ -368,6 +407,16 @@ internal static ResponseCreationOptions DeserializeResponseCreationOptions(JsonE maxOutputTokenCount = prop.Value.GetInt32(); continue; } + if (prop.NameEquals("max_tool_calls"u8)) + { + if (prop.Value.ValueKind == JsonValueKind.Null) + { + maxToolCallCount = null; + continue; + } + maxToolCallCount = prop.Value.GetInt32(); + continue; + } if (prop.NameEquals("instructions"u8)) { if (prop.Value.ValueKind == JsonValueKind.Null) @@ -474,19 +523,27 @@ internal static ResponseCreationOptions DeserializeResponseCreationOptions(JsonE stream = prop.Value.GetBoolean(); continue; } + if (prop.NameEquals("conversation"u8)) + { + conversationId = prop.Value.GetString(); + continue; + } patch.Set([.. "$."u8, .. Encoding.UTF8.GetBytes(prop.Name)], prop.Value.GetUtf8Bytes()); } return new ResponseCreationOptions( metadata ?? new ChangeTrackingDictionary(), temperature, + topLogProbabilityCount, topP, endUserId, + safetyIdentifier, serviceTier, previousResponseId, model, reasoningOptions, backgroundModeEnabled, maxOutputTokenCount, + maxToolCallCount, instructions, textOptions, tools ?? new ChangeTrackingList(), @@ -497,6 +554,7 @@ internal static ResponseCreationOptions DeserializeResponseCreationOptions(JsonE parallelToolCallsEnabled, storedOutputEnabled, stream, + conversationId, patch); } diff --git a/src/Generated/Models/Responses/ResponseCreationOptions.cs b/src/Generated/Models/Responses/ResponseCreationOptions.cs index f36530726..db938718c 100644 --- a/src/Generated/Models/Responses/ResponseCreationOptions.cs +++ b/src/Generated/Models/Responses/ResponseCreationOptions.cs @@ -18,19 +18,22 @@ public partial class ResponseCreationOptions private JsonPatch _patch; #pragma warning disable SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. - internal ResponseCreationOptions(IDictionary metadata, float? temperature, float? topP, string endUserId, ResponseServiceTier? serviceTier, string previousResponseId, string model, ResponseReasoningOptions reasoningOptions, bool? backgroundModeEnabled, int? maxOutputTokenCount, string instructions, ResponseTextOptions textOptions, IList tools, ResponseToolChoice toolChoice, ResponseTruncationMode? truncationMode, IList input, IList includedProperties, bool? parallelToolCallsEnabled, bool? storedOutputEnabled, bool? stream, in JsonPatch patch) + internal ResponseCreationOptions(IDictionary metadata, float? temperature, int? topLogProbabilityCount, float? topP, string endUserId, string safetyIdentifier, ResponseServiceTier? serviceTier, string previousResponseId, string model, ResponseReasoningOptions reasoningOptions, bool? backgroundModeEnabled, int? maxOutputTokenCount, int? maxToolCallCount, string instructions, ResponseTextOptions textOptions, IList tools, ResponseToolChoice toolChoice, ResponseTruncationMode? truncationMode, IList input, IList includedProperties, bool? parallelToolCallsEnabled, bool? storedOutputEnabled, bool? stream, string conversationId, in JsonPatch patch) { // Plugin customization: ensure initialization of collections Metadata = metadata ?? new ChangeTrackingDictionary(); Temperature = temperature; + TopLogProbabilityCount = topLogProbabilityCount; TopP = topP; EndUserId = endUserId; + SafetyIdentifier = safetyIdentifier; ServiceTier = serviceTier; PreviousResponseId = previousResponseId; Model = model; ReasoningOptions = reasoningOptions; BackgroundModeEnabled = backgroundModeEnabled; MaxOutputTokenCount = maxOutputTokenCount; + MaxToolCallCount = maxToolCallCount; Instructions = instructions; TextOptions = textOptions; Tools = tools ?? new ChangeTrackingList(); @@ -41,6 +44,7 @@ internal ResponseCreationOptions(IDictionary metadata, float? te ParallelToolCallsEnabled = parallelToolCallsEnabled; StoredOutputEnabled = storedOutputEnabled; Stream = stream; + ConversationId = conversationId; _patch = patch; _patch.SetPropagators(PropagateSet, PropagateGet); } @@ -57,10 +61,14 @@ internal ResponseCreationOptions(IDictionary metadata, float? te public float? TopP { get; set; } + public string SafetyIdentifier { get; set; } + public ResponseServiceTier? ServiceTier { get; set; } public string PreviousResponseId { get; set; } public string Instructions { get; set; } + + public string ConversationId { get; set; } } } diff --git a/src/Generated/OpenAIModelFactory.cs b/src/Generated/OpenAIModelFactory.cs index 2ef92f546..238fad204 100644 --- a/src/Generated/OpenAIModelFactory.cs +++ b/src/Generated/OpenAIModelFactory.cs @@ -581,7 +581,7 @@ public static McpToolFilter McpToolFilter(IEnumerable toolNames = defaul return new McpToolFilter(toolNames.ToList(), isReadOnly, default); } - public static ResponseCreationOptions ResponseCreationOptions(IDictionary metadata = default, float? temperature = default, float? topP = default, string endUserId = default, ResponseServiceTier? serviceTier = default, string previousResponseId = default, string model = default, ResponseReasoningOptions reasoningOptions = default, bool? backgroundModeEnabled = default, int? maxOutputTokenCount = default, string instructions = default, ResponseTextOptions textOptions = default, IEnumerable tools = default, ResponseToolChoice toolChoice = default, ResponseTruncationMode? truncationMode = default, IEnumerable input = default, IEnumerable includedProperties = default, bool? parallelToolCallsEnabled = default, bool? storedOutputEnabled = default, bool? stream = default) + public static ResponseCreationOptions ResponseCreationOptions(IDictionary metadata = default, float? temperature = default, int? topLogProbabilityCount = default, float? topP = default, string endUserId = default, string safetyIdentifier = default, ResponseServiceTier? serviceTier = default, string previousResponseId = default, string model = default, ResponseReasoningOptions reasoningOptions = default, bool? backgroundModeEnabled = default, int? maxOutputTokenCount = default, int? maxToolCallCount = default, string instructions = default, ResponseTextOptions textOptions = default, IEnumerable tools = default, ResponseToolChoice toolChoice = default, ResponseTruncationMode? truncationMode = default, IEnumerable input = default, IEnumerable includedProperties = default, bool? parallelToolCallsEnabled = default, bool? storedOutputEnabled = default, bool? stream = default, string conversationId = default) { metadata ??= new ChangeTrackingDictionary(); tools ??= new ChangeTrackingList(); @@ -591,14 +591,17 @@ public static ResponseCreationOptions ResponseCreationOptions(IDictionary metadata = default, float? temperature = default, float? topP = default, string endUserId = default, ResponseServiceTier? serviceTier = default, string previousResponseId = default, string model = default, ResponseReasoningOptions reasoningOptions = default, bool? backgroundModeEnabled = default, int? maxOutputTokenCount = default, string instructions = default, ResponseTextOptions textOptions = default, IEnumerable tools = default, ResponseToolChoice toolChoice = default, ResponseTruncationMode? truncationMode = default, string id = default, ResponseStatus? status = default, DateTimeOffset createdAt = default, ResponseError error = default, ResponseIncompleteStatusDetails incompleteStatusDetails = default, IEnumerable outputItems = default, ResponseTokenUsage usage = default, bool parallelToolCallsEnabled = default) + public static OpenAIResponse OpenAIResponse(IDictionary metadata = default, float? temperature = default, float? topP = default, string endUserId = default, ResponseServiceTier? serviceTier = default, string previousResponseId = default, string model = default, ResponseReasoningOptions reasoningOptions = default, bool? backgroundModeEnabled = default, int? maxOutputTokenCount = default, int? maxToolCallCount = default, string instructions = default, ResponseTextOptions textOptions = default, IEnumerable tools = default, ResponseToolChoice toolChoice = default, ResponseTruncationMode? truncationMode = default, string id = default, ResponseStatus? status = default, DateTimeOffset createdAt = default, ResponseError error = default, ResponseIncompleteStatusDetails incompleteStatusDetails = default, IEnumerable outputItems = default, ResponseTokenUsage usage = default, bool parallelToolCallsEnabled = default) { metadata ??= new ChangeTrackingDictionary(); tools ??= new ChangeTrackingList(); @@ -700,6 +704,7 @@ public static OpenAIResponse OpenAIResponse(IDictionary metadata reasoningOptions, backgroundModeEnabled, maxOutputTokenCount, + maxToolCallCount, instructions, textOptions, tools.ToList(), diff --git a/tspCodeModel.json b/tspCodeModel.json index 20a4405c2..0e60469f2 100644 --- a/tspCodeModel.json +++ b/tspCodeModel.json @@ -33428,14 +33428,45 @@ { "$id": "2979", "kind": "property", + "name": "top_logprobs", + "serializedName": "top_logprobs", + "doc": "An integer between 0 and 20 specifying the number of most likely tokens to return at each token position, each with an associated log probability.", + "type": { + "$id": "2980", + "kind": "nullable", + "type": { + "$id": "2981", + "kind": "int32", + "name": "int32", + "crossLanguageDefinitionId": "TypeSpec.int32", + "decorators": [] + }, + "namespace": "OpenAI" + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.CreateChatCompletionRequest.top_logprobs", + "serializationOptions": { + "json": { + "name": "top_logprobs" + } + }, + "isHttpMetadata": false + }, + { + "$id": "2982", + "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": "2980", + "$id": "2983", "kind": "nullable", "type": { - "$id": "2981", + "$id": "2984", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -33457,13 +33488,13 @@ "isHttpMetadata": false }, { - "$id": "2982", + "$id": "2985", "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": "2983", + "$id": "2986", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33483,7 +33514,33 @@ "isHttpMetadata": false }, { - "$id": "2984", + "$id": "2987", + "kind": "property", + "name": "safety_identifier", + "serializedName": "safety_identifier", + "doc": "A stable identifier used to help detect users of your application that may be violating OpenAI's usage policies.\n The IDs should be a string that uniquely identifies each user. We recommend hashing their username or email address, in order to avoid sending us any identifying information. [Learn more](https://platform.openai.com/docs/guides/safety-best-practices#safety-identifiers).", + "type": { + "$id": "2988", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.CreateChatCompletionRequest.safety_identifier", + "serializationOptions": { + "json": { + "name": "safety_identifier" + } + }, + "isHttpMetadata": false + }, + { + "$id": "2989", "kind": "property", "name": "service_tier", "serializedName": "service_tier", @@ -33504,17 +33561,17 @@ "isHttpMetadata": false }, { - "$id": "2985", + "$id": "2990", "kind": "property", "name": "messages", "serializedName": "messages", "doc": "A list of messages comprising the conversation so far. Depending on the\n[model](/docs/models) you use, different message types (modalities) are\nsupported, like [text](/docs/guides/text-generation),\n[images](/docs/guides/vision), and [audio](/docs/guides/audio).", "type": { - "$id": "2986", + "$id": "2991", "kind": "array", "name": "ArrayChatCompletionRequestMessage", "valueType": { - "$id": "2987", + "$id": "2992", "kind": "model", "name": "ChatCompletionRequestMessage", "namespace": "OpenAI", @@ -33527,7 +33584,7 @@ } ], "discriminatorProperty": { - "$id": "2988", + "$id": "2993", "kind": "property", "name": "role", "serializedName": "role", @@ -33550,35 +33607,35 @@ }, "properties": [ { - "$ref": "2988" + "$ref": "2993" }, { - "$id": "2989", + "$id": "2994", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message. Valid content part types vary per message role.", "type": { - "$id": "2990", + "$id": "2995", "kind": "nullable", "type": { - "$id": "2991", + "$id": "2996", "kind": "union", "name": "ChatCompletionRequestMessageContent", "variantTypes": [ { - "$id": "2992", + "$id": "2997", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "2993", + "$id": "2998", "kind": "array", "name": "ArrayChatCompletionRequestMessageContentPart", "valueType": { - "$id": "2994", + "$id": "2999", "kind": "model", "name": "ChatCompletionRequestMessageContentPart", "namespace": "OpenAI", @@ -33591,7 +33648,7 @@ } ], "discriminatorProperty": { - "$id": "2995", + "$id": "3000", "kind": "property", "name": "type", "serializedName": "type", @@ -33613,12 +33670,12 @@ }, "properties": [ { - "$ref": "2995" + "$ref": "3000" } ], "discriminatedSubtypes": { "text": { - "$id": "2996", + "$id": "3001", "kind": "model", "name": "ChatCompletionRequestMessageContentPartText", "namespace": "OpenAI", @@ -33633,17 +33690,17 @@ } ], "baseModel": { - "$ref": "2994" + "$ref": "2999" }, "properties": [ { - "$id": "2997", + "$id": "3002", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content part.", "type": { - "$id": "2998", + "$id": "3003", "kind": "enumvalue", "name": "text", "value": "text", @@ -33651,14 +33708,14 @@ "$ref": "162" }, "enumType": { - "$id": "2999", + "$id": "3004", "kind": "enum", "decorators": [], "name": "ChatCompletionRequestMessageContentPartType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "3000", + "$id": "3005", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -33667,68 +33724,68 @@ }, "values": [ { - "$id": "3001", + "$id": "3006", "kind": "enumvalue", "decorators": [], "name": "text", "value": "text", "valueType": { - "$ref": "3000" + "$ref": "3005" }, "enumType": { - "$ref": "2999" + "$ref": "3004" } }, { - "$id": "3002", + "$id": "3007", "kind": "enumvalue", "decorators": [], "name": "file", "value": "file", "valueType": { - "$ref": "3000" + "$ref": "3005" }, "enumType": { - "$ref": "2999" + "$ref": "3004" } }, { - "$id": "3003", + "$id": "3008", "kind": "enumvalue", "decorators": [], "name": "input_audio", "value": "input_audio", "valueType": { - "$ref": "3000" + "$ref": "3005" }, "enumType": { - "$ref": "2999" + "$ref": "3004" } }, { - "$id": "3004", + "$id": "3009", "kind": "enumvalue", "decorators": [], "name": "image_url", "value": "image_url", "valueType": { - "$ref": "3000" + "$ref": "3005" }, "enumType": { - "$ref": "2999" + "$ref": "3004" } }, { - "$id": "3005", + "$id": "3010", "kind": "enumvalue", "decorators": [], "name": "refusal", "value": "refusal", "valueType": { - "$ref": "3000" + "$ref": "3005" }, "enumType": { - "$ref": "2999" + "$ref": "3004" } } ], @@ -33757,13 +33814,13 @@ "isHttpMetadata": false }, { - "$id": "3006", + "$id": "3011", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content.", "type": { - "$id": "3007", + "$id": "3012", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33785,7 +33842,7 @@ ] }, "image_url": { - "$id": "3008", + "$id": "3013", "kind": "model", "name": "ChatCompletionRequestMessageContentPartImage", "namespace": "OpenAI", @@ -33800,17 +33857,17 @@ } ], "baseModel": { - "$ref": "2994" + "$ref": "2999" }, "properties": [ { - "$id": "3009", + "$id": "3014", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content part.", "type": { - "$id": "3010", + "$id": "3015", "kind": "enumvalue", "name": "image_url", "value": "image_url", @@ -33818,7 +33875,7 @@ "$ref": "162" }, "enumType": { - "$ref": "2999" + "$ref": "3004" }, "decorators": [] }, @@ -33836,12 +33893,12 @@ "isHttpMetadata": false }, { - "$id": "3011", + "$id": "3016", "kind": "property", "name": "image_url", "serializedName": "image_url", "type": { - "$id": "3012", + "$id": "3017", "kind": "model", "name": "ChatCompletionRequestMessageContentPartImageImageUrl", "namespace": "OpenAI", @@ -33850,13 +33907,13 @@ "decorators": [], "properties": [ { - "$id": "3013", + "$id": "3018", "kind": "property", "name": "url", "serializedName": "url", "doc": "Either a URL of the image or the base64 encoded image data.", "type": { - "$id": "3014", + "$id": "3019", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -33876,7 +33933,7 @@ "isHttpMetadata": false }, { - "$id": "3015", + "$id": "3020", "kind": "property", "name": "detail", "serializedName": "detail", @@ -33915,7 +33972,7 @@ ] }, "refusal": { - "$id": "3016", + "$id": "3021", "kind": "model", "name": "ChatCompletionRequestMessageContentPartRefusal", "namespace": "OpenAI", @@ -33929,17 +33986,17 @@ } ], "baseModel": { - "$ref": "2994" + "$ref": "2999" }, "properties": [ { - "$id": "3017", + "$id": "3022", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content part.", "type": { - "$id": "3018", + "$id": "3023", "kind": "enumvalue", "name": "refusal", "value": "refusal", @@ -33947,7 +34004,7 @@ "$ref": "162" }, "enumType": { - "$ref": "2999" + "$ref": "3004" }, "decorators": [] }, @@ -33965,13 +34022,13 @@ "isHttpMetadata": false }, { - "$id": "3019", + "$id": "3024", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "The refusal message generated by the model.", "type": { - "$id": "3020", + "$id": "3025", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33993,7 +34050,7 @@ ] }, "file": { - "$id": "3021", + "$id": "3026", "kind": "model", "name": "ChatCompletionRequestMessageContentPartFile", "namespace": "OpenAI", @@ -34008,17 +34065,17 @@ } ], "baseModel": { - "$ref": "2994" + "$ref": "2999" }, "properties": [ { - "$id": "3022", + "$id": "3027", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content part. Always `file`.", "type": { - "$id": "3023", + "$id": "3028", "kind": "enumvalue", "name": "file", "value": "file", @@ -34026,7 +34083,7 @@ "$ref": "162" }, "enumType": { - "$ref": "2999" + "$ref": "3004" }, "decorators": [] }, @@ -34044,12 +34101,12 @@ "isHttpMetadata": false }, { - "$id": "3024", + "$id": "3029", "kind": "property", "name": "file", "serializedName": "file", "type": { - "$id": "3025", + "$id": "3030", "kind": "model", "name": "ChatCompletionRequestMessageContentPartFileFile", "namespace": "OpenAI", @@ -34058,13 +34115,13 @@ "decorators": [], "properties": [ { - "$id": "3026", + "$id": "3031", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file, used when passing the file to the model as a\nstring.", "type": { - "$id": "3027", + "$id": "3032", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34084,13 +34141,13 @@ "isHttpMetadata": false }, { - "$id": "3028", + "$id": "3033", "kind": "property", "name": "file_data", "serializedName": "file_data", "doc": "The base64 encoded file data, used when passing the file to the model\nas a string.", "type": { - "$id": "3029", + "$id": "3034", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34110,13 +34167,13 @@ "isHttpMetadata": false }, { - "$id": "3030", + "$id": "3035", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of an uploaded file to use as input.", "type": { - "$id": "3031", + "$id": "3036", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34153,7 +34210,7 @@ ] }, "input_audio": { - "$id": "3032", + "$id": "3037", "kind": "model", "name": "ChatCompletionRequestMessageContentPartAudio", "namespace": "OpenAI", @@ -34168,17 +34225,17 @@ } ], "baseModel": { - "$ref": "2994" + "$ref": "2999" }, "properties": [ { - "$id": "3033", + "$id": "3038", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content part. Always `input_audio`.", "type": { - "$id": "3034", + "$id": "3039", "kind": "enumvalue", "name": "input_audio", "value": "input_audio", @@ -34186,7 +34243,7 @@ "$ref": "162" }, "enumType": { - "$ref": "2999" + "$ref": "3004" }, "decorators": [] }, @@ -34204,12 +34261,12 @@ "isHttpMetadata": false }, { - "$id": "3035", + "$id": "3040", "kind": "property", "name": "input_audio", "serializedName": "input_audio", "type": { - "$id": "3036", + "$id": "3041", "kind": "model", "name": "ChatCompletionRequestMessageContentPartAudioInputAudio", "namespace": "OpenAI", @@ -34218,13 +34275,13 @@ "decorators": [], "properties": [ { - "$id": "3037", + "$id": "3042", "kind": "property", "name": "data", "serializedName": "data", "doc": "Base64 encoded audio data.", "type": { - "$id": "3038", + "$id": "3043", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -34245,7 +34302,7 @@ "isHttpMetadata": false }, { - "$id": "3039", + "$id": "3044", "kind": "property", "name": "format", "serializedName": "format", @@ -34310,7 +34367,7 @@ ], "discriminatedSubtypes": { "system": { - "$id": "3040", + "$id": "3045", "kind": "model", "name": "ChatCompletionRequestSystemMessage", "namespace": "OpenAI", @@ -34325,38 +34382,38 @@ } ], "baseModel": { - "$ref": "2987" + "$ref": "2992" }, "properties": [ { - "$id": "3041", + "$id": "3046", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the system message.", "type": { - "$id": "3042", + "$id": "3047", "kind": "union", "name": "ChatCompletionRequestSystemMessageContent", "variantTypes": [ { - "$id": "3043", + "$id": "3048", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "3044", + "$id": "3049", "kind": "array", "name": "ArrayChatCompletionRequestSystemMessageContentPart", "valueType": { - "$id": "3045", + "$id": "3050", "kind": "union", "name": "ChatCompletionRequestSystemMessageContentPart", "variantTypes": [ { - "$ref": "2996" + "$ref": "3001" } ], "namespace": "OpenAI", @@ -34383,13 +34440,13 @@ "isHttpMetadata": false }, { - "$id": "3046", + "$id": "3051", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the messages author, in this case `system`.", "type": { - "$id": "3047", + "$id": "3052", "kind": "enumvalue", "name": "system", "value": "system", @@ -34415,13 +34472,13 @@ "isHttpMetadata": false }, { - "$id": "3048", + "$id": "3053", "kind": "property", "name": "name", "serializedName": "name", "doc": "An optional name for the participant. Provides the model information to differentiate between participants of the same role.", "type": { - "$id": "3049", + "$id": "3054", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34443,7 +34500,7 @@ ] }, "developer": { - "$id": "3050", + "$id": "3055", "kind": "model", "name": "ChatCompletionRequestDeveloperMessage", "namespace": "OpenAI", @@ -34458,33 +34515,33 @@ } ], "baseModel": { - "$ref": "2987" + "$ref": "2992" }, "properties": [ { - "$id": "3051", + "$id": "3056", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the developer message.", "type": { - "$id": "3052", + "$id": "3057", "kind": "union", "name": "ChatCompletionRequestDeveloperMessageContent", "variantTypes": [ { - "$id": "3053", + "$id": "3058", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "3054", + "$id": "3059", "kind": "array", "name": "ArrayChatCompletionRequestMessageContentPartText", "valueType": { - "$ref": "2996" + "$ref": "3001" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -34507,13 +34564,13 @@ "isHttpMetadata": false }, { - "$id": "3055", + "$id": "3060", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the messages author, in this case `developer`.", "type": { - "$id": "3056", + "$id": "3061", "kind": "enumvalue", "name": "developer", "value": "developer", @@ -34539,13 +34596,13 @@ "isHttpMetadata": false }, { - "$id": "3057", + "$id": "3062", "kind": "property", "name": "name", "serializedName": "name", "doc": "An optional name for the participant. Provides the model information to differentiate between participants of the same role.", "type": { - "$id": "3058", + "$id": "3063", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34567,7 +34624,7 @@ ] }, "user": { - "$id": "3059", + "$id": "3064", "kind": "model", "name": "ChatCompletionRequestUserMessage", "namespace": "OpenAI", @@ -34582,47 +34639,47 @@ } ], "baseModel": { - "$ref": "2987" + "$ref": "2992" }, "properties": [ { - "$id": "3060", + "$id": "3065", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the user message.", "type": { - "$id": "3061", + "$id": "3066", "kind": "union", "name": "ChatCompletionRequestUserMessageContent", "variantTypes": [ { - "$id": "3062", + "$id": "3067", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "3063", + "$id": "3068", "kind": "array", "name": "ArrayChatCompletionRequestUserMessageContentPart", "valueType": { - "$id": "3064", + "$id": "3069", "kind": "union", "name": "ChatCompletionRequestUserMessageContentPart", "variantTypes": [ { - "$ref": "2996" + "$ref": "3001" }, { - "$ref": "3008" + "$ref": "3013" }, { - "$ref": "3032" + "$ref": "3037" }, { - "$ref": "3021" + "$ref": "3026" } ], "namespace": "OpenAI", @@ -34649,13 +34706,13 @@ "isHttpMetadata": false }, { - "$id": "3065", + "$id": "3070", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the messages author, in this case `user`.", "type": { - "$id": "3066", + "$id": "3071", "kind": "enumvalue", "name": "user", "value": "user", @@ -34681,13 +34738,13 @@ "isHttpMetadata": false }, { - "$id": "3067", + "$id": "3072", "kind": "property", "name": "name", "serializedName": "name", "doc": "An optional name for the participant. Provides the model information to differentiate between participants of the same role.", "type": { - "$id": "3068", + "$id": "3073", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34709,7 +34766,7 @@ ] }, "assistant": { - "$id": "3069", + "$id": "3074", "kind": "model", "name": "ChatCompletionRequestAssistantMessage", "namespace": "OpenAI", @@ -34724,44 +34781,44 @@ } ], "baseModel": { - "$ref": "2987" + "$ref": "2992" }, "properties": [ { - "$id": "3070", + "$id": "3075", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the assistant message. Required unless `tool_calls` or `function_call` is specified.", "type": { - "$id": "3071", + "$id": "3076", "kind": "nullable", "type": { - "$id": "3072", + "$id": "3077", "kind": "union", "name": "ChatCompletionRequestAssistantMessageContent", "variantTypes": [ { - "$id": "3073", + "$id": "3078", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "3074", + "$id": "3079", "kind": "array", "name": "ArrayChatCompletionRequestAssistantMessageContentPart", "valueType": { - "$id": "3075", + "$id": "3080", "kind": "union", "name": "ChatCompletionRequestAssistantMessageContentPart", "variantTypes": [ { - "$ref": "2996" + "$ref": "3001" }, { - "$ref": "3016" + "$ref": "3021" } ], "namespace": "OpenAI", @@ -34790,16 +34847,16 @@ "isHttpMetadata": false }, { - "$id": "3076", + "$id": "3081", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "The refusal message by the assistant.", "type": { - "$id": "3077", + "$id": "3082", "kind": "nullable", "type": { - "$id": "3078", + "$id": "3083", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34821,13 +34878,13 @@ "isHttpMetadata": false }, { - "$id": "3079", + "$id": "3084", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the messages author, in this case `assistant`.", "type": { - "$id": "3080", + "$id": "3085", "kind": "enumvalue", "name": "assistant", "value": "assistant", @@ -34853,13 +34910,13 @@ "isHttpMetadata": false }, { - "$id": "3081", + "$id": "3086", "kind": "property", "name": "name", "serializedName": "name", "doc": "An optional name for the participant. Provides the model information to differentiate between participants of the same role.", "type": { - "$id": "3082", + "$id": "3087", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34879,16 +34936,16 @@ "isHttpMetadata": false }, { - "$id": "3083", + "$id": "3088", "kind": "property", "name": "audio", "serializedName": "audio", "doc": "Data about a previous audio response from the model.\n[Learn more](/docs/guides/audio).", "type": { - "$id": "3084", + "$id": "3089", "kind": "nullable", "type": { - "$id": "3085", + "$id": "3090", "kind": "model", "name": "ChatCompletionRequestAssistantMessageAudio1", "namespace": "OpenAI", @@ -34897,13 +34954,13 @@ "decorators": [], "properties": [ { - "$id": "3086", + "$id": "3091", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for a previous audio response from the model.", "type": { - "$id": "3087", + "$id": "3092", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34940,7 +34997,7 @@ "isHttpMetadata": false }, { - "$id": "3088", + "$id": "3093", "kind": "property", "name": "tool_calls", "serializedName": "tool_calls", @@ -34961,16 +35018,16 @@ "isHttpMetadata": false }, { - "$id": "3089", + "$id": "3094", "kind": "property", "name": "function_call", "serializedName": "function_call", "doc": "Deprecated and replaced by `tool_calls`. The name and arguments of a function that should be called, as generated by the model.", "type": { - "$id": "3090", + "$id": "3095", "kind": "nullable", "type": { - "$id": "3091", + "$id": "3096", "kind": "model", "name": "ChatCompletionRequestAssistantMessageFunctionCall1", "namespace": "OpenAI", @@ -34979,12 +35036,12 @@ "decorators": [], "properties": [ { - "$id": "3092", + "$id": "3097", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "3093", + "$id": "3098", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35004,12 +35061,12 @@ "isHttpMetadata": false }, { - "$id": "3094", + "$id": "3099", "kind": "property", "name": "arguments", "serializedName": "arguments", "type": { - "$id": "3095", + "$id": "3100", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35048,7 +35105,7 @@ ] }, "tool": { - "$id": "3096", + "$id": "3101", "kind": "model", "name": "ChatCompletionRequestToolMessage", "namespace": "OpenAI", @@ -35062,17 +35119,17 @@ } ], "baseModel": { - "$ref": "2987" + "$ref": "2992" }, "properties": [ { - "$id": "3097", + "$id": "3102", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the messages author, in this case `tool`.", "type": { - "$id": "3098", + "$id": "3103", "kind": "enumvalue", "name": "tool", "value": "tool", @@ -35098,34 +35155,34 @@ "isHttpMetadata": false }, { - "$id": "3099", + "$id": "3104", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the tool message.", "type": { - "$id": "3100", + "$id": "3105", "kind": "union", "name": "ChatCompletionRequestToolMessageContent", "variantTypes": [ { - "$id": "3101", + "$id": "3106", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "3102", + "$id": "3107", "kind": "array", "name": "ArrayChatCompletionRequestToolMessageContentPart", "valueType": { - "$id": "3103", + "$id": "3108", "kind": "union", "name": "ChatCompletionRequestToolMessageContentPart", "variantTypes": [ { - "$ref": "2996" + "$ref": "3001" } ], "namespace": "OpenAI", @@ -35152,13 +35209,13 @@ "isHttpMetadata": false }, { - "$id": "3104", + "$id": "3109", "kind": "property", "name": "tool_call_id", "serializedName": "tool_call_id", "doc": "Tool call that this message is responding to.", "type": { - "$id": "3105", + "$id": "3110", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35180,7 +35237,7 @@ ] }, "function": { - "$id": "3106", + "$id": "3111", "kind": "model", "name": "ChatCompletionRequestFunctionMessage", "namespace": "OpenAI", @@ -35195,17 +35252,17 @@ } ], "baseModel": { - "$ref": "2987" + "$ref": "2992" }, "properties": [ { - "$id": "3107", + "$id": "3112", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the messages author, in this case `function`.", "type": { - "$id": "3108", + "$id": "3113", "kind": "enumvalue", "name": "function", "value": "function", @@ -35231,16 +35288,16 @@ "isHttpMetadata": false }, { - "$id": "3109", + "$id": "3114", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the function message.", "type": { - "$id": "3110", + "$id": "3115", "kind": "nullable", "type": { - "$id": "3111", + "$id": "3116", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35262,13 +35319,13 @@ "isHttpMetadata": false }, { - "$id": "3112", + "$id": "3117", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "3113", + "$id": "3118", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35308,7 +35365,7 @@ "isHttpMetadata": false }, { - "$id": "3114", + "$id": "3119", "kind": "property", "name": "model", "serializedName": "model", @@ -35330,15 +35387,15 @@ "isHttpMetadata": false }, { - "$id": "3115", + "$id": "3120", "kind": "property", "name": "modalities", "serializedName": "modalities", "type": { - "$id": "3116", + "$id": "3121", "kind": "nullable", "type": { - "$id": "3117", + "$id": "3122", "kind": "array", "name": "ResponseModalities", "valueType": { @@ -35363,12 +35420,12 @@ "isHttpMetadata": false }, { - "$id": "3118", + "$id": "3123", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", "type": { - "$id": "3119", + "$id": "3124", "kind": "nullable", "type": { "$ref": "53" @@ -35389,16 +35446,16 @@ "isHttpMetadata": false }, { - "$id": "3120", + "$id": "3125", "kind": "property", "name": "max_completion_tokens", "serializedName": "max_completion_tokens", "doc": "An upper bound for the number of tokens that can be generated for a completion, including visible output tokens and [reasoning tokens](/docs/guides/reasoning).", "type": { - "$id": "3121", + "$id": "3126", "kind": "nullable", "type": { - "$id": "3122", + "$id": "3127", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -35420,16 +35477,16 @@ "isHttpMetadata": false }, { - "$id": "3123", + "$id": "3128", "kind": "property", "name": "frequency_penalty", "serializedName": "frequency_penalty", "doc": "Number between -2.0 and 2.0. Positive values penalize new tokens based on\ntheir existing frequency in the text so far, decreasing the model's\nlikelihood to repeat the same line verbatim.", "type": { - "$id": "3124", + "$id": "3129", "kind": "nullable", "type": { - "$id": "3125", + "$id": "3130", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -35451,16 +35508,16 @@ "isHttpMetadata": false }, { - "$id": "3126", + "$id": "3131", "kind": "property", "name": "presence_penalty", "serializedName": "presence_penalty", "doc": "Number between -2.0 and 2.0. Positive values penalize new tokens based on\nwhether they appear in the text so far, increasing the model's likelihood\nto talk about new topics.", "type": { - "$id": "3127", + "$id": "3132", "kind": "nullable", "type": { - "$id": "3128", + "$id": "3133", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -35482,13 +35539,13 @@ "isHttpMetadata": false }, { - "$id": "3129", + "$id": "3134", "kind": "property", "name": "web_search_options", "serializedName": "web_search_options", "doc": "This tool searches the web for relevant results to use in a response.\nLearn more about the [web search tool](/docs/guides/tools-web-search?api-mode=chat).", "type": { - "$id": "3130", + "$id": "3135", "kind": "model", "name": "CreateChatCompletionRequestWebSearchOptions", "namespace": "OpenAI", @@ -35497,16 +35554,16 @@ "decorators": [], "properties": [ { - "$id": "3131", + "$id": "3136", "kind": "property", "name": "user_location", "serializedName": "user_location", "doc": "Approximate location parameters for the search.", "type": { - "$id": "3132", + "$id": "3137", "kind": "nullable", "type": { - "$id": "3133", + "$id": "3138", "kind": "model", "name": "CreateChatCompletionRequestWebSearchOptionsUserLocation1", "namespace": "OpenAI", @@ -35515,7 +35572,7 @@ "decorators": [], "properties": [ { - "$id": "3134", + "$id": "3139", "kind": "property", "name": "type", "serializedName": "type", @@ -35537,12 +35594,12 @@ "isHttpMetadata": false }, { - "$id": "3135", + "$id": "3140", "kind": "property", "name": "approximate", "serializedName": "approximate", "type": { - "$id": "3136", + "$id": "3141", "kind": "model", "name": "WebSearchLocation", "namespace": "OpenAI", @@ -35552,13 +35609,13 @@ "decorators": [], "properties": [ { - "$id": "3137", + "$id": "3142", "kind": "property", "name": "country", "serializedName": "country", "doc": "The two-letter\n[ISO country code](https://en.wikipedia.org/wiki/ISO_3166-1) of the user,\ne.g. `US`.", "type": { - "$id": "3138", + "$id": "3143", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35578,13 +35635,13 @@ "isHttpMetadata": false }, { - "$id": "3139", + "$id": "3144", "kind": "property", "name": "region", "serializedName": "region", "doc": "Free text input for the region of the user, e.g. `California`.", "type": { - "$id": "3140", + "$id": "3145", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35604,13 +35661,13 @@ "isHttpMetadata": false }, { - "$id": "3141", + "$id": "3146", "kind": "property", "name": "city", "serializedName": "city", "doc": "Free text input for the city of the user, e.g. `San Francisco`.", "type": { - "$id": "3142", + "$id": "3147", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35630,13 +35687,13 @@ "isHttpMetadata": false }, { - "$id": "3143", + "$id": "3148", "kind": "property", "name": "timezone", "serializedName": "timezone", "doc": "The [IANA timezone](https://timeapi.io/documentation/iana-timezones)\nof the user, e.g. `America/Los_Angeles`.", "type": { - "$id": "3144", + "$id": "3149", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35688,7 +35745,7 @@ "isHttpMetadata": false }, { - "$id": "3145", + "$id": "3150", "kind": "property", "name": "search_context_size", "serializedName": "search_context_size", @@ -35724,38 +35781,7 @@ "isHttpMetadata": false }, { - "$id": "3146", - "kind": "property", - "name": "top_logprobs", - "serializedName": "top_logprobs", - "doc": "An integer between 0 and 20 specifying the number of most likely tokens to\nreturn at each token position, each with an associated log probability.\n`logprobs` must be set to `true` if this parameter is used.", - "type": { - "$id": "3147", - "kind": "nullable", - "type": { - "$id": "3148", - "kind": "int32", - "name": "int32", - "crossLanguageDefinitionId": "TypeSpec.int32", - "decorators": [] - }, - "namespace": "OpenAI" - }, - "optional": true, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.CreateChatCompletionRequest.top_logprobs", - "serializationOptions": { - "json": { - "name": "top_logprobs" - } - }, - "isHttpMetadata": false - }, - { - "$id": "3149", + "$id": "3151", "kind": "property", "name": "response_format", "serializedName": "response_format", @@ -35777,16 +35803,16 @@ "isHttpMetadata": false }, { - "$id": "3150", + "$id": "3152", "kind": "property", "name": "audio", "serializedName": "audio", "doc": "Parameters for audio output. Required when audio output is requested with\n`modalities: [\"audio\"]`. [Learn more](/docs/guides/audio).", "type": { - "$id": "3151", + "$id": "3153", "kind": "nullable", "type": { - "$id": "3152", + "$id": "3154", "kind": "model", "name": "CreateChatCompletionRequestAudio1", "namespace": "OpenAI", @@ -35795,7 +35821,7 @@ "decorators": [], "properties": [ { - "$id": "3153", + "$id": "3155", "kind": "property", "name": "voice", "serializedName": "voice", @@ -35817,7 +35843,7 @@ "isHttpMetadata": false }, { - "$id": "3154", + "$id": "3156", "kind": "property", "name": "format", "serializedName": "format", @@ -35856,16 +35882,16 @@ "isHttpMetadata": false }, { - "$id": "3155", + "$id": "3157", "kind": "property", "name": "store", "serializedName": "store", "doc": "Whether or not to store the output of this chat completion request for\nuse in our [model distillation](/docs/guides/distillation) or\n[evals](/docs/guides/evals) products.", "type": { - "$id": "3156", + "$id": "3158", "kind": "nullable", "type": { - "$id": "3157", + "$id": "3159", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -35887,16 +35913,16 @@ "isHttpMetadata": false }, { - "$id": "3158", + "$id": "3160", "kind": "property", "name": "stream", "serializedName": "stream", "doc": "If set to true, the model response data will be streamed to the client\nas it is generated using [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format).\nSee the [Streaming section below](/docs/api-reference/chat/streaming)\nfor more information, along with the [streaming responses](/docs/guides/streaming-responses)\nguide for more information on how to handle the streaming events.", "type": { - "$id": "3159", + "$id": "3161", "kind": "nullable", "type": { - "$id": "3160", + "$id": "3162", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -35918,20 +35944,20 @@ "isHttpMetadata": false }, { - "$id": "3161", + "$id": "3163", "kind": "property", "name": "stop", "serializedName": "stop", "type": { - "$id": "3162", + "$id": "3164", "kind": "nullable", "type": { - "$id": "3163", + "$id": "3165", "kind": "union", "name": "StopConfiguration", "variantTypes": [ { - "$id": "3164", + "$id": "3166", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35960,26 +35986,26 @@ "isHttpMetadata": false }, { - "$id": "3165", + "$id": "3167", "kind": "property", "name": "logit_bias", "serializedName": "logit_bias", "doc": "Modify the likelihood of specified tokens appearing in the completion.\n\nAccepts a JSON object that maps tokens (specified by their token ID in the\ntokenizer) to an associated bias value from -100 to 100. Mathematically,\nthe bias is added to the logits generated by the model prior to sampling.\nThe exact effect will vary per model, but values between -1 and 1 should\ndecrease or increase likelihood of selection; values like -100 or 100\nshould result in a ban or exclusive selection of the relevant token.", "type": { - "$id": "3166", + "$id": "3168", "kind": "nullable", "type": { - "$id": "3167", + "$id": "3169", "kind": "dict", "keyType": { - "$id": "3168", + "$id": "3170", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, "valueType": { - "$id": "3169", + "$id": "3171", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -36003,16 +36029,16 @@ "isHttpMetadata": false }, { - "$id": "3170", + "$id": "3172", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "doc": "Whether to return log probabilities of the output tokens or not. If true,\nreturns the log probabilities of each output token returned in the\n`content` of `message`.", "type": { - "$id": "3171", + "$id": "3173", "kind": "nullable", "type": { - "$id": "3172", + "$id": "3174", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -36034,16 +36060,16 @@ "isHttpMetadata": false }, { - "$id": "3173", + "$id": "3175", "kind": "property", "name": "max_tokens", "serializedName": "max_tokens", "doc": "The maximum number of [tokens](/tokenizer) that can be generated in the\nchat completion. This value can be used to control\n[costs](https://openai.com/api/pricing/) for text generated via API.\n\nThis value is now deprecated in favor of `max_completion_tokens`, and is\nnot compatible with [o-series models](/docs/guides/reasoning).", "type": { - "$id": "3174", + "$id": "3176", "kind": "nullable", "type": { - "$id": "3175", + "$id": "3177", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -36065,16 +36091,16 @@ "isHttpMetadata": false }, { - "$id": "3176", + "$id": "3178", "kind": "property", "name": "n", "serializedName": "n", "doc": "How many chat completion choices to generate for each input message. Note that you will be charged based on the number of generated tokens across all of the choices. Keep `n` as `1` to minimize costs.", "type": { - "$id": "3177", + "$id": "3179", "kind": "nullable", "type": { - "$id": "3178", + "$id": "3180", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -36096,16 +36122,16 @@ "isHttpMetadata": false }, { - "$id": "3179", + "$id": "3181", "kind": "property", "name": "prediction", "serializedName": "prediction", "doc": "Configuration for a [Predicted Output](/docs/guides/predicted-outputs),\nwhich can greatly improve response times when large parts of the model\nresponse are known ahead of time. This is most common when you are\nregenerating a file with only minor changes to most of the content.", "type": { - "$id": "3180", + "$id": "3182", "kind": "nullable", "type": { - "$id": "3181", + "$id": "3183", "kind": "model", "name": "ChatOutputPrediction", "namespace": "OpenAI", @@ -36119,7 +36145,7 @@ } ], "discriminatorProperty": { - "$id": "3182", + "$id": "3184", "kind": "property", "name": "type", "serializedName": "type", @@ -36141,12 +36167,12 @@ }, "properties": [ { - "$ref": "3182" + "$ref": "3184" } ], "discriminatedSubtypes": { "content": { - "$id": "3183", + "$id": "3185", "kind": "model", "name": "ChatOutputPredictionContent", "namespace": "OpenAI", @@ -36161,17 +36187,17 @@ } ], "baseModel": { - "$ref": "3181" + "$ref": "3183" }, "properties": [ { - "$id": "3184", + "$id": "3186", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the predicted content you want to provide. This type is\ncurrently always `content`.", "type": { - "$id": "3185", + "$id": "3187", "kind": "enumvalue", "name": "static_content", "value": "content", @@ -36179,14 +36205,14 @@ "$ref": "252" }, "enumType": { - "$id": "3186", + "$id": "3188", "kind": "enum", "decorators": [], "name": "ChatOutputPredictionType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "3187", + "$id": "3189", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -36195,16 +36221,16 @@ }, "values": [ { - "$id": "3188", + "$id": "3190", "kind": "enumvalue", "decorators": [], "name": "static_content", "value": "content", "valueType": { - "$ref": "3187" + "$ref": "3189" }, "enumType": { - "$ref": "3186" + "$ref": "3188" } } ], @@ -36233,25 +36259,25 @@ "isHttpMetadata": false }, { - "$id": "3189", + "$id": "3191", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content that should be matched when generating a model response.\nIf generated tokens would match this content, the entire model response\ncan be returned much more quickly.", "type": { - "$id": "3190", + "$id": "3192", "kind": "union", "name": "ChatOutputPredictionContentContent", "variantTypes": [ { - "$id": "3191", + "$id": "3193", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$ref": "3054" + "$ref": "3059" } ], "namespace": "OpenAI", @@ -36290,16 +36316,16 @@ "isHttpMetadata": false }, { - "$id": "3192", + "$id": "3194", "kind": "property", "name": "seed", "serializedName": "seed", "doc": "This feature is in Beta.\nIf specified, our system will make a best effort to sample deterministically, such that repeated requests with the same `seed` and parameters should return the same result.\nDeterminism is not guaranteed, and you should refer to the `system_fingerprint` response parameter to monitor changes in the backend.", "type": { - "$id": "3193", + "$id": "3195", "kind": "nullable", "type": { - "$id": "3194", + "$id": "3196", "kind": "int64", "name": "int64", "crossLanguageDefinitionId": "TypeSpec.int64", @@ -36321,15 +36347,15 @@ "isHttpMetadata": false }, { - "$id": "3195", + "$id": "3197", "kind": "property", "name": "stream_options", "serializedName": "stream_options", "type": { - "$id": "3196", + "$id": "3198", "kind": "nullable", "type": { - "$id": "3197", + "$id": "3199", "kind": "model", "name": "ChatCompletionStreamOptions", "namespace": "OpenAI", @@ -36339,13 +36365,13 @@ "decorators": [], "properties": [ { - "$id": "3198", + "$id": "3200", "kind": "property", "name": "include_usage", "serializedName": "include_usage", "doc": "If set, an additional chunk will be streamed before the `data: [DONE]`\nmessage. The `usage` field on this chunk shows the token usage statistics\nfor the entire request, and the `choices` field will always be an empty\narray.\n\nAll other chunks will also include a `usage` field, but with a null\nvalue. **NOTE:** If the stream is interrupted, you may not receive the\nfinal usage chunk which contains the total token usage for the request.", "type": { - "$id": "3199", + "$id": "3201", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -36382,17 +36408,17 @@ "isHttpMetadata": false }, { - "$id": "3200", + "$id": "3202", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "A list of tools the model may call. Currently, only functions are supported as a tool. Use this to provide a list of functions the model may generate JSON inputs for. A max of 128 functions are supported.", "type": { - "$id": "3201", + "$id": "3203", "kind": "array", "name": "ArrayChatCompletionTool", "valueType": { - "$id": "3202", + "$id": "3204", "kind": "model", "name": "ChatCompletionTool", "namespace": "OpenAI", @@ -36406,13 +36432,13 @@ ], "properties": [ { - "$id": "3203", + "$id": "3205", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the tool. Currently, only `function` is supported.", "type": { - "$id": "3204", + "$id": "3206", "kind": "enumvalue", "name": "function", "value": "function", @@ -36420,14 +36446,14 @@ "$ref": "1421" }, "enumType": { - "$id": "3205", + "$id": "3207", "kind": "enum", "decorators": [], "name": "ChatToolKind", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "3206", + "$id": "3208", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -36436,16 +36462,16 @@ }, "values": [ { - "$id": "3207", + "$id": "3209", "kind": "enumvalue", "decorators": [], "name": "function", "value": "function", "enumType": { - "$ref": "3205" + "$ref": "3207" }, "valueType": { - "$ref": "3206" + "$ref": "3208" } } ], @@ -36474,7 +36500,7 @@ "isHttpMetadata": false }, { - "$id": "3208", + "$id": "3210", "kind": "property", "name": "function", "serializedName": "function", @@ -36513,12 +36539,12 @@ "isHttpMetadata": false }, { - "$id": "3209", + "$id": "3211", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "3210", + "$id": "3212", "kind": "union", "name": "ChatCompletionToolChoiceOption", "variantTypes": [ @@ -36526,7 +36552,7 @@ "$ref": "254" }, { - "$id": "3211", + "$id": "3213", "kind": "model", "name": "ChatCompletionNamedToolChoice", "namespace": "OpenAI", @@ -36541,7 +36567,7 @@ ], "properties": [ { - "$id": "3212", + "$id": "3214", "kind": "property", "name": "type", "serializedName": "type", @@ -36563,12 +36589,12 @@ "isHttpMetadata": false }, { - "$id": "3213", + "$id": "3215", "kind": "property", "name": "function", "serializedName": "function", "type": { - "$id": "3214", + "$id": "3216", "kind": "model", "name": "ChatCompletionNamedToolChoiceFunction", "namespace": "OpenAI", @@ -36577,13 +36603,13 @@ "decorators": [], "properties": [ { - "$id": "3215", + "$id": "3217", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "3216", + "$id": "3218", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36637,17 +36663,17 @@ "isHttpMetadata": false }, { - "$id": "3217", + "$id": "3219", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "type": { - "$id": "3218", + "$id": "3220", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "3219", + "$id": "3221", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -36669,13 +36695,13 @@ "isHttpMetadata": false }, { - "$id": "3220", + "$id": "3222", "kind": "property", "name": "function_call", "serializedName": "function_call", "doc": "Deprecated in favor of `tool_choice`.\n\nControls which (if any) function is called by the model.\n\n`none` means the model will not call a function and instead generates a\nmessage.\n\n`auto` means the model can pick between generating a message or calling a\nfunction.\n\nSpecifying a particular function via `{\"name\": \"my_function\"}` forces the\nmodel to call that function.\n\n`none` is the default when no functions are present. `auto` is the default\nif functions are present.", "type": { - "$id": "3221", + "$id": "3223", "kind": "union", "name": "CreateChatCompletionRequestFunctionCall", "variantTypes": [ @@ -36686,7 +36712,7 @@ "$ref": "1552" }, { - "$id": "3222", + "$id": "3224", "kind": "model", "name": "ChatCompletionFunctionCallOption", "namespace": "OpenAI", @@ -36701,13 +36727,13 @@ ], "properties": [ { - "$id": "3223", + "$id": "3225", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "3224", + "$id": "3226", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36746,17 +36772,17 @@ "isHttpMetadata": false }, { - "$id": "3225", + "$id": "3227", "kind": "property", "name": "functions", "serializedName": "functions", "doc": "Deprecated in favor of `tools`.\n\nA list of functions the model may generate JSON inputs for.", "type": { - "$id": "3226", + "$id": "3228", "kind": "array", "name": "ArrayChatCompletionFunctions", "valueType": { - "$id": "3227", + "$id": "3229", "kind": "model", "name": "ChatCompletionFunctions", "namespace": "OpenAI", @@ -36771,13 +36797,13 @@ ], "properties": [ { - "$id": "3228", + "$id": "3230", "kind": "property", "name": "description", "serializedName": "description", "doc": "A description of what the function does, used by the model to choose when and how to call the function.", "type": { - "$id": "3229", + "$id": "3231", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36797,13 +36823,13 @@ "isHttpMetadata": false }, { - "$id": "3230", + "$id": "3232", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64.", "type": { - "$id": "3231", + "$id": "3233", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36823,13 +36849,13 @@ "isHttpMetadata": false }, { - "$id": "3232", + "$id": "3234", "kind": "property", "name": "parameters", "serializedName": "parameters", "doc": "The parameters the functions accepts, described as a JSON Schema object. See the [guide](/docs/guides/function-calling) for examples, and the [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for documentation about the format.\n\nOmitting `parameters` defines a function with an empty parameter list.", "type": { - "$id": "3233", + "$id": "3235", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -36869,97 +36895,97 @@ ] }, { - "$ref": "2987" + "$ref": "2992" }, { - "$ref": "2994" + "$ref": "2999" }, { - "$ref": "2996" + "$ref": "3001" }, { - "$ref": "3008" + "$ref": "3013" }, { - "$ref": "3012" - }, - { - "$ref": "3016" + "$ref": "3017" }, { "$ref": "3021" }, { - "$ref": "3025" + "$ref": "3026" }, { - "$ref": "3032" + "$ref": "3030" }, { - "$ref": "3036" + "$ref": "3037" }, { - "$ref": "3040" + "$ref": "3041" }, { - "$ref": "3050" + "$ref": "3045" }, { - "$ref": "3059" + "$ref": "3055" }, { - "$ref": "3069" + "$ref": "3064" }, { - "$ref": "3085" + "$ref": "3074" }, { - "$ref": "3091" + "$ref": "3090" }, { "$ref": "3096" }, { - "$ref": "3106" + "$ref": "3101" }, { - "$ref": "3130" + "$ref": "3111" }, { - "$ref": "3133" + "$ref": "3135" }, { - "$ref": "3136" + "$ref": "3138" }, { - "$ref": "3152" + "$ref": "3141" }, { - "$ref": "3181" + "$ref": "3154" }, { "$ref": "3183" }, { - "$ref": "3197" + "$ref": "3185" + }, + { + "$ref": "3199" }, { - "$ref": "3202" + "$ref": "3204" }, { - "$ref": "3211" + "$ref": "3213" }, { - "$ref": "3214" + "$ref": "3216" }, { - "$ref": "3222" + "$ref": "3224" }, { - "$ref": "3227" + "$ref": "3229" }, { - "$id": "3234", + "$id": "3236", "kind": "model", "name": "CreateChatCompletionStreamResponse", "namespace": "OpenAI", @@ -36975,12 +37001,12 @@ ], "properties": [ { - "$id": "3235", + "$id": "3237", "kind": "property", "name": "id", "doc": "A unique identifier for the chat completion. Each chunk has the same ID.", "type": { - "$id": "3236", + "$id": "3238", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36996,16 +37022,16 @@ "isHttpMetadata": false }, { - "$id": "3237", + "$id": "3239", "kind": "property", "name": "choices", "doc": "A list of chat completion choices. Can contain more than one elements if `n` is greater than 1. Can also be empty for the\nlast chunk if you set `stream_options: {\"include_usage\": true}`.", "type": { - "$id": "3238", + "$id": "3240", "kind": "array", "name": "Array12", "valueType": { - "$id": "3239", + "$id": "3241", "kind": "model", "name": "CreateChatCompletionStreamResponseChoice", "namespace": "OpenAI", @@ -37014,11 +37040,11 @@ "decorators": [], "properties": [ { - "$id": "3240", + "$id": "3242", "kind": "property", "name": "delta", "type": { - "$id": "3241", + "$id": "3243", "kind": "model", "name": "ChatCompletionStreamResponseDelta", "namespace": "OpenAI", @@ -37033,12 +37059,12 @@ ], "properties": [ { - "$id": "3242", + "$id": "3244", "kind": "property", "name": "audio", "doc": "Response audio associated with the streaming chat delta payload.", "type": { - "$id": "3243", + "$id": "3245", "kind": "model", "name": "ChatCompletionMessageAudioChunk", "namespace": "OpenAI", @@ -37052,11 +37078,11 @@ ], "properties": [ { - "$id": "3244", + "$id": "3246", "kind": "property", "name": "id", "type": { - "$id": "3245", + "$id": "3247", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37072,11 +37098,11 @@ "isHttpMetadata": false }, { - "$id": "3246", + "$id": "3248", "kind": "property", "name": "transcript", "type": { - "$id": "3247", + "$id": "3249", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37092,11 +37118,11 @@ "isHttpMetadata": false }, { - "$id": "3248", + "$id": "3250", "kind": "property", "name": "data", "type": { - "$id": "3249", + "$id": "3251", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -37113,16 +37139,16 @@ "isHttpMetadata": false }, { - "$id": "3250", + "$id": "3252", "kind": "property", "name": "expires_at", "type": { - "$id": "3251", + "$id": "3253", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3252", + "$id": "3254", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -37152,15 +37178,15 @@ "isHttpMetadata": false }, { - "$id": "3253", + "$id": "3255", "kind": "property", "name": "content", "doc": "The contents of the chunk message.", "type": { - "$id": "3254", + "$id": "3256", "kind": "nullable", "type": { - "$id": "3255", + "$id": "3257", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37178,12 +37204,12 @@ "isHttpMetadata": false }, { - "$id": "3256", + "$id": "3258", "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.", "type": { - "$id": "3257", + "$id": "3259", "kind": "model", "name": "ChatCompletionStreamResponseDeltaFunctionCall", "namespace": "OpenAI", @@ -37192,11 +37218,11 @@ "decorators": [], "properties": [ { - "$id": "3258", + "$id": "3260", "kind": "property", "name": "name", "type": { - "$id": "3259", + "$id": "3261", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37212,11 +37238,11 @@ "isHttpMetadata": false }, { - "$id": "3260", + "$id": "3262", "kind": "property", "name": "arguments", "type": { - "$id": "3261", + "$id": "3263", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37243,15 +37269,15 @@ "isHttpMetadata": false }, { - "$id": "3262", + "$id": "3264", "kind": "property", "name": "tool_calls", "type": { - "$id": "3263", + "$id": "3265", "kind": "array", "name": "ArrayChatCompletionMessageToolCallChunk", "valueType": { - "$id": "3264", + "$id": "3266", "kind": "model", "name": "ChatCompletionMessageToolCallChunk", "namespace": "OpenAI", @@ -37265,11 +37291,11 @@ ], "properties": [ { - "$id": "3265", + "$id": "3267", "kind": "property", "name": "index", "type": { - "$id": "3266", + "$id": "3268", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -37285,12 +37311,12 @@ "isHttpMetadata": false }, { - "$id": "3267", + "$id": "3269", "kind": "property", "name": "id", "doc": "The ID of the tool call.", "type": { - "$id": "3268", + "$id": "3270", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37306,7 +37332,7 @@ "isHttpMetadata": false }, { - "$id": "3269", + "$id": "3271", "kind": "property", "name": "type", "doc": "The type of the tool. Currently, only `function` is supported.", @@ -37323,11 +37349,11 @@ "isHttpMetadata": false }, { - "$id": "3270", + "$id": "3272", "kind": "property", "name": "function", "type": { - "$id": "3271", + "$id": "3273", "kind": "model", "name": "ChatCompletionMessageToolCallChunkFunction", "namespace": "OpenAI", @@ -37336,12 +37362,12 @@ "decorators": [], "properties": [ { - "$id": "3272", + "$id": "3274", "kind": "property", "name": "name", "doc": "The name of the function to call.", "type": { - "$id": "3273", + "$id": "3275", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37357,12 +37383,12 @@ "isHttpMetadata": false }, { - "$id": "3274", + "$id": "3276", "kind": "property", "name": "arguments", "doc": "The arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.", "type": { - "$id": "3275", + "$id": "3277", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37403,7 +37429,7 @@ "isHttpMetadata": false }, { - "$id": "3276", + "$id": "3278", "kind": "property", "name": "role", "doc": "The role of the author of this message.", @@ -37420,15 +37446,15 @@ "isHttpMetadata": false }, { - "$id": "3277", + "$id": "3279", "kind": "property", "name": "refusal", "doc": "The refusal message generated by the model.", "type": { - "$id": "3278", + "$id": "3280", "kind": "nullable", "type": { - "$id": "3279", + "$id": "3281", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37457,15 +37483,15 @@ "isHttpMetadata": false }, { - "$id": "3280", + "$id": "3282", "kind": "property", "name": "logprobs", "doc": "Log probability information for the choice.", "type": { - "$id": "3281", + "$id": "3283", "kind": "nullable", "type": { - "$id": "3282", + "$id": "3284", "kind": "model", "name": "CreateChatCompletionStreamResponseChoiceLogprobs1", "namespace": "OpenAI", @@ -37474,12 +37500,12 @@ "decorators": [], "properties": [ { - "$id": "3283", + "$id": "3285", "kind": "property", "name": "content", "doc": "A list of message content tokens with log probability information.", "type": { - "$id": "3284", + "$id": "3286", "kind": "nullable", "type": { "$ref": "2916" @@ -37496,12 +37522,12 @@ "isHttpMetadata": false }, { - "$id": "3285", + "$id": "3287", "kind": "property", "name": "refusal", "doc": "A list of message refusal tokens with log probability information.", "type": { - "$id": "3286", + "$id": "3288", "kind": "nullable", "type": { "$ref": "2916" @@ -37531,12 +37557,12 @@ "isHttpMetadata": false }, { - "$id": "3287", + "$id": "3289", "kind": "property", "name": "finish_reason", "doc": "The reason the model stopped generating tokens. This will be `stop` if the model hit a natural stop point or a provided stop sequence,\n`length` if the maximum number of tokens specified in the request was reached,\n`content_filter` if content was omitted due to a flag from our content filters,\n`tool_calls` if the model called a tool, or `function_call` (deprecated) if the model called a function.", "type": { - "$id": "3288", + "$id": "3290", "kind": "nullable", "type": { "$ref": "263" @@ -37553,12 +37579,12 @@ "isHttpMetadata": false }, { - "$id": "3289", + "$id": "3291", "kind": "property", "name": "index", "doc": "The index of the choice in the list of choices.", "type": { - "$id": "3290", + "$id": "3292", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -37588,17 +37614,17 @@ "isHttpMetadata": false }, { - "$id": "3291", + "$id": "3293", "kind": "property", "name": "created", "doc": "The Unix timestamp (in seconds) of when the chat completion was created. Each chunk has the same timestamp.", "type": { - "$id": "3292", + "$id": "3294", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3293", + "$id": "3295", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -37617,12 +37643,12 @@ "isHttpMetadata": false }, { - "$id": "3294", + "$id": "3296", "kind": "property", "name": "model", "doc": "The model to generate the completion.", "type": { - "$id": "3295", + "$id": "3297", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37638,7 +37664,7 @@ "isHttpMetadata": false }, { - "$id": "3296", + "$id": "3298", "kind": "property", "name": "service_tier", "type": { @@ -37654,12 +37680,12 @@ "isHttpMetadata": false }, { - "$id": "3297", + "$id": "3299", "kind": "property", "name": "system_fingerprint", "doc": "This fingerprint represents the backend configuration that the model runs with.\nCan be used in conjunction with the `seed` request parameter to understand when backend changes have been made that might impact determinism.", "type": { - "$id": "3298", + "$id": "3300", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37675,7 +37701,7 @@ "isHttpMetadata": false }, { - "$id": "3299", + "$id": "3301", "kind": "property", "name": "object", "doc": "The object type, which is always `chat.completion.chunk`.", @@ -37692,12 +37718,12 @@ "isHttpMetadata": false }, { - "$id": "3300", + "$id": "3302", "kind": "property", "name": "usage", "doc": "An optional field that will only be present when you set\n`stream_options: {\"include_usage\": true}` in your request. When present, it\ncontains a null value **except for the last chunk** which contains the\ntoken usage statistics for the entire request.\n\n**NOTE:** If the stream is interrupted or cancelled, you may not\nreceive the final usage chunk which contains the total token usage for\nthe request.", "type": { - "$id": "3301", + "$id": "3303", "kind": "nullable", "type": { "$ref": "2945" @@ -37715,9 +37741,6 @@ } ] }, - { - "$ref": "3239" - }, { "$ref": "3241" }, @@ -37725,19 +37748,22 @@ "$ref": "3243" }, { - "$ref": "3257" + "$ref": "3245" }, { - "$ref": "3264" + "$ref": "3259" }, { - "$ref": "3271" + "$ref": "3266" }, { - "$ref": "3282" + "$ref": "3273" }, { - "$id": "3302", + "$ref": "3284" + }, + { + "$id": "3304", "kind": "model", "name": "UpdateChatCompletionRequest", "namespace": "", @@ -37746,7 +37772,7 @@ "decorators": [], "properties": [ { - "$id": "3303", + "$id": "3305", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -37770,7 +37796,7 @@ ] }, { - "$id": "3304", + "$id": "3306", "kind": "model", "name": "ChatCompletionDeleted", "namespace": "OpenAI", @@ -37784,7 +37810,7 @@ ], "properties": [ { - "$id": "3305", + "$id": "3307", "kind": "property", "name": "object", "serializedName": "object", @@ -37806,13 +37832,13 @@ "isHttpMetadata": false }, { - "$id": "3306", + "$id": "3308", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the chat completion that was deleted.", "type": { - "$id": "3307", + "$id": "3309", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37832,13 +37858,13 @@ "isHttpMetadata": false }, { - "$id": "3308", + "$id": "3310", "kind": "property", "name": "deleted", "serializedName": "deleted", "doc": "Whether the chat completion was deleted.", "type": { - "$id": "3309", + "$id": "3311", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -37860,7 +37886,7 @@ ] }, { - "$id": "3310", + "$id": "3312", "kind": "model", "name": "ChatCompletionMessageList", "namespace": "OpenAI", @@ -37875,7 +37901,7 @@ ], "properties": [ { - "$id": "3311", + "$id": "3313", "kind": "property", "name": "object", "serializedName": "object", @@ -37897,17 +37923,17 @@ "isHttpMetadata": false }, { - "$id": "3312", + "$id": "3314", "kind": "property", "name": "data", "serializedName": "data", "doc": "An array of chat completion message objects.", "type": { - "$id": "3313", + "$id": "3315", "kind": "array", "name": "Array13", "valueType": { - "$id": "3314", + "$id": "3316", "kind": "model", "name": "ChatCompletionMessageListDatum", "namespace": "OpenAI", @@ -37916,7 +37942,7 @@ "decorators": [], "properties": [ { - "$id": "3315", + "$id": "3317", "kind": "property", "name": "content", "serializedName": "content", @@ -37938,7 +37964,7 @@ "isHttpMetadata": false }, { - "$id": "3316", + "$id": "3318", "kind": "property", "name": "refusal", "serializedName": "refusal", @@ -37960,7 +37986,7 @@ "isHttpMetadata": false }, { - "$id": "3317", + "$id": "3319", "kind": "property", "name": "tool_calls", "serializedName": "tool_calls", @@ -37981,7 +38007,7 @@ "isHttpMetadata": false }, { - "$id": "3318", + "$id": "3320", "kind": "property", "name": "annotations", "serializedName": "annotations", @@ -38003,13 +38029,13 @@ "isHttpMetadata": false }, { - "$id": "3319", + "$id": "3321", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the author of this message.", "type": { - "$id": "3320", + "$id": "3322", "kind": "enumvalue", "name": "assistant", "value": "assistant", @@ -38035,7 +38061,7 @@ "isHttpMetadata": false }, { - "$id": "3321", + "$id": "3323", "kind": "property", "name": "function_call", "serializedName": "function_call", @@ -38057,7 +38083,7 @@ "isHttpMetadata": false }, { - "$id": "3322", + "$id": "3324", "kind": "property", "name": "audio", "serializedName": "audio", @@ -38079,15 +38105,15 @@ "isHttpMetadata": false }, { - "$id": "3323", + "$id": "3325", "kind": "property", "name": "content_parts", "serializedName": "content_parts", "type": { - "$id": "3324", + "$id": "3326", "kind": "nullable", "type": { - "$ref": "2993" + "$ref": "2998" }, "namespace": "OpenAI" }, @@ -38105,13 +38131,13 @@ "isHttpMetadata": false }, { - "$id": "3325", + "$id": "3327", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier of the chat message.", "type": { - "$id": "3326", + "$id": "3328", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38149,13 +38175,13 @@ "isHttpMetadata": false }, { - "$id": "3327", + "$id": "3329", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The identifier of the first chat message in the data array.", "type": { - "$id": "3328", + "$id": "3330", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38175,13 +38201,13 @@ "isHttpMetadata": false }, { - "$id": "3329", + "$id": "3331", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The identifier of the last chat message in the data array.", "type": { - "$id": "3330", + "$id": "3332", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38201,13 +38227,13 @@ "isHttpMetadata": false }, { - "$id": "3331", + "$id": "3333", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates whether there are more chat messages available.", "type": { - "$id": "3332", + "$id": "3334", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -38229,10 +38255,10 @@ ] }, { - "$ref": "3314" + "$ref": "3316" }, { - "$id": "3333", + "$id": "3335", "kind": "model", "name": "ContainerListResource", "namespace": "OpenAI", @@ -38241,7 +38267,7 @@ "decorators": [], "properties": [ { - "$id": "3334", + "$id": "3336", "kind": "property", "name": "object", "serializedName": "object", @@ -38263,17 +38289,17 @@ "isHttpMetadata": false }, { - "$id": "3335", + "$id": "3337", "kind": "property", "name": "data", "serializedName": "data", "doc": "A list of containers.", "type": { - "$id": "3336", + "$id": "3338", "kind": "array", "name": "ArrayContainerResource", "valueType": { - "$id": "3337", + "$id": "3339", "kind": "model", "name": "ContainerResource", "namespace": "OpenAI", @@ -38282,13 +38308,13 @@ "decorators": [], "properties": [ { - "$id": "3338", + "$id": "3340", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for the container.", "type": { - "$id": "3339", + "$id": "3341", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38308,13 +38334,13 @@ "isHttpMetadata": false }, { - "$id": "3340", + "$id": "3342", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of this object.", "type": { - "$id": "3341", + "$id": "3343", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38334,13 +38360,13 @@ "isHttpMetadata": false }, { - "$id": "3342", + "$id": "3344", "kind": "property", "name": "name", "serializedName": "name", "doc": "Name of the container.", "type": { - "$id": "3343", + "$id": "3345", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38360,18 +38386,18 @@ "isHttpMetadata": false }, { - "$id": "3344", + "$id": "3346", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) when the container was created.", "type": { - "$id": "3345", + "$id": "3347", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3346", + "$id": "3348", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -38394,13 +38420,13 @@ "isHttpMetadata": false }, { - "$id": "3347", + "$id": "3349", "kind": "property", "name": "status", "serializedName": "status", "doc": "Status of the container (e.g., active, deleted).", "type": { - "$id": "3348", + "$id": "3350", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38420,13 +38446,13 @@ "isHttpMetadata": false }, { - "$id": "3349", + "$id": "3351", "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": "3350", + "$id": "3352", "kind": "model", "name": "ContainerResourceExpiresAfter", "namespace": "OpenAI", @@ -38435,7 +38461,7 @@ "decorators": [], "properties": [ { - "$id": "3351", + "$id": "3353", "kind": "property", "name": "anchor", "serializedName": "anchor", @@ -38457,13 +38483,13 @@ "isHttpMetadata": false }, { - "$id": "3352", + "$id": "3354", "kind": "property", "name": "minutes", "serializedName": "minutes", "doc": "The number of minutes after the anchor before the container expires.", "type": { - "$id": "3353", + "$id": "3355", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -38516,13 +38542,13 @@ "isHttpMetadata": false }, { - "$id": "3354", + "$id": "3356", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The ID of the first container in the list.", "type": { - "$id": "3355", + "$id": "3357", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38542,13 +38568,13 @@ "isHttpMetadata": false }, { - "$id": "3356", + "$id": "3358", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The ID of the last container in the list.", "type": { - "$id": "3357", + "$id": "3359", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38568,13 +38594,13 @@ "isHttpMetadata": false }, { - "$id": "3358", + "$id": "3360", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Whether there are more containers available.", "type": { - "$id": "3359", + "$id": "3361", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -38596,13 +38622,13 @@ ] }, { - "$ref": "3337" + "$ref": "3339" }, { - "$ref": "3350" + "$ref": "3352" }, { - "$id": "3360", + "$id": "3362", "kind": "model", "name": "CreateContainerBody", "namespace": "OpenAI", @@ -38611,13 +38637,13 @@ "decorators": [], "properties": [ { - "$id": "3361", + "$id": "3363", "kind": "property", "name": "name", "serializedName": "name", "doc": "Name of the container to create.", "type": { - "$id": "3362", + "$id": "3364", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38637,7 +38663,7 @@ "isHttpMetadata": false }, { - "$id": "3363", + "$id": "3365", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -38659,13 +38685,13 @@ "isHttpMetadata": false }, { - "$id": "3364", + "$id": "3366", "kind": "property", "name": "expires_after", "serializedName": "expires_after", "doc": "Container expiration time in seconds relative to the 'anchor' time.", "type": { - "$id": "3365", + "$id": "3367", "kind": "model", "name": "CreateContainerBodyExpiresAfter", "namespace": "OpenAI", @@ -38674,7 +38700,7 @@ "decorators": [], "properties": [ { - "$id": "3366", + "$id": "3368", "kind": "property", "name": "anchor", "serializedName": "anchor", @@ -38696,12 +38722,12 @@ "isHttpMetadata": false }, { - "$id": "3367", + "$id": "3369", "kind": "property", "name": "minutes", "serializedName": "minutes", "type": { - "$id": "3368", + "$id": "3370", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -38738,10 +38764,10 @@ ] }, { - "$ref": "3365" + "$ref": "3367" }, { - "$id": "3369", + "$id": "3371", "kind": "model", "name": "DeleteContainerResponse", "namespace": "OpenAI", @@ -38750,12 +38776,12 @@ "decorators": [], "properties": [ { - "$id": "3370", + "$id": "3372", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "3371", + "$id": "3373", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38775,7 +38801,7 @@ "isHttpMetadata": false }, { - "$id": "3372", + "$id": "3374", "kind": "property", "name": "object", "serializedName": "object", @@ -38796,7 +38822,7 @@ "isHttpMetadata": false }, { - "$id": "3373", + "$id": "3375", "kind": "property", "name": "deleted", "serializedName": "deleted", @@ -38819,7 +38845,7 @@ ] }, { - "$id": "3374", + "$id": "3376", "kind": "model", "name": "CreateContainerFileBody", "namespace": "OpenAI", @@ -38828,13 +38854,13 @@ "decorators": [], "properties": [ { - "$id": "3375", + "$id": "3377", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "Name of the file to create.", "type": { - "$id": "3376", + "$id": "3378", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38860,13 +38886,13 @@ "isHttpMetadata": false }, { - "$id": "3377", + "$id": "3379", "kind": "property", "name": "file", "serializedName": "file", "doc": "The File object (not file name) to be uploaded.", "type": { - "$id": "3378", + "$id": "3380", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -38895,7 +38921,7 @@ ] }, { - "$id": "3379", + "$id": "3381", "kind": "model", "name": "ContainerFileResource", "namespace": "OpenAI", @@ -38904,13 +38930,13 @@ "decorators": [], "properties": [ { - "$id": "3380", + "$id": "3382", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for the file.", "type": { - "$id": "3381", + "$id": "3383", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38930,13 +38956,13 @@ "isHttpMetadata": false }, { - "$id": "3382", + "$id": "3384", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of this object (`container.file`).", "type": { - "$id": "3383", + "$id": "3385", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38956,13 +38982,13 @@ "isHttpMetadata": false }, { - "$id": "3384", + "$id": "3386", "kind": "property", "name": "container_id", "serializedName": "container_id", "doc": "The container this file belongs to.", "type": { - "$id": "3385", + "$id": "3387", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38982,18 +39008,18 @@ "isHttpMetadata": false }, { - "$id": "3386", + "$id": "3388", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) when the file was created.", "type": { - "$id": "3387", + "$id": "3389", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3388", + "$id": "3390", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39016,13 +39042,13 @@ "isHttpMetadata": false }, { - "$id": "3389", + "$id": "3391", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "Size of the file in bytes.", "type": { - "$id": "3390", + "$id": "3392", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39042,13 +39068,13 @@ "isHttpMetadata": false }, { - "$id": "3391", + "$id": "3393", "kind": "property", "name": "path", "serializedName": "path", "doc": "Path of the file in the container.", "type": { - "$id": "3392", + "$id": "3394", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39068,13 +39094,13 @@ "isHttpMetadata": false }, { - "$id": "3393", + "$id": "3395", "kind": "property", "name": "source", "serializedName": "source", "doc": "Source of the file (e.g., `user`, `assistant`).", "type": { - "$id": "3394", + "$id": "3396", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39096,7 +39122,7 @@ ] }, { - "$id": "3395", + "$id": "3397", "kind": "model", "name": "ContainerFileListResource", "namespace": "OpenAI", @@ -39105,7 +39131,7 @@ "decorators": [], "properties": [ { - "$id": "3396", + "$id": "3398", "kind": "property", "name": "object", "serializedName": "object", @@ -39127,17 +39153,17 @@ "isHttpMetadata": false }, { - "$id": "3397", + "$id": "3399", "kind": "property", "name": "data", "serializedName": "data", "doc": "A list of container files.", "type": { - "$id": "3398", + "$id": "3400", "kind": "array", "name": "ArrayContainerFileResource", "valueType": { - "$ref": "3379" + "$ref": "3381" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -39156,13 +39182,13 @@ "isHttpMetadata": false }, { - "$id": "3399", + "$id": "3401", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The ID of the first file in the list.", "type": { - "$id": "3400", + "$id": "3402", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39182,13 +39208,13 @@ "isHttpMetadata": false }, { - "$id": "3401", + "$id": "3403", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The ID of the last file in the list.", "type": { - "$id": "3402", + "$id": "3404", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39208,13 +39234,13 @@ "isHttpMetadata": false }, { - "$id": "3403", + "$id": "3405", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Whether there are more files available.", "type": { - "$id": "3404", + "$id": "3406", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -39236,7 +39262,7 @@ ] }, { - "$id": "3405", + "$id": "3407", "kind": "model", "name": "DeleteContainerFileResponse", "namespace": "OpenAI", @@ -39245,12 +39271,12 @@ "decorators": [], "properties": [ { - "$id": "3406", + "$id": "3408", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "3407", + "$id": "3409", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39270,7 +39296,7 @@ "isHttpMetadata": false }, { - "$id": "3408", + "$id": "3410", "kind": "property", "name": "object", "serializedName": "object", @@ -39291,7 +39317,7 @@ "isHttpMetadata": false }, { - "$id": "3409", + "$id": "3411", "kind": "property", "name": "deleted", "serializedName": "deleted", @@ -39314,7 +39340,7 @@ ] }, { - "$id": "3410", + "$id": "3412", "kind": "model", "name": "CreateEmbeddingRequest", "namespace": "OpenAI", @@ -39328,18 +39354,18 @@ ], "properties": [ { - "$id": "3411", + "$id": "3413", "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": "3412", + "$id": "3414", "kind": "union", "name": "CreateEmbeddingRequestInput", "variantTypes": [ { - "$id": "3413", + "$id": "3415", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39352,7 +39378,7 @@ "$ref": "2671" }, { - "$id": "3414", + "$id": "3416", "kind": "array", "name": "ArrayArray", "valueType": { @@ -39379,7 +39405,7 @@ "isHttpMetadata": false }, { - "$id": "3415", + "$id": "3417", "kind": "property", "name": "model", "serializedName": "model", @@ -39401,7 +39427,7 @@ "isHttpMetadata": false }, { - "$id": "3416", + "$id": "3418", "kind": "property", "name": "encoding_format", "serializedName": "encoding_format", @@ -39423,13 +39449,13 @@ "isHttpMetadata": false }, { - "$id": "3417", + "$id": "3419", "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": "3418", + "$id": "3420", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39449,13 +39475,13 @@ "isHttpMetadata": false }, { - "$id": "3419", + "$id": "3421", "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": "3420", + "$id": "3422", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39477,7 +39503,7 @@ ] }, { - "$id": "3421", + "$id": "3423", "kind": "model", "name": "CreateEmbeddingResponse", "namespace": "OpenAI", @@ -39491,17 +39517,17 @@ ], "properties": [ { - "$id": "3422", + "$id": "3424", "kind": "property", "name": "data", "serializedName": "data", "doc": "The list of embeddings generated by the model.", "type": { - "$id": "3423", + "$id": "3425", "kind": "array", "name": "ArrayEmbedding", "valueType": { - "$id": "3424", + "$id": "3426", "kind": "model", "name": "Embedding", "namespace": "OpenAI", @@ -39516,13 +39542,13 @@ ], "properties": [ { - "$id": "3425", + "$id": "3427", "kind": "property", "name": "index", "serializedName": "index", "doc": "The index of the embedding in the list of embeddings.", "type": { - "$id": "3426", + "$id": "3428", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39542,22 +39568,22 @@ "isHttpMetadata": false }, { - "$id": "3427", + "$id": "3429", "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": "3428", + "$id": "3430", "kind": "union", "name": "EmbeddingEmbedding", "variantTypes": [ { - "$id": "3429", + "$id": "3431", "kind": "array", "name": "Array14", "valueType": { - "$id": "3430", + "$id": "3432", "kind": "float", "name": "float", "crossLanguageDefinitionId": "TypeSpec.float", @@ -39567,7 +39593,7 @@ "decorators": [] }, { - "$id": "3431", + "$id": "3433", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39591,7 +39617,7 @@ "isHttpMetadata": false }, { - "$id": "3432", + "$id": "3434", "kind": "property", "name": "object", "serializedName": "object", @@ -39631,13 +39657,13 @@ "isHttpMetadata": false }, { - "$id": "3433", + "$id": "3435", "kind": "property", "name": "model", "serializedName": "model", "doc": "The name of the model used to generate the embedding.", "type": { - "$id": "3434", + "$id": "3436", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39657,7 +39683,7 @@ "isHttpMetadata": false }, { - "$id": "3435", + "$id": "3437", "kind": "property", "name": "object", "serializedName": "object", @@ -39679,13 +39705,13 @@ "isHttpMetadata": false }, { - "$id": "3436", + "$id": "3438", "kind": "property", "name": "usage", "serializedName": "usage", "doc": "The usage information for the request.", "type": { - "$id": "3437", + "$id": "3439", "kind": "model", "name": "CreateEmbeddingResponseUsage", "namespace": "OpenAI", @@ -39694,13 +39720,13 @@ "decorators": [], "properties": [ { - "$id": "3438", + "$id": "3440", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "The number of tokens used by the prompt.", "type": { - "$id": "3439", + "$id": "3441", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39720,13 +39746,13 @@ "isHttpMetadata": false }, { - "$id": "3440", + "$id": "3442", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens used by the request.", "type": { - "$id": "3441", + "$id": "3443", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39763,13 +39789,13 @@ ] }, { - "$ref": "3424" + "$ref": "3426" }, { - "$ref": "3437" + "$ref": "3439" }, { - "$id": "3442", + "$id": "3444", "kind": "model", "name": "ListFilesResponse", "namespace": "OpenAI", @@ -39778,7 +39804,7 @@ "decorators": [], "properties": [ { - "$id": "3443", + "$id": "3445", "kind": "property", "name": "object", "serializedName": "object", @@ -39799,16 +39825,16 @@ "isHttpMetadata": false }, { - "$id": "3444", + "$id": "3446", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3445", + "$id": "3447", "kind": "array", "name": "ArrayOpenAiFile", "valueType": { - "$id": "3446", + "$id": "3448", "kind": "model", "name": "OpenAIFile", "namespace": "OpenAI", @@ -39818,13 +39844,13 @@ "decorators": [], "properties": [ { - "$id": "3447", + "$id": "3449", "kind": "property", "name": "id", "serializedName": "id", "doc": "The file identifier, which can be referenced in the API endpoints.", "type": { - "$id": "3448", + "$id": "3450", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39844,16 +39870,16 @@ "isHttpMetadata": false }, { - "$id": "3449", + "$id": "3451", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "The size of the file, in bytes.", "type": { - "$id": "3450", + "$id": "3452", "kind": "nullable", "type": { - "$id": "3451", + "$id": "3453", "kind": "int64", "name": "int64", "crossLanguageDefinitionId": "TypeSpec.int64", @@ -39875,18 +39901,18 @@ "isHttpMetadata": false }, { - "$id": "3452", + "$id": "3454", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the file was created.", "type": { - "$id": "3453", + "$id": "3455", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3454", + "$id": "3456", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39909,18 +39935,18 @@ "isHttpMetadata": false }, { - "$id": "3455", + "$id": "3457", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the file will expire.", "type": { - "$id": "3456", + "$id": "3458", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3457", + "$id": "3459", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39943,13 +39969,13 @@ "isHttpMetadata": false }, { - "$id": "3458", + "$id": "3460", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file.", "type": { - "$id": "3459", + "$id": "3461", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39969,7 +39995,7 @@ "isHttpMetadata": false }, { - "$id": "3460", + "$id": "3462", "kind": "property", "name": "object", "serializedName": "object", @@ -39991,7 +40017,7 @@ "isHttpMetadata": false }, { - "$id": "3461", + "$id": "3463", "kind": "property", "name": "purpose", "serializedName": "purpose", @@ -40013,7 +40039,7 @@ "isHttpMetadata": false }, { - "$id": "3462", + "$id": "3464", "kind": "property", "name": "status", "serializedName": "status", @@ -40035,13 +40061,13 @@ "isHttpMetadata": false }, { - "$id": "3463", + "$id": "3465", "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": "3464", + "$id": "3466", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40079,12 +40105,12 @@ "isHttpMetadata": false }, { - "$id": "3465", + "$id": "3467", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "3466", + "$id": "3468", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40104,12 +40130,12 @@ "isHttpMetadata": false }, { - "$id": "3467", + "$id": "3469", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "3468", + "$id": "3470", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40129,12 +40155,12 @@ "isHttpMetadata": false }, { - "$id": "3469", + "$id": "3471", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3470", + "$id": "3472", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -40156,10 +40182,10 @@ ] }, { - "$ref": "3446" + "$ref": "3448" }, { - "$id": "3471", + "$id": "3473", "kind": "model", "name": "CreateFileRequest", "namespace": "OpenAI", @@ -40168,13 +40194,13 @@ "decorators": [], "properties": [ { - "$id": "3472", + "$id": "3474", "kind": "property", "name": "file", "serializedName": "file", "doc": "The File object (not file name) to be uploaded.", "type": { - "$id": "3473", + "$id": "3475", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -40201,7 +40227,7 @@ "isHttpMetadata": false }, { - "$id": "3474", + "$id": "3476", "kind": "property", "name": "purpose", "serializedName": "purpose", @@ -40231,7 +40257,7 @@ ] }, { - "$id": "3475", + "$id": "3477", "kind": "model", "name": "DeleteFileResponse", "namespace": "OpenAI", @@ -40240,12 +40266,12 @@ "decorators": [], "properties": [ { - "$id": "3476", + "$id": "3478", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "3477", + "$id": "3479", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40265,7 +40291,7 @@ "isHttpMetadata": false }, { - "$id": "3478", + "$id": "3480", "kind": "property", "name": "object", "serializedName": "object", @@ -40286,12 +40312,12 @@ "isHttpMetadata": false }, { - "$id": "3479", + "$id": "3481", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "3480", + "$id": "3482", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -40313,7 +40339,7 @@ ] }, { - "$id": "3481", + "$id": "3483", "kind": "model", "name": "ListFineTuningCheckpointPermissionResponse", "namespace": "OpenAI", @@ -40322,16 +40348,16 @@ "decorators": [], "properties": [ { - "$id": "3482", + "$id": "3484", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3483", + "$id": "3485", "kind": "array", "name": "ArrayFineTuningCheckpointPermission", "valueType": { - "$id": "3484", + "$id": "3486", "kind": "model", "name": "FineTuningCheckpointPermission", "namespace": "OpenAI", @@ -40341,13 +40367,13 @@ "decorators": [], "properties": [ { - "$id": "3485", + "$id": "3487", "kind": "property", "name": "id", "serializedName": "id", "doc": "The permission identifier, which can be referenced in the API endpoints.", "type": { - "$id": "3486", + "$id": "3488", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40367,18 +40393,18 @@ "isHttpMetadata": false }, { - "$id": "3487", + "$id": "3489", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the permission was created.", "type": { - "$id": "3488", + "$id": "3490", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3489", + "$id": "3491", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -40401,13 +40427,13 @@ "isHttpMetadata": false }, { - "$id": "3490", + "$id": "3492", "kind": "property", "name": "project_id", "serializedName": "project_id", "doc": "The project identifier that the permission is for.", "type": { - "$id": "3491", + "$id": "3493", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40427,7 +40453,7 @@ "isHttpMetadata": false }, { - "$id": "3492", + "$id": "3494", "kind": "property", "name": "object", "serializedName": "object", @@ -40467,7 +40493,7 @@ "isHttpMetadata": false }, { - "$id": "3493", + "$id": "3495", "kind": "property", "name": "object", "serializedName": "object", @@ -40488,15 +40514,15 @@ "isHttpMetadata": false }, { - "$id": "3494", + "$id": "3496", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "3495", + "$id": "3497", "kind": "nullable", "type": { - "$id": "3496", + "$id": "3498", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40518,15 +40544,15 @@ "isHttpMetadata": false }, { - "$id": "3497", + "$id": "3499", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "3498", + "$id": "3500", "kind": "nullable", "type": { - "$id": "3499", + "$id": "3501", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40548,12 +40574,12 @@ "isHttpMetadata": false }, { - "$id": "3500", + "$id": "3502", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3501", + "$id": "3503", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -40575,10 +40601,10 @@ ] }, { - "$ref": "3484" + "$ref": "3486" }, { - "$id": "3502", + "$id": "3504", "kind": "model", "name": "CreateFineTuningCheckpointPermissionRequest", "namespace": "OpenAI", @@ -40587,7 +40613,7 @@ "decorators": [], "properties": [ { - "$id": "3503", + "$id": "3505", "kind": "property", "name": "project_ids", "serializedName": "project_ids", @@ -40611,7 +40637,7 @@ ] }, { - "$id": "3504", + "$id": "3506", "kind": "model", "name": "DeleteFineTuningCheckpointPermissionResponse", "namespace": "OpenAI", @@ -40620,13 +40646,13 @@ "decorators": [], "properties": [ { - "$id": "3505", + "$id": "3507", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the fine-tuned model checkpoint permission that was deleted.", "type": { - "$id": "3506", + "$id": "3508", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40646,7 +40672,7 @@ "isHttpMetadata": false }, { - "$id": "3507", + "$id": "3509", "kind": "property", "name": "object", "serializedName": "object", @@ -40668,13 +40694,13 @@ "isHttpMetadata": false }, { - "$id": "3508", + "$id": "3510", "kind": "property", "name": "deleted", "serializedName": "deleted", "doc": "Whether the fine-tuned model checkpoint permission was successfully deleted.", "type": { - "$id": "3509", + "$id": "3511", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -40696,7 +40722,7 @@ ] }, { - "$id": "3510", + "$id": "3512", "kind": "model", "name": "CreateFineTuningJobRequest", "namespace": "OpenAI", @@ -40705,7 +40731,7 @@ "decorators": [], "properties": [ { - "$id": "3511", + "$id": "3513", "kind": "property", "name": "model", "serializedName": "model", @@ -40727,13 +40753,13 @@ "isHttpMetadata": false }, { - "$id": "3512", + "$id": "3514", "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": "3513", + "$id": "3515", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40753,13 +40779,13 @@ "isHttpMetadata": false }, { - "$id": "3514", + "$id": "3516", "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": "3515", + "$id": "3517", "kind": "model", "name": "CreateFineTuningJobRequestHyperparameters", "namespace": "OpenAI", @@ -40768,13 +40794,13 @@ "decorators": [], "properties": [ { - "$id": "3516", + "$id": "3518", "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": "3517", + "$id": "3519", "kind": "union", "name": "CreateFineTuningJobRequestHyperparametersBatchSize", "variantTypes": [ @@ -40782,7 +40808,7 @@ "$ref": "1590" }, { - "$id": "3518", + "$id": "3520", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -40806,13 +40832,13 @@ "isHttpMetadata": false }, { - "$id": "3519", + "$id": "3521", "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": "3520", + "$id": "3522", "kind": "union", "name": "CreateFineTuningJobRequestHyperparametersLearningRateMultiplier", "variantTypes": [ @@ -40820,7 +40846,7 @@ "$ref": "1592" }, { - "$id": "3521", + "$id": "3523", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -40844,13 +40870,13 @@ "isHttpMetadata": false }, { - "$id": "3522", + "$id": "3524", "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": "3523", + "$id": "3525", "kind": "union", "name": "CreateFineTuningJobRequestHyperparametersNEpochs", "variantTypes": [ @@ -40858,7 +40884,7 @@ "$ref": "1594" }, { - "$id": "3524", + "$id": "3526", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -40897,16 +40923,16 @@ "isHttpMetadata": false }, { - "$id": "3525", + "$id": "3527", "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": "3526", + "$id": "3528", "kind": "nullable", "type": { - "$id": "3527", + "$id": "3529", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40928,16 +40954,16 @@ "isHttpMetadata": false }, { - "$id": "3528", + "$id": "3530", "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": "3529", + "$id": "3531", "kind": "nullable", "type": { - "$id": "3530", + "$id": "3532", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40959,20 +40985,20 @@ "isHttpMetadata": false }, { - "$id": "3531", + "$id": "3533", "kind": "property", "name": "integrations", "serializedName": "integrations", "doc": "A list of integrations to enable for your fine-tuning job.", "type": { - "$id": "3532", + "$id": "3534", "kind": "nullable", "type": { - "$id": "3533", + "$id": "3535", "kind": "array", "name": "ArrayCreateFineTuningJobRequestIntegration", "valueType": { - "$id": "3534", + "$id": "3536", "kind": "model", "name": "CreateFineTuningJobRequestIntegration", "namespace": "OpenAI", @@ -40980,7 +41006,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "3535", + "$id": "3537", "kind": "property", "name": "type", "serializedName": "type", @@ -41002,12 +41028,12 @@ }, "properties": [ { - "$ref": "3535" + "$ref": "3537" } ], "discriminatedSubtypes": { "wandb": { - "$id": "3536", + "$id": "3538", "kind": "model", "name": "CreateFineTuningJobRequestWandbIntegration", "namespace": "OpenAI", @@ -41016,16 +41042,16 @@ "discriminatorValue": "wandb", "decorators": [], "baseModel": { - "$ref": "3534" + "$ref": "3536" }, "properties": [ { - "$id": "3537", + "$id": "3539", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "3538", + "$id": "3540", "kind": "enumvalue", "name": "wandb", "value": "wandb", @@ -41033,14 +41059,14 @@ "$ref": "314" }, "enumType": { - "$id": "3539", + "$id": "3541", "kind": "enum", "decorators": [], "name": "CreateFineTuningJobRequestIntegrationType", "isGeneratedName": true, "namespace": "OpenAI", "valueType": { - "$id": "3540", + "$id": "3542", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -41049,16 +41075,16 @@ }, "values": [ { - "$id": "3541", + "$id": "3543", "kind": "enumvalue", "decorators": [], "name": "wandb", "value": "wandb", "valueType": { - "$ref": "3540" + "$ref": "3542" }, "enumType": { - "$ref": "3539" + "$ref": "3541" } } ], @@ -41087,12 +41113,12 @@ "isHttpMetadata": false }, { - "$id": "3542", + "$id": "3544", "kind": "property", "name": "wandb", "serializedName": "wandb", "type": { - "$id": "3543", + "$id": "3545", "kind": "model", "name": "CreateFineTuningJobRequestWandbIntegrationWandb", "namespace": "OpenAI", @@ -41101,12 +41127,12 @@ "decorators": [], "properties": [ { - "$id": "3544", + "$id": "3546", "kind": "property", "name": "project", "serializedName": "project", "type": { - "$id": "3545", + "$id": "3547", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41126,15 +41152,15 @@ "isHttpMetadata": false }, { - "$id": "3546", + "$id": "3548", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "3547", + "$id": "3549", "kind": "nullable", "type": { - "$id": "3548", + "$id": "3550", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41156,15 +41182,15 @@ "isHttpMetadata": false }, { - "$id": "3549", + "$id": "3551", "kind": "property", "name": "entity", "serializedName": "entity", "type": { - "$id": "3550", + "$id": "3552", "kind": "nullable", "type": { - "$id": "3551", + "$id": "3553", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41186,7 +41212,7 @@ "isHttpMetadata": false }, { - "$id": "3552", + "$id": "3554", "kind": "property", "name": "tags", "serializedName": "tags", @@ -41244,16 +41270,16 @@ "isHttpMetadata": false }, { - "$id": "3553", + "$id": "3555", "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": "3554", + "$id": "3556", "kind": "nullable", "type": { - "$id": "3555", + "$id": "3557", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -41275,12 +41301,12 @@ "isHttpMetadata": false }, { - "$id": "3556", + "$id": "3558", "kind": "property", "name": "method", "serializedName": "method", "type": { - "$id": "3557", + "$id": "3559", "kind": "model", "name": "FineTuneMethod", "namespace": "OpenAI", @@ -41290,7 +41316,7 @@ "decorators": [], "properties": [ { - "$id": "3558", + "$id": "3560", "kind": "property", "name": "type", "serializedName": "type", @@ -41312,12 +41338,12 @@ "isHttpMetadata": false }, { - "$id": "3559", + "$id": "3561", "kind": "property", "name": "supervised", "serializedName": "supervised", "type": { - "$id": "3560", + "$id": "3562", "kind": "model", "name": "FineTuneSupervisedMethod", "namespace": "OpenAI", @@ -41327,12 +41353,12 @@ "decorators": [], "properties": [ { - "$id": "3561", + "$id": "3563", "kind": "property", "name": "hyperparameters", "serializedName": "hyperparameters", "type": { - "$id": "3562", + "$id": "3564", "kind": "model", "name": "FineTuneSupervisedHyperparameters", "namespace": "OpenAI", @@ -41342,13 +41368,13 @@ "decorators": [], "properties": [ { - "$id": "3563", + "$id": "3565", "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": "3564", + "$id": "3566", "kind": "union", "name": "FineTuneSupervisedHyperparametersBatchSize", "variantTypes": [ @@ -41356,7 +41382,7 @@ "$ref": "1596" }, { - "$id": "3565", + "$id": "3567", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -41380,13 +41406,13 @@ "isHttpMetadata": false }, { - "$id": "3566", + "$id": "3568", "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": "3567", + "$id": "3569", "kind": "union", "name": "FineTuneSupervisedHyperparametersLearningRateMultiplier", "variantTypes": [ @@ -41394,7 +41420,7 @@ "$ref": "1598" }, { - "$id": "3568", + "$id": "3570", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -41418,13 +41444,13 @@ "isHttpMetadata": false }, { - "$id": "3569", + "$id": "3571", "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": "3570", + "$id": "3572", "kind": "union", "name": "FineTuneSupervisedHyperparametersNEpochs", "variantTypes": [ @@ -41432,7 +41458,7 @@ "$ref": "1600" }, { - "$id": "3571", + "$id": "3573", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -41486,12 +41512,12 @@ "isHttpMetadata": false }, { - "$id": "3572", + "$id": "3574", "kind": "property", "name": "dpo", "serializedName": "dpo", "type": { - "$id": "3573", + "$id": "3575", "kind": "model", "name": "FineTuneDPOMethod", "namespace": "OpenAI", @@ -41501,12 +41527,12 @@ "decorators": [], "properties": [ { - "$id": "3574", + "$id": "3576", "kind": "property", "name": "hyperparameters", "serializedName": "hyperparameters", "type": { - "$id": "3575", + "$id": "3577", "kind": "model", "name": "FineTuneDPOHyperparameters", "namespace": "OpenAI", @@ -41516,13 +41542,13 @@ "decorators": [], "properties": [ { - "$id": "3576", + "$id": "3578", "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": "3577", + "$id": "3579", "kind": "union", "name": "FineTuneDPOHyperparametersBeta", "variantTypes": [ @@ -41530,7 +41556,7 @@ "$ref": "1602" }, { - "$id": "3578", + "$id": "3580", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -41554,13 +41580,13 @@ "isHttpMetadata": false }, { - "$id": "3579", + "$id": "3581", "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": "3580", + "$id": "3582", "kind": "union", "name": "FineTuneDPOHyperparametersBatchSize", "variantTypes": [ @@ -41568,7 +41594,7 @@ "$ref": "1604" }, { - "$id": "3581", + "$id": "3583", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -41592,13 +41618,13 @@ "isHttpMetadata": false }, { - "$id": "3582", + "$id": "3584", "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": "3583", + "$id": "3585", "kind": "union", "name": "FineTuneDPOHyperparametersLearningRateMultiplier", "variantTypes": [ @@ -41606,7 +41632,7 @@ "$ref": "1606" }, { - "$id": "3584", + "$id": "3586", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -41630,13 +41656,13 @@ "isHttpMetadata": false }, { - "$id": "3585", + "$id": "3587", "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": "3586", + "$id": "3588", "kind": "union", "name": "FineTuneDPOHyperparametersNEpochs", "variantTypes": [ @@ -41644,7 +41670,7 @@ "$ref": "1608" }, { - "$id": "3587", + "$id": "3589", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -41698,12 +41724,12 @@ "isHttpMetadata": false }, { - "$id": "3588", + "$id": "3590", "kind": "property", "name": "reinforcement", "serializedName": "reinforcement", "type": { - "$id": "3589", + "$id": "3591", "kind": "model", "name": "FineTuneReinforcementMethod", "namespace": "OpenAI", @@ -41713,18 +41739,18 @@ "decorators": [], "properties": [ { - "$id": "3590", + "$id": "3592", "kind": "property", "name": "grader", "serializedName": "grader", "doc": "The grader used for the fine-tuning job.", "type": { - "$id": "3591", + "$id": "3593", "kind": "union", "name": "FineTuneReinforcementMethodGrader", "variantTypes": [ { - "$id": "3592", + "$id": "3594", "kind": "model", "name": "GraderStringCheck", "namespace": "OpenAI", @@ -41734,7 +41760,7 @@ "discriminatorValue": "string_check", "decorators": [], "baseModel": { - "$id": "3593", + "$id": "3595", "kind": "model", "name": "Grader", "namespace": "OpenAI", @@ -41742,7 +41768,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3594", + "$id": "3596", "kind": "property", "name": "type", "serializedName": "type", @@ -41764,15 +41790,15 @@ }, "properties": [ { - "$ref": "3594" + "$ref": "3596" } ], "discriminatedSubtypes": { "string_check": { - "$ref": "3592" + "$ref": "3594" }, "text_similarity": { - "$id": "3595", + "$id": "3597", "kind": "model", "name": "GraderTextSimilarity", "namespace": "OpenAI", @@ -41782,17 +41808,17 @@ "discriminatorValue": "text_similarity", "decorators": [], "baseModel": { - "$ref": "3593" + "$ref": "3595" }, "properties": [ { - "$id": "3596", + "$id": "3598", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of grader.", "type": { - "$id": "3597", + "$id": "3599", "kind": "enumvalue", "name": "text_similarity", "value": "text_similarity", @@ -41800,14 +41826,14 @@ "$ref": "328" }, "enumType": { - "$id": "3598", + "$id": "3600", "kind": "enum", "decorators": [], "name": "GraderType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "3599", + "$id": "3601", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -41816,81 +41842,81 @@ }, "values": [ { - "$id": "3600", + "$id": "3602", "kind": "enumvalue", "decorators": [], "name": "string_check", "value": "string_check", "valueType": { - "$ref": "3599" + "$ref": "3601" }, "enumType": { - "$ref": "3598" + "$ref": "3600" } }, { - "$id": "3601", + "$id": "3603", "kind": "enumvalue", "decorators": [], "name": "text_similarity", "value": "text_similarity", "valueType": { - "$ref": "3599" + "$ref": "3601" }, "enumType": { - "$ref": "3598" + "$ref": "3600" } }, { - "$id": "3602", + "$id": "3604", "kind": "enumvalue", "decorators": [], "name": "score_model", "value": "score_model", "valueType": { - "$ref": "3599" + "$ref": "3601" }, "enumType": { - "$ref": "3598" + "$ref": "3600" } }, { - "$id": "3603", + "$id": "3605", "kind": "enumvalue", "decorators": [], "name": "label_model", "value": "label_model", "valueType": { - "$ref": "3599" + "$ref": "3601" }, "enumType": { - "$ref": "3598" + "$ref": "3600" } }, { - "$id": "3604", + "$id": "3606", "kind": "enumvalue", "decorators": [], "name": "python", "value": "python", "valueType": { - "$ref": "3599" + "$ref": "3601" }, "enumType": { - "$ref": "3598" + "$ref": "3600" } }, { - "$id": "3605", + "$id": "3607", "kind": "enumvalue", "decorators": [], "name": "multi", "value": "multi", "valueType": { - "$ref": "3599" + "$ref": "3601" }, "enumType": { - "$ref": "3598" + "$ref": "3600" } } ], @@ -41919,13 +41945,13 @@ "isHttpMetadata": false }, { - "$id": "3606", + "$id": "3608", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3607", + "$id": "3609", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41945,13 +41971,13 @@ "isHttpMetadata": false }, { - "$id": "3608", + "$id": "3610", "kind": "property", "name": "input", "serializedName": "input", "doc": "The text being graded.", "type": { - "$id": "3609", + "$id": "3611", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41971,13 +41997,13 @@ "isHttpMetadata": false }, { - "$id": "3610", + "$id": "3612", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The text being graded against.", "type": { - "$id": "3611", + "$id": "3613", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41997,7 +42023,7 @@ "isHttpMetadata": false }, { - "$id": "3612", + "$id": "3614", "kind": "property", "name": "evaluation_metric", "serializedName": "evaluation_metric", @@ -42021,7 +42047,7 @@ ] }, "python": { - "$id": "3613", + "$id": "3615", "kind": "model", "name": "GraderPython", "namespace": "OpenAI", @@ -42031,17 +42057,17 @@ "discriminatorValue": "python", "decorators": [], "baseModel": { - "$ref": "3593" + "$ref": "3595" }, "properties": [ { - "$id": "3614", + "$id": "3616", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `python`.", "type": { - "$id": "3615", + "$id": "3617", "kind": "enumvalue", "name": "python", "value": "python", @@ -42049,7 +42075,7 @@ "$ref": "328" }, "enumType": { - "$ref": "3598" + "$ref": "3600" }, "decorators": [] }, @@ -42067,13 +42093,13 @@ "isHttpMetadata": false }, { - "$id": "3616", + "$id": "3618", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3617", + "$id": "3619", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42093,13 +42119,13 @@ "isHttpMetadata": false }, { - "$id": "3618", + "$id": "3620", "kind": "property", "name": "source", "serializedName": "source", "doc": "The source code of the python script.", "type": { - "$id": "3619", + "$id": "3621", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42119,13 +42145,13 @@ "isHttpMetadata": false }, { - "$id": "3620", + "$id": "3622", "kind": "property", "name": "image_tag", "serializedName": "image_tag", "doc": "The image tag to use for the python script.", "type": { - "$id": "3621", + "$id": "3623", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42147,7 +42173,7 @@ ] }, "score_model": { - "$id": "3622", + "$id": "3624", "kind": "model", "name": "GraderScoreModel", "namespace": "OpenAI", @@ -42157,17 +42183,17 @@ "discriminatorValue": "score_model", "decorators": [], "baseModel": { - "$ref": "3593" + "$ref": "3595" }, "properties": [ { - "$id": "3623", + "$id": "3625", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `score_model`.", "type": { - "$id": "3624", + "$id": "3626", "kind": "enumvalue", "name": "score_model", "value": "score_model", @@ -42175,7 +42201,7 @@ "$ref": "328" }, "enumType": { - "$ref": "3598" + "$ref": "3600" }, "decorators": [] }, @@ -42193,13 +42219,13 @@ "isHttpMetadata": false }, { - "$id": "3625", + "$id": "3627", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3626", + "$id": "3628", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42219,13 +42245,13 @@ "isHttpMetadata": false }, { - "$id": "3627", + "$id": "3629", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation.", "type": { - "$id": "3628", + "$id": "3630", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42245,13 +42271,13 @@ "isHttpMetadata": false }, { - "$id": "3629", + "$id": "3631", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "doc": "The sampling parameters for the model.", "type": { - "$id": "3630", + "$id": "3632", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -42271,17 +42297,17 @@ "isHttpMetadata": false }, { - "$id": "3631", + "$id": "3633", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$id": "3632", + "$id": "3634", "kind": "array", "name": "ArrayEvalItem", "valueType": { - "$id": "3633", + "$id": "3635", "kind": "model", "name": "EvalItem", "namespace": "OpenAI", @@ -42291,7 +42317,7 @@ "decorators": [], "properties": [ { - "$id": "3634", + "$id": "3636", "kind": "property", "name": "role", "serializedName": "role", @@ -42313,25 +42339,25 @@ "isHttpMetadata": false }, { - "$id": "3635", + "$id": "3637", "kind": "property", "name": "content", "serializedName": "content", "doc": "Text inputs to the model - can contain template strings.", "type": { - "$id": "3636", + "$id": "3638", "kind": "union", "name": "EvalItemContent1", "variantTypes": [ { - "$id": "3637", + "$id": "3639", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "3638", + "$id": "3640", "kind": "model", "name": "EvalItemContent", "namespace": "OpenAI", @@ -42339,7 +42365,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3639", + "$id": "3641", "kind": "property", "name": "type", "serializedName": "type", @@ -42361,12 +42387,12 @@ }, "properties": [ { - "$ref": "3639" + "$ref": "3641" } ], "discriminatedSubtypes": { "input_text": { - "$id": "3640", + "$id": "3642", "kind": "model", "name": "EvalItemContentInputText", "namespace": "OpenAI", @@ -42375,16 +42401,16 @@ "discriminatorValue": "input_text", "decorators": [], "baseModel": { - "$ref": "3638" + "$ref": "3640" }, "properties": [ { - "$id": "3641", + "$id": "3643", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "3642", + "$id": "3644", "kind": "enumvalue", "name": "input_text", "value": "input_text", @@ -42392,14 +42418,14 @@ "$ref": "354" }, "enumType": { - "$id": "3643", + "$id": "3645", "kind": "enum", "decorators": [], "name": "EvalItemContentType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "3644", + "$id": "3646", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -42408,29 +42434,29 @@ }, "values": [ { - "$id": "3645", + "$id": "3647", "kind": "enumvalue", "decorators": [], "name": "input_text", "value": "input_text", "valueType": { - "$ref": "3644" + "$ref": "3646" }, "enumType": { - "$ref": "3643" + "$ref": "3645" } }, { - "$id": "3646", + "$id": "3648", "kind": "enumvalue", "decorators": [], "name": "output_text", "value": "output_text", "valueType": { - "$ref": "3644" + "$ref": "3646" }, "enumType": { - "$ref": "3643" + "$ref": "3645" } } ], @@ -42459,12 +42485,12 @@ "isHttpMetadata": false }, { - "$id": "3647", + "$id": "3649", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "3648", + "$id": "3650", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42486,7 +42512,7 @@ ] }, "output_text": { - "$id": "3649", + "$id": "3651", "kind": "model", "name": "EvalItemContentOutputText", "namespace": "OpenAI", @@ -42495,16 +42521,16 @@ "discriminatorValue": "output_text", "decorators": [], "baseModel": { - "$ref": "3638" + "$ref": "3640" }, "properties": [ { - "$id": "3650", + "$id": "3652", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "3651", + "$id": "3653", "kind": "enumvalue", "name": "output_text", "value": "output_text", @@ -42512,7 +42538,7 @@ "$ref": "354" }, "enumType": { - "$ref": "3643" + "$ref": "3645" }, "decorators": [] }, @@ -42530,12 +42556,12 @@ "isHttpMetadata": false }, { - "$id": "3652", + "$id": "3654", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "3653", + "$id": "3655", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42576,7 +42602,7 @@ "isHttpMetadata": false }, { - "$id": "3654", + "$id": "3656", "kind": "property", "name": "type", "serializedName": "type", @@ -42616,7 +42642,7 @@ "isHttpMetadata": false }, { - "$id": "3655", + "$id": "3657", "kind": "property", "name": "range", "serializedName": "range", @@ -42640,7 +42666,7 @@ ] }, "multi": { - "$id": "3656", + "$id": "3658", "kind": "model", "name": "GraderMulti", "namespace": "OpenAI", @@ -42650,17 +42676,17 @@ "discriminatorValue": "multi", "decorators": [], "baseModel": { - "$ref": "3593" + "$ref": "3595" }, "properties": [ { - "$id": "3657", + "$id": "3659", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `multi`.", "type": { - "$id": "3658", + "$id": "3660", "kind": "enumvalue", "name": "multi", "value": "multi", @@ -42668,7 +42694,7 @@ "$ref": "328" }, "enumType": { - "$ref": "3598" + "$ref": "3600" }, "decorators": [] }, @@ -42686,13 +42712,13 @@ "isHttpMetadata": false }, { - "$id": "3659", + "$id": "3661", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3660", + "$id": "3662", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42712,29 +42738,29 @@ "isHttpMetadata": false }, { - "$id": "3661", + "$id": "3663", "kind": "property", "name": "graders", "serializedName": "graders", "type": { - "$id": "3662", + "$id": "3664", "kind": "union", "name": "GraderMultiGraders", "variantTypes": [ { - "$ref": "3592" + "$ref": "3594" }, { - "$ref": "3595" + "$ref": "3597" }, { - "$ref": "3613" + "$ref": "3615" }, { - "$ref": "3622" + "$ref": "3624" }, { - "$id": "3663", + "$id": "3665", "kind": "model", "name": "GraderLabelModel", "namespace": "OpenAI", @@ -42744,17 +42770,17 @@ "discriminatorValue": "label_model", "decorators": [], "baseModel": { - "$ref": "3593" + "$ref": "3595" }, "properties": [ { - "$id": "3664", + "$id": "3666", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `label_model`.", "type": { - "$id": "3665", + "$id": "3667", "kind": "enumvalue", "name": "label_model", "value": "label_model", @@ -42762,7 +42788,7 @@ "$ref": "328" }, "enumType": { - "$ref": "3598" + "$ref": "3600" }, "decorators": [] }, @@ -42780,13 +42806,13 @@ "isHttpMetadata": false }, { - "$id": "3666", + "$id": "3668", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3667", + "$id": "3669", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42806,13 +42832,13 @@ "isHttpMetadata": false }, { - "$id": "3668", + "$id": "3670", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation. Must support structured outputs.", "type": { - "$id": "3669", + "$id": "3671", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42832,12 +42858,12 @@ "isHttpMetadata": false }, { - "$id": "3670", + "$id": "3672", "kind": "property", "name": "input", "serializedName": "input", "type": { - "$ref": "3632" + "$ref": "3634" }, "optional": false, "readOnly": false, @@ -42853,7 +42879,7 @@ "isHttpMetadata": false }, { - "$id": "3671", + "$id": "3673", "kind": "property", "name": "labels", "serializedName": "labels", @@ -42875,7 +42901,7 @@ "isHttpMetadata": false }, { - "$id": "3672", + "$id": "3674", "kind": "property", "name": "passing_labels", "serializedName": "passing_labels", @@ -42916,13 +42942,13 @@ "isHttpMetadata": false }, { - "$id": "3673", + "$id": "3675", "kind": "property", "name": "calculate_output", "serializedName": "calculate_output", "doc": "A formula to calculate the output based on grader results.", "type": { - "$id": "3674", + "$id": "3676", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42944,19 +42970,19 @@ ] }, "label_model": { - "$ref": "3663" + "$ref": "3665" } } }, "properties": [ { - "$id": "3675", + "$id": "3677", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `string_check`.", "type": { - "$id": "3676", + "$id": "3678", "kind": "enumvalue", "name": "string_check", "value": "string_check", @@ -42964,7 +42990,7 @@ "$ref": "328" }, "enumType": { - "$ref": "3598" + "$ref": "3600" }, "decorators": [] }, @@ -42982,13 +43008,13 @@ "isHttpMetadata": false }, { - "$id": "3677", + "$id": "3679", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3678", + "$id": "3680", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43008,13 +43034,13 @@ "isHttpMetadata": false }, { - "$id": "3679", + "$id": "3681", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$id": "3680", + "$id": "3682", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43034,13 +43060,13 @@ "isHttpMetadata": false }, { - "$id": "3681", + "$id": "3683", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The reference text. This may include template strings.", "type": { - "$id": "3682", + "$id": "3684", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43060,7 +43086,7 @@ "isHttpMetadata": false }, { - "$id": "3683", + "$id": "3685", "kind": "property", "name": "operation", "serializedName": "operation", @@ -43084,16 +43110,16 @@ ] }, { - "$ref": "3595" + "$ref": "3597" }, { - "$ref": "3613" + "$ref": "3615" }, { - "$ref": "3622" + "$ref": "3624" }, { - "$ref": "3656" + "$ref": "3658" } ], "namespace": "OpenAI", @@ -43113,12 +43139,12 @@ "isHttpMetadata": false }, { - "$id": "3684", + "$id": "3686", "kind": "property", "name": "hyperparameters", "serializedName": "hyperparameters", "type": { - "$id": "3685", + "$id": "3687", "kind": "model", "name": "FineTuneReinforcementHyperparameters", "namespace": "OpenAI", @@ -43128,13 +43154,13 @@ "decorators": [], "properties": [ { - "$id": "3686", + "$id": "3688", "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": "3687", + "$id": "3689", "kind": "union", "name": "FineTuneReinforcementHyperparametersBatchSize", "variantTypes": [ @@ -43142,7 +43168,7 @@ "$ref": "1610" }, { - "$id": "3688", + "$id": "3690", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43166,13 +43192,13 @@ "isHttpMetadata": false }, { - "$id": "3689", + "$id": "3691", "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": "3690", + "$id": "3692", "kind": "union", "name": "FineTuneReinforcementHyperparametersLearningRateMultiplier", "variantTypes": [ @@ -43180,7 +43206,7 @@ "$ref": "1612" }, { - "$id": "3691", + "$id": "3693", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -43204,13 +43230,13 @@ "isHttpMetadata": false }, { - "$id": "3692", + "$id": "3694", "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": "3693", + "$id": "3695", "kind": "union", "name": "FineTuneReinforcementHyperparametersNEpochs", "variantTypes": [ @@ -43218,7 +43244,7 @@ "$ref": "1614" }, { - "$id": "3694", + "$id": "3696", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43242,7 +43268,7 @@ "isHttpMetadata": false }, { - "$id": "3695", + "$id": "3697", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", @@ -43264,13 +43290,13 @@ "isHttpMetadata": false }, { - "$id": "3696", + "$id": "3698", "kind": "property", "name": "compute_multiplier", "serializedName": "compute_multiplier", "doc": "Multiplier on amount of compute used for exploring search space during training.", "type": { - "$id": "3697", + "$id": "3699", "kind": "union", "name": "FineTuneReinforcementHyperparametersComputeMultiplier", "variantTypes": [ @@ -43278,7 +43304,7 @@ "$ref": "1616" }, { - "$id": "3698", + "$id": "3700", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -43302,13 +43328,13 @@ "isHttpMetadata": false }, { - "$id": "3699", + "$id": "3701", "kind": "property", "name": "eval_interval", "serializedName": "eval_interval", "doc": "The number of training steps between evaluation runs.", "type": { - "$id": "3700", + "$id": "3702", "kind": "union", "name": "FineTuneReinforcementHyperparametersEvalInterval", "variantTypes": [ @@ -43316,7 +43342,7 @@ "$ref": "1618" }, { - "$id": "3701", + "$id": "3703", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43340,13 +43366,13 @@ "isHttpMetadata": false }, { - "$id": "3702", + "$id": "3704", "kind": "property", "name": "eval_samples", "serializedName": "eval_samples", "doc": "Number of evaluation samples to generate per training step.", "type": { - "$id": "3703", + "$id": "3705", "kind": "union", "name": "FineTuneReinforcementHyperparametersEvalSamples", "variantTypes": [ @@ -43354,7 +43380,7 @@ "$ref": "1620" }, { - "$id": "3704", + "$id": "3706", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43423,7 +43449,7 @@ "isHttpMetadata": false }, { - "$id": "3705", + "$id": "3707", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -43447,73 +43473,73 @@ ] }, { - "$ref": "3515" - }, - { - "$ref": "3534" + "$ref": "3517" }, { "$ref": "3536" }, { - "$ref": "3543" + "$ref": "3538" }, { - "$ref": "3557" + "$ref": "3545" }, { - "$ref": "3560" + "$ref": "3559" }, { "$ref": "3562" }, { - "$ref": "3573" + "$ref": "3564" }, { "$ref": "3575" }, { - "$ref": "3589" + "$ref": "3577" }, { - "$ref": "3592" + "$ref": "3591" }, { - "$ref": "3593" + "$ref": "3594" }, { "$ref": "3595" }, { - "$ref": "3613" + "$ref": "3597" }, { - "$ref": "3622" + "$ref": "3615" }, { - "$ref": "3633" + "$ref": "3624" }, { - "$ref": "3638" + "$ref": "3635" }, { "$ref": "3640" }, { - "$ref": "3649" + "$ref": "3642" + }, + { + "$ref": "3651" }, { - "$ref": "3656" + "$ref": "3658" }, { - "$ref": "3663" + "$ref": "3665" }, { - "$ref": "3685" + "$ref": "3687" }, { - "$id": "3706", + "$id": "3708", "kind": "model", "name": "FineTuningJob", "namespace": "OpenAI", @@ -43523,16 +43549,16 @@ "decorators": [], "properties": [ { - "$id": "3707", + "$id": "3709", "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": "3708", + "$id": "3710", "kind": "nullable", "type": { - "$id": "3709", + "$id": "3711", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43554,13 +43580,13 @@ "isHttpMetadata": false }, { - "$id": "3710", + "$id": "3712", "kind": "property", "name": "id", "serializedName": "id", "doc": "The object identifier, which can be referenced in the API endpoints.", "type": { - "$id": "3711", + "$id": "3713", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43580,18 +43606,18 @@ "isHttpMetadata": false }, { - "$id": "3712", + "$id": "3714", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the fine-tuning job was created.", "type": { - "$id": "3713", + "$id": "3715", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3714", + "$id": "3716", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43614,16 +43640,16 @@ "isHttpMetadata": false }, { - "$id": "3715", + "$id": "3717", "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": "3716", + "$id": "3718", "kind": "nullable", "type": { - "$id": "3717", + "$id": "3719", "kind": "model", "name": "FineTuningJobError1", "namespace": "OpenAI", @@ -43632,13 +43658,13 @@ "decorators": [], "properties": [ { - "$id": "3718", + "$id": "3720", "kind": "property", "name": "code", "serializedName": "code", "doc": "A machine-readable error code.", "type": { - "$id": "3719", + "$id": "3721", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43658,13 +43684,13 @@ "isHttpMetadata": false }, { - "$id": "3720", + "$id": "3722", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable error message.", "type": { - "$id": "3721", + "$id": "3723", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43684,16 +43710,16 @@ "isHttpMetadata": false }, { - "$id": "3722", + "$id": "3724", "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": "3723", + "$id": "3725", "kind": "nullable", "type": { - "$id": "3724", + "$id": "3726", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43732,16 +43758,16 @@ "isHttpMetadata": false }, { - "$id": "3725", + "$id": "3727", "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": "3726", + "$id": "3728", "kind": "nullable", "type": { - "$id": "3727", + "$id": "3729", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43763,21 +43789,21 @@ "isHttpMetadata": false }, { - "$id": "3728", + "$id": "3730", "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": "3729", + "$id": "3731", "kind": "nullable", "type": { - "$id": "3730", + "$id": "3732", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3731", + "$id": "3733", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43802,13 +43828,13 @@ "isHttpMetadata": false }, { - "$id": "3732", + "$id": "3734", "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": "3733", + "$id": "3735", "kind": "model", "name": "FineTuningJobHyperparameters", "namespace": "OpenAI", @@ -43817,16 +43843,16 @@ "decorators": [], "properties": [ { - "$id": "3734", + "$id": "3736", "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": "3735", + "$id": "3737", "kind": "nullable", "type": { - "$id": "3736", + "$id": "3738", "kind": "union", "name": "FineTuningJobHyperparametersBatchSize", "variantTypes": [ @@ -43834,7 +43860,7 @@ "$ref": "1622" }, { - "$id": "3737", + "$id": "3739", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43860,13 +43886,13 @@ "isHttpMetadata": false }, { - "$id": "3738", + "$id": "3740", "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": "3739", + "$id": "3741", "kind": "union", "name": "FineTuningJobHyperparametersLearningRateMultiplier", "variantTypes": [ @@ -43874,7 +43900,7 @@ "$ref": "1624" }, { - "$id": "3740", + "$id": "3742", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -43898,13 +43924,13 @@ "isHttpMetadata": false }, { - "$id": "3741", + "$id": "3743", "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": "3742", + "$id": "3744", "kind": "union", "name": "FineTuningJobHyperparametersNEpochs", "variantTypes": [ @@ -43912,7 +43938,7 @@ "$ref": "1626" }, { - "$id": "3743", + "$id": "3745", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43951,13 +43977,13 @@ "isHttpMetadata": false }, { - "$id": "3744", + "$id": "3746", "kind": "property", "name": "model", "serializedName": "model", "doc": "The base model that is being fine-tuned.", "type": { - "$id": "3745", + "$id": "3747", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43977,7 +44003,7 @@ "isHttpMetadata": false }, { - "$id": "3746", + "$id": "3748", "kind": "property", "name": "object", "serializedName": "object", @@ -43999,13 +44025,13 @@ "isHttpMetadata": false }, { - "$id": "3747", + "$id": "3749", "kind": "property", "name": "organization_id", "serializedName": "organization_id", "doc": "The organization that owns the fine-tuning job.", "type": { - "$id": "3748", + "$id": "3750", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44025,7 +44051,7 @@ "isHttpMetadata": false }, { - "$id": "3749", + "$id": "3751", "kind": "property", "name": "result_files", "serializedName": "result_files", @@ -44047,7 +44073,7 @@ "isHttpMetadata": false }, { - "$id": "3750", + "$id": "3752", "kind": "property", "name": "status", "serializedName": "status", @@ -44069,16 +44095,16 @@ "isHttpMetadata": false }, { - "$id": "3751", + "$id": "3753", "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": "3752", + "$id": "3754", "kind": "nullable", "type": { - "$id": "3753", + "$id": "3755", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -44100,13 +44126,13 @@ "isHttpMetadata": false }, { - "$id": "3754", + "$id": "3756", "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": "3755", + "$id": "3757", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44126,16 +44152,16 @@ "isHttpMetadata": false }, { - "$id": "3756", + "$id": "3758", "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": "3757", + "$id": "3759", "kind": "nullable", "type": { - "$id": "3758", + "$id": "3760", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44157,20 +44183,20 @@ "isHttpMetadata": false }, { - "$id": "3759", + "$id": "3761", "kind": "property", "name": "integrations", "serializedName": "integrations", "doc": "A list of integrations to enable for this fine-tuning job.", "type": { - "$id": "3760", + "$id": "3762", "kind": "nullable", "type": { - "$id": "3761", + "$id": "3763", "kind": "array", "name": "ArrayFineTuningIntegration", "valueType": { - "$id": "3762", + "$id": "3764", "kind": "model", "name": "FineTuningIntegration", "namespace": "OpenAI", @@ -44178,7 +44204,7 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3763", + "$id": "3765", "kind": "property", "name": "type", "serializedName": "type", @@ -44200,12 +44226,12 @@ }, "properties": [ { - "$ref": "3763" + "$ref": "3765" } ], "discriminatedSubtypes": { "wandb": { - "$id": "3764", + "$id": "3766", "kind": "model", "name": "FineTuningIntegrationWandb", "namespace": "OpenAI", @@ -44214,17 +44240,17 @@ "discriminatorValue": "wandb", "decorators": [], "baseModel": { - "$ref": "3762" + "$ref": "3764" }, "properties": [ { - "$id": "3765", + "$id": "3767", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the integration being enabled for the fine-tuning job", "type": { - "$id": "3766", + "$id": "3768", "kind": "enumvalue", "name": "wandb", "value": "wandb", @@ -44232,14 +44258,14 @@ "$ref": "376" }, "enumType": { - "$id": "3767", + "$id": "3769", "kind": "enum", "decorators": [], "name": "FineTuningIntegrationType", "isGeneratedName": true, "namespace": "OpenAI", "valueType": { - "$id": "3768", + "$id": "3770", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -44248,16 +44274,16 @@ }, "values": [ { - "$id": "3769", + "$id": "3771", "kind": "enumvalue", "decorators": [], "name": "wandb", "value": "wandb", "valueType": { - "$ref": "3768" + "$ref": "3770" }, "enumType": { - "$ref": "3767" + "$ref": "3769" } } ], @@ -44286,13 +44312,13 @@ "isHttpMetadata": false }, { - "$id": "3770", + "$id": "3772", "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": "3771", + "$id": "3773", "kind": "model", "name": "FineTuningIntegrationWandbWandb", "namespace": "OpenAI", @@ -44301,13 +44327,13 @@ "decorators": [], "properties": [ { - "$id": "3772", + "$id": "3774", "kind": "property", "name": "project", "serializedName": "project", "doc": "The name of the project that the new run will be created under.", "type": { - "$id": "3773", + "$id": "3775", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44327,16 +44353,16 @@ "isHttpMetadata": false }, { - "$id": "3774", + "$id": "3776", "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": "3775", + "$id": "3777", "kind": "nullable", "type": { - "$id": "3776", + "$id": "3778", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44358,16 +44384,16 @@ "isHttpMetadata": false }, { - "$id": "3777", + "$id": "3779", "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": "3778", + "$id": "3780", "kind": "nullable", "type": { - "$id": "3779", + "$id": "3781", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44389,7 +44415,7 @@ "isHttpMetadata": false }, { - "$id": "3780", + "$id": "3782", "kind": "property", "name": "tags", "serializedName": "tags", @@ -44448,13 +44474,13 @@ "isHttpMetadata": false }, { - "$id": "3781", + "$id": "3783", "kind": "property", "name": "seed", "serializedName": "seed", "doc": "The seed used for the fine-tuning job.", "type": { - "$id": "3782", + "$id": "3784", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -44474,21 +44500,21 @@ "isHttpMetadata": false }, { - "$id": "3783", + "$id": "3785", "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": "3784", + "$id": "3786", "kind": "nullable", "type": { - "$id": "3785", + "$id": "3787", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3786", + "$id": "3788", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -44513,12 +44539,12 @@ "isHttpMetadata": false }, { - "$id": "3787", + "$id": "3789", "kind": "property", "name": "method", "serializedName": "method", "type": { - "$ref": "3557" + "$ref": "3559" }, "optional": true, "readOnly": false, @@ -44534,7 +44560,7 @@ "isHttpMetadata": false }, { - "$id": "3788", + "$id": "3790", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -44558,22 +44584,22 @@ ] }, { - "$ref": "3717" + "$ref": "3719" }, { - "$ref": "3733" + "$ref": "3735" }, { - "$ref": "3762" + "$ref": "3764" }, { - "$ref": "3764" + "$ref": "3766" }, { - "$ref": "3771" + "$ref": "3773" }, { - "$id": "3789", + "$id": "3791", "kind": "model", "name": "ListPaginatedFineTuningJobsResponse", "namespace": "OpenAI", @@ -44582,16 +44608,16 @@ "decorators": [], "properties": [ { - "$id": "3790", + "$id": "3792", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3791", + "$id": "3793", "kind": "array", "name": "ArrayFineTuningJob", "valueType": { - "$ref": "3706" + "$ref": "3708" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -44610,12 +44636,12 @@ "isHttpMetadata": false }, { - "$id": "3792", + "$id": "3794", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3793", + "$id": "3795", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -44635,7 +44661,7 @@ "isHttpMetadata": false }, { - "$id": "3794", + "$id": "3796", "kind": "property", "name": "object", "serializedName": "object", @@ -44658,7 +44684,7 @@ ] }, { - "$id": "3795", + "$id": "3797", "kind": "model", "name": "ListFineTuningJobCheckpointsResponse", "namespace": "OpenAI", @@ -44667,16 +44693,16 @@ "decorators": [], "properties": [ { - "$id": "3796", + "$id": "3798", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3797", + "$id": "3799", "kind": "array", "name": "ArrayFineTuningJobCheckpoint", "valueType": { - "$id": "3798", + "$id": "3800", "kind": "model", "name": "FineTuningJobCheckpoint", "namespace": "OpenAI", @@ -44686,13 +44712,13 @@ "decorators": [], "properties": [ { - "$id": "3799", + "$id": "3801", "kind": "property", "name": "id", "serializedName": "id", "doc": "The checkpoint identifier, which can be referenced in the API endpoints.", "type": { - "$id": "3800", + "$id": "3802", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44712,18 +44738,18 @@ "isHttpMetadata": false }, { - "$id": "3801", + "$id": "3803", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the checkpoint was created.", "type": { - "$id": "3802", + "$id": "3804", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3803", + "$id": "3805", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -44746,13 +44772,13 @@ "isHttpMetadata": false }, { - "$id": "3804", + "$id": "3806", "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": "3805", + "$id": "3807", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44772,13 +44798,13 @@ "isHttpMetadata": false }, { - "$id": "3806", + "$id": "3808", "kind": "property", "name": "step_number", "serializedName": "step_number", "doc": "The step number that the checkpoint was created at.", "type": { - "$id": "3807", + "$id": "3809", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -44798,13 +44824,13 @@ "isHttpMetadata": false }, { - "$id": "3808", + "$id": "3810", "kind": "property", "name": "metrics", "serializedName": "metrics", "doc": "Metrics at the step number during the fine-tuning job.", "type": { - "$id": "3809", + "$id": "3811", "kind": "model", "name": "FineTuningJobCheckpointMetrics", "namespace": "OpenAI", @@ -44813,12 +44839,12 @@ "decorators": [], "properties": [ { - "$id": "3810", + "$id": "3812", "kind": "property", "name": "step", "serializedName": "step", "type": { - "$id": "3811", + "$id": "3813", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -44838,12 +44864,12 @@ "isHttpMetadata": false }, { - "$id": "3812", + "$id": "3814", "kind": "property", "name": "train_loss", "serializedName": "train_loss", "type": { - "$id": "3813", + "$id": "3815", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -44863,12 +44889,12 @@ "isHttpMetadata": false }, { - "$id": "3814", + "$id": "3816", "kind": "property", "name": "train_mean_token_accuracy", "serializedName": "train_mean_token_accuracy", "type": { - "$id": "3815", + "$id": "3817", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -44888,12 +44914,12 @@ "isHttpMetadata": false }, { - "$id": "3816", + "$id": "3818", "kind": "property", "name": "valid_loss", "serializedName": "valid_loss", "type": { - "$id": "3817", + "$id": "3819", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -44913,12 +44939,12 @@ "isHttpMetadata": false }, { - "$id": "3818", + "$id": "3820", "kind": "property", "name": "valid_mean_token_accuracy", "serializedName": "valid_mean_token_accuracy", "type": { - "$id": "3819", + "$id": "3821", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -44938,12 +44964,12 @@ "isHttpMetadata": false }, { - "$id": "3820", + "$id": "3822", "kind": "property", "name": "full_valid_loss", "serializedName": "full_valid_loss", "type": { - "$id": "3821", + "$id": "3823", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -44963,12 +44989,12 @@ "isHttpMetadata": false }, { - "$id": "3822", + "$id": "3824", "kind": "property", "name": "full_valid_mean_token_accuracy", "serializedName": "full_valid_mean_token_accuracy", "type": { - "$id": "3823", + "$id": "3825", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -45003,13 +45029,13 @@ "isHttpMetadata": false }, { - "$id": "3824", + "$id": "3826", "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": "3825", + "$id": "3827", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45029,7 +45055,7 @@ "isHttpMetadata": false }, { - "$id": "3826", + "$id": "3828", "kind": "property", "name": "object", "serializedName": "object", @@ -45069,7 +45095,7 @@ "isHttpMetadata": false }, { - "$id": "3827", + "$id": "3829", "kind": "property", "name": "object", "serializedName": "object", @@ -45090,15 +45116,15 @@ "isHttpMetadata": false }, { - "$id": "3828", + "$id": "3830", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "3829", + "$id": "3831", "kind": "nullable", "type": { - "$id": "3830", + "$id": "3832", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45120,15 +45146,15 @@ "isHttpMetadata": false }, { - "$id": "3831", + "$id": "3833", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "3832", + "$id": "3834", "kind": "nullable", "type": { - "$id": "3833", + "$id": "3835", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45150,12 +45176,12 @@ "isHttpMetadata": false }, { - "$id": "3834", + "$id": "3836", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3835", + "$id": "3837", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45177,13 +45203,13 @@ ] }, { - "$ref": "3798" + "$ref": "3800" }, { - "$ref": "3809" + "$ref": "3811" }, { - "$id": "3836", + "$id": "3838", "kind": "model", "name": "ListFineTuningJobEventsResponse", "namespace": "OpenAI", @@ -45192,16 +45218,16 @@ "decorators": [], "properties": [ { - "$id": "3837", + "$id": "3839", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3838", + "$id": "3840", "kind": "array", "name": "ArrayFineTuningJobEvent", "valueType": { - "$id": "3839", + "$id": "3841", "kind": "model", "name": "FineTuningJobEvent", "namespace": "OpenAI", @@ -45211,7 +45237,7 @@ "decorators": [], "properties": [ { - "$id": "3840", + "$id": "3842", "kind": "property", "name": "object", "serializedName": "object", @@ -45233,13 +45259,13 @@ "isHttpMetadata": false }, { - "$id": "3841", + "$id": "3843", "kind": "property", "name": "id", "serializedName": "id", "doc": "The object identifier.", "type": { - "$id": "3842", + "$id": "3844", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45259,18 +45285,18 @@ "isHttpMetadata": false }, { - "$id": "3843", + "$id": "3845", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the fine-tuning job was created.", "type": { - "$id": "3844", + "$id": "3846", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3845", + "$id": "3847", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -45293,7 +45319,7 @@ "isHttpMetadata": false }, { - "$id": "3846", + "$id": "3848", "kind": "property", "name": "level", "serializedName": "level", @@ -45315,13 +45341,13 @@ "isHttpMetadata": false }, { - "$id": "3847", + "$id": "3849", "kind": "property", "name": "message", "serializedName": "message", "doc": "The message of the event.", "type": { - "$id": "3848", + "$id": "3850", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45341,7 +45367,7 @@ "isHttpMetadata": false }, { - "$id": "3849", + "$id": "3851", "kind": "property", "name": "type", "serializedName": "type", @@ -45363,13 +45389,13 @@ "isHttpMetadata": false }, { - "$id": "3850", + "$id": "3852", "kind": "property", "name": "data", "serializedName": "data", "doc": "The data associated with the event.", "type": { - "$id": "3851", + "$id": "3853", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -45407,7 +45433,7 @@ "isHttpMetadata": false }, { - "$id": "3852", + "$id": "3854", "kind": "property", "name": "object", "serializedName": "object", @@ -45428,12 +45454,12 @@ "isHttpMetadata": false }, { - "$id": "3853", + "$id": "3855", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3854", + "$id": "3856", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45455,10 +45481,10 @@ ] }, { - "$ref": "3839" + "$ref": "3841" }, { - "$id": "3855", + "$id": "3857", "kind": "model", "name": "RunGraderRequest", "namespace": "OpenAI", @@ -45467,30 +45493,30 @@ "decorators": [], "properties": [ { - "$id": "3856", + "$id": "3858", "kind": "property", "name": "grader", "serializedName": "grader", "doc": "The grader used for the fine-tuning job.", "type": { - "$id": "3857", + "$id": "3859", "kind": "union", "name": "RunGraderRequestGrader", "variantTypes": [ { - "$ref": "3592" + "$ref": "3594" }, { - "$ref": "3595" + "$ref": "3597" }, { - "$ref": "3613" + "$ref": "3615" }, { - "$ref": "3622" + "$ref": "3624" }, { - "$ref": "3656" + "$ref": "3658" } ], "namespace": "OpenAI", @@ -45510,13 +45536,13 @@ "isHttpMetadata": false }, { - "$id": "3858", + "$id": "3860", "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": "3859", + "$id": "3861", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -45536,13 +45562,13 @@ "isHttpMetadata": false }, { - "$id": "3860", + "$id": "3862", "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": "3861", + "$id": "3863", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45564,7 +45590,7 @@ ] }, { - "$id": "3862", + "$id": "3864", "kind": "model", "name": "RunGraderResponse", "namespace": "OpenAI", @@ -45573,11 +45599,11 @@ "decorators": [], "properties": [ { - "$id": "3863", + "$id": "3865", "kind": "property", "name": "reward", "type": { - "$id": "3864", + "$id": "3866", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -45593,11 +45619,11 @@ "isHttpMetadata": false }, { - "$id": "3865", + "$id": "3867", "kind": "property", "name": "metadata", "type": { - "$id": "3866", + "$id": "3868", "kind": "model", "name": "RunGraderResponseMetadata", "namespace": "OpenAI", @@ -45606,11 +45632,11 @@ "decorators": [], "properties": [ { - "$id": "3867", + "$id": "3869", "kind": "property", "name": "name", "type": { - "$id": "3868", + "$id": "3870", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45626,11 +45652,11 @@ "isHttpMetadata": false }, { - "$id": "3869", + "$id": "3871", "kind": "property", "name": "type", "type": { - "$id": "3870", + "$id": "3872", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45646,11 +45672,11 @@ "isHttpMetadata": false }, { - "$id": "3871", + "$id": "3873", "kind": "property", "name": "errors", "type": { - "$id": "3872", + "$id": "3874", "kind": "model", "name": "RunGraderResponseMetadataErrors", "namespace": "OpenAI", @@ -45659,11 +45685,11 @@ "decorators": [], "properties": [ { - "$id": "3873", + "$id": "3875", "kind": "property", "name": "formula_parse_error", "type": { - "$id": "3874", + "$id": "3876", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45679,11 +45705,11 @@ "isHttpMetadata": false }, { - "$id": "3875", + "$id": "3877", "kind": "property", "name": "sample_parse_error", "type": { - "$id": "3876", + "$id": "3878", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45699,11 +45725,11 @@ "isHttpMetadata": false }, { - "$id": "3877", + "$id": "3879", "kind": "property", "name": "truncated_observation_error", "type": { - "$id": "3878", + "$id": "3880", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45719,11 +45745,11 @@ "isHttpMetadata": false }, { - "$id": "3879", + "$id": "3881", "kind": "property", "name": "unresponsive_reward_error", "type": { - "$id": "3880", + "$id": "3882", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45739,11 +45765,11 @@ "isHttpMetadata": false }, { - "$id": "3881", + "$id": "3883", "kind": "property", "name": "invalid_variable_error", "type": { - "$id": "3882", + "$id": "3884", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45759,11 +45785,11 @@ "isHttpMetadata": false }, { - "$id": "3883", + "$id": "3885", "kind": "property", "name": "other_error", "type": { - "$id": "3884", + "$id": "3886", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45779,11 +45805,11 @@ "isHttpMetadata": false }, { - "$id": "3885", + "$id": "3887", "kind": "property", "name": "python_grader_server_error", "type": { - "$id": "3886", + "$id": "3888", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45799,14 +45825,14 @@ "isHttpMetadata": false }, { - "$id": "3887", + "$id": "3889", "kind": "property", "name": "python_grader_server_error_type", "type": { - "$id": "3888", + "$id": "3890", "kind": "nullable", "type": { - "$id": "3889", + "$id": "3891", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45824,11 +45850,11 @@ "isHttpMetadata": false }, { - "$id": "3890", + "$id": "3892", "kind": "property", "name": "python_grader_runtime_error", "type": { - "$id": "3891", + "$id": "3893", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45844,14 +45870,14 @@ "isHttpMetadata": false }, { - "$id": "3892", + "$id": "3894", "kind": "property", "name": "python_grader_runtime_error_details", "type": { - "$id": "3893", + "$id": "3895", "kind": "nullable", "type": { - "$id": "3894", + "$id": "3896", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45869,11 +45895,11 @@ "isHttpMetadata": false }, { - "$id": "3895", + "$id": "3897", "kind": "property", "name": "model_grader_server_error", "type": { - "$id": "3896", + "$id": "3898", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45889,11 +45915,11 @@ "isHttpMetadata": false }, { - "$id": "3897", + "$id": "3899", "kind": "property", "name": "model_grader_refusal_error", "type": { - "$id": "3898", + "$id": "3900", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45909,11 +45935,11 @@ "isHttpMetadata": false }, { - "$id": "3899", + "$id": "3901", "kind": "property", "name": "model_grader_parse_error", "type": { - "$id": "3900", + "$id": "3902", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45929,14 +45955,14 @@ "isHttpMetadata": false }, { - "$id": "3901", + "$id": "3903", "kind": "property", "name": "model_grader_server_error_details", "type": { - "$id": "3902", + "$id": "3904", "kind": "nullable", "type": { - "$id": "3903", + "$id": "3905", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45965,11 +45991,11 @@ "isHttpMetadata": false }, { - "$id": "3904", + "$id": "3906", "kind": "property", "name": "execution_time", "type": { - "$id": "3905", + "$id": "3907", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -45985,11 +46011,11 @@ "isHttpMetadata": false }, { - "$id": "3906", + "$id": "3908", "kind": "property", "name": "scores", "type": { - "$id": "3907", + "$id": "3909", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -46005,14 +46031,14 @@ "isHttpMetadata": false }, { - "$id": "3908", + "$id": "3910", "kind": "property", "name": "token_usage", "type": { - "$id": "3909", + "$id": "3911", "kind": "nullable", "type": { - "$id": "3910", + "$id": "3912", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -46030,14 +46056,14 @@ "isHttpMetadata": false }, { - "$id": "3911", + "$id": "3913", "kind": "property", "name": "sampled_model_name", "type": { - "$id": "3912", + "$id": "3914", "kind": "nullable", "type": { - "$id": "3913", + "$id": "3915", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46066,11 +46092,11 @@ "isHttpMetadata": false }, { - "$id": "3914", + "$id": "3916", "kind": "property", "name": "sub_rewards", "type": { - "$id": "3915", + "$id": "3917", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -46086,11 +46112,11 @@ "isHttpMetadata": false }, { - "$id": "3916", + "$id": "3918", "kind": "property", "name": "model_grader_token_usage_per_model", "type": { - "$id": "3917", + "$id": "3919", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -46108,13 +46134,13 @@ ] }, { - "$ref": "3866" + "$ref": "3868" }, { - "$ref": "3872" + "$ref": "3874" }, { - "$id": "3918", + "$id": "3920", "kind": "model", "name": "ValidateGraderRequest", "namespace": "OpenAI", @@ -46123,30 +46149,30 @@ "decorators": [], "properties": [ { - "$id": "3919", + "$id": "3921", "kind": "property", "name": "grader", "serializedName": "grader", "doc": "The grader used for the fine-tuning job.", "type": { - "$id": "3920", + "$id": "3922", "kind": "union", "name": "ValidateGraderRequestGrader", "variantTypes": [ { - "$ref": "3592" + "$ref": "3594" }, { - "$ref": "3595" + "$ref": "3597" }, { - "$ref": "3613" + "$ref": "3615" }, { - "$ref": "3622" + "$ref": "3624" }, { - "$ref": "3656" + "$ref": "3658" } ], "namespace": "OpenAI", @@ -46168,7 +46194,7 @@ ] }, { - "$id": "3921", + "$id": "3923", "kind": "model", "name": "ValidateGraderResponse", "namespace": "OpenAI", @@ -46177,29 +46203,29 @@ "decorators": [], "properties": [ { - "$id": "3922", + "$id": "3924", "kind": "property", "name": "grader", "doc": "The grader used for the fine-tuning job.", "type": { - "$id": "3923", + "$id": "3925", "kind": "union", "name": "ValidateGraderResponseGrader", "variantTypes": [ { - "$ref": "3592" + "$ref": "3594" }, { - "$ref": "3595" + "$ref": "3597" }, { - "$ref": "3613" + "$ref": "3615" }, { - "$ref": "3622" + "$ref": "3624" }, { - "$ref": "3656" + "$ref": "3658" } ], "namespace": "OpenAI", @@ -46217,7 +46243,7 @@ ] }, { - "$id": "3924", + "$id": "3926", "kind": "model", "name": "EvalList", "namespace": "OpenAI", @@ -46227,7 +46253,7 @@ "decorators": [], "properties": [ { - "$id": "3925", + "$id": "3927", "kind": "property", "name": "object", "serializedName": "object", @@ -46249,17 +46275,17 @@ "isHttpMetadata": false }, { - "$id": "3926", + "$id": "3928", "kind": "property", "name": "data", "serializedName": "data", "doc": "An array of eval objects.", "type": { - "$id": "3927", + "$id": "3929", "kind": "array", "name": "ArrayEval", "valueType": { - "$id": "3928", + "$id": "3930", "kind": "model", "name": "Eval", "namespace": "OpenAI", @@ -46269,7 +46295,7 @@ "decorators": [], "properties": [ { - "$id": "3929", + "$id": "3931", "kind": "property", "name": "object", "serializedName": "object", @@ -46291,13 +46317,13 @@ "isHttpMetadata": false }, { - "$id": "3930", + "$id": "3932", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for the evaluation.", "type": { - "$id": "3931", + "$id": "3933", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46317,13 +46343,13 @@ "isHttpMetadata": false }, { - "$id": "3932", + "$id": "3934", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the evaluation.", "type": { - "$id": "3933", + "$id": "3935", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46343,13 +46369,13 @@ "isHttpMetadata": false }, { - "$id": "3934", + "$id": "3936", "kind": "property", "name": "data_source_config", "serializedName": "data_source_config", "doc": "Configuration of data sources used in runs of the evaluation.", "type": { - "$id": "3935", + "$id": "3937", "kind": "model", "name": "EvalDataSourceConfigResource", "namespace": "OpenAI", @@ -46357,7 +46383,7 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3936", + "$id": "3938", "kind": "property", "name": "type", "serializedName": "type", @@ -46379,12 +46405,12 @@ }, "properties": [ { - "$ref": "3936" + "$ref": "3938" } ], "discriminatedSubtypes": { "custom": { - "$id": "3937", + "$id": "3939", "kind": "model", "name": "EvalCustomDataSourceConfigResource", "namespace": "OpenAI", @@ -46394,17 +46420,17 @@ "discriminatorValue": "custom", "decorators": [], "baseModel": { - "$ref": "3935" + "$ref": "3937" }, "properties": [ { - "$id": "3938", + "$id": "3940", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `custom`.", "type": { - "$id": "3939", + "$id": "3941", "kind": "enumvalue", "name": "custom", "value": "custom", @@ -46412,14 +46438,14 @@ "$ref": "388" }, "enumType": { - "$id": "3940", + "$id": "3942", "kind": "enum", "decorators": [], "name": "EvalDataSourceConfigType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "3941", + "$id": "3943", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -46428,42 +46454,42 @@ }, "values": [ { - "$id": "3942", + "$id": "3944", "kind": "enumvalue", "decorators": [], "name": "custom", "value": "custom", "valueType": { - "$ref": "3941" + "$ref": "3943" }, "enumType": { - "$ref": "3940" + "$ref": "3942" } }, { - "$id": "3943", + "$id": "3945", "kind": "enumvalue", "decorators": [], "name": "logs", "value": "logs", "valueType": { - "$ref": "3941" + "$ref": "3943" }, "enumType": { - "$ref": "3940" + "$ref": "3942" } }, { - "$id": "3944", + "$id": "3946", "kind": "enumvalue", "decorators": [], "name": "stored_completions", "value": "stored_completions", "valueType": { - "$ref": "3941" + "$ref": "3943" }, "enumType": { - "$ref": "3940" + "$ref": "3942" } } ], @@ -46492,23 +46518,23 @@ "isHttpMetadata": false }, { - "$id": "3945", + "$id": "3947", "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": "3946", + "$id": "3948", "kind": "dict", "keyType": { - "$id": "3947", + "$id": "3949", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, "valueType": { - "$id": "3948", + "$id": "3950", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -46532,7 +46558,7 @@ ] }, "stored_completions": { - "$id": "3949", + "$id": "3951", "kind": "model", "name": "EvalStoredCompletionsDataSourceConfigResource", "namespace": "OpenAI", @@ -46543,17 +46569,17 @@ "discriminatorValue": "stored_completions", "decorators": [], "baseModel": { - "$ref": "3935" + "$ref": "3937" }, "properties": [ { - "$id": "3950", + "$id": "3952", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `stored_completions`.", "type": { - "$id": "3951", + "$id": "3953", "kind": "enumvalue", "name": "stored_completions", "value": "stored_completions", @@ -46561,7 +46587,7 @@ "$ref": "388" }, "enumType": { - "$ref": "3940" + "$ref": "3942" }, "decorators": [] }, @@ -46579,7 +46605,7 @@ "isHttpMetadata": false }, { - "$id": "3952", + "$id": "3954", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -46601,13 +46627,13 @@ "isHttpMetadata": false }, { - "$id": "3953", + "$id": "3955", "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": "3946" + "$ref": "3948" }, "optional": false, "readOnly": false, @@ -46625,7 +46651,7 @@ ] }, "logs": { - "$id": "3954", + "$id": "3956", "kind": "model", "name": "EvalLogsDataSourceConfigResource", "namespace": "OpenAI", @@ -46635,17 +46661,17 @@ "discriminatorValue": "logs", "decorators": [], "baseModel": { - "$ref": "3935" + "$ref": "3937" }, "properties": [ { - "$id": "3955", + "$id": "3957", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `logs`.", "type": { - "$id": "3956", + "$id": "3958", "kind": "enumvalue", "name": "logs", "value": "logs", @@ -46653,7 +46679,7 @@ "$ref": "388" }, "enumType": { - "$ref": "3940" + "$ref": "3942" }, "decorators": [] }, @@ -46671,7 +46697,7 @@ "isHttpMetadata": false }, { - "$id": "3957", + "$id": "3959", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -46693,13 +46719,13 @@ "isHttpMetadata": false }, { - "$id": "3958", + "$id": "3960", "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": "3946" + "$ref": "3948" }, "optional": false, "readOnly": false, @@ -46732,20 +46758,20 @@ "isHttpMetadata": false }, { - "$id": "3959", + "$id": "3961", "kind": "property", "name": "testing_criteria", "serializedName": "testing_criteria", "doc": "A list of testing criteria.", "type": { - "$id": "3960", + "$id": "3962", "kind": "nullable", "type": { - "$id": "3961", + "$id": "3963", "kind": "array", "name": "ArrayEvalGraderResource", "valueType": { - "$id": "3962", + "$id": "3964", "kind": "model", "name": "EvalGraderResource", "namespace": "OpenAI", @@ -46753,7 +46779,7 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3963", + "$id": "3965", "kind": "property", "name": "type", "serializedName": "type", @@ -46775,12 +46801,12 @@ }, "properties": [ { - "$ref": "3963" + "$ref": "3965" } ], "discriminatedSubtypes": { "label_model": { - "$id": "3964", + "$id": "3966", "kind": "model", "name": "EvalGraderLabelModelResource", "namespace": "OpenAI", @@ -46789,17 +46815,17 @@ "discriminatorValue": "label_model", "decorators": [], "baseModel": { - "$ref": "3962" + "$ref": "3964" }, "properties": [ { - "$id": "3965", + "$id": "3967", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `label_model`.", "type": { - "$ref": "3665" + "$ref": "3667" }, "optional": false, "readOnly": false, @@ -46815,13 +46841,13 @@ "isHttpMetadata": false }, { - "$id": "3966", + "$id": "3968", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3967", + "$id": "3969", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46841,13 +46867,13 @@ "isHttpMetadata": false }, { - "$id": "3968", + "$id": "3970", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation. Must support structured outputs.", "type": { - "$id": "3969", + "$id": "3971", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46867,12 +46893,12 @@ "isHttpMetadata": false }, { - "$id": "3970", + "$id": "3972", "kind": "property", "name": "input", "serializedName": "input", "type": { - "$ref": "3632" + "$ref": "3634" }, "optional": false, "readOnly": false, @@ -46888,7 +46914,7 @@ "isHttpMetadata": false }, { - "$id": "3971", + "$id": "3973", "kind": "property", "name": "labels", "serializedName": "labels", @@ -46910,7 +46936,7 @@ "isHttpMetadata": false }, { - "$id": "3972", + "$id": "3974", "kind": "property", "name": "passing_labels", "serializedName": "passing_labels", @@ -46934,7 +46960,7 @@ ] }, "text_similarity": { - "$id": "3973", + "$id": "3975", "kind": "model", "name": "EvalGraderTextSimilarityResource", "namespace": "OpenAI", @@ -46943,17 +46969,17 @@ "discriminatorValue": "text_similarity", "decorators": [], "baseModel": { - "$ref": "3962" + "$ref": "3964" }, "properties": [ { - "$id": "3974", + "$id": "3976", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of grader.", "type": { - "$ref": "3597" + "$ref": "3599" }, "optional": false, "readOnly": false, @@ -46969,13 +46995,13 @@ "isHttpMetadata": false }, { - "$id": "3975", + "$id": "3977", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3976", + "$id": "3978", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46995,13 +47021,13 @@ "isHttpMetadata": false }, { - "$id": "3977", + "$id": "3979", "kind": "property", "name": "input", "serializedName": "input", "doc": "The text being graded.", "type": { - "$id": "3978", + "$id": "3980", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47021,13 +47047,13 @@ "isHttpMetadata": false }, { - "$id": "3979", + "$id": "3981", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The text being graded against.", "type": { - "$id": "3980", + "$id": "3982", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47047,7 +47073,7 @@ "isHttpMetadata": false }, { - "$id": "3981", + "$id": "3983", "kind": "property", "name": "evaluation_metric", "serializedName": "evaluation_metric", @@ -47069,13 +47095,13 @@ "isHttpMetadata": false }, { - "$id": "3982", + "$id": "3984", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "3983", + "$id": "3985", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -47097,7 +47123,7 @@ ] }, "python": { - "$id": "3984", + "$id": "3986", "kind": "model", "name": "EvalGraderPythonResource", "namespace": "OpenAI", @@ -47106,17 +47132,17 @@ "discriminatorValue": "python", "decorators": [], "baseModel": { - "$ref": "3962" + "$ref": "3964" }, "properties": [ { - "$id": "3985", + "$id": "3987", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `python`.", "type": { - "$ref": "3615" + "$ref": "3617" }, "optional": false, "readOnly": false, @@ -47132,13 +47158,13 @@ "isHttpMetadata": false }, { - "$id": "3986", + "$id": "3988", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3987", + "$id": "3989", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47158,13 +47184,13 @@ "isHttpMetadata": false }, { - "$id": "3988", + "$id": "3990", "kind": "property", "name": "source", "serializedName": "source", "doc": "The source code of the python script.", "type": { - "$id": "3989", + "$id": "3991", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47184,13 +47210,13 @@ "isHttpMetadata": false }, { - "$id": "3990", + "$id": "3992", "kind": "property", "name": "image_tag", "serializedName": "image_tag", "doc": "The image tag to use for the python script.", "type": { - "$id": "3991", + "$id": "3993", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47210,13 +47236,13 @@ "isHttpMetadata": false }, { - "$id": "3992", + "$id": "3994", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "3993", + "$id": "3995", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -47238,7 +47264,7 @@ ] }, "score_model": { - "$id": "3994", + "$id": "3996", "kind": "model", "name": "EvalGraderScoreModelResource", "namespace": "OpenAI", @@ -47247,17 +47273,17 @@ "discriminatorValue": "score_model", "decorators": [], "baseModel": { - "$ref": "3962" + "$ref": "3964" }, "properties": [ { - "$id": "3995", + "$id": "3997", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `score_model`.", "type": { - "$ref": "3624" + "$ref": "3626" }, "optional": false, "readOnly": false, @@ -47273,13 +47299,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", @@ -47299,13 +47325,13 @@ "isHttpMetadata": false }, { - "$id": "3998", + "$id": "4000", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation.", "type": { - "$id": "3999", + "$id": "4001", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47325,13 +47351,13 @@ "isHttpMetadata": false }, { - "$id": "4000", + "$id": "4002", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "doc": "The sampling parameters for the model.", "type": { - "$id": "4001", + "$id": "4003", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -47351,13 +47377,13 @@ "isHttpMetadata": false }, { - "$id": "4002", + "$id": "4004", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$ref": "3632" + "$ref": "3634" }, "optional": false, "readOnly": false, @@ -47373,7 +47399,7 @@ "isHttpMetadata": false }, { - "$id": "4003", + "$id": "4005", "kind": "property", "name": "range", "serializedName": "range", @@ -47395,13 +47421,13 @@ "isHttpMetadata": false }, { - "$id": "4004", + "$id": "4006", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "4005", + "$id": "4007", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -47443,18 +47469,18 @@ "isHttpMetadata": false }, { - "$id": "4006", + "$id": "4008", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the eval was created.", "type": { - "$id": "4007", + "$id": "4009", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "4008", + "$id": "4010", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -47477,7 +47503,7 @@ "isHttpMetadata": false }, { - "$id": "4009", + "$id": "4011", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -47517,13 +47543,13 @@ "isHttpMetadata": false }, { - "$id": "4010", + "$id": "4012", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The identifier of the first eval in the data array.", "type": { - "$id": "4011", + "$id": "4013", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47543,13 +47569,13 @@ "isHttpMetadata": false }, { - "$id": "4012", + "$id": "4014", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The identifier of the last eval in the data array.", "type": { - "$id": "4013", + "$id": "4015", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47569,13 +47595,13 @@ "isHttpMetadata": false }, { - "$id": "4014", + "$id": "4016", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates whether there are more evals available.", "type": { - "$id": "4015", + "$id": "4017", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -47597,37 +47623,37 @@ ] }, { - "$ref": "3928" - }, - { - "$ref": "3935" + "$ref": "3930" }, { "$ref": "3937" }, { - "$ref": "3949" + "$ref": "3939" }, { - "$ref": "3954" + "$ref": "3951" }, { - "$ref": "3962" + "$ref": "3956" }, { "$ref": "3964" }, { - "$ref": "3973" + "$ref": "3966" }, { - "$ref": "3984" + "$ref": "3975" }, { - "$ref": "3994" + "$ref": "3986" }, { - "$id": "4016", + "$ref": "3996" + }, + { + "$id": "4018", "kind": "model", "name": "CreateEvalRequest", "namespace": "OpenAI", @@ -47636,13 +47662,13 @@ "decorators": [], "properties": [ { - "$id": "4017", + "$id": "4019", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the evaluation.", "type": { - "$id": "4018", + "$id": "4020", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47662,7 +47688,7 @@ "isHttpMetadata": false }, { - "$id": "4019", + "$id": "4021", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -47684,13 +47710,13 @@ "isHttpMetadata": false }, { - "$id": "4020", + "$id": "4022", "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": "4021", + "$id": "4023", "kind": "model", "name": "EvalDataSourceConfigParams", "namespace": "OpenAI", @@ -47698,7 +47724,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "4022", + "$id": "4024", "kind": "property", "name": "type", "serializedName": "type", @@ -47720,12 +47746,12 @@ }, "properties": [ { - "$ref": "4022" + "$ref": "4024" } ], "discriminatedSubtypes": { "custom": { - "$id": "4023", + "$id": "4025", "kind": "model", "name": "EvalCustomDataSourceConfigParams", "namespace": "OpenAI", @@ -47735,17 +47761,17 @@ "discriminatorValue": "custom", "decorators": [], "baseModel": { - "$ref": "4021" + "$ref": "4023" }, "properties": [ { - "$id": "4024", + "$id": "4026", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `custom`.", "type": { - "$ref": "3939" + "$ref": "3941" }, "optional": false, "readOnly": false, @@ -47761,13 +47787,13 @@ "isHttpMetadata": false }, { - "$id": "4025", + "$id": "4027", "kind": "property", "name": "item_schema", "serializedName": "item_schema", "doc": "The json schema for each row in the data source.", "type": { - "$ref": "3946" + "$ref": "3948" }, "optional": false, "readOnly": false, @@ -47783,13 +47809,13 @@ "isHttpMetadata": false }, { - "$id": "4026", + "$id": "4028", "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": "4027", + "$id": "4029", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -47811,7 +47837,7 @@ ] }, "logs": { - "$id": "4028", + "$id": "4030", "kind": "model", "name": "EvalLogsDataSourceConfigParams", "namespace": "OpenAI", @@ -47821,17 +47847,17 @@ "discriminatorValue": "logs", "decorators": [], "baseModel": { - "$ref": "4021" + "$ref": "4023" }, "properties": [ { - "$id": "4029", + "$id": "4031", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `logs`.", "type": { - "$ref": "3956" + "$ref": "3958" }, "optional": false, "readOnly": false, @@ -47847,7 +47873,7 @@ "isHttpMetadata": false }, { - "$id": "4030", + "$id": "4032", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -47871,7 +47897,7 @@ ] }, "stored_completions": { - "$id": "4031", + "$id": "4033", "kind": "model", "name": "EvalStoredCompletionsDataSourceConfigParams", "namespace": "OpenAI", @@ -47882,17 +47908,17 @@ "discriminatorValue": "stored_completions", "decorators": [], "baseModel": { - "$ref": "4021" + "$ref": "4023" }, "properties": [ { - "$id": "4032", + "$id": "4034", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `stored_completions`.", "type": { - "$ref": "3951" + "$ref": "3953" }, "optional": false, "readOnly": false, @@ -47908,13 +47934,13 @@ "isHttpMetadata": false }, { - "$id": "4033", + "$id": "4035", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Metadata filters for the stored completions data source.", "type": { - "$ref": "3946" + "$ref": "3948" }, "optional": true, "readOnly": false, @@ -47947,17 +47973,17 @@ "isHttpMetadata": false }, { - "$id": "4034", + "$id": "4036", "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": "4035", + "$id": "4037", "kind": "array", "name": "ArrayEvalGraderParams", "valueType": { - "$id": "4036", + "$id": "4038", "kind": "model", "name": "EvalGraderParams", "namespace": "OpenAI", @@ -47965,7 +47991,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "4037", + "$id": "4039", "kind": "property", "name": "type", "serializedName": "type", @@ -47987,12 +48013,12 @@ }, "properties": [ { - "$ref": "4037" + "$ref": "4039" } ], "discriminatedSubtypes": { "label_model": { - "$id": "4038", + "$id": "4040", "kind": "model", "name": "EvalGraderLabelModelParams", "namespace": "OpenAI", @@ -48002,17 +48028,17 @@ "discriminatorValue": "label_model", "decorators": [], "baseModel": { - "$ref": "4036" + "$ref": "4038" }, "properties": [ { - "$id": "4039", + "$id": "4041", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `label_model`.", "type": { - "$ref": "3665" + "$ref": "3667" }, "optional": false, "readOnly": false, @@ -48028,13 +48054,13 @@ "isHttpMetadata": false }, { - "$id": "4040", + "$id": "4042", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "4041", + "$id": "4043", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48054,13 +48080,13 @@ "isHttpMetadata": false }, { - "$id": "4042", + "$id": "4044", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation. Must support structured outputs.", "type": { - "$id": "4043", + "$id": "4045", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48080,22 +48106,22 @@ "isHttpMetadata": false }, { - "$id": "4044", + "$id": "4046", "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": "4045", + "$id": "4047", "kind": "array", "name": "ArrayCreateEvalItem", "valueType": { - "$id": "4046", + "$id": "4048", "kind": "union", "name": "CreateEvalItem", "variantTypes": [ { - "$id": "4047", + "$id": "4049", "kind": "model", "name": "EvalGraderLabelModelParamsInput", "namespace": "OpenAI", @@ -48104,13 +48130,13 @@ "decorators": [], "properties": [ { - "$id": "4048", + "$id": "4050", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message (e.g. \"system\", \"assistant\", \"user\").", "type": { - "$id": "4049", + "$id": "4051", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48130,13 +48156,13 @@ "isHttpMetadata": false }, { - "$id": "4050", + "$id": "4052", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message.", "type": { - "$id": "4051", + "$id": "4053", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48158,7 +48184,7 @@ ] }, { - "$ref": "3633" + "$ref": "3635" } ], "namespace": "OpenAI", @@ -48181,7 +48207,7 @@ "isHttpMetadata": false }, { - "$id": "4052", + "$id": "4054", "kind": "property", "name": "labels", "serializedName": "labels", @@ -48203,7 +48229,7 @@ "isHttpMetadata": false }, { - "$id": "4053", + "$id": "4055", "kind": "property", "name": "passing_labels", "serializedName": "passing_labels", @@ -48227,7 +48253,7 @@ ] }, "string_check": { - "$id": "4054", + "$id": "4056", "kind": "model", "name": "EvalGraderStringCheckParams", "namespace": "OpenAI", @@ -48236,17 +48262,17 @@ "discriminatorValue": "string_check", "decorators": [], "baseModel": { - "$ref": "4036" + "$ref": "4038" }, "properties": [ { - "$id": "4055", + "$id": "4057", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `string_check`.", "type": { - "$ref": "3676" + "$ref": "3678" }, "optional": false, "readOnly": false, @@ -48262,13 +48288,13 @@ "isHttpMetadata": false }, { - "$id": "4056", + "$id": "4058", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "4057", + "$id": "4059", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48288,13 +48314,13 @@ "isHttpMetadata": false }, { - "$id": "4058", + "$id": "4060", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$id": "4059", + "$id": "4061", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48314,13 +48340,13 @@ "isHttpMetadata": false }, { - "$id": "4060", + "$id": "4062", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The reference text. This may include template strings.", "type": { - "$id": "4061", + "$id": "4063", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48340,7 +48366,7 @@ "isHttpMetadata": false }, { - "$id": "4062", + "$id": "4064", "kind": "property", "name": "operation", "serializedName": "operation", @@ -48364,7 +48390,7 @@ ] }, "text_similarity": { - "$id": "4063", + "$id": "4065", "kind": "model", "name": "EvalGraderTextSimilarityParams", "namespace": "OpenAI", @@ -48373,17 +48399,17 @@ "discriminatorValue": "text_similarity", "decorators": [], "baseModel": { - "$ref": "4036" + "$ref": "4038" }, "properties": [ { - "$id": "4064", + "$id": "4066", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of grader.", "type": { - "$ref": "3597" + "$ref": "3599" }, "optional": false, "readOnly": false, @@ -48399,13 +48425,13 @@ "isHttpMetadata": false }, { - "$id": "4065", + "$id": "4067", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "4066", + "$id": "4068", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48425,13 +48451,13 @@ "isHttpMetadata": false }, { - "$id": "4067", + "$id": "4069", "kind": "property", "name": "input", "serializedName": "input", "doc": "The text being graded.", "type": { - "$id": "4068", + "$id": "4070", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48451,13 +48477,13 @@ "isHttpMetadata": false }, { - "$id": "4069", + "$id": "4071", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The text being graded against.", "type": { - "$id": "4070", + "$id": "4072", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48477,7 +48503,7 @@ "isHttpMetadata": false }, { - "$id": "4071", + "$id": "4073", "kind": "property", "name": "evaluation_metric", "serializedName": "evaluation_metric", @@ -48499,13 +48525,13 @@ "isHttpMetadata": false }, { - "$id": "4072", + "$id": "4074", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "4073", + "$id": "4075", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -48527,7 +48553,7 @@ ] }, "python": { - "$id": "4074", + "$id": "4076", "kind": "model", "name": "EvalGraderPythonParams", "namespace": "OpenAI", @@ -48536,17 +48562,17 @@ "discriminatorValue": "python", "decorators": [], "baseModel": { - "$ref": "4036" + "$ref": "4038" }, "properties": [ { - "$id": "4075", + "$id": "4077", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `python`.", "type": { - "$ref": "3615" + "$ref": "3617" }, "optional": false, "readOnly": false, @@ -48562,13 +48588,13 @@ "isHttpMetadata": false }, { - "$id": "4076", + "$id": "4078", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "4077", + "$id": "4079", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48588,13 +48614,13 @@ "isHttpMetadata": false }, { - "$id": "4078", + "$id": "4080", "kind": "property", "name": "source", "serializedName": "source", "doc": "The source code of the python script.", "type": { - "$id": "4079", + "$id": "4081", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48614,13 +48640,13 @@ "isHttpMetadata": false }, { - "$id": "4080", + "$id": "4082", "kind": "property", "name": "image_tag", "serializedName": "image_tag", "doc": "The image tag to use for the python script.", "type": { - "$id": "4081", + "$id": "4083", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48640,13 +48666,13 @@ "isHttpMetadata": false }, { - "$id": "4082", + "$id": "4084", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "4083", + "$id": "4085", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -48668,7 +48694,7 @@ ] }, "score_model": { - "$id": "4084", + "$id": "4086", "kind": "model", "name": "EvalGraderScoreModelParams", "namespace": "OpenAI", @@ -48677,17 +48703,17 @@ "discriminatorValue": "score_model", "decorators": [], "baseModel": { - "$ref": "4036" + "$ref": "4038" }, "properties": [ { - "$id": "4085", + "$id": "4087", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `score_model`.", "type": { - "$ref": "3624" + "$ref": "3626" }, "optional": false, "readOnly": false, @@ -48703,13 +48729,13 @@ "isHttpMetadata": false }, { - "$id": "4086", + "$id": "4088", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "4087", + "$id": "4089", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48729,13 +48755,13 @@ "isHttpMetadata": false }, { - "$id": "4088", + "$id": "4090", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation.", "type": { - "$id": "4089", + "$id": "4091", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48755,13 +48781,13 @@ "isHttpMetadata": false }, { - "$id": "4090", + "$id": "4092", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "doc": "The sampling parameters for the model.", "type": { - "$id": "4091", + "$id": "4093", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -48781,13 +48807,13 @@ "isHttpMetadata": false }, { - "$id": "4092", + "$id": "4094", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$ref": "3632" + "$ref": "3634" }, "optional": false, "readOnly": false, @@ -48803,7 +48829,7 @@ "isHttpMetadata": false }, { - "$id": "4093", + "$id": "4095", "kind": "property", "name": "range", "serializedName": "range", @@ -48825,13 +48851,13 @@ "isHttpMetadata": false }, { - "$id": "4094", + "$id": "4096", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "4095", + "$id": "4097", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -48872,41 +48898,41 @@ } ] }, - { - "$ref": "4021" - }, { "$ref": "4023" }, { - "$ref": "4028" + "$ref": "4025" }, { - "$ref": "4031" + "$ref": "4030" }, { - "$ref": "4036" + "$ref": "4033" }, { "$ref": "4038" }, { - "$ref": "4047" + "$ref": "4040" + }, + { + "$ref": "4049" }, { - "$ref": "4054" + "$ref": "4056" }, { - "$ref": "4063" + "$ref": "4065" }, { - "$ref": "4074" + "$ref": "4076" }, { - "$ref": "4084" + "$ref": "4086" }, { - "$id": "4096", + "$id": "4098", "kind": "model", "name": "UpdateEvalRequest", "namespace": "OpenAI", @@ -48915,12 +48941,12 @@ "decorators": [], "properties": [ { - "$id": "4097", + "$id": "4099", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "4098", + "$id": "4100", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48940,12 +48966,12 @@ "isHttpMetadata": false }, { - "$id": "4099", + "$id": "4101", "kind": "property", "name": "metadata", "serializedName": "metadata", "type": { - "$id": "4100", + "$id": "4102", "kind": "model", "name": "MetadataPropertyForRequest", "namespace": "OpenAI", @@ -48955,7 +48981,7 @@ "decorators": [], "properties": [ { - "$id": "4101", + "$id": "4103", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -48994,10 +49020,10 @@ ] }, { - "$ref": "4100" + "$ref": "4102" }, { - "$id": "4102", + "$id": "4104", "kind": "model", "name": "DeleteEvalResponse", "namespace": "OpenAI", @@ -49006,7 +49032,7 @@ "decorators": [], "properties": [ { - "$id": "4103", + "$id": "4105", "kind": "property", "name": "object", "serializedName": "object", @@ -49027,12 +49053,12 @@ "isHttpMetadata": false }, { - "$id": "4104", + "$id": "4106", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "4105", + "$id": "4107", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -49052,12 +49078,12 @@ "isHttpMetadata": false }, { - "$id": "4106", + "$id": "4108", "kind": "property", "name": "eval_id", "serializedName": "eval_id", "type": { - "$id": "4107", + "$id": "4109", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49079,7 +49105,7 @@ ] }, { - "$id": "4108", + "$id": "4110", "kind": "model", "name": "EvalRunList", "namespace": "OpenAI", @@ -49089,7 +49115,7 @@ "decorators": [], "properties": [ { - "$id": "4109", + "$id": "4111", "kind": "property", "name": "object", "serializedName": "object", @@ -49111,17 +49137,17 @@ "isHttpMetadata": false }, { - "$id": "4110", + "$id": "4112", "kind": "property", "name": "data", "serializedName": "data", "doc": "An array of eval run objects.", "type": { - "$id": "4111", + "$id": "4113", "kind": "array", "name": "ArrayEvalRun", "valueType": { - "$id": "4112", + "$id": "4114", "kind": "model", "name": "EvalRun", "namespace": "OpenAI", @@ -49131,7 +49157,7 @@ "decorators": [], "properties": [ { - "$id": "4113", + "$id": "4115", "kind": "property", "name": "object", "serializedName": "object", @@ -49153,13 +49179,13 @@ "isHttpMetadata": false }, { - "$id": "4114", + "$id": "4116", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for the evaluation run.", "type": { - "$id": "4115", + "$id": "4117", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49179,13 +49205,13 @@ "isHttpMetadata": false }, { - "$id": "4116", + "$id": "4118", "kind": "property", "name": "eval_id", "serializedName": "eval_id", "doc": "The identifier of the associated evaluation.", "type": { - "$id": "4117", + "$id": "4119", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49205,13 +49231,13 @@ "isHttpMetadata": false }, { - "$id": "4118", + "$id": "4120", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the evaluation run.", "type": { - "$id": "4119", + "$id": "4121", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49231,13 +49257,13 @@ "isHttpMetadata": false }, { - "$id": "4120", + "$id": "4122", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model that is evaluated, if applicable.", "type": { - "$id": "4121", + "$id": "4123", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49257,13 +49283,13 @@ "isHttpMetadata": false }, { - "$id": "4122", + "$id": "4124", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the evaluation run.", "type": { - "$id": "4123", + "$id": "4125", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49283,18 +49309,18 @@ "isHttpMetadata": false }, { - "$id": "4124", + "$id": "4126", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) when the evaluation run was created.", "type": { - "$id": "4125", + "$id": "4127", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "4126", + "$id": "4128", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49317,13 +49343,13 @@ "isHttpMetadata": false }, { - "$id": "4127", + "$id": "4129", "kind": "property", "name": "report_url", "serializedName": "report_url", "doc": "The URL to the rendered evaluation run report on the UI dashboard.", "type": { - "$id": "4128", + "$id": "4130", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49343,13 +49369,13 @@ "isHttpMetadata": false }, { - "$id": "4129", + "$id": "4131", "kind": "property", "name": "result_counts", "serializedName": "result_counts", "doc": "Counters summarizing the outcomes of the evaluation run.", "type": { - "$id": "4130", + "$id": "4132", "kind": "model", "name": "EvalRunResultCounts", "namespace": "OpenAI", @@ -49358,13 +49384,13 @@ "decorators": [], "properties": [ { - "$id": "4131", + "$id": "4133", "kind": "property", "name": "total", "serializedName": "total", "doc": "Total number of executed output items.", "type": { - "$id": "4132", + "$id": "4134", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49384,13 +49410,13 @@ "isHttpMetadata": false }, { - "$id": "4133", + "$id": "4135", "kind": "property", "name": "errored", "serializedName": "errored", "doc": "Number of output items that resulted in an error.", "type": { - "$id": "4134", + "$id": "4136", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49410,13 +49436,13 @@ "isHttpMetadata": false }, { - "$id": "4135", + "$id": "4137", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "Number of output items that failed to pass the evaluation.", "type": { - "$id": "4136", + "$id": "4138", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49436,13 +49462,13 @@ "isHttpMetadata": false }, { - "$id": "4137", + "$id": "4139", "kind": "property", "name": "passed", "serializedName": "passed", "doc": "Number of output items that passed the evaluation.", "type": { - "$id": "4138", + "$id": "4140", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49477,17 +49503,17 @@ "isHttpMetadata": false }, { - "$id": "4139", + "$id": "4141", "kind": "property", "name": "per_model_usage", "serializedName": "per_model_usage", "doc": "Usage statistics for each model during the evaluation run.", "type": { - "$id": "4140", + "$id": "4142", "kind": "array", "name": "Array15", "valueType": { - "$id": "4141", + "$id": "4143", "kind": "model", "name": "EvalRunPerModelUsage", "namespace": "OpenAI", @@ -49496,13 +49522,13 @@ "decorators": [], "properties": [ { - "$id": "4142", + "$id": "4144", "kind": "property", "name": "model_name", "serializedName": "model_name", "doc": "The name of the model.", "type": { - "$id": "4143", + "$id": "4145", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49522,13 +49548,13 @@ "isHttpMetadata": false }, { - "$id": "4144", + "$id": "4146", "kind": "property", "name": "invocation_count", "serializedName": "invocation_count", "doc": "The number of invocations.", "type": { - "$id": "4145", + "$id": "4147", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49548,13 +49574,13 @@ "isHttpMetadata": false }, { - "$id": "4146", + "$id": "4148", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "The number of prompt tokens used.", "type": { - "$id": "4147", + "$id": "4149", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49574,13 +49600,13 @@ "isHttpMetadata": false }, { - "$id": "4148", + "$id": "4150", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "The number of completion tokens generated.", "type": { - "$id": "4149", + "$id": "4151", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49600,13 +49626,13 @@ "isHttpMetadata": false }, { - "$id": "4150", + "$id": "4152", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens used.", "type": { - "$id": "4151", + "$id": "4153", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49626,13 +49652,13 @@ "isHttpMetadata": false }, { - "$id": "4152", + "$id": "4154", "kind": "property", "name": "cached_tokens", "serializedName": "cached_tokens", "doc": "The number of tokens retrieved from cache.", "type": { - "$id": "4153", + "$id": "4155", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49670,17 +49696,17 @@ "isHttpMetadata": false }, { - "$id": "4154", + "$id": "4156", "kind": "property", "name": "per_testing_criteria_results", "serializedName": "per_testing_criteria_results", "doc": "Results per testing criteria applied during the evaluation run.", "type": { - "$id": "4155", + "$id": "4157", "kind": "array", "name": "Array16", "valueType": { - "$id": "4156", + "$id": "4158", "kind": "model", "name": "EvalRunPerTestingCriteriaResult", "namespace": "OpenAI", @@ -49689,13 +49715,13 @@ "decorators": [], "properties": [ { - "$id": "4157", + "$id": "4159", "kind": "property", "name": "testing_criteria", "serializedName": "testing_criteria", "doc": "A description of the testing criteria.", "type": { - "$id": "4158", + "$id": "4160", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49715,13 +49741,13 @@ "isHttpMetadata": false }, { - "$id": "4159", + "$id": "4161", "kind": "property", "name": "passed", "serializedName": "passed", "doc": "Number of tests passed for this criteria.", "type": { - "$id": "4160", + "$id": "4162", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49741,13 +49767,13 @@ "isHttpMetadata": false }, { - "$id": "4161", + "$id": "4163", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "Number of tests failed for this criteria.", "type": { - "$id": "4162", + "$id": "4164", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49785,13 +49811,13 @@ "isHttpMetadata": false }, { - "$id": "4163", + "$id": "4165", "kind": "property", "name": "data_source", "serializedName": "data_source", "doc": "Information about the run's data source.", "type": { - "$id": "4164", + "$id": "4166", "kind": "model", "name": "EvalRunDataSourceResource", "namespace": "OpenAI", @@ -49800,7 +49826,7 @@ "decorators": [], "properties": [ { - "$id": "4165", + "$id": "4167", "kind": "property", "name": "type", "serializedName": "type", @@ -49836,7 +49862,7 @@ "isHttpMetadata": false }, { - "$id": "4166", + "$id": "4168", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -49858,12 +49884,12 @@ "isHttpMetadata": false }, { - "$id": "4167", + "$id": "4169", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$id": "4168", + "$id": "4170", "kind": "model", "name": "EvalApiError", "namespace": "OpenAI", @@ -49873,13 +49899,13 @@ "decorators": [], "properties": [ { - "$id": "4169", + "$id": "4171", "kind": "property", "name": "code", "serializedName": "code", "doc": "The error code.", "type": { - "$id": "4170", + "$id": "4172", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49899,13 +49925,13 @@ "isHttpMetadata": false }, { - "$id": "4171", + "$id": "4173", "kind": "property", "name": "message", "serializedName": "message", "doc": "The error message.", "type": { - "$id": "4172", + "$id": "4174", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49958,13 +49984,13 @@ "isHttpMetadata": false }, { - "$id": "4173", + "$id": "4175", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The identifier of the first eval run in the data array.", "type": { - "$id": "4174", + "$id": "4176", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49984,13 +50010,13 @@ "isHttpMetadata": false }, { - "$id": "4175", + "$id": "4177", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The identifier of the last eval run in the data array.", "type": { - "$id": "4176", + "$id": "4178", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50010,13 +50036,13 @@ "isHttpMetadata": false }, { - "$id": "4177", + "$id": "4179", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates whether there are more evals available.", "type": { - "$id": "4178", + "$id": "4180", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -50038,25 +50064,25 @@ ] }, { - "$ref": "4112" + "$ref": "4114" }, { - "$ref": "4130" + "$ref": "4132" }, { - "$ref": "4141" + "$ref": "4143" }, { - "$ref": "4156" + "$ref": "4158" }, { - "$ref": "4164" + "$ref": "4166" }, { - "$ref": "4168" + "$ref": "4170" }, { - "$id": "4179", + "$id": "4181", "kind": "model", "name": "CreateEvalRunRequest", "namespace": "OpenAI", @@ -50065,13 +50091,13 @@ "decorators": [], "properties": [ { - "$id": "4180", + "$id": "4182", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the run.", "type": { - "$id": "4181", + "$id": "4183", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50091,7 +50117,7 @@ "isHttpMetadata": false }, { - "$id": "4182", + "$id": "4184", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -50113,13 +50139,13 @@ "isHttpMetadata": false }, { - "$id": "4183", + "$id": "4185", "kind": "property", "name": "data_source", "serializedName": "data_source", "doc": "Details about the run's data source.", "type": { - "$id": "4184", + "$id": "4186", "kind": "model", "name": "EvalRunDataSourceParams", "namespace": "OpenAI", @@ -50127,7 +50153,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "4185", + "$id": "4187", "kind": "property", "name": "type", "serializedName": "type", @@ -50149,12 +50175,12 @@ }, "properties": [ { - "$ref": "4185" + "$ref": "4187" } ], "discriminatedSubtypes": { "jsonl": { - "$id": "4186", + "$id": "4188", "kind": "model", "name": "EvalJsonlRunDataSourceParams", "namespace": "OpenAI", @@ -50164,17 +50190,17 @@ "discriminatorValue": "jsonl", "decorators": [], "baseModel": { - "$ref": "4184" + "$ref": "4186" }, "properties": [ { - "$id": "4187", + "$id": "4189", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `jsonl`.", "type": { - "$id": "4188", + "$id": "4190", "kind": "enumvalue", "name": "jsonl", "value": "jsonl", @@ -50182,14 +50208,14 @@ "$ref": "393" }, "enumType": { - "$id": "4189", + "$id": "4191", "kind": "enum", "decorators": [], "name": "EvalRunDataSourceType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4190", + "$id": "4192", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -50198,42 +50224,42 @@ }, "values": [ { - "$id": "4191", + "$id": "4193", "kind": "enumvalue", "decorators": [], "name": "jsonl", "value": "jsonl", "valueType": { - "$ref": "4190" + "$ref": "4192" }, "enumType": { - "$ref": "4189" + "$ref": "4191" } }, { - "$id": "4192", + "$id": "4194", "kind": "enumvalue", "decorators": [], "name": "completions", "value": "completions", "valueType": { - "$ref": "4190" + "$ref": "4192" }, "enumType": { - "$ref": "4189" + "$ref": "4191" } }, { - "$id": "4193", + "$id": "4195", "kind": "enumvalue", "decorators": [], "name": "responses", "value": "responses", "valueType": { - "$ref": "4190" + "$ref": "4192" }, "enumType": { - "$ref": "4189" + "$ref": "4191" } } ], @@ -50262,18 +50288,18 @@ "isHttpMetadata": false }, { - "$id": "4194", + "$id": "4196", "kind": "property", "name": "source", "serializedName": "source", "doc": "Determines what populates the `item` namespace in the data source.", "type": { - "$id": "4195", + "$id": "4197", "kind": "union", "name": "EvalJsonlRunDataSourceParamsSource", "variantTypes": [ { - "$id": "4196", + "$id": "4198", "kind": "model", "name": "EvalRunFileContentDataContentSource", "namespace": "OpenAI", @@ -50282,7 +50308,7 @@ "discriminatorValue": "file_content", "decorators": [], "baseModel": { - "$id": "4197", + "$id": "4199", "kind": "model", "name": "EvalRunDataContentSource", "namespace": "OpenAI", @@ -50290,7 +50316,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "4198", + "$id": "4200", "kind": "property", "name": "type", "serializedName": "type", @@ -50312,15 +50338,15 @@ }, "properties": [ { - "$ref": "4198" + "$ref": "4200" } ], "discriminatedSubtypes": { "file_content": { - "$ref": "4196" + "$ref": "4198" }, "file_id": { - "$id": "4199", + "$id": "4201", "kind": "model", "name": "EvalRunFileIdDataContentSource", "namespace": "OpenAI", @@ -50329,17 +50355,17 @@ "discriminatorValue": "file_id", "decorators": [], "baseModel": { - "$ref": "4197" + "$ref": "4199" }, "properties": [ { - "$id": "4200", + "$id": "4202", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of jsonl source. Always `file_id`.", "type": { - "$id": "4201", + "$id": "4203", "kind": "enumvalue", "name": "file_id", "value": "file_id", @@ -50347,14 +50373,14 @@ "$ref": "398" }, "enumType": { - "$id": "4202", + "$id": "4204", "kind": "enum", "decorators": [], "name": "EvalRunDataContentSourceType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4203", + "$id": "4205", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -50363,55 +50389,55 @@ }, "values": [ { - "$id": "4204", + "$id": "4206", "kind": "enumvalue", "decorators": [], "name": "file_id", "value": "file_id", "valueType": { - "$ref": "4203" + "$ref": "4205" }, "enumType": { - "$ref": "4202" + "$ref": "4204" } }, { - "$id": "4205", + "$id": "4207", "kind": "enumvalue", "decorators": [], "name": "file_content", "value": "file_content", "valueType": { - "$ref": "4203" + "$ref": "4205" }, "enumType": { - "$ref": "4202" + "$ref": "4204" } }, { - "$id": "4206", + "$id": "4208", "kind": "enumvalue", "decorators": [], "name": "stored_completions", "value": "stored_completions", "valueType": { - "$ref": "4203" + "$ref": "4205" }, "enumType": { - "$ref": "4202" + "$ref": "4204" } }, { - "$id": "4207", + "$id": "4209", "kind": "enumvalue", "decorators": [], "name": "responses", "value": "responses", "valueType": { - "$ref": "4203" + "$ref": "4205" }, "enumType": { - "$ref": "4202" + "$ref": "4204" } } ], @@ -50440,13 +50466,13 @@ "isHttpMetadata": false }, { - "$id": "4208", + "$id": "4210", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier of the file.", "type": { - "$id": "4209", + "$id": "4211", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50468,7 +50494,7 @@ ] }, "stored_completions": { - "$id": "4210", + "$id": "4212", "kind": "model", "name": "EvalRunStoredCompletionsDataContentSource", "namespace": "OpenAI", @@ -50478,17 +50504,17 @@ "discriminatorValue": "stored_completions", "decorators": [], "baseModel": { - "$ref": "4197" + "$ref": "4199" }, "properties": [ { - "$id": "4211", + "$id": "4213", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of source. Always `stored_completions`.", "type": { - "$id": "4212", + "$id": "4214", "kind": "enumvalue", "name": "stored_completions", "value": "stored_completions", @@ -50496,7 +50522,7 @@ "$ref": "398" }, "enumType": { - "$ref": "4202" + "$ref": "4204" }, "decorators": [] }, @@ -50514,7 +50540,7 @@ "isHttpMetadata": false }, { - "$id": "4213", + "$id": "4215", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -50536,16 +50562,16 @@ "isHttpMetadata": false }, { - "$id": "4214", + "$id": "4216", "kind": "property", "name": "model", "serializedName": "model", "doc": "An optional model to filter by (e.g., 'gpt-4o').", "type": { - "$id": "4215", + "$id": "4217", "kind": "nullable", "type": { - "$id": "4216", + "$id": "4218", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50567,16 +50593,16 @@ "isHttpMetadata": false }, { - "$id": "4217", + "$id": "4219", "kind": "property", "name": "created_after", "serializedName": "created_after", "doc": "An optional Unix timestamp to filter items created after this time.", "type": { - "$id": "4218", + "$id": "4220", "kind": "nullable", "type": { - "$id": "4219", + "$id": "4221", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -50598,16 +50624,16 @@ "isHttpMetadata": false }, { - "$id": "4220", + "$id": "4222", "kind": "property", "name": "created_before", "serializedName": "created_before", "doc": "An optional Unix timestamp to filter items created before this time.", "type": { - "$id": "4221", + "$id": "4223", "kind": "nullable", "type": { - "$id": "4222", + "$id": "4224", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -50629,16 +50655,16 @@ "isHttpMetadata": false }, { - "$id": "4223", + "$id": "4225", "kind": "property", "name": "limit", "serializedName": "limit", "doc": "An optional maximum number of items to return.", "type": { - "$id": "4224", + "$id": "4226", "kind": "nullable", "type": { - "$id": "4225", + "$id": "4227", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -50662,7 +50688,7 @@ ] }, "responses": { - "$id": "4226", + "$id": "4228", "kind": "model", "name": "EvalRunResponsesDataContentSource", "namespace": "OpenAI", @@ -50672,17 +50698,17 @@ "discriminatorValue": "responses", "decorators": [], "baseModel": { - "$ref": "4197" + "$ref": "4199" }, "properties": [ { - "$id": "4227", + "$id": "4229", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of run data source. Always `responses`.", "type": { - "$id": "4228", + "$id": "4230", "kind": "enumvalue", "name": "responses", "value": "responses", @@ -50690,7 +50716,7 @@ "$ref": "398" }, "enumType": { - "$ref": "4202" + "$ref": "4204" }, "decorators": [] }, @@ -50708,7 +50734,7 @@ "isHttpMetadata": false }, { - "$id": "4229", + "$id": "4231", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -50730,16 +50756,16 @@ "isHttpMetadata": false }, { - "$id": "4230", + "$id": "4232", "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": "4231", + "$id": "4233", "kind": "nullable", "type": { - "$id": "4232", + "$id": "4234", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50761,16 +50787,16 @@ "isHttpMetadata": false }, { - "$id": "4233", + "$id": "4235", "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": "4234", + "$id": "4236", "kind": "nullable", "type": { - "$id": "4235", + "$id": "4237", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50792,16 +50818,16 @@ "isHttpMetadata": false }, { - "$id": "4236", + "$id": "4238", "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": "4237", + "$id": "4239", "kind": "nullable", "type": { - "$id": "4238", + "$id": "4240", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -50823,16 +50849,16 @@ "isHttpMetadata": false }, { - "$id": "4239", + "$id": "4241", "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": "4240", + "$id": "4242", "kind": "nullable", "type": { - "$id": "4241", + "$id": "4243", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -50854,13 +50880,13 @@ "isHttpMetadata": false }, { - "$id": "4242", + "$id": "4244", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", "doc": "Optional reasoning effort parameter. This is a query parameter used to select responses.", "type": { - "$id": "4243", + "$id": "4245", "kind": "nullable", "type": { "$ref": "53" @@ -50881,16 +50907,16 @@ "isHttpMetadata": false }, { - "$id": "4244", + "$id": "4246", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Sampling temperature. This is a query parameter used to select responses.", "type": { - "$id": "4245", + "$id": "4247", "kind": "nullable", "type": { - "$id": "4246", + "$id": "4248", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -50912,16 +50938,16 @@ "isHttpMetadata": false }, { - "$id": "4247", + "$id": "4249", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "Nucleus sampling parameter. This is a query parameter used to select responses.", "type": { - "$id": "4248", + "$id": "4250", "kind": "nullable", "type": { - "$id": "4249", + "$id": "4251", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -50943,13 +50969,13 @@ "isHttpMetadata": false }, { - "$id": "4250", + "$id": "4252", "kind": "property", "name": "users", "serializedName": "users", "doc": "List of user identifiers. This is a query parameter used to select responses.", "type": { - "$id": "4251", + "$id": "4253", "kind": "nullable", "type": { "$ref": "2438" @@ -50970,13 +50996,13 @@ "isHttpMetadata": false }, { - "$id": "4252", + "$id": "4254", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "List of tool names. This is a query parameter used to select responses.", "type": { - "$id": "4253", + "$id": "4255", "kind": "nullable", "type": { "$ref": "2438" @@ -51002,13 +51028,13 @@ }, "properties": [ { - "$id": "4254", + "$id": "4256", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of jsonl source. Always `file_content`.", "type": { - "$id": "4255", + "$id": "4257", "kind": "enumvalue", "name": "file_content", "value": "file_content", @@ -51016,7 +51042,7 @@ "$ref": "398" }, "enumType": { - "$ref": "4202" + "$ref": "4204" }, "decorators": [] }, @@ -51034,17 +51060,17 @@ "isHttpMetadata": false }, { - "$id": "4256", + "$id": "4258", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the jsonl file.", "type": { - "$id": "4257", + "$id": "4259", "kind": "array", "name": "Array17", "valueType": { - "$id": "4258", + "$id": "4260", "kind": "model", "name": "EvalRunFileContentDataContentSourceContent", "namespace": "OpenAI", @@ -51053,12 +51079,12 @@ "decorators": [], "properties": [ { - "$id": "4259", + "$id": "4261", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$ref": "3946" + "$ref": "3948" }, "optional": false, "readOnly": false, @@ -51074,12 +51100,12 @@ "isHttpMetadata": false }, { - "$id": "4260", + "$id": "4262", "kind": "property", "name": "sample", "serializedName": "sample", "type": { - "$ref": "3946" + "$ref": "3948" }, "optional": true, "readOnly": false, @@ -51115,7 +51141,7 @@ ] }, { - "$ref": "4199" + "$ref": "4201" } ], "namespace": "OpenAI", @@ -51137,7 +51163,7 @@ ] }, "completions": { - "$id": "4261", + "$id": "4263", "kind": "model", "name": "EvalCompletionsRunDataSourceParams", "namespace": "OpenAI", @@ -51147,17 +51173,17 @@ "discriminatorValue": "completions", "decorators": [], "baseModel": { - "$ref": "4184" + "$ref": "4186" }, "properties": [ { - "$id": "4262", + "$id": "4264", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of run data source. Always `completions`.", "type": { - "$id": "4263", + "$id": "4265", "kind": "enumvalue", "name": "completions", "value": "completions", @@ -51165,7 +51191,7 @@ "$ref": "393" }, "enumType": { - "$ref": "4189" + "$ref": "4191" }, "decorators": [] }, @@ -51183,18 +51209,18 @@ "isHttpMetadata": false }, { - "$id": "4264", + "$id": "4266", "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": "4265", + "$id": "4267", "kind": "union", "name": "EvalCompletionsRunDataSourceParamsInputMessages", "variantTypes": [ { - "$id": "4266", + "$id": "4268", "kind": "model", "name": "EvalCompletionsRunDataSourceParamsInputMessages1", "namespace": "OpenAI", @@ -51203,7 +51229,7 @@ "decorators": [], "properties": [ { - "$id": "4267", + "$id": "4269", "kind": "property", "name": "type", "serializedName": "type", @@ -51225,29 +51251,29 @@ "isHttpMetadata": false }, { - "$id": "4268", + "$id": "4270", "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": "4269", + "$id": "4271", "kind": "array", "name": "Array18", "valueType": { - "$id": "4270", + "$id": "4272", "kind": "union", "name": "EvalCompletionsRunDataSourceParamsInputMessagesTemplate", "variantTypes": [ { - "$id": "4271", + "$id": "4273", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", "decorators": [] }, { - "$ref": "3633" + "$ref": "3635" } ], "namespace": "OpenAI", @@ -51272,7 +51298,7 @@ ] }, { - "$id": "4272", + "$id": "4274", "kind": "model", "name": "EvalCompletionsRunDataSourceParamsInputMessages2", "namespace": "OpenAI", @@ -51281,7 +51307,7 @@ "decorators": [], "properties": [ { - "$id": "4273", + "$id": "4275", "kind": "property", "name": "type", "serializedName": "type", @@ -51303,13 +51329,13 @@ "isHttpMetadata": false }, { - "$id": "4274", + "$id": "4276", "kind": "property", "name": "item_reference", "serializedName": "item_reference", "doc": "A reference to a variable in the `item` namespace. Ie, \"item.input_trajectory\"", "type": { - "$id": "4275", + "$id": "4277", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51348,12 +51374,12 @@ "isHttpMetadata": false }, { - "$id": "4276", + "$id": "4278", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "type": { - "$id": "4277", + "$id": "4279", "kind": "model", "name": "EvalCompletionsRunDataSourceParamsSamplingParams", "namespace": "OpenAI", @@ -51362,13 +51388,13 @@ "decorators": [], "properties": [ { - "$id": "4278", + "$id": "4280", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "A higher temperature increases randomness in the outputs.", "type": { - "$id": "4279", + "$id": "4281", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -51388,13 +51414,13 @@ "isHttpMetadata": false }, { - "$id": "4280", + "$id": "4282", "kind": "property", "name": "max_completion_tokens", "serializedName": "max_completion_tokens", "doc": "The maximum number of tokens in the generated output.", "type": { - "$id": "4281", + "$id": "4283", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -51414,13 +51440,13 @@ "isHttpMetadata": false }, { - "$id": "4282", + "$id": "4284", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "An alternative to temperature for nucleus sampling; 1.0 includes all tokens.", "type": { - "$id": "4283", + "$id": "4285", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -51440,13 +51466,13 @@ "isHttpMetadata": false }, { - "$id": "4284", + "$id": "4286", "kind": "property", "name": "seed", "serializedName": "seed", "doc": "A seed value to initialize the randomness, during sampling.", "type": { - "$id": "4285", + "$id": "4287", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -51466,13 +51492,13 @@ "isHttpMetadata": false }, { - "$id": "4286", + "$id": "4288", "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": "4287", + "$id": "4289", "kind": "model", "name": "ResponseTextFormatConfiguration", "namespace": "OpenAI", @@ -51485,7 +51511,7 @@ } ], "discriminatorProperty": { - "$id": "4288", + "$id": "4290", "kind": "property", "name": "type", "serializedName": "type", @@ -51507,12 +51533,12 @@ }, "properties": [ { - "$ref": "4288" + "$ref": "4290" } ], "discriminatedSubtypes": { "text": { - "$id": "4289", + "$id": "4291", "kind": "model", "name": "ResponseTextFormatConfigurationText", "namespace": "OpenAI", @@ -51526,16 +51552,16 @@ } ], "baseModel": { - "$ref": "4287" + "$ref": "4289" }, "properties": [ { - "$id": "4290", + "$id": "4292", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4291", + "$id": "4293", "kind": "enumvalue", "name": "text", "value": "text", @@ -51543,7 +51569,7 @@ "$ref": "404" }, "enumType": { - "$id": "4292", + "$id": "4294", "kind": "enum", "decorators": [], "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.", @@ -51551,7 +51577,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4293", + "$id": "4295", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -51560,42 +51586,42 @@ }, "values": [ { - "$id": "4294", + "$id": "4296", "kind": "enumvalue", "decorators": [], "name": "text", "value": "text", "valueType": { - "$ref": "4293" + "$ref": "4295" }, "enumType": { - "$ref": "4292" + "$ref": "4294" } }, { - "$id": "4295", + "$id": "4297", "kind": "enumvalue", "decorators": [], "name": "json_schema", "value": "json_schema", "valueType": { - "$ref": "4293" + "$ref": "4295" }, "enumType": { - "$ref": "4292" + "$ref": "4294" } }, { - "$id": "4296", + "$id": "4298", "kind": "enumvalue", "decorators": [], "name": "json_object", "value": "json_object", "valueType": { - "$ref": "4293" + "$ref": "4295" }, "enumType": { - "$ref": "4292" + "$ref": "4294" } } ], @@ -51626,7 +51652,7 @@ ] }, "json_object": { - "$id": "4297", + "$id": "4299", "kind": "model", "name": "ResponseTextFormatConfigurationJsonObject", "namespace": "OpenAI", @@ -51640,16 +51666,16 @@ } ], "baseModel": { - "$ref": "4287" + "$ref": "4289" }, "properties": [ { - "$id": "4298", + "$id": "4300", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4299", + "$id": "4301", "kind": "enumvalue", "name": "json_object", "value": "json_object", @@ -51657,7 +51683,7 @@ "$ref": "404" }, "enumType": { - "$ref": "4292" + "$ref": "4294" }, "decorators": [] }, @@ -51677,7 +51703,7 @@ ] }, "json_schema": { - "$id": "4300", + "$id": "4302", "kind": "model", "name": "ResponseTextFormatConfigurationJsonSchema", "namespace": "OpenAI", @@ -51692,17 +51718,17 @@ } ], "baseModel": { - "$ref": "4287" + "$ref": "4289" }, "properties": [ { - "$id": "4301", + "$id": "4303", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of response format being defined. Always `json_schema`.", "type": { - "$id": "4302", + "$id": "4304", "kind": "enumvalue", "name": "json_schema", "value": "json_schema", @@ -51710,7 +51736,7 @@ "$ref": "404" }, "enumType": { - "$ref": "4292" + "$ref": "4294" }, "decorators": [] }, @@ -51728,13 +51754,13 @@ "isHttpMetadata": false }, { - "$id": "4303", + "$id": "4305", "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": "4304", + "$id": "4306", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51754,13 +51780,13 @@ "isHttpMetadata": false }, { - "$id": "4305", + "$id": "4307", "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": "4306", + "$id": "4308", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51780,7 +51806,7 @@ "isHttpMetadata": false }, { - "$id": "4307", + "$id": "4309", "kind": "property", "name": "schema", "serializedName": "schema", @@ -51801,16 +51827,16 @@ "isHttpMetadata": false }, { - "$id": "4308", + "$id": "4310", "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": "4309", + "$id": "4311", "kind": "nullable", "type": { - "$id": "4310", + "$id": "4312", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -51849,13 +51875,13 @@ "isHttpMetadata": false }, { - "$id": "4311", + "$id": "4313", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "A list of tools the model may call. Currently, only functions are supported as a tool. Use this to provide a list of functions the model may generate JSON inputs for. A max of 128 functions are supported.", "type": { - "$ref": "3201" + "$ref": "3203" }, "optional": true, "readOnly": false, @@ -51886,13 +51912,13 @@ "isHttpMetadata": false }, { - "$id": "4312", + "$id": "4314", "kind": "property", "name": "model", "serializedName": "model", "doc": "The name of the model to use for generating completions (e.g. \"o3-mini\").", "type": { - "$id": "4313", + "$id": "4315", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51912,24 +51938,24 @@ "isHttpMetadata": false }, { - "$id": "4314", + "$id": "4316", "kind": "property", "name": "source", "serializedName": "source", "doc": "Determines what populates the `item` namespace in this run's data source.", "type": { - "$id": "4315", + "$id": "4317", "kind": "union", "name": "EvalCompletionsRunDataSourceParamsSource", "variantTypes": [ { - "$ref": "4196" + "$ref": "4198" }, { - "$ref": "4199" + "$ref": "4201" }, { - "$ref": "4210" + "$ref": "4212" } ], "namespace": "OpenAI", @@ -51951,7 +51977,7 @@ ] }, "responses": { - "$id": "4316", + "$id": "4318", "kind": "model", "name": "EvalResponsesRunDataSourceParams", "namespace": "OpenAI", @@ -51961,17 +51987,17 @@ "discriminatorValue": "responses", "decorators": [], "baseModel": { - "$ref": "4184" + "$ref": "4186" }, "properties": [ { - "$id": "4317", + "$id": "4319", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of run data source. Always `responses`.", "type": { - "$id": "4318", + "$id": "4320", "kind": "enumvalue", "name": "responses", "value": "responses", @@ -51979,7 +52005,7 @@ "$ref": "393" }, "enumType": { - "$ref": "4189" + "$ref": "4191" }, "decorators": [] }, @@ -51997,18 +52023,18 @@ "isHttpMetadata": false }, { - "$id": "4319", + "$id": "4321", "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": "4320", + "$id": "4322", "kind": "union", "name": "EvalResponsesRunDataSourceParamsInputMessages", "variantTypes": [ { - "$id": "4321", + "$id": "4323", "kind": "model", "name": "EvalResponsesRunDataSourceParamsInputMessages1", "namespace": "OpenAI", @@ -52017,7 +52043,7 @@ "decorators": [], "properties": [ { - "$id": "4322", + "$id": "4324", "kind": "property", "name": "type", "serializedName": "type", @@ -52039,22 +52065,22 @@ "isHttpMetadata": false }, { - "$id": "4323", + "$id": "4325", "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": "4324", + "$id": "4326", "kind": "array", "name": "Array19", "valueType": { - "$id": "4325", + "$id": "4327", "kind": "union", "name": "EvalResponsesRunDataSourceParamsInputMessagesTemplate", "variantTypes": [ { - "$id": "4326", + "$id": "4328", "kind": "model", "name": "EvalResponsesRunDataSourceParamsInputMessagesTemplate1", "namespace": "OpenAI", @@ -52063,13 +52089,13 @@ "decorators": [], "properties": [ { - "$id": "4327", + "$id": "4329", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message (e.g. \"system\", \"assistant\", \"user\").", "type": { - "$id": "4328", + "$id": "4330", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52089,13 +52115,13 @@ "isHttpMetadata": false }, { - "$id": "4329", + "$id": "4331", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message.", "type": { - "$id": "4330", + "$id": "4332", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52117,7 +52143,7 @@ ] }, { - "$ref": "3633" + "$ref": "3635" } ], "namespace": "OpenAI", @@ -52142,7 +52168,7 @@ ] }, { - "$id": "4331", + "$id": "4333", "kind": "model", "name": "EvalResponsesRunDataSourceParamsInputMessages2", "namespace": "OpenAI", @@ -52151,7 +52177,7 @@ "decorators": [], "properties": [ { - "$id": "4332", + "$id": "4334", "kind": "property", "name": "type", "serializedName": "type", @@ -52173,13 +52199,13 @@ "isHttpMetadata": false }, { - "$id": "4333", + "$id": "4335", "kind": "property", "name": "item_reference", "serializedName": "item_reference", "doc": "A reference to a variable in the `item` namespace. Ie, \"item.name\"", "type": { - "$id": "4334", + "$id": "4336", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52218,12 +52244,12 @@ "isHttpMetadata": false }, { - "$id": "4335", + "$id": "4337", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "type": { - "$id": "4336", + "$id": "4338", "kind": "model", "name": "EvalResponsesRunDataSourceParamsSamplingParams", "namespace": "OpenAI", @@ -52232,13 +52258,13 @@ "decorators": [], "properties": [ { - "$id": "4337", + "$id": "4339", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "A higher temperature increases randomness in the outputs.", "type": { - "$id": "4338", + "$id": "4340", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -52258,13 +52284,13 @@ "isHttpMetadata": false }, { - "$id": "4339", + "$id": "4341", "kind": "property", "name": "max_completion_tokens", "serializedName": "max_completion_tokens", "doc": "The maximum number of tokens in the generated output.", "type": { - "$id": "4340", + "$id": "4342", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -52284,13 +52310,13 @@ "isHttpMetadata": false }, { - "$id": "4341", + "$id": "4343", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "An alternative to temperature for nucleus sampling; 1.0 includes all tokens.", "type": { - "$id": "4342", + "$id": "4344", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -52310,13 +52336,13 @@ "isHttpMetadata": false }, { - "$id": "4343", + "$id": "4345", "kind": "property", "name": "seed", "serializedName": "seed", "doc": "A seed value to initialize the randomness, during sampling.", "type": { - "$id": "4344", + "$id": "4346", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -52336,17 +52362,17 @@ "isHttpMetadata": false }, { - "$id": "4345", + "$id": "4347", "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": "4346", + "$id": "4348", "kind": "array", "name": "ArrayTool", "valueType": { - "$id": "4347", + "$id": "4349", "kind": "model", "name": "Tool", "namespace": "OpenAI", @@ -52359,7 +52385,7 @@ } ], "discriminatorProperty": { - "$id": "4348", + "$id": "4350", "kind": "property", "name": "type", "serializedName": "type", @@ -52381,12 +52407,12 @@ }, "properties": [ { - "$ref": "4348" + "$ref": "4350" } ], "discriminatedSubtypes": { "function": { - "$id": "4349", + "$id": "4351", "kind": "model", "name": "FunctionTool", "namespace": "OpenAI", @@ -52401,17 +52427,17 @@ } ], "baseModel": { - "$ref": "4347" + "$ref": "4349" }, "properties": [ { - "$id": "4350", + "$id": "4352", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the function tool. Always `function`.", "type": { - "$id": "4351", + "$id": "4353", "kind": "enumvalue", "name": "function", "value": "function", @@ -52419,7 +52445,7 @@ "$ref": "409" }, "enumType": { - "$id": "4352", + "$id": "4354", "kind": "enum", "decorators": [], "doc": "A tool that can be used to generate a response.", @@ -52427,7 +52453,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4353", + "$id": "4355", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -52436,120 +52462,120 @@ }, "values": [ { - "$id": "4354", + "$id": "4356", "kind": "enumvalue", "decorators": [], "name": "file_search", "value": "file_search", "valueType": { - "$ref": "4353" + "$ref": "4355" }, "enumType": { - "$ref": "4352" + "$ref": "4354" } }, { - "$id": "4355", + "$id": "4357", "kind": "enumvalue", "decorators": [], "name": "function", "value": "function", "valueType": { - "$ref": "4353" + "$ref": "4355" }, "enumType": { - "$ref": "4352" + "$ref": "4354" } }, { - "$id": "4356", + "$id": "4358", "kind": "enumvalue", "decorators": [], "name": "computer_use_preview", "value": "computer_use_preview", "valueType": { - "$ref": "4353" + "$ref": "4355" }, "enumType": { - "$ref": "4352" + "$ref": "4354" } }, { - "$id": "4357", + "$id": "4359", "kind": "enumvalue", "decorators": [], "name": "web_search", "value": "web_search", "valueType": { - "$ref": "4353" + "$ref": "4355" }, "enumType": { - "$ref": "4352" + "$ref": "4354" } }, { - "$id": "4358", + "$id": "4360", "kind": "enumvalue", "decorators": [], "name": "web_search_preview", "value": "web_search_preview", "valueType": { - "$ref": "4353" + "$ref": "4355" }, "enumType": { - "$ref": "4352" + "$ref": "4354" } }, { - "$id": "4359", + "$id": "4361", "kind": "enumvalue", "decorators": [], "name": "mcp", "value": "mcp", "valueType": { - "$ref": "4353" + "$ref": "4355" }, "enumType": { - "$ref": "4352" + "$ref": "4354" } }, { - "$id": "4360", + "$id": "4362", "kind": "enumvalue", "decorators": [], "name": "code_interpreter", "value": "code_interpreter", "valueType": { - "$ref": "4353" + "$ref": "4355" }, "enumType": { - "$ref": "4352" + "$ref": "4354" } }, { - "$id": "4361", + "$id": "4363", "kind": "enumvalue", "decorators": [], "name": "image_generation", "value": "image_generation", "valueType": { - "$ref": "4353" + "$ref": "4355" }, "enumType": { - "$ref": "4352" + "$ref": "4354" } }, { - "$id": "4362", + "$id": "4364", "kind": "enumvalue", "decorators": [], "name": "local_shell", "value": "local_shell", "valueType": { - "$ref": "4353" + "$ref": "4355" }, "enumType": { - "$ref": "4352" + "$ref": "4354" } } ], @@ -52578,13 +52604,13 @@ "isHttpMetadata": false }, { - "$id": "4363", + "$id": "4365", "kind": "property", "name": "FunctionName", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "4364", + "$id": "4366", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52604,16 +52630,16 @@ "isHttpMetadata": false }, { - "$id": "4365", + "$id": "4367", "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": "4366", + "$id": "4368", "kind": "nullable", "type": { - "$id": "4367", + "$id": "4369", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52635,16 +52661,16 @@ "isHttpMetadata": false }, { - "$id": "4368", + "$id": "4370", "kind": "property", "name": "FunctionParameters", "serializedName": "parameters", "doc": "A JSON schema object describing the parameters of the function.", "type": { - "$id": "4369", + "$id": "4371", "kind": "nullable", "type": { - "$id": "4370", + "$id": "4372", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -52666,16 +52692,16 @@ "isHttpMetadata": false }, { - "$id": "4371", + "$id": "4373", "kind": "property", "name": "StrictModeEnabled", "serializedName": "strict", "doc": "Whether to enforce strict parameter validation. Default `true`.", "type": { - "$id": "4372", + "$id": "4374", "kind": "nullable", "type": { - "$id": "4373", + "$id": "4375", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -52699,7 +52725,7 @@ ] }, "file_search": { - "$id": "4374", + "$id": "4376", "kind": "model", "name": "FileSearchTool", "namespace": "OpenAI", @@ -52714,17 +52740,17 @@ } ], "baseModel": { - "$ref": "4347" + "$ref": "4349" }, "properties": [ { - "$id": "4375", + "$id": "4377", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the file search tool. Always `file_search`.", "type": { - "$id": "4376", + "$id": "4378", "kind": "enumvalue", "name": "file_search", "value": "file_search", @@ -52732,7 +52758,7 @@ "$ref": "409" }, "enumType": { - "$ref": "4352" + "$ref": "4354" }, "decorators": [] }, @@ -52750,7 +52776,7 @@ "isHttpMetadata": false }, { - "$id": "4377", + "$id": "4379", "kind": "property", "name": "vector_store_ids", "serializedName": "vector_store_ids", @@ -52772,13 +52798,13 @@ "isHttpMetadata": false }, { - "$id": "4378", + "$id": "4380", "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": "4379", + "$id": "4381", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -52798,13 +52824,13 @@ "isHttpMetadata": false }, { - "$id": "4380", + "$id": "4382", "kind": "property", "name": "ranking_options", "serializedName": "ranking_options", "doc": "Ranking options for search.", "type": { - "$id": "4381", + "$id": "4383", "kind": "model", "name": "RankingOptions", "namespace": "OpenAI", @@ -52818,7 +52844,7 @@ ], "properties": [ { - "$id": "4382", + "$id": "4384", "kind": "property", "name": "ranker", "serializedName": "ranker", @@ -52840,13 +52866,13 @@ "isHttpMetadata": false }, { - "$id": "4383", + "$id": "4385", "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": "4384", + "$id": "4386", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -52881,21 +52907,21 @@ "isHttpMetadata": false }, { - "$id": "4385", + "$id": "4387", "kind": "property", "name": "filters", "serializedName": "filters", "doc": "A filter to apply.", "type": { - "$id": "4386", + "$id": "4388", "kind": "nullable", "type": { - "$id": "4387", + "$id": "4389", "kind": "union", "name": "Filters", "variantTypes": [ { - "$id": "4388", + "$id": "4390", "kind": "model", "name": "ComparisonFilter", "namespace": "OpenAI", @@ -52908,7 +52934,7 @@ } ], "discriminatorProperty": { - "$id": "4389", + "$id": "4391", "kind": "property", "name": "type", "serializedName": "type", @@ -52930,15 +52956,15 @@ }, "properties": [ { - "$ref": "4389" + "$ref": "4391" }, { - "$id": "4390", + "$id": "4392", "kind": "property", "name": "key", "serializedName": "key", "type": { - "$id": "4391", + "$id": "4393", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52958,31 +52984,31 @@ "isHttpMetadata": false }, { - "$id": "4392", + "$id": "4394", "kind": "property", "name": "value", "serializedName": "value", "type": { - "$id": "4393", + "$id": "4395", "kind": "union", "name": "ComparisonFilterValue", "variantTypes": [ { - "$id": "4394", + "$id": "4396", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "4395", + "$id": "4397", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", "decorators": [] }, { - "$id": "4396", + "$id": "4398", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -53008,7 +53034,7 @@ ], "discriminatedSubtypes": { "eq": { - "$id": "4397", + "$id": "4399", "kind": "model", "name": "ComparisonFilterEquals", "namespace": "OpenAI", @@ -53022,16 +53048,16 @@ } ], "baseModel": { - "$ref": "4388" + "$ref": "4390" }, "properties": [ { - "$id": "4398", + "$id": "4400", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4399", + "$id": "4401", "kind": "enumvalue", "name": "eq", "value": "eq", @@ -53039,14 +53065,14 @@ "$ref": "424" }, "enumType": { - "$id": "4400", + "$id": "4402", "kind": "enum", "decorators": [], "name": "ComparisonFilterType", "isGeneratedName": true, "namespace": "OpenAI", "valueType": { - "$id": "4401", + "$id": "4403", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -53055,81 +53081,81 @@ }, "values": [ { - "$id": "4402", + "$id": "4404", "kind": "enumvalue", "decorators": [], "name": "eq", "value": "eq", "valueType": { - "$ref": "4401" + "$ref": "4403" }, "enumType": { - "$ref": "4400" + "$ref": "4402" } }, { - "$id": "4403", + "$id": "4405", "kind": "enumvalue", "decorators": [], "name": "ne", "value": "ne", "valueType": { - "$ref": "4401" + "$ref": "4403" }, "enumType": { - "$ref": "4400" + "$ref": "4402" } }, { - "$id": "4404", + "$id": "4406", "kind": "enumvalue", "decorators": [], "name": "gt", "value": "gt", "valueType": { - "$ref": "4401" + "$ref": "4403" }, "enumType": { - "$ref": "4400" + "$ref": "4402" } }, { - "$id": "4405", + "$id": "4407", "kind": "enumvalue", "decorators": [], "name": "gte", "value": "gte", "valueType": { - "$ref": "4401" + "$ref": "4403" }, "enumType": { - "$ref": "4400" + "$ref": "4402" } }, { - "$id": "4406", + "$id": "4408", "kind": "enumvalue", "decorators": [], "name": "lt", "value": "lt", "valueType": { - "$ref": "4401" + "$ref": "4403" }, "enumType": { - "$ref": "4400" + "$ref": "4402" } }, { - "$id": "4407", + "$id": "4409", "kind": "enumvalue", "decorators": [], "name": "lte", "value": "lte", "valueType": { - "$ref": "4401" + "$ref": "4403" }, "enumType": { - "$ref": "4400" + "$ref": "4402" } } ], @@ -53160,7 +53186,7 @@ ] }, "ne": { - "$id": "4408", + "$id": "4410", "kind": "model", "name": "ComparisonFilterNotEquals", "namespace": "OpenAI", @@ -53174,16 +53200,16 @@ } ], "baseModel": { - "$ref": "4388" + "$ref": "4390" }, "properties": [ { - "$id": "4409", + "$id": "4411", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4410", + "$id": "4412", "kind": "enumvalue", "name": "ne", "value": "ne", @@ -53191,7 +53217,7 @@ "$ref": "424" }, "enumType": { - "$ref": "4400" + "$ref": "4402" }, "decorators": [] }, @@ -53211,7 +53237,7 @@ ] }, "gt": { - "$id": "4411", + "$id": "4413", "kind": "model", "name": "ComparisonFilterGreaterThan", "namespace": "OpenAI", @@ -53225,16 +53251,16 @@ } ], "baseModel": { - "$ref": "4388" + "$ref": "4390" }, "properties": [ { - "$id": "4412", + "$id": "4414", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4413", + "$id": "4415", "kind": "enumvalue", "name": "gt", "value": "gt", @@ -53242,7 +53268,7 @@ "$ref": "424" }, "enumType": { - "$ref": "4400" + "$ref": "4402" }, "decorators": [] }, @@ -53262,7 +53288,7 @@ ] }, "gte": { - "$id": "4414", + "$id": "4416", "kind": "model", "name": "ComparisonFilterGreaterThanOrEquals", "namespace": "OpenAI", @@ -53276,16 +53302,16 @@ } ], "baseModel": { - "$ref": "4388" + "$ref": "4390" }, "properties": [ { - "$id": "4415", + "$id": "4417", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4416", + "$id": "4418", "kind": "enumvalue", "name": "gte", "value": "gte", @@ -53293,7 +53319,7 @@ "$ref": "424" }, "enumType": { - "$ref": "4400" + "$ref": "4402" }, "decorators": [] }, @@ -53313,7 +53339,7 @@ ] }, "lt": { - "$id": "4417", + "$id": "4419", "kind": "model", "name": "ComparisonFilterLessThan", "namespace": "OpenAI", @@ -53327,16 +53353,16 @@ } ], "baseModel": { - "$ref": "4388" + "$ref": "4390" }, "properties": [ { - "$id": "4418", + "$id": "4420", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4419", + "$id": "4421", "kind": "enumvalue", "name": "lt", "value": "lt", @@ -53344,7 +53370,7 @@ "$ref": "424" }, "enumType": { - "$ref": "4400" + "$ref": "4402" }, "decorators": [] }, @@ -53364,7 +53390,7 @@ ] }, "lte": { - "$id": "4420", + "$id": "4422", "kind": "model", "name": "ComparisonFilterLessThanOrEquals", "namespace": "OpenAI", @@ -53378,16 +53404,16 @@ } ], "baseModel": { - "$ref": "4388" + "$ref": "4390" }, "properties": [ { - "$id": "4421", + "$id": "4423", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4422", + "$id": "4424", "kind": "enumvalue", "name": "lte", "value": "lte", @@ -53395,7 +53421,7 @@ "$ref": "424" }, "enumType": { - "$ref": "4400" + "$ref": "4402" }, "decorators": [] }, @@ -53417,7 +53443,7 @@ } }, { - "$id": "4423", + "$id": "4425", "kind": "model", "name": "CompoundFilter", "namespace": "OpenAI", @@ -53430,7 +53456,7 @@ } ], "discriminatorProperty": { - "$id": "4424", + "$id": "4426", "kind": "property", "name": "type", "serializedName": "type", @@ -53452,27 +53478,27 @@ }, "properties": [ { - "$ref": "4424" + "$ref": "4426" }, { - "$id": "4425", + "$id": "4427", "kind": "property", "name": "filters", "serializedName": "filters", "type": { - "$id": "4426", + "$id": "4428", "kind": "array", "name": "Array20", "valueType": { - "$id": "4427", + "$id": "4429", "kind": "union", "name": "CompoundFilterFilter", "variantTypes": [ { - "$ref": "4388" + "$ref": "4390" }, { - "$ref": "4423" + "$ref": "4425" } ], "namespace": "OpenAI", @@ -53497,7 +53523,7 @@ ], "discriminatedSubtypes": { "and": { - "$id": "4428", + "$id": "4430", "kind": "model", "name": "CompoundFilterAnd", "namespace": "OpenAI", @@ -53511,16 +53537,16 @@ } ], "baseModel": { - "$ref": "4423" + "$ref": "4425" }, "properties": [ { - "$id": "4429", + "$id": "4431", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4430", + "$id": "4432", "kind": "enumvalue", "name": "and", "value": "and", @@ -53528,14 +53554,14 @@ "$ref": "432" }, "enumType": { - "$id": "4431", + "$id": "4433", "kind": "enum", "decorators": [], "name": "CompoundFilterType", "isGeneratedName": true, "namespace": "OpenAI", "valueType": { - "$id": "4432", + "$id": "4434", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -53544,29 +53570,29 @@ }, "values": [ { - "$id": "4433", + "$id": "4435", "kind": "enumvalue", "decorators": [], "name": "and", "value": "and", "valueType": { - "$ref": "4432" + "$ref": "4434" }, "enumType": { - "$ref": "4431" + "$ref": "4433" } }, { - "$id": "4434", + "$id": "4436", "kind": "enumvalue", "decorators": [], "name": "or", "value": "or", "valueType": { - "$ref": "4432" + "$ref": "4434" }, "enumType": { - "$ref": "4431" + "$ref": "4433" } } ], @@ -53597,7 +53623,7 @@ ] }, "or": { - "$id": "4435", + "$id": "4437", "kind": "model", "name": "CompoundFilterOr", "namespace": "OpenAI", @@ -53611,16 +53637,16 @@ } ], "baseModel": { - "$ref": "4423" + "$ref": "4425" }, "properties": [ { - "$id": "4436", + "$id": "4438", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4437", + "$id": "4439", "kind": "enumvalue", "name": "or", "value": "or", @@ -53628,7 +53654,7 @@ "$ref": "432" }, "enumType": { - "$ref": "4431" + "$ref": "4433" }, "decorators": [] }, @@ -53671,7 +53697,7 @@ ] }, "computer_use_preview": { - "$id": "4438", + "$id": "4440", "kind": "model", "name": "ComputerUsePreviewTool", "namespace": "OpenAI", @@ -53686,17 +53712,17 @@ } ], "baseModel": { - "$ref": "4347" + "$ref": "4349" }, "properties": [ { - "$id": "4439", + "$id": "4441", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the computer use tool. Always `computer_use_preview`.", "type": { - "$id": "4440", + "$id": "4442", "kind": "enumvalue", "name": "computer_use_preview", "value": "computer_use_preview", @@ -53704,7 +53730,7 @@ "$ref": "409" }, "enumType": { - "$ref": "4352" + "$ref": "4354" }, "decorators": [] }, @@ -53722,7 +53748,7 @@ "isHttpMetadata": false }, { - "$id": "4441", + "$id": "4443", "kind": "property", "name": "environment", "serializedName": "environment", @@ -53744,13 +53770,13 @@ "isHttpMetadata": false }, { - "$id": "4442", + "$id": "4444", "kind": "property", "name": "display_width", "serializedName": "display_width", "doc": "The width of the computer display.", "type": { - "$id": "4443", + "$id": "4445", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -53770,13 +53796,13 @@ "isHttpMetadata": false }, { - "$id": "4444", + "$id": "4446", "kind": "property", "name": "display_height", "serializedName": "display_height", "doc": "The height of the computer display.", "type": { - "$id": "4445", + "$id": "4447", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -53798,7 +53824,7 @@ ] }, "web_search_preview": { - "$id": "4446", + "$id": "4448", "kind": "model", "name": "WebSearchPreviewTool", "namespace": "OpenAI", @@ -53813,17 +53839,17 @@ } ], "baseModel": { - "$ref": "4347" + "$ref": "4349" }, "properties": [ { - "$id": "4447", + "$id": "4449", "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": "4448", + "$id": "4450", "kind": "enumvalue", "name": "web_search_preview", "value": "web_search_preview", @@ -53831,7 +53857,7 @@ "$ref": "409" }, "enumType": { - "$ref": "4352" + "$ref": "4354" }, "decorators": [] }, @@ -53849,16 +53875,16 @@ "isHttpMetadata": false }, { - "$id": "4449", + "$id": "4451", "kind": "property", "name": "user_location", "serializedName": "user_location", "doc": "The user's location.", "type": { - "$id": "4450", + "$id": "4452", "kind": "nullable", "type": { - "$id": "4451", + "$id": "4453", "kind": "model", "name": "Location", "namespace": "OpenAI", @@ -53871,7 +53897,7 @@ } ], "discriminatorProperty": { - "$id": "4452", + "$id": "4454", "kind": "property", "name": "type", "serializedName": "type", @@ -53893,12 +53919,12 @@ }, "properties": [ { - "$ref": "4452" + "$ref": "4454" } ], "discriminatedSubtypes": { "approximate": { - "$id": "4453", + "$id": "4455", "kind": "model", "name": "ApproximateLocation", "namespace": "OpenAI", @@ -53912,16 +53938,16 @@ } ], "baseModel": { - "$ref": "4451" + "$ref": "4453" }, "properties": [ { - "$id": "4454", + "$id": "4456", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4455", + "$id": "4457", "kind": "enumvalue", "name": "approximate", "value": "approximate", @@ -53929,14 +53955,14 @@ "$ref": "443" }, "enumType": { - "$id": "4456", + "$id": "4458", "kind": "enum", "decorators": [], "name": "LocationType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4457", + "$id": "4459", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -53945,16 +53971,16 @@ }, "values": [ { - "$id": "4458", + "$id": "4460", "kind": "enumvalue", "decorators": [], "name": "approximate", "value": "approximate", "valueType": { - "$ref": "4457" + "$ref": "4459" }, "enumType": { - "$ref": "4456" + "$ref": "4458" } } ], @@ -53983,15 +54009,15 @@ "isHttpMetadata": false }, { - "$id": "4459", + "$id": "4461", "kind": "property", "name": "country", "serializedName": "country", "type": { - "$id": "4460", + "$id": "4462", "kind": "nullable", "type": { - "$id": "4461", + "$id": "4463", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54013,15 +54039,15 @@ "isHttpMetadata": false }, { - "$id": "4462", + "$id": "4464", "kind": "property", "name": "region", "serializedName": "region", "type": { - "$id": "4463", + "$id": "4465", "kind": "nullable", "type": { - "$id": "4464", + "$id": "4466", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54043,15 +54069,15 @@ "isHttpMetadata": false }, { - "$id": "4465", + "$id": "4467", "kind": "property", "name": "city", "serializedName": "city", "type": { - "$id": "4466", + "$id": "4468", "kind": "nullable", "type": { - "$id": "4467", + "$id": "4469", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54073,15 +54099,15 @@ "isHttpMetadata": false }, { - "$id": "4468", + "$id": "4470", "kind": "property", "name": "timezone", "serializedName": "timezone", "type": { - "$id": "4469", + "$id": "4471", "kind": "nullable", "type": { - "$id": "4470", + "$id": "4472", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54122,7 +54148,7 @@ "isHttpMetadata": false }, { - "$id": "4471", + "$id": "4473", "kind": "property", "name": "search_context_size", "serializedName": "search_context_size", @@ -54146,7 +54172,7 @@ ] }, "web_search": { - "$id": "4472", + "$id": "4474", "kind": "model", "name": "WebSearchTool", "namespace": "OpenAI", @@ -54156,17 +54182,17 @@ "discriminatorValue": "web_search", "decorators": [], "baseModel": { - "$ref": "4347" + "$ref": "4349" }, "properties": [ { - "$id": "4473", + "$id": "4475", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the web search tool. One of `web_search` or `web_search_2025_08_26`.", "type": { - "$id": "4474", + "$id": "4476", "kind": "enumvalue", "name": "web_search", "value": "web_search", @@ -54174,7 +54200,7 @@ "$ref": "409" }, "enumType": { - "$ref": "4352" + "$ref": "4354" }, "decorators": [] }, @@ -54192,15 +54218,15 @@ "isHttpMetadata": false }, { - "$id": "4475", + "$id": "4477", "kind": "property", "name": "filters", "serializedName": "filters", "type": { - "$id": "4476", + "$id": "4478", "kind": "nullable", "type": { - "$id": "4477", + "$id": "4479", "kind": "model", "name": "WebSearchToolFilters", "namespace": "OpenAI", @@ -54214,12 +54240,12 @@ ], "properties": [ { - "$id": "4478", + "$id": "4480", "kind": "property", "name": "allowed_domains", "serializedName": "allowed_domains", "type": { - "$id": "4479", + "$id": "4481", "kind": "nullable", "type": { "$ref": "2438" @@ -54257,15 +54283,15 @@ "isHttpMetadata": false }, { - "$id": "4480", + "$id": "4482", "kind": "property", "name": "user_location", "serializedName": "user_location", "type": { - "$id": "4481", + "$id": "4483", "kind": "nullable", "type": { - "$ref": "4451" + "$ref": "4453" }, "namespace": "OpenAI" }, @@ -54283,7 +54309,7 @@ "isHttpMetadata": false }, { - "$id": "4482", + "$id": "4484", "kind": "property", "name": "search_context_size", "serializedName": "search_context_size", @@ -54307,7 +54333,7 @@ ] }, "code_interpreter": { - "$id": "4483", + "$id": "4485", "kind": "model", "name": "CodeInterpreterTool", "namespace": "OpenAI", @@ -54322,17 +54348,17 @@ } ], "baseModel": { - "$ref": "4347" + "$ref": "4349" }, "properties": [ { - "$id": "4484", + "$id": "4486", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the code interpreter tool. Always `code_interpreter`.", "type": { - "$id": "4485", + "$id": "4487", "kind": "enumvalue", "name": "code_interpreter", "value": "code_interpreter", @@ -54340,7 +54366,7 @@ "$ref": "409" }, "enumType": { - "$ref": "4352" + "$ref": "4354" }, "decorators": [] }, @@ -54358,25 +54384,25 @@ "isHttpMetadata": false }, { - "$id": "4486", + "$id": "4488", "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": "4487", + "$id": "4489", "kind": "union", "name": "CodeInterpreterToolContainer", "variantTypes": [ { - "$id": "4488", + "$id": "4490", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "4489", + "$id": "4491", "kind": "model", "name": "CodeInterpreterToolAuto", "namespace": "OpenAI", @@ -54391,7 +54417,7 @@ } ], "baseModel": { - "$id": "4490", + "$id": "4492", "kind": "model", "name": "CodeInterpreterContainerConfiguration", "namespace": "OpenAI", @@ -54404,7 +54430,7 @@ } ], "discriminatorProperty": { - "$id": "4491", + "$id": "4493", "kind": "property", "name": "type", "serializedName": "type", @@ -54427,24 +54453,24 @@ }, "properties": [ { - "$ref": "4491" + "$ref": "4493" } ], "discriminatedSubtypes": { "auto": { - "$ref": "4489" + "$ref": "4491" } } }, "properties": [ { - "$id": "4492", + "$id": "4494", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `auto`.", "type": { - "$id": "4493", + "$id": "4495", "kind": "enumvalue", "name": "auto", "value": "auto", @@ -54452,7 +54478,7 @@ "$ref": "451" }, "enumType": { - "$id": "4494", + "$id": "4496", "kind": "enum", "decorators": [ { @@ -54464,7 +54490,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4495", + "$id": "4497", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -54473,16 +54499,16 @@ }, "values": [ { - "$id": "4496", + "$id": "4498", "kind": "enumvalue", "decorators": [], "name": "auto", "value": "auto", "valueType": { - "$ref": "4495" + "$ref": "4497" }, "enumType": { - "$ref": "4494" + "$ref": "4496" } } ], @@ -54511,7 +54537,7 @@ "isHttpMetadata": false }, { - "$id": "4497", + "$id": "4499", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -54554,7 +54580,7 @@ ] }, "image_generation": { - "$id": "4498", + "$id": "4500", "kind": "model", "name": "ImageGenTool", "namespace": "OpenAI", @@ -54569,17 +54595,17 @@ } ], "baseModel": { - "$ref": "4347" + "$ref": "4349" }, "properties": [ { - "$id": "4499", + "$id": "4501", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the image generation tool. Always `image_generation`.", "type": { - "$id": "4500", + "$id": "4502", "kind": "enumvalue", "name": "image_generation", "value": "image_generation", @@ -54587,7 +54613,7 @@ "$ref": "409" }, "enumType": { - "$ref": "4352" + "$ref": "4354" }, "decorators": [] }, @@ -54605,7 +54631,7 @@ "isHttpMetadata": false }, { - "$id": "4501", + "$id": "4503", "kind": "property", "name": "model", "serializedName": "model", @@ -54627,7 +54653,7 @@ "isHttpMetadata": false }, { - "$id": "4502", + "$id": "4504", "kind": "property", "name": "quality", "serializedName": "quality", @@ -54649,7 +54675,7 @@ "isHttpMetadata": false }, { - "$id": "4503", + "$id": "4505", "kind": "property", "name": "size", "serializedName": "size", @@ -54671,7 +54697,7 @@ "isHttpMetadata": false }, { - "$id": "4504", + "$id": "4506", "kind": "property", "name": "output_format", "serializedName": "output_format", @@ -54693,13 +54719,13 @@ "isHttpMetadata": false }, { - "$id": "4505", + "$id": "4507", "kind": "property", "name": "output_compression", "serializedName": "output_compression", "doc": "Compression level for the output image. Default: 100.", "type": { - "$id": "4506", + "$id": "4508", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -54719,7 +54745,7 @@ "isHttpMetadata": false }, { - "$id": "4507", + "$id": "4509", "kind": "property", "name": "moderation", "serializedName": "moderation", @@ -54741,7 +54767,7 @@ "isHttpMetadata": false }, { - "$id": "4508", + "$id": "4510", "kind": "property", "name": "background", "serializedName": "background", @@ -54763,7 +54789,7 @@ "isHttpMetadata": false }, { - "$id": "4509", + "$id": "4511", "kind": "property", "name": "input_fidelity", "serializedName": "input_fidelity", @@ -54785,13 +54811,13 @@ "isHttpMetadata": false }, { - "$id": "4510", + "$id": "4512", "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": "4511", + "$id": "4513", "kind": "model", "name": "ImageGenToolInputImageMask", "namespace": "OpenAI", @@ -54800,13 +54826,13 @@ "decorators": [], "properties": [ { - "$id": "4512", + "$id": "4514", "kind": "property", "name": "image_url", "serializedName": "image_url", "doc": "Base64-encoded mask image.", "type": { - "$id": "4513", + "$id": "4515", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54826,13 +54852,13 @@ "isHttpMetadata": false }, { - "$id": "4514", + "$id": "4516", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "File ID for the mask image.", "type": { - "$id": "4515", + "$id": "4517", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54867,13 +54893,13 @@ "isHttpMetadata": false }, { - "$id": "4516", + "$id": "4518", "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": "4517", + "$id": "4519", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -54895,7 +54921,7 @@ ] }, "local_shell": { - "$id": "4518", + "$id": "4520", "kind": "model", "name": "LocalShellTool", "namespace": "OpenAI", @@ -54910,17 +54936,17 @@ } ], "baseModel": { - "$ref": "4347" + "$ref": "4349" }, "properties": [ { - "$id": "4519", + "$id": "4521", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the local shell tool. Always `local_shell`.", "type": { - "$id": "4520", + "$id": "4522", "kind": "enumvalue", "name": "local_shell", "value": "local_shell", @@ -54928,7 +54954,7 @@ "$ref": "409" }, "enumType": { - "$ref": "4352" + "$ref": "4354" }, "decorators": [] }, @@ -54948,7 +54974,7 @@ ] }, "mcp": { - "$id": "4521", + "$id": "4523", "kind": "model", "name": "MCPTool", "namespace": "OpenAI", @@ -54963,17 +54989,17 @@ } ], "baseModel": { - "$ref": "4347" + "$ref": "4349" }, "properties": [ { - "$id": "4522", + "$id": "4524", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the MCP tool. Always `mcp`.", "type": { - "$id": "4523", + "$id": "4525", "kind": "enumvalue", "name": "mcp", "value": "mcp", @@ -54981,7 +55007,7 @@ "$ref": "409" }, "enumType": { - "$ref": "4352" + "$ref": "4354" }, "decorators": [] }, @@ -54999,13 +55025,13 @@ "isHttpMetadata": false }, { - "$id": "4524", + "$id": "4526", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "A label for this MCP server, used to identify it in tool calls.", "type": { - "$id": "4525", + "$id": "4527", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55025,13 +55051,13 @@ "isHttpMetadata": false }, { - "$id": "4526", + "$id": "4528", "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": "4527", + "$id": "4529", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -55051,7 +55077,7 @@ "isHttpMetadata": false }, { - "$id": "4528", + "$id": "4530", "kind": "property", "name": "connector_id", "serializedName": "connector_id", @@ -55073,13 +55099,13 @@ "isHttpMetadata": false }, { - "$id": "4529", + "$id": "4531", "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": "4530", + "$id": "4532", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55099,13 +55125,13 @@ "isHttpMetadata": false }, { - "$id": "4531", + "$id": "4533", "kind": "property", "name": "server_description", "serializedName": "server_description", "doc": "Optional description of the MCP server, used to provide more context.", "type": { - "$id": "4532", + "$id": "4534", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55125,13 +55151,13 @@ "isHttpMetadata": false }, { - "$id": "4533", + "$id": "4535", "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": "4534", + "$id": "4536", "kind": "nullable", "type": { "$ref": "2445" @@ -55152,16 +55178,16 @@ "isHttpMetadata": false }, { - "$id": "4535", + "$id": "4537", "kind": "property", "name": "allowed_tools", "serializedName": "allowed_tools", "doc": "List of allowed tool names or a filter object.", "type": { - "$id": "4536", + "$id": "4538", "kind": "nullable", "type": { - "$id": "4537", + "$id": "4539", "kind": "model", "name": "MCPToolFilter", "namespace": "OpenAI", @@ -55177,7 +55203,7 @@ ], "properties": [ { - "$id": "4538", + "$id": "4540", "kind": "property", "name": "tool_names", "serializedName": "tool_names", @@ -55200,13 +55226,13 @@ "isHttpMetadata": false }, { - "$id": "4539", + "$id": "4541", "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": "4540", + "$id": "4542", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -55243,21 +55269,21 @@ "isHttpMetadata": false }, { - "$id": "4541", + "$id": "4543", "kind": "property", "name": "require_approval", "serializedName": "require_approval", "doc": "Specify which of the MCP server's tools require approval.", "type": { - "$id": "4542", + "$id": "4544", "kind": "nullable", "type": { - "$id": "4543", + "$id": "4545", "kind": "union", "name": "MCPToolRequireApproval", "variantTypes": [ { - "$id": "4544", + "$id": "4546", "kind": "model", "name": "MCPToolRequireApproval1", "namespace": "OpenAI", @@ -55266,12 +55292,12 @@ "decorators": [], "properties": [ { - "$id": "4545", + "$id": "4547", "kind": "property", "name": "always", "serializedName": "always", "type": { - "$ref": "4537" + "$ref": "4539" }, "optional": true, "readOnly": false, @@ -55287,12 +55313,12 @@ "isHttpMetadata": false }, { - "$id": "4546", + "$id": "4548", "kind": "property", "name": "never", "serializedName": "never", "type": { - "$ref": "4537" + "$ref": "4539" }, "optional": true, "readOnly": false, @@ -55355,13 +55381,13 @@ "isHttpMetadata": false }, { - "$id": "4547", + "$id": "4549", "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": "4548", + "$id": "4550", "kind": "model", "name": "EvalResponsesRunDataSourceParamsSamplingParamsText", "namespace": "OpenAI", @@ -55370,12 +55396,12 @@ "decorators": [], "properties": [ { - "$id": "4549", + "$id": "4551", "kind": "property", "name": "format", "serializedName": "format", "type": { - "$ref": "4287" + "$ref": "4289" }, "optional": true, "readOnly": false, @@ -55421,13 +55447,13 @@ "isHttpMetadata": false }, { - "$id": "4550", + "$id": "4552", "kind": "property", "name": "model", "serializedName": "model", "doc": "The name of the model to use for generating completions (e.g. \"o3-mini\").", "type": { - "$id": "4551", + "$id": "4553", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55447,24 +55473,24 @@ "isHttpMetadata": false }, { - "$id": "4552", + "$id": "4554", "kind": "property", "name": "source", "serializedName": "source", "doc": "Determines what populates the `item` namespace in this run's data source.", "type": { - "$id": "4553", + "$id": "4555", "kind": "union", "name": "EvalResponsesRunDataSourceParamsSource", "variantTypes": [ { - "$ref": "4196" + "$ref": "4198" }, { - "$ref": "4199" + "$ref": "4201" }, { - "$ref": "4226" + "$ref": "4228" } ], "namespace": "OpenAI", @@ -55502,161 +55528,161 @@ } ] }, - { - "$ref": "4184" - }, { "$ref": "4186" }, { - "$ref": "4196" + "$ref": "4188" }, { - "$ref": "4258" + "$ref": "4198" }, { - "$ref": "4197" + "$ref": "4260" }, { "$ref": "4199" }, { - "$ref": "4210" + "$ref": "4201" }, { - "$ref": "4226" + "$ref": "4212" }, { - "$ref": "4261" + "$ref": "4228" }, { - "$ref": "4266" + "$ref": "4263" }, { - "$ref": "4272" + "$ref": "4268" }, { - "$ref": "4277" + "$ref": "4274" }, { - "$ref": "4287" + "$ref": "4279" }, { "$ref": "4289" }, { - "$ref": "4297" + "$ref": "4291" }, { - "$ref": "4300" + "$ref": "4299" }, { - "$ref": "4316" + "$ref": "4302" }, { - "$ref": "4321" + "$ref": "4318" }, { - "$ref": "4326" + "$ref": "4323" }, { - "$ref": "4331" + "$ref": "4328" }, { - "$ref": "4336" + "$ref": "4333" }, { - "$ref": "4347" + "$ref": "4338" }, { "$ref": "4349" }, { - "$ref": "4374" + "$ref": "4351" }, { - "$ref": "4381" + "$ref": "4376" }, { - "$ref": "4388" + "$ref": "4383" }, { - "$ref": "4397" + "$ref": "4390" }, { - "$ref": "4408" + "$ref": "4399" }, { - "$ref": "4411" + "$ref": "4410" }, { - "$ref": "4414" + "$ref": "4413" }, { - "$ref": "4417" + "$ref": "4416" }, { - "$ref": "4420" + "$ref": "4419" }, { - "$ref": "4423" + "$ref": "4422" }, { - "$ref": "4428" + "$ref": "4425" }, { - "$ref": "4435" + "$ref": "4430" }, { - "$ref": "4438" + "$ref": "4437" }, { - "$ref": "4446" + "$ref": "4440" }, { - "$ref": "4451" + "$ref": "4448" }, { "$ref": "4453" }, { - "$ref": "4472" + "$ref": "4455" + }, + { + "$ref": "4474" }, { - "$ref": "4477" + "$ref": "4479" }, { - "$ref": "4483" + "$ref": "4485" }, { - "$ref": "4489" + "$ref": "4491" }, { - "$ref": "4490" + "$ref": "4492" }, { - "$ref": "4498" + "$ref": "4500" }, { - "$ref": "4511" + "$ref": "4513" }, { - "$ref": "4518" + "$ref": "4520" }, { - "$ref": "4521" + "$ref": "4523" }, { - "$ref": "4537" + "$ref": "4539" }, { - "$ref": "4544" + "$ref": "4546" }, { - "$ref": "4548" + "$ref": "4550" }, { - "$id": "4554", + "$id": "4556", "kind": "model", "name": "DeleteEvalRunResponse", "namespace": "OpenAI", @@ -55665,7 +55691,7 @@ "decorators": [], "properties": [ { - "$id": "4555", + "$id": "4557", "kind": "property", "name": "object", "serializedName": "object", @@ -55686,12 +55712,12 @@ "isHttpMetadata": false }, { - "$id": "4556", + "$id": "4558", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "4557", + "$id": "4559", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -55711,12 +55737,12 @@ "isHttpMetadata": false }, { - "$id": "4558", + "$id": "4560", "kind": "property", "name": "eval_run_id", "serializedName": "eval_run_id", "type": { - "$id": "4559", + "$id": "4561", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55738,7 +55764,7 @@ ] }, { - "$id": "4560", + "$id": "4562", "kind": "model", "name": "EvalRunOutputItemList", "namespace": "OpenAI", @@ -55748,7 +55774,7 @@ "decorators": [], "properties": [ { - "$id": "4561", + "$id": "4563", "kind": "property", "name": "object", "serializedName": "object", @@ -55770,17 +55796,17 @@ "isHttpMetadata": false }, { - "$id": "4562", + "$id": "4564", "kind": "property", "name": "data", "serializedName": "data", "doc": "An array of eval run output item objects.", "type": { - "$id": "4563", + "$id": "4565", "kind": "array", "name": "ArrayEvalRunOutputItem", "valueType": { - "$id": "4564", + "$id": "4566", "kind": "model", "name": "EvalRunOutputItem", "namespace": "OpenAI", @@ -55790,7 +55816,7 @@ "decorators": [], "properties": [ { - "$id": "4565", + "$id": "4567", "kind": "property", "name": "object", "serializedName": "object", @@ -55812,13 +55838,13 @@ "isHttpMetadata": false }, { - "$id": "4566", + "$id": "4568", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for the evaluation run output item.", "type": { - "$id": "4567", + "$id": "4569", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55838,13 +55864,13 @@ "isHttpMetadata": false }, { - "$id": "4568", + "$id": "4570", "kind": "property", "name": "run_id", "serializedName": "run_id", "doc": "The identifier of the evaluation run associated with this output item.", "type": { - "$id": "4569", + "$id": "4571", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55864,13 +55890,13 @@ "isHttpMetadata": false }, { - "$id": "4570", + "$id": "4572", "kind": "property", "name": "eval_id", "serializedName": "eval_id", "doc": "The identifier of the evaluation group.", "type": { - "$id": "4571", + "$id": "4573", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55890,18 +55916,18 @@ "isHttpMetadata": false }, { - "$id": "4572", + "$id": "4574", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) when the evaluation run was created.", "type": { - "$id": "4573", + "$id": "4575", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "4574", + "$id": "4576", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -55924,13 +55950,13 @@ "isHttpMetadata": false }, { - "$id": "4575", + "$id": "4577", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the evaluation run.", "type": { - "$id": "4576", + "$id": "4578", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55950,13 +55976,13 @@ "isHttpMetadata": false }, { - "$id": "4577", + "$id": "4579", "kind": "property", "name": "datasource_item_id", "serializedName": "datasource_item_id", "doc": "The identifier for the data source item.", "type": { - "$id": "4578", + "$id": "4580", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -55976,13 +56002,13 @@ "isHttpMetadata": false }, { - "$id": "4579", + "$id": "4581", "kind": "property", "name": "datasource_item", "serializedName": "datasource_item", "doc": "Details of the input data source item.", "type": { - "$ref": "3946" + "$ref": "3948" }, "optional": false, "readOnly": false, @@ -55998,17 +56024,17 @@ "isHttpMetadata": false }, { - "$id": "4580", + "$id": "4582", "kind": "property", "name": "results", "serializedName": "results", "doc": "A list of results from the evaluation run.", "type": { - "$id": "4581", + "$id": "4583", "kind": "array", "name": "ArrayRecord", "valueType": { - "$ref": "3946" + "$ref": "3948" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -56027,13 +56053,13 @@ "isHttpMetadata": false }, { - "$id": "4582", + "$id": "4584", "kind": "property", "name": "sample", "serializedName": "sample", "doc": "A sample containing the input and output of the evaluation run.", "type": { - "$id": "4583", + "$id": "4585", "kind": "model", "name": "EvalRunOutputItemSample", "namespace": "OpenAI", @@ -56042,17 +56068,17 @@ "decorators": [], "properties": [ { - "$id": "4584", + "$id": "4586", "kind": "property", "name": "input", "serializedName": "input", "doc": "An array of input messages.", "type": { - "$id": "4585", + "$id": "4587", "kind": "array", "name": "Array21", "valueType": { - "$id": "4586", + "$id": "4588", "kind": "model", "name": "EvalRunOutputItemSampleInput", "namespace": "OpenAI", @@ -56061,13 +56087,13 @@ "decorators": [], "properties": [ { - "$id": "4587", + "$id": "4589", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message sender (e.g., system, user, developer).", "type": { - "$id": "4588", + "$id": "4590", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56087,13 +56113,13 @@ "isHttpMetadata": false }, { - "$id": "4589", + "$id": "4591", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message.", "type": { - "$id": "4590", + "$id": "4592", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56131,17 +56157,17 @@ "isHttpMetadata": false }, { - "$id": "4591", + "$id": "4593", "kind": "property", "name": "output", "serializedName": "output", "doc": "An array of output messages.", "type": { - "$id": "4592", + "$id": "4594", "kind": "array", "name": "Array22", "valueType": { - "$id": "4593", + "$id": "4595", "kind": "model", "name": "EvalRunOutputItemSampleOutput", "namespace": "OpenAI", @@ -56150,13 +56176,13 @@ "decorators": [], "properties": [ { - "$id": "4594", + "$id": "4596", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message (e.g. \"system\", \"assistant\", \"user\").", "type": { - "$id": "4595", + "$id": "4597", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56176,13 +56202,13 @@ "isHttpMetadata": false }, { - "$id": "4596", + "$id": "4598", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message.", "type": { - "$id": "4597", + "$id": "4599", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56220,13 +56246,13 @@ "isHttpMetadata": false }, { - "$id": "4598", + "$id": "4600", "kind": "property", "name": "finish_reason", "serializedName": "finish_reason", "doc": "The reason why the sample generation was finished.", "type": { - "$id": "4599", + "$id": "4601", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56246,13 +56272,13 @@ "isHttpMetadata": false }, { - "$id": "4600", + "$id": "4602", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model used for generating the sample.", "type": { - "$id": "4601", + "$id": "4603", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56272,13 +56298,13 @@ "isHttpMetadata": false }, { - "$id": "4602", + "$id": "4604", "kind": "property", "name": "usage", "serializedName": "usage", "doc": "Token usage details for the sample.", "type": { - "$id": "4603", + "$id": "4605", "kind": "model", "name": "EvalRunOutputItemSampleUsage", "namespace": "OpenAI", @@ -56287,13 +56313,13 @@ "decorators": [], "properties": [ { - "$id": "4604", + "$id": "4606", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens used.", "type": { - "$id": "4605", + "$id": "4607", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -56313,13 +56339,13 @@ "isHttpMetadata": false }, { - "$id": "4606", + "$id": "4608", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "The number of completion tokens generated.", "type": { - "$id": "4607", + "$id": "4609", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -56339,13 +56365,13 @@ "isHttpMetadata": false }, { - "$id": "4608", + "$id": "4610", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "The number of prompt tokens used.", "type": { - "$id": "4609", + "$id": "4611", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -56365,13 +56391,13 @@ "isHttpMetadata": false }, { - "$id": "4610", + "$id": "4612", "kind": "property", "name": "cached_tokens", "serializedName": "cached_tokens", "doc": "The number of tokens retrieved from cache.", "type": { - "$id": "4611", + "$id": "4613", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -56406,12 +56432,12 @@ "isHttpMetadata": false }, { - "$id": "4612", + "$id": "4614", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$ref": "4168" + "$ref": "4170" }, "optional": false, "readOnly": false, @@ -56427,13 +56453,13 @@ "isHttpMetadata": false }, { - "$id": "4613", + "$id": "4615", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "The sampling temperature used.", "type": { - "$id": "4614", + "$id": "4616", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -56453,13 +56479,13 @@ "isHttpMetadata": false }, { - "$id": "4615", + "$id": "4617", "kind": "property", "name": "max_completion_tokens", "serializedName": "max_completion_tokens", "doc": "The maximum number of tokens allowed for completion.", "type": { - "$id": "4616", + "$id": "4618", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -56479,13 +56505,13 @@ "isHttpMetadata": false }, { - "$id": "4617", + "$id": "4619", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "The top_p value used for sampling.", "type": { - "$id": "4618", + "$id": "4620", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -56505,13 +56531,13 @@ "isHttpMetadata": false }, { - "$id": "4619", + "$id": "4621", "kind": "property", "name": "seed", "serializedName": "seed", "doc": "The seed used for generating the sample.", "type": { - "$id": "4620", + "$id": "4622", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -56564,13 +56590,13 @@ "isHttpMetadata": false }, { - "$id": "4621", + "$id": "4623", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The identifier of the first eval run output item in the data array.", "type": { - "$id": "4622", + "$id": "4624", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56590,13 +56616,13 @@ "isHttpMetadata": false }, { - "$id": "4623", + "$id": "4625", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The identifier of the last eval run output item in the data array.", "type": { - "$id": "4624", + "$id": "4626", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56616,13 +56642,13 @@ "isHttpMetadata": false }, { - "$id": "4625", + "$id": "4627", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates whether there are more eval run output items available.", "type": { - "$id": "4626", + "$id": "4628", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -56644,22 +56670,22 @@ ] }, { - "$ref": "4564" + "$ref": "4566" }, { - "$ref": "4583" + "$ref": "4585" }, { - "$ref": "4586" + "$ref": "4588" }, { - "$ref": "4593" + "$ref": "4595" }, { - "$ref": "4603" + "$ref": "4605" }, { - "$id": "4627", + "$id": "4629", "kind": "model", "name": "CreateResponse", "namespace": "OpenAI", @@ -56673,7 +56699,7 @@ ], "properties": [ { - "$id": "4628", + "$id": "4630", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -56695,7 +56721,7 @@ "isHttpMetadata": false }, { - "$id": "4629", + "$id": "4631", "kind": "property", "name": "temperature", "serializedName": "temperature", @@ -56717,13 +56743,35 @@ "isHttpMetadata": false }, { - "$id": "4630", + "$id": "4632", + "kind": "property", + "name": "top_logprobs", + "serializedName": "top_logprobs", + "doc": "An integer between 0 and 20 specifying the number of most likely tokens to return at each token position, each with an associated log probability.", + "type": { + "$ref": "2980" + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.CreateResponse.top_logprobs", + "serializationOptions": { + "json": { + "name": "top_logprobs" + } + }, + "isHttpMetadata": false + }, + { + "$id": "4633", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "An alternative to sampling with temperature, called nucleus sampling,\nwhere the model considers the results of the tokens with top_p probability\nmass. So 0.1 means only the tokens comprising the top 10% probability mass\nare considered.\n\nWe generally recommend altering this or `temperature` but not both.", "type": { - "$ref": "2980" + "$ref": "2983" }, "optional": true, "readOnly": false, @@ -56739,13 +56787,13 @@ "isHttpMetadata": false }, { - "$id": "4631", + "$id": "4634", "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": "4632", + "$id": "4635", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56765,7 +56813,33 @@ "isHttpMetadata": false }, { - "$id": "4633", + "$id": "4636", + "kind": "property", + "name": "safety_identifier", + "serializedName": "safety_identifier", + "doc": "A stable identifier used to help detect users of your application that may be violating OpenAI's usage policies.\n The IDs should be a string that uniquely identifies each user. We recommend hashing their username or email address, in order to avoid sending us any identifying information. [Learn more](https://platform.openai.com/docs/guides/safety-best-practices#safety-identifiers).", + "type": { + "$id": "4637", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.CreateResponse.safety_identifier", + "serializationOptions": { + "json": { + "name": "safety_identifier" + } + }, + "isHttpMetadata": false + }, + { + "$id": "4638", "kind": "property", "name": "service_tier", "serializedName": "service_tier", @@ -56786,16 +56860,16 @@ "isHttpMetadata": false }, { - "$id": "4634", + "$id": "4639", "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": "4635", + "$id": "4640", "kind": "nullable", "type": { - "$id": "4636", + "$id": "4641", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56817,7 +56891,7 @@ "isHttpMetadata": false }, { - "$id": "4637", + "$id": "4642", "kind": "property", "name": "model", "serializedName": "model", @@ -56839,15 +56913,15 @@ "isHttpMetadata": false }, { - "$id": "4638", + "$id": "4643", "kind": "property", "name": "reasoning", "serializedName": "reasoning", "type": { - "$id": "4639", + "$id": "4644", "kind": "nullable", "type": { - "$id": "4640", + "$id": "4645", "kind": "model", "name": "Reasoning", "namespace": "OpenAI", @@ -56862,12 +56936,12 @@ ], "properties": [ { - "$id": "4641", + "$id": "4646", "kind": "property", "name": "effort", "serializedName": "effort", "type": { - "$id": "4642", + "$id": "4647", "kind": "nullable", "type": { "$ref": "53" @@ -56888,13 +56962,13 @@ "isHttpMetadata": false }, { - "$id": "4643", + "$id": "4648", "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": "4644", + "$id": "4649", "kind": "nullable", "type": { "$ref": "566" @@ -56915,13 +56989,13 @@ "isHttpMetadata": false }, { - "$id": "4645", + "$id": "4650", "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": "4646", + "$id": "4651", "kind": "nullable", "type": { "$ref": "571" @@ -56959,16 +57033,16 @@ "isHttpMetadata": false }, { - "$id": "4647", + "$id": "4652", "kind": "property", "name": "background", "serializedName": "background", "doc": "Whether to run the model response in the background.\n[Learn more](/docs/guides/background).", "type": { - "$id": "4648", + "$id": "4653", "kind": "nullable", "type": { - "$id": "4649", + "$id": "4654", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -56990,16 +57064,16 @@ "isHttpMetadata": false }, { - "$id": "4650", + "$id": "4655", "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": "4651", + "$id": "4656", "kind": "nullable", "type": { - "$id": "4652", + "$id": "4657", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -57021,16 +57095,47 @@ "isHttpMetadata": false }, { - "$id": "4653", + "$id": "4658", + "kind": "property", + "name": "max_tool_calls", + "serializedName": "max_tool_calls", + "doc": "The maximum number of total calls to built-in tools that can be processed in a response. This maximum number applies across all built-in tool calls, not per individual tool. Any further attempts to call a tool by the model will be ignored.", + "type": { + "$id": "4659", + "kind": "nullable", + "type": { + "$id": "4660", + "kind": "int32", + "name": "int32", + "crossLanguageDefinitionId": "TypeSpec.int32", + "decorators": [] + }, + "namespace": "OpenAI" + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.CreateResponse.max_tool_calls", + "serializationOptions": { + "json": { + "name": "max_tool_calls" + } + }, + "isHttpMetadata": false + }, + { + "$id": "4661", "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": "4654", + "$id": "4662", "kind": "nullable", "type": { - "$id": "4655", + "$id": "4663", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57052,13 +57157,13 @@ "isHttpMetadata": false }, { - "$id": "4656", + "$id": "4664", "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": "4657", + "$id": "4665", "kind": "model", "name": "CreateResponseText", "namespace": "OpenAI", @@ -57067,12 +57172,12 @@ "decorators": [], "properties": [ { - "$id": "4658", + "$id": "4666", "kind": "property", "name": "format", "serializedName": "format", "type": { - "$ref": "4287" + "$ref": "4289" }, "optional": true, "readOnly": false, @@ -57103,13 +57208,13 @@ "isHttpMetadata": false }, { - "$id": "4659", + "$id": "4667", "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": "4346" + "$ref": "4348" }, "optional": true, "readOnly": false, @@ -57125,13 +57230,13 @@ "isHttpMetadata": false }, { - "$id": "4660", + "$id": "4668", "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": "4661", + "$id": "4669", "kind": "union", "name": "CreateResponseToolChoice", "variantTypes": [ @@ -57139,7 +57244,7 @@ "$ref": "576" }, { - "$id": "4662", + "$id": "4670", "kind": "model", "name": "ToolChoiceObject", "namespace": "OpenAI", @@ -57152,7 +57257,7 @@ } ], "discriminatorProperty": { - "$id": "4663", + "$id": "4671", "kind": "property", "name": "type", "serializedName": "type", @@ -57174,12 +57279,12 @@ }, "properties": [ { - "$ref": "4663" + "$ref": "4671" } ], "discriminatedSubtypes": { "file_search": { - "$id": "4664", + "$id": "4672", "kind": "model", "name": "ToolChoiceObjectFileSearch", "namespace": "OpenAI", @@ -57193,16 +57298,16 @@ } ], "baseModel": { - "$ref": "4662" + "$ref": "4670" }, "properties": [ { - "$id": "4665", + "$id": "4673", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4666", + "$id": "4674", "kind": "enumvalue", "name": "file_search", "value": "file_search", @@ -57210,7 +57315,7 @@ "$ref": "582" }, "enumType": { - "$id": "4667", + "$id": "4675", "kind": "enum", "decorators": [], "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).", @@ -57218,7 +57323,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4668", + "$id": "4676", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -57227,94 +57332,94 @@ }, "values": [ { - "$id": "4669", + "$id": "4677", "kind": "enumvalue", "decorators": [], "name": "file_search", "value": "file_search", "valueType": { - "$ref": "4668" + "$ref": "4676" }, "enumType": { - "$ref": "4667" + "$ref": "4675" } }, { - "$id": "4670", + "$id": "4678", "kind": "enumvalue", "decorators": [], "name": "function", "value": "function", "valueType": { - "$ref": "4668" + "$ref": "4676" }, "enumType": { - "$ref": "4667" + "$ref": "4675" } }, { - "$id": "4671", + "$id": "4679", "kind": "enumvalue", "decorators": [], "name": "computer", "value": "computer_use_preview", "valueType": { - "$ref": "4668" + "$ref": "4676" }, "enumType": { - "$ref": "4667" + "$ref": "4675" } }, { - "$id": "4672", + "$id": "4680", "kind": "enumvalue", "decorators": [], "name": "web_search", "value": "web_search_preview", "valueType": { - "$ref": "4668" + "$ref": "4676" }, "enumType": { - "$ref": "4667" + "$ref": "4675" } }, { - "$id": "4673", + "$id": "4681", "kind": "enumvalue", "decorators": [], "name": "image_generation", "value": "image_generation", "valueType": { - "$ref": "4668" + "$ref": "4676" }, "enumType": { - "$ref": "4667" + "$ref": "4675" } }, { - "$id": "4674", + "$id": "4682", "kind": "enumvalue", "decorators": [], "name": "code_interpreter", "value": "code_interpreter", "valueType": { - "$ref": "4668" + "$ref": "4676" }, "enumType": { - "$ref": "4667" + "$ref": "4675" } }, { - "$id": "4675", + "$id": "4683", "kind": "enumvalue", "decorators": [], "name": "mcp", "value": "mcp", "valueType": { - "$ref": "4668" + "$ref": "4676" }, "enumType": { - "$ref": "4667" + "$ref": "4675" } } ], @@ -57345,7 +57450,7 @@ ] }, "computer_use_preview": { - "$id": "4676", + "$id": "4684", "kind": "model", "name": "ToolChoiceObjectComputer", "namespace": "OpenAI", @@ -57359,16 +57464,16 @@ } ], "baseModel": { - "$ref": "4662" + "$ref": "4670" }, "properties": [ { - "$id": "4677", + "$id": "4685", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4678", + "$id": "4686", "kind": "enumvalue", "name": "computer", "value": "computer_use_preview", @@ -57376,7 +57481,7 @@ "$ref": "582" }, "enumType": { - "$ref": "4667" + "$ref": "4675" }, "decorators": [] }, @@ -57396,7 +57501,7 @@ ] }, "web_search_preview": { - "$id": "4679", + "$id": "4687", "kind": "model", "name": "ToolChoiceObjectWebSearch", "namespace": "OpenAI", @@ -57410,16 +57515,16 @@ } ], "baseModel": { - "$ref": "4662" + "$ref": "4670" }, "properties": [ { - "$id": "4680", + "$id": "4688", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4681", + "$id": "4689", "kind": "enumvalue", "name": "web_search", "value": "web_search_preview", @@ -57427,7 +57532,7 @@ "$ref": "582" }, "enumType": { - "$ref": "4667" + "$ref": "4675" }, "decorators": [] }, @@ -57447,7 +57552,7 @@ ] }, "image_generation": { - "$id": "4682", + "$id": "4690", "kind": "model", "name": "ToolChoiceObjectImageGen", "namespace": "OpenAI", @@ -57461,16 +57566,16 @@ } ], "baseModel": { - "$ref": "4662" + "$ref": "4670" }, "properties": [ { - "$id": "4683", + "$id": "4691", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4684", + "$id": "4692", "kind": "enumvalue", "name": "image_generation", "value": "image_generation", @@ -57478,7 +57583,7 @@ "$ref": "582" }, "enumType": { - "$ref": "4667" + "$ref": "4675" }, "decorators": [] }, @@ -57498,7 +57603,7 @@ ] }, "code_interpreter": { - "$id": "4685", + "$id": "4693", "kind": "model", "name": "ToolChoiceObjectCodeInterpreter", "namespace": "OpenAI", @@ -57512,16 +57617,16 @@ } ], "baseModel": { - "$ref": "4662" + "$ref": "4670" }, "properties": [ { - "$id": "4686", + "$id": "4694", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4687", + "$id": "4695", "kind": "enumvalue", "name": "code_interpreter", "value": "code_interpreter", @@ -57529,7 +57634,7 @@ "$ref": "582" }, "enumType": { - "$ref": "4667" + "$ref": "4675" }, "decorators": [] }, @@ -57549,7 +57654,7 @@ ] }, "mcp": { - "$id": "4688", + "$id": "4696", "kind": "model", "name": "ToolChoiceObjectMCP", "namespace": "OpenAI", @@ -57563,16 +57668,16 @@ } ], "baseModel": { - "$ref": "4662" + "$ref": "4670" }, "properties": [ { - "$id": "4689", + "$id": "4697", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4690", + "$id": "4698", "kind": "enumvalue", "name": "mcp", "value": "mcp", @@ -57580,7 +57685,7 @@ "$ref": "582" }, "enumType": { - "$ref": "4667" + "$ref": "4675" }, "decorators": [] }, @@ -57600,7 +57705,7 @@ ] }, "function": { - "$id": "4691", + "$id": "4699", "kind": "model", "name": "ToolChoiceObjectFunction", "namespace": "OpenAI", @@ -57615,17 +57720,17 @@ } ], "baseModel": { - "$ref": "4662" + "$ref": "4670" }, "properties": [ { - "$id": "4692", + "$id": "4700", "kind": "property", "name": "type", "serializedName": "type", "doc": "For function calling, the type is always `function`.", "type": { - "$id": "4693", + "$id": "4701", "kind": "enumvalue", "name": "function", "value": "function", @@ -57633,7 +57738,7 @@ "$ref": "582" }, "enumType": { - "$ref": "4667" + "$ref": "4675" }, "decorators": [] }, @@ -57651,13 +57756,13 @@ "isHttpMetadata": false }, { - "$id": "4694", + "$id": "4702", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "4695", + "$id": "4703", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57698,13 +57803,13 @@ "isHttpMetadata": false }, { - "$id": "4696", + "$id": "4704", "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": "4697", + "$id": "4705", "kind": "nullable", "type": { "$ref": "590" @@ -57725,34 +57830,34 @@ "isHttpMetadata": false }, { - "$id": "4698", + "$id": "4706", "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": "4699", + "$id": "4707", "kind": "union", "name": "CreateResponseInput", "variantTypes": [ { - "$id": "4700", + "$id": "4708", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "4701", + "$id": "4709", "kind": "array", "name": "Array23", "valueType": { - "$id": "4702", + "$id": "4710", "kind": "union", "name": "CreateResponseInput1", "variantTypes": [ { - "$id": "4703", + "$id": "4711", "kind": "model", "name": "ImplicitUserMessage", "namespace": "OpenAI", @@ -57766,28 +57871,28 @@ ], "properties": [ { - "$id": "4704", + "$id": "4712", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "4705", + "$id": "4713", "kind": "union", "name": "ImplicitUserMessageContent", "variantTypes": [ { - "$id": "4706", + "$id": "4714", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "4707", + "$id": "4715", "kind": "array", "name": "ArrayItemContent", "valueType": { - "$id": "4708", + "$id": "4716", "kind": "model", "name": "ItemContent", "namespace": "OpenAI", @@ -57800,7 +57905,7 @@ } ], "discriminatorProperty": { - "$id": "4709", + "$id": "4717", "kind": "property", "name": "type", "serializedName": "type", @@ -57822,12 +57927,12 @@ }, "properties": [ { - "$ref": "4709" + "$ref": "4717" } ], "discriminatedSubtypes": { "input_audio": { - "$id": "4710", + "$id": "4718", "kind": "model", "name": "ItemContentInputAudio", "namespace": "OpenAI", @@ -57842,17 +57947,17 @@ } ], "baseModel": { - "$ref": "4708" + "$ref": "4716" }, "properties": [ { - "$id": "4711", + "$id": "4719", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the input item. Always `input_audio`.", "type": { - "$id": "4712", + "$id": "4720", "kind": "enumvalue", "name": "input_audio", "value": "input_audio", @@ -57860,7 +57965,7 @@ "$ref": "595" }, "enumType": { - "$id": "4713", + "$id": "4721", "kind": "enum", "decorators": [], "doc": "Multi-modal input and output contents.", @@ -57868,7 +57973,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4714", + "$id": "4722", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -57877,94 +57982,94 @@ }, "values": [ { - "$id": "4715", + "$id": "4723", "kind": "enumvalue", "decorators": [], "name": "input_text", "value": "input_text", "valueType": { - "$ref": "4714" + "$ref": "4722" }, "enumType": { - "$ref": "4713" + "$ref": "4721" } }, { - "$id": "4716", + "$id": "4724", "kind": "enumvalue", "decorators": [], "name": "input_audio", "value": "input_audio", "valueType": { - "$ref": "4714" + "$ref": "4722" }, "enumType": { - "$ref": "4713" + "$ref": "4721" } }, { - "$id": "4717", + "$id": "4725", "kind": "enumvalue", "decorators": [], "name": "input_image", "value": "input_image", "valueType": { - "$ref": "4714" + "$ref": "4722" }, "enumType": { - "$ref": "4713" + "$ref": "4721" } }, { - "$id": "4718", + "$id": "4726", "kind": "enumvalue", "decorators": [], "name": "input_file", "value": "input_file", "valueType": { - "$ref": "4714" + "$ref": "4722" }, "enumType": { - "$ref": "4713" + "$ref": "4721" } }, { - "$id": "4719", + "$id": "4727", "kind": "enumvalue", "decorators": [], "name": "output_text", "value": "output_text", "valueType": { - "$ref": "4714" + "$ref": "4722" }, "enumType": { - "$ref": "4713" + "$ref": "4721" } }, { - "$id": "4720", + "$id": "4728", "kind": "enumvalue", "decorators": [], "name": "output_audio", "value": "output_audio", "valueType": { - "$ref": "4714" + "$ref": "4722" }, "enumType": { - "$ref": "4713" + "$ref": "4721" } }, { - "$id": "4721", + "$id": "4729", "kind": "enumvalue", "decorators": [], "name": "refusal", "value": "refusal", "valueType": { - "$ref": "4714" + "$ref": "4722" }, "enumType": { - "$ref": "4713" + "$ref": "4721" } } ], @@ -57993,13 +58098,13 @@ "isHttpMetadata": false }, { - "$id": "4722", + "$id": "4730", "kind": "property", "name": "data", "serializedName": "data", "doc": "Base64-encoded audio data.", "type": { - "$id": "4723", + "$id": "4731", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58019,7 +58124,7 @@ "isHttpMetadata": false }, { - "$id": "4724", + "$id": "4732", "kind": "property", "name": "format", "serializedName": "format", @@ -58043,7 +58148,7 @@ ] }, "output_audio": { - "$id": "4725", + "$id": "4733", "kind": "model", "name": "ItemContentOutputAudio", "namespace": "OpenAI", @@ -58058,17 +58163,17 @@ } ], "baseModel": { - "$ref": "4708" + "$ref": "4716" }, "properties": [ { - "$id": "4726", + "$id": "4734", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the output audio. Always `output_audio`.", "type": { - "$id": "4727", + "$id": "4735", "kind": "enumvalue", "name": "output_audio", "value": "output_audio", @@ -58076,7 +58181,7 @@ "$ref": "595" }, "enumType": { - "$ref": "4713" + "$ref": "4721" }, "decorators": [] }, @@ -58094,13 +58199,13 @@ "isHttpMetadata": false }, { - "$id": "4728", + "$id": "4736", "kind": "property", "name": "data", "serializedName": "data", "doc": "Base64-encoded audio data from the model.", "type": { - "$id": "4729", + "$id": "4737", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58120,13 +58225,13 @@ "isHttpMetadata": false }, { - "$id": "4730", + "$id": "4738", "kind": "property", "name": "transcript", "serializedName": "transcript", "doc": "The transcript of the audio data from the model.", "type": { - "$id": "4731", + "$id": "4739", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58148,7 +58253,7 @@ ] }, "refusal": { - "$id": "4732", + "$id": "4740", "kind": "model", "name": "ItemContentRefusal", "namespace": "OpenAI", @@ -58163,17 +58268,17 @@ } ], "baseModel": { - "$ref": "4708" + "$ref": "4716" }, "properties": [ { - "$id": "4733", + "$id": "4741", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the refusal. Always `refusal`.", "type": { - "$id": "4734", + "$id": "4742", "kind": "enumvalue", "name": "refusal", "value": "refusal", @@ -58181,7 +58286,7 @@ "$ref": "595" }, "enumType": { - "$ref": "4713" + "$ref": "4721" }, "decorators": [] }, @@ -58199,13 +58304,13 @@ "isHttpMetadata": false }, { - "$id": "4735", + "$id": "4743", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "The refusal explanationfrom the model.", "type": { - "$id": "4736", + "$id": "4744", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58227,7 +58332,7 @@ ] }, "input_text": { - "$id": "4737", + "$id": "4745", "kind": "model", "name": "ItemContentInputText", "namespace": "OpenAI", @@ -58242,17 +58347,17 @@ } ], "baseModel": { - "$ref": "4708" + "$ref": "4716" }, "properties": [ { - "$id": "4738", + "$id": "4746", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the input item. Always `input_text`.", "type": { - "$id": "4739", + "$id": "4747", "kind": "enumvalue", "name": "input_text", "value": "input_text", @@ -58260,7 +58365,7 @@ "$ref": "595" }, "enumType": { - "$ref": "4713" + "$ref": "4721" }, "decorators": [] }, @@ -58278,13 +58383,13 @@ "isHttpMetadata": false }, { - "$id": "4740", + "$id": "4748", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text input to the model.", "type": { - "$id": "4741", + "$id": "4749", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58306,7 +58411,7 @@ ] }, "input_image": { - "$id": "4742", + "$id": "4750", "kind": "model", "name": "ItemContentInputImage", "namespace": "OpenAI", @@ -58321,17 +58426,17 @@ } ], "baseModel": { - "$ref": "4708" + "$ref": "4716" }, "properties": [ { - "$id": "4743", + "$id": "4751", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the input item. Always `input_image`.", "type": { - "$id": "4744", + "$id": "4752", "kind": "enumvalue", "name": "input_image", "value": "input_image", @@ -58339,7 +58444,7 @@ "$ref": "595" }, "enumType": { - "$ref": "4713" + "$ref": "4721" }, "decorators": [] }, @@ -58357,16 +58462,16 @@ "isHttpMetadata": false }, { - "$id": "4745", + "$id": "4753", "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": "4746", + "$id": "4754", "kind": "nullable", "type": { - "$id": "4747", + "$id": "4755", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58388,16 +58493,16 @@ "isHttpMetadata": false }, { - "$id": "4748", + "$id": "4756", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to be sent to the model.", "type": { - "$id": "4749", + "$id": "4757", "kind": "nullable", "type": { - "$id": "4750", + "$id": "4758", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58419,7 +58524,7 @@ "isHttpMetadata": false }, { - "$id": "4751", + "$id": "4759", "kind": "property", "name": "detail", "serializedName": "detail", @@ -58443,7 +58548,7 @@ ] }, "input_file": { - "$id": "4752", + "$id": "4760", "kind": "model", "name": "ItemContentInputFile", "namespace": "OpenAI", @@ -58458,17 +58563,17 @@ } ], "baseModel": { - "$ref": "4708" + "$ref": "4716" }, "properties": [ { - "$id": "4753", + "$id": "4761", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the input item. Always `input_file`.", "type": { - "$id": "4754", + "$id": "4762", "kind": "enumvalue", "name": "input_file", "value": "input_file", @@ -58476,7 +58581,7 @@ "$ref": "595" }, "enumType": { - "$ref": "4713" + "$ref": "4721" }, "decorators": [] }, @@ -58494,16 +58599,16 @@ "isHttpMetadata": false }, { - "$id": "4755", + "$id": "4763", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to be sent to the model.", "type": { - "$id": "4756", + "$id": "4764", "kind": "nullable", "type": { - "$id": "4757", + "$id": "4765", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58525,13 +58630,13 @@ "isHttpMetadata": false }, { - "$id": "4758", + "$id": "4766", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file to be sent to the model.", "type": { - "$id": "4759", + "$id": "4767", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58551,13 +58656,13 @@ "isHttpMetadata": false }, { - "$id": "4760", + "$id": "4768", "kind": "property", "name": "file_data", "serializedName": "file_data", "doc": "The content of the file to be sent to the model.", "type": { - "$id": "4761", + "$id": "4769", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58579,7 +58684,7 @@ ] }, "output_text": { - "$id": "4762", + "$id": "4770", "kind": "model", "name": "ItemContentOutputText", "namespace": "OpenAI", @@ -58594,17 +58699,17 @@ } ], "baseModel": { - "$ref": "4708" + "$ref": "4716" }, "properties": [ { - "$id": "4763", + "$id": "4771", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the output text. Always `output_text`.", "type": { - "$id": "4764", + "$id": "4772", "kind": "enumvalue", "name": "output_text", "value": "output_text", @@ -58612,7 +58717,7 @@ "$ref": "595" }, "enumType": { - "$ref": "4713" + "$ref": "4721" }, "decorators": [] }, @@ -58630,13 +58735,13 @@ "isHttpMetadata": false }, { - "$id": "4765", + "$id": "4773", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text output from the model.", "type": { - "$id": "4766", + "$id": "4774", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58656,17 +58761,17 @@ "isHttpMetadata": false }, { - "$id": "4767", + "$id": "4775", "kind": "property", "name": "annotations", "serializedName": "annotations", "doc": "The annotations of the text output.", "type": { - "$id": "4768", + "$id": "4776", "kind": "array", "name": "ArrayAnnotation", "valueType": { - "$id": "4769", + "$id": "4777", "kind": "model", "name": "Annotation", "namespace": "OpenAI", @@ -58679,7 +58784,7 @@ } ], "discriminatorProperty": { - "$id": "4770", + "$id": "4778", "kind": "property", "name": "type", "serializedName": "type", @@ -58701,12 +58806,12 @@ }, "properties": [ { - "$ref": "4770" + "$ref": "4778" } ], "discriminatedSubtypes": { "file_citation": { - "$id": "4771", + "$id": "4779", "kind": "model", "name": "AnnotationFileCitation", "namespace": "OpenAI", @@ -58721,17 +58826,17 @@ } ], "baseModel": { - "$ref": "4769" + "$ref": "4777" }, "properties": [ { - "$id": "4772", + "$id": "4780", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the file citation. Always `file_citation`.", "type": { - "$id": "4773", + "$id": "4781", "kind": "enumvalue", "name": "file_citation", "value": "file_citation", @@ -58739,14 +58844,14 @@ "$ref": "613" }, "enumType": { - "$id": "4774", + "$id": "4782", "kind": "enum", "decorators": [], "name": "AnnotationType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4775", + "$id": "4783", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -58755,55 +58860,55 @@ }, "values": [ { - "$id": "4776", + "$id": "4784", "kind": "enumvalue", "decorators": [], "name": "file_citation", "value": "file_citation", "valueType": { - "$ref": "4775" + "$ref": "4783" }, "enumType": { - "$ref": "4774" + "$ref": "4782" } }, { - "$id": "4777", + "$id": "4785", "kind": "enumvalue", "decorators": [], "name": "url_citation", "value": "url_citation", "valueType": { - "$ref": "4775" + "$ref": "4783" }, "enumType": { - "$ref": "4774" + "$ref": "4782" } }, { - "$id": "4778", + "$id": "4786", "kind": "enumvalue", "decorators": [], "name": "file_path", "value": "file_path", "valueType": { - "$ref": "4775" + "$ref": "4783" }, "enumType": { - "$ref": "4774" + "$ref": "4782" } }, { - "$id": "4779", + "$id": "4787", "kind": "enumvalue", "decorators": [], "name": "container_file_citation", "value": "container_file_citation", "valueType": { - "$ref": "4775" + "$ref": "4783" }, "enumType": { - "$ref": "4774" + "$ref": "4782" } } ], @@ -58832,13 +58937,13 @@ "isHttpMetadata": false }, { - "$id": "4780", + "$id": "4788", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file.", "type": { - "$id": "4781", + "$id": "4789", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58858,13 +58963,13 @@ "isHttpMetadata": false }, { - "$id": "4782", + "$id": "4790", "kind": "property", "name": "index", "serializedName": "index", "doc": "The index of the file in the list of files.", "type": { - "$id": "4783", + "$id": "4791", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -58884,13 +58989,13 @@ "isHttpMetadata": false }, { - "$id": "4784", + "$id": "4792", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The filename of the file cited.", "type": { - "$id": "4785", + "$id": "4793", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58912,7 +59017,7 @@ ] }, "url_citation": { - "$id": "4786", + "$id": "4794", "kind": "model", "name": "AnnotationUrlCitation", "namespace": "OpenAI", @@ -58927,17 +59032,17 @@ } ], "baseModel": { - "$ref": "4769" + "$ref": "4777" }, "properties": [ { - "$id": "4787", + "$id": "4795", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the URL citation. Always `url_citation`.", "type": { - "$id": "4788", + "$id": "4796", "kind": "enumvalue", "name": "url_citation", "value": "url_citation", @@ -58945,7 +59050,7 @@ "$ref": "613" }, "enumType": { - "$ref": "4774" + "$ref": "4782" }, "decorators": [] }, @@ -58963,13 +59068,13 @@ "isHttpMetadata": false }, { - "$id": "4789", + "$id": "4797", "kind": "property", "name": "url", "serializedName": "url", "doc": "The URL of the web resource.", "type": { - "$id": "4790", + "$id": "4798", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -58989,13 +59094,13 @@ "isHttpMetadata": false }, { - "$id": "4791", + "$id": "4799", "kind": "property", "name": "start_index", "serializedName": "start_index", "doc": "The index of the first character of the URL citation in the message.", "type": { - "$id": "4792", + "$id": "4800", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59015,13 +59120,13 @@ "isHttpMetadata": false }, { - "$id": "4793", + "$id": "4801", "kind": "property", "name": "end_index", "serializedName": "end_index", "doc": "The index of the last character of the URL citation in the message.", "type": { - "$id": "4794", + "$id": "4802", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59041,13 +59146,13 @@ "isHttpMetadata": false }, { - "$id": "4795", + "$id": "4803", "kind": "property", "name": "title", "serializedName": "title", "doc": "The title of the web resource.", "type": { - "$id": "4796", + "$id": "4804", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59069,7 +59174,7 @@ ] }, "container_file_citation": { - "$id": "4797", + "$id": "4805", "kind": "model", "name": "ContainerFileCitationBody", "namespace": "OpenAI", @@ -59084,17 +59189,17 @@ } ], "baseModel": { - "$ref": "4769" + "$ref": "4777" }, "properties": [ { - "$id": "4798", + "$id": "4806", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the container file citation. Always `container_file_citation`.", "type": { - "$id": "4799", + "$id": "4807", "kind": "enumvalue", "name": "container_file_citation", "value": "container_file_citation", @@ -59102,7 +59207,7 @@ "$ref": "613" }, "enumType": { - "$ref": "4774" + "$ref": "4782" }, "decorators": [] }, @@ -59120,13 +59225,13 @@ "isHttpMetadata": false }, { - "$id": "4800", + "$id": "4808", "kind": "property", "name": "container_id", "serializedName": "container_id", "doc": "The ID of the container file.", "type": { - "$id": "4801", + "$id": "4809", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59146,13 +59251,13 @@ "isHttpMetadata": false }, { - "$id": "4802", + "$id": "4810", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file.", "type": { - "$id": "4803", + "$id": "4811", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59172,13 +59277,13 @@ "isHttpMetadata": false }, { - "$id": "4804", + "$id": "4812", "kind": "property", "name": "start_index", "serializedName": "start_index", "doc": "The index of the first character of the container file citation in the message.", "type": { - "$id": "4805", + "$id": "4813", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59198,13 +59303,13 @@ "isHttpMetadata": false }, { - "$id": "4806", + "$id": "4814", "kind": "property", "name": "end_index", "serializedName": "end_index", "doc": "The index of the last character of the container file citation in the message.", "type": { - "$id": "4807", + "$id": "4815", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59224,13 +59329,13 @@ "isHttpMetadata": false }, { - "$id": "4808", + "$id": "4816", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The filename of the container file cited.", "type": { - "$id": "4809", + "$id": "4817", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59252,7 +59357,7 @@ ] }, "file_path": { - "$id": "4810", + "$id": "4818", "kind": "model", "name": "AnnotationFilePath", "namespace": "OpenAI", @@ -59267,17 +59372,17 @@ } ], "baseModel": { - "$ref": "4769" + "$ref": "4777" }, "properties": [ { - "$id": "4811", + "$id": "4819", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the file path. Always `file_path`.", "type": { - "$id": "4812", + "$id": "4820", "kind": "enumvalue", "name": "file_path", "value": "file_path", @@ -59285,7 +59390,7 @@ "$ref": "613" }, "enumType": { - "$ref": "4774" + "$ref": "4782" }, "decorators": [] }, @@ -59303,13 +59408,13 @@ "isHttpMetadata": false }, { - "$id": "4813", + "$id": "4821", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file.", "type": { - "$id": "4814", + "$id": "4822", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59329,13 +59434,13 @@ "isHttpMetadata": false }, { - "$id": "4815", + "$id": "4823", "kind": "property", "name": "index", "serializedName": "index", "doc": "The index of the file in the list of files.", "type": { - "$id": "4816", + "$id": "4824", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59375,16 +59480,16 @@ "isHttpMetadata": false }, { - "$id": "4817", + "$id": "4825", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "type": { - "$id": "4818", + "$id": "4826", "kind": "array", "name": "ArrayLogProb", "valueType": { - "$id": "4819", + "$id": "4827", "kind": "model", "name": "LogProb", "namespace": "OpenAI", @@ -59399,12 +59504,12 @@ ], "properties": [ { - "$id": "4820", + "$id": "4828", "kind": "property", "name": "token", "serializedName": "token", "type": { - "$id": "4821", + "$id": "4829", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59424,12 +59529,12 @@ "isHttpMetadata": false }, { - "$id": "4822", + "$id": "4830", "kind": "property", "name": "logprob", "serializedName": "logprob", "type": { - "$id": "4823", + "$id": "4831", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -59449,7 +59554,7 @@ "isHttpMetadata": false }, { - "$id": "4824", + "$id": "4832", "kind": "property", "name": "bytes", "serializedName": "bytes", @@ -59470,16 +59575,16 @@ "isHttpMetadata": false }, { - "$id": "4825", + "$id": "4833", "kind": "property", "name": "top_logprobs", "serializedName": "top_logprobs", "type": { - "$id": "4826", + "$id": "4834", "kind": "array", "name": "ArrayTopLogProb", "valueType": { - "$id": "4827", + "$id": "4835", "kind": "model", "name": "TopLogProb", "namespace": "OpenAI", @@ -59494,12 +59599,12 @@ ], "properties": [ { - "$id": "4828", + "$id": "4836", "kind": "property", "name": "token", "serializedName": "token", "type": { - "$id": "4829", + "$id": "4837", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59519,12 +59624,12 @@ "isHttpMetadata": false }, { - "$id": "4830", + "$id": "4838", "kind": "property", "name": "logprob", "serializedName": "logprob", "type": { - "$id": "4831", + "$id": "4839", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -59544,7 +59649,7 @@ "isHttpMetadata": false }, { - "$id": "4832", + "$id": "4840", "kind": "property", "name": "bytes", "serializedName": "bytes", @@ -59627,7 +59732,7 @@ ] }, { - "$id": "4833", + "$id": "4841", "kind": "model", "name": "ItemParam", "namespace": "OpenAI", @@ -59641,7 +59746,7 @@ } ], "discriminatorProperty": { - "$id": "4834", + "$id": "4842", "kind": "property", "name": "type", "serializedName": "type", @@ -59663,12 +59768,12 @@ }, "properties": [ { - "$ref": "4834" + "$ref": "4842" } ], "discriminatedSubtypes": { "message": { - "$id": "4835", + "$id": "4843", "kind": "model", "name": "ResponsesMessageItemParam", "namespace": "OpenAI", @@ -59683,7 +59788,7 @@ } ], "discriminatorProperty": { - "$id": "4836", + "$id": "4844", "kind": "property", "name": "role", "serializedName": "role", @@ -59705,17 +59810,17 @@ "isHttpMetadata": false }, "baseModel": { - "$ref": "4833" + "$ref": "4841" }, "properties": [ { - "$id": "4837", + "$id": "4845", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the responses item, which is always 'message'.", "type": { - "$id": "4838", + "$id": "4846", "kind": "enumvalue", "name": "message", "value": "message", @@ -59723,14 +59828,14 @@ "$ref": "619" }, "enumType": { - "$id": "4839", + "$id": "4847", "kind": "enum", "decorators": [], "name": "ItemType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4840", + "$id": "4848", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -59739,224 +59844,224 @@ }, "values": [ { - "$id": "4841", + "$id": "4849", "kind": "enumvalue", "decorators": [], "name": "message", "value": "message", "valueType": { - "$ref": "4840" + "$ref": "4848" }, "enumType": { - "$ref": "4839" + "$ref": "4847" } }, { - "$id": "4842", + "$id": "4850", "kind": "enumvalue", "decorators": [], "name": "file_search_call", "value": "file_search_call", "valueType": { - "$ref": "4840" + "$ref": "4848" }, "enumType": { - "$ref": "4839" + "$ref": "4847" } }, { - "$id": "4843", + "$id": "4851", "kind": "enumvalue", "decorators": [], "name": "function_call", "value": "function_call", "valueType": { - "$ref": "4840" + "$ref": "4848" }, "enumType": { - "$ref": "4839" + "$ref": "4847" } }, { - "$id": "4844", + "$id": "4852", "kind": "enumvalue", "decorators": [], "name": "function_call_output", "value": "function_call_output", "valueType": { - "$ref": "4840" + "$ref": "4848" }, "enumType": { - "$ref": "4839" + "$ref": "4847" } }, { - "$id": "4845", + "$id": "4853", "kind": "enumvalue", "decorators": [], "name": "computer_call", "value": "computer_call", "valueType": { - "$ref": "4840" + "$ref": "4848" }, "enumType": { - "$ref": "4839" + "$ref": "4847" } }, { - "$id": "4846", + "$id": "4854", "kind": "enumvalue", "decorators": [], "name": "computer_call_output", "value": "computer_call_output", "valueType": { - "$ref": "4840" + "$ref": "4848" }, "enumType": { - "$ref": "4839" + "$ref": "4847" } }, { - "$id": "4847", + "$id": "4855", "kind": "enumvalue", "decorators": [], "name": "web_search_call", "value": "web_search_call", "valueType": { - "$ref": "4840" + "$ref": "4848" }, "enumType": { - "$ref": "4839" + "$ref": "4847" } }, { - "$id": "4848", + "$id": "4856", "kind": "enumvalue", "decorators": [], "name": "reasoning", "value": "reasoning", "valueType": { - "$ref": "4840" + "$ref": "4848" }, "enumType": { - "$ref": "4839" + "$ref": "4847" } }, { - "$id": "4849", + "$id": "4857", "kind": "enumvalue", "decorators": [], "name": "item_reference", "value": "item_reference", "valueType": { - "$ref": "4840" + "$ref": "4848" }, "enumType": { - "$ref": "4839" + "$ref": "4847" } }, { - "$id": "4850", + "$id": "4858", "kind": "enumvalue", "decorators": [], "name": "image_generation_call", "value": "image_generation_call", "valueType": { - "$ref": "4840" + "$ref": "4848" }, "enumType": { - "$ref": "4839" + "$ref": "4847" } }, { - "$id": "4851", + "$id": "4859", "kind": "enumvalue", "decorators": [], "name": "code_interpreter_call", "value": "code_interpreter_call", "valueType": { - "$ref": "4840" + "$ref": "4848" }, "enumType": { - "$ref": "4839" + "$ref": "4847" } }, { - "$id": "4852", + "$id": "4860", "kind": "enumvalue", "decorators": [], "name": "local_shell_call", "value": "local_shell_call", "valueType": { - "$ref": "4840" + "$ref": "4848" }, "enumType": { - "$ref": "4839" + "$ref": "4847" } }, { - "$id": "4853", + "$id": "4861", "kind": "enumvalue", "decorators": [], "name": "local_shell_call_output", "value": "local_shell_call_output", "valueType": { - "$ref": "4840" + "$ref": "4848" }, "enumType": { - "$ref": "4839" + "$ref": "4847" } }, { - "$id": "4854", + "$id": "4862", "kind": "enumvalue", "decorators": [], "name": "mcp_list_tools", "value": "mcp_list_tools", "valueType": { - "$ref": "4840" + "$ref": "4848" }, "enumType": { - "$ref": "4839" + "$ref": "4847" } }, { - "$id": "4855", + "$id": "4863", "kind": "enumvalue", "decorators": [], "name": "mcp_approval_request", "value": "mcp_approval_request", "valueType": { - "$ref": "4840" + "$ref": "4848" }, "enumType": { - "$ref": "4839" + "$ref": "4847" } }, { - "$id": "4856", + "$id": "4864", "kind": "enumvalue", "decorators": [], "name": "mcp_approval_response", "value": "mcp_approval_response", "valueType": { - "$ref": "4840" + "$ref": "4848" }, "enumType": { - "$ref": "4839" + "$ref": "4847" } }, { - "$id": "4857", + "$id": "4865", "kind": "enumvalue", "decorators": [], "name": "mcp_call", "value": "mcp_call", "valueType": { - "$ref": "4840" + "$ref": "4848" }, "enumType": { - "$ref": "4839" + "$ref": "4847" } } ], @@ -59985,12 +60090,12 @@ "isHttpMetadata": false }, { - "$ref": "4836" + "$ref": "4844" } ], "discriminatedSubtypes": { "user": { - "$id": "4858", + "$id": "4866", "kind": "model", "name": "ResponsesUserMessageItemParam", "namespace": "OpenAI", @@ -60005,17 +60110,17 @@ } ], "baseModel": { - "$ref": "4835" + "$ref": "4843" }, "properties": [ { - "$id": "4859", + "$id": "4867", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `user`.", "type": { - "$id": "4860", + "$id": "4868", "kind": "enumvalue", "name": "user", "value": "user", @@ -60023,7 +60128,7 @@ "$ref": "638" }, "enumType": { - "$id": "4861", + "$id": "4869", "kind": "enum", "decorators": [], "doc": "The collection of valid roles for responses message items.", @@ -60031,7 +60136,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4862", + "$id": "4870", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -60040,55 +60145,55 @@ }, "values": [ { - "$id": "4863", + "$id": "4871", "kind": "enumvalue", "decorators": [], "name": "system", "value": "system", "valueType": { - "$ref": "4862" + "$ref": "4870" }, "enumType": { - "$ref": "4861" + "$ref": "4869" } }, { - "$id": "4864", + "$id": "4872", "kind": "enumvalue", "decorators": [], "name": "developer", "value": "developer", "valueType": { - "$ref": "4862" + "$ref": "4870" }, "enumType": { - "$ref": "4861" + "$ref": "4869" } }, { - "$id": "4865", + "$id": "4873", "kind": "enumvalue", "decorators": [], "name": "user", "value": "user", "valueType": { - "$ref": "4862" + "$ref": "4870" }, "enumType": { - "$ref": "4861" + "$ref": "4869" } }, { - "$id": "4866", + "$id": "4874", "kind": "enumvalue", "decorators": [], "name": "assistant", "value": "assistant", "valueType": { - "$ref": "4862" + "$ref": "4870" }, "enumType": { - "$ref": "4861" + "$ref": "4869" } } ], @@ -60117,13 +60222,13 @@ "isHttpMetadata": false }, { - "$id": "4867", + "$id": "4875", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4707" + "$ref": "4715" }, "optional": false, "readOnly": false, @@ -60141,7 +60246,7 @@ ] }, "system": { - "$id": "4868", + "$id": "4876", "kind": "model", "name": "ResponsesSystemMessageItemParam", "namespace": "OpenAI", @@ -60156,17 +60261,17 @@ } ], "baseModel": { - "$ref": "4835" + "$ref": "4843" }, "properties": [ { - "$id": "4869", + "$id": "4877", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `system`.", "type": { - "$id": "4870", + "$id": "4878", "kind": "enumvalue", "name": "system", "value": "system", @@ -60174,7 +60279,7 @@ "$ref": "638" }, "enumType": { - "$ref": "4861" + "$ref": "4869" }, "decorators": [] }, @@ -60192,13 +60297,13 @@ "isHttpMetadata": false }, { - "$id": "4871", + "$id": "4879", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4707" + "$ref": "4715" }, "optional": false, "readOnly": false, @@ -60216,7 +60321,7 @@ ] }, "developer": { - "$id": "4872", + "$id": "4880", "kind": "model", "name": "ResponsesDeveloperMessageItemParam", "namespace": "OpenAI", @@ -60231,17 +60336,17 @@ } ], "baseModel": { - "$ref": "4835" + "$ref": "4843" }, "properties": [ { - "$id": "4873", + "$id": "4881", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `developer`.", "type": { - "$id": "4874", + "$id": "4882", "kind": "enumvalue", "name": "developer", "value": "developer", @@ -60249,7 +60354,7 @@ "$ref": "638" }, "enumType": { - "$ref": "4861" + "$ref": "4869" }, "decorators": [] }, @@ -60267,13 +60372,13 @@ "isHttpMetadata": false }, { - "$id": "4875", + "$id": "4883", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4707" + "$ref": "4715" }, "optional": false, "readOnly": false, @@ -60291,7 +60396,7 @@ ] }, "assistant": { - "$id": "4876", + "$id": "4884", "kind": "model", "name": "ResponsesAssistantMessageItemParam", "namespace": "OpenAI", @@ -60306,17 +60411,17 @@ } ], "baseModel": { - "$ref": "4835" + "$ref": "4843" }, "properties": [ { - "$id": "4877", + "$id": "4885", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `assistant`.", "type": { - "$id": "4878", + "$id": "4886", "kind": "enumvalue", "name": "assistant", "value": "assistant", @@ -60324,7 +60429,7 @@ "$ref": "638" }, "enumType": { - "$ref": "4861" + "$ref": "4869" }, "decorators": [] }, @@ -60342,13 +60447,13 @@ "isHttpMetadata": false }, { - "$id": "4879", + "$id": "4887", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4707" + "$ref": "4715" }, "optional": false, "readOnly": false, @@ -60368,7 +60473,7 @@ } }, "function_call_output": { - "$id": "4880", + "$id": "4888", "kind": "model", "name": "FunctionToolCallOutputItemParam", "namespace": "OpenAI", @@ -60383,16 +60488,16 @@ } ], "baseModel": { - "$ref": "4833" + "$ref": "4841" }, "properties": [ { - "$id": "4881", + "$id": "4889", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4882", + "$id": "4890", "kind": "enumvalue", "name": "function_call_output", "value": "function_call_output", @@ -60400,7 +60505,7 @@ "$ref": "619" }, "enumType": { - "$ref": "4839" + "$ref": "4847" }, "decorators": [] }, @@ -60418,13 +60523,13 @@ "isHttpMetadata": false }, { - "$id": "4883", + "$id": "4891", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "4884", + "$id": "4892", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60444,13 +60549,13 @@ "isHttpMetadata": false }, { - "$id": "4885", + "$id": "4893", "kind": "property", "name": "output", "serializedName": "output", "doc": "A JSON string of the output of the function tool call.", "type": { - "$id": "4886", + "$id": "4894", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60472,7 +60577,7 @@ ] }, "file_search_call": { - "$id": "4887", + "$id": "4895", "kind": "model", "name": "FileSearchToolCallItemParam", "namespace": "OpenAI", @@ -60487,16 +60592,16 @@ } ], "baseModel": { - "$ref": "4833" + "$ref": "4841" }, "properties": [ { - "$id": "4888", + "$id": "4896", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4889", + "$id": "4897", "kind": "enumvalue", "name": "file_search_call", "value": "file_search_call", @@ -60504,7 +60609,7 @@ "$ref": "619" }, "enumType": { - "$ref": "4839" + "$ref": "4847" }, "decorators": [] }, @@ -60522,7 +60627,7 @@ "isHttpMetadata": false }, { - "$id": "4890", + "$id": "4898", "kind": "property", "name": "queries", "serializedName": "queries", @@ -60544,20 +60649,20 @@ "isHttpMetadata": false }, { - "$id": "4891", + "$id": "4899", "kind": "property", "name": "results", "serializedName": "results", "doc": "The results of the file search tool call.", "type": { - "$id": "4892", + "$id": "4900", "kind": "nullable", "type": { - "$id": "4893", + "$id": "4901", "kind": "array", "name": "Array24", "valueType": { - "$id": "4894", + "$id": "4902", "kind": "model", "name": "FileSearchToolCallItemResourceResult", "namespace": "OpenAI", @@ -60566,13 +60671,13 @@ "decorators": [], "properties": [ { - "$id": "4895", + "$id": "4903", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The unique ID of the file.", "type": { - "$id": "4896", + "$id": "4904", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60592,13 +60697,13 @@ "isHttpMetadata": false }, { - "$id": "4897", + "$id": "4905", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text that was retrieved from the file.", "type": { - "$id": "4898", + "$id": "4906", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60618,13 +60723,13 @@ "isHttpMetadata": false }, { - "$id": "4899", + "$id": "4907", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file.", "type": { - "$id": "4900", + "$id": "4908", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60644,12 +60749,12 @@ "isHttpMetadata": false }, { - "$id": "4901", + "$id": "4909", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$ref": "3946" + "$ref": "3948" }, "optional": true, "readOnly": false, @@ -60665,13 +60770,13 @@ "isHttpMetadata": false }, { - "$id": "4902", + "$id": "4910", "kind": "property", "name": "score", "serializedName": "score", "doc": "The relevance score of the file - a value between 0 and 1.", "type": { - "$id": "4903", + "$id": "4911", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -60713,7 +60818,7 @@ ] }, "computer_call": { - "$id": "4904", + "$id": "4912", "kind": "model", "name": "ComputerToolCallItemParam", "namespace": "OpenAI", @@ -60728,16 +60833,16 @@ } ], "baseModel": { - "$ref": "4833" + "$ref": "4841" }, "properties": [ { - "$id": "4905", + "$id": "4913", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4906", + "$id": "4914", "kind": "enumvalue", "name": "computer_call", "value": "computer_call", @@ -60745,7 +60850,7 @@ "$ref": "619" }, "enumType": { - "$ref": "4839" + "$ref": "4847" }, "decorators": [] }, @@ -60763,13 +60868,13 @@ "isHttpMetadata": false }, { - "$id": "4907", + "$id": "4915", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "An identifier used when responding to the tool call with output.", "type": { - "$id": "4908", + "$id": "4916", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60789,12 +60894,12 @@ "isHttpMetadata": false }, { - "$id": "4909", + "$id": "4917", "kind": "property", "name": "action", "serializedName": "action", "type": { - "$id": "4910", + "$id": "4918", "kind": "model", "name": "ComputerAction", "namespace": "OpenAI", @@ -60807,7 +60912,7 @@ } ], "discriminatorProperty": { - "$id": "4911", + "$id": "4919", "kind": "property", "name": "type", "serializedName": "type", @@ -60829,12 +60934,12 @@ }, "properties": [ { - "$ref": "4911" + "$ref": "4919" } ], "discriminatedSubtypes": { "click": { - "$id": "4912", + "$id": "4920", "kind": "model", "name": "ComputerActionClick", "namespace": "OpenAI", @@ -60849,17 +60954,17 @@ } ], "baseModel": { - "$ref": "4910" + "$ref": "4918" }, "properties": [ { - "$id": "4913", + "$id": "4921", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a click action, this property is\nalways set to `click`.", "type": { - "$id": "4914", + "$id": "4922", "kind": "enumvalue", "name": "click", "value": "click", @@ -60867,14 +60972,14 @@ "$ref": "644" }, "enumType": { - "$id": "4915", + "$id": "4923", "kind": "enum", "decorators": [], "name": "ComputerActionType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4916", + "$id": "4924", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -60883,120 +60988,120 @@ }, "values": [ { - "$id": "4917", + "$id": "4925", "kind": "enumvalue", "decorators": [], "name": "screenshot", "value": "screenshot", "valueType": { - "$ref": "4916" + "$ref": "4924" }, "enumType": { - "$ref": "4915" + "$ref": "4923" } }, { - "$id": "4918", + "$id": "4926", "kind": "enumvalue", "decorators": [], "name": "click", "value": "click", "valueType": { - "$ref": "4916" + "$ref": "4924" }, "enumType": { - "$ref": "4915" + "$ref": "4923" } }, { - "$id": "4919", + "$id": "4927", "kind": "enumvalue", "decorators": [], "name": "double_click", "value": "double_click", "valueType": { - "$ref": "4916" + "$ref": "4924" }, "enumType": { - "$ref": "4915" + "$ref": "4923" } }, { - "$id": "4920", + "$id": "4928", "kind": "enumvalue", "decorators": [], "name": "scroll", "value": "scroll", "valueType": { - "$ref": "4916" + "$ref": "4924" }, "enumType": { - "$ref": "4915" + "$ref": "4923" } }, { - "$id": "4921", + "$id": "4929", "kind": "enumvalue", "decorators": [], "name": "type", "value": "type", "valueType": { - "$ref": "4916" + "$ref": "4924" }, "enumType": { - "$ref": "4915" + "$ref": "4923" } }, { - "$id": "4922", + "$id": "4930", "kind": "enumvalue", "decorators": [], "name": "wait", "value": "wait", "valueType": { - "$ref": "4916" + "$ref": "4924" }, "enumType": { - "$ref": "4915" + "$ref": "4923" } }, { - "$id": "4923", + "$id": "4931", "kind": "enumvalue", "decorators": [], "name": "keypress", "value": "keypress", "valueType": { - "$ref": "4916" + "$ref": "4924" }, "enumType": { - "$ref": "4915" + "$ref": "4923" } }, { - "$id": "4924", + "$id": "4932", "kind": "enumvalue", "decorators": [], "name": "drag", "value": "drag", "valueType": { - "$ref": "4916" + "$ref": "4924" }, "enumType": { - "$ref": "4915" + "$ref": "4923" } }, { - "$id": "4925", + "$id": "4933", "kind": "enumvalue", "decorators": [], "name": "move", "value": "move", "valueType": { - "$ref": "4916" + "$ref": "4924" }, "enumType": { - "$ref": "4915" + "$ref": "4923" } } ], @@ -61025,7 +61130,7 @@ "isHttpMetadata": false }, { - "$id": "4926", + "$id": "4934", "kind": "property", "name": "button", "serializedName": "button", @@ -61047,13 +61152,13 @@ "isHttpMetadata": false }, { - "$id": "4927", + "$id": "4935", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate where the click occurred.", "type": { - "$id": "4928", + "$id": "4936", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61073,13 +61178,13 @@ "isHttpMetadata": false }, { - "$id": "4929", + "$id": "4937", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate where the click occurred.", "type": { - "$id": "4930", + "$id": "4938", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61101,7 +61206,7 @@ ] }, "double_click": { - "$id": "4931", + "$id": "4939", "kind": "model", "name": "ComputerActionDoubleClick", "namespace": "OpenAI", @@ -61116,17 +61221,17 @@ } ], "baseModel": { - "$ref": "4910" + "$ref": "4918" }, "properties": [ { - "$id": "4932", + "$id": "4940", "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": "4933", + "$id": "4941", "kind": "enumvalue", "name": "double_click", "value": "double_click", @@ -61134,7 +61239,7 @@ "$ref": "644" }, "enumType": { - "$ref": "4915" + "$ref": "4923" }, "decorators": [] }, @@ -61152,13 +61257,13 @@ "isHttpMetadata": false }, { - "$id": "4934", + "$id": "4942", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate where the double click occurred.", "type": { - "$id": "4935", + "$id": "4943", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61178,13 +61283,13 @@ "isHttpMetadata": false }, { - "$id": "4936", + "$id": "4944", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate where the double click occurred.", "type": { - "$id": "4937", + "$id": "4945", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61206,7 +61311,7 @@ ] }, "drag": { - "$id": "4938", + "$id": "4946", "kind": "model", "name": "ComputerActionDrag", "namespace": "OpenAI", @@ -61221,17 +61326,17 @@ } ], "baseModel": { - "$ref": "4910" + "$ref": "4918" }, "properties": [ { - "$id": "4939", + "$id": "4947", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a drag action, this property is\nalways set to `drag`.", "type": { - "$id": "4940", + "$id": "4948", "kind": "enumvalue", "name": "drag", "value": "drag", @@ -61239,7 +61344,7 @@ "$ref": "644" }, "enumType": { - "$ref": "4915" + "$ref": "4923" }, "decorators": [] }, @@ -61257,17 +61362,17 @@ "isHttpMetadata": false }, { - "$id": "4941", + "$id": "4949", "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": "4942", + "$id": "4950", "kind": "array", "name": "ArrayCoordinate", "valueType": { - "$id": "4943", + "$id": "4951", "kind": "model", "name": "Coordinate", "namespace": "OpenAI", @@ -61282,13 +61387,13 @@ ], "properties": [ { - "$id": "4944", + "$id": "4952", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate.", "type": { - "$id": "4945", + "$id": "4953", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61308,13 +61413,13 @@ "isHttpMetadata": false }, { - "$id": "4946", + "$id": "4954", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate.", "type": { - "$id": "4947", + "$id": "4955", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61354,7 +61459,7 @@ ] }, "move": { - "$id": "4948", + "$id": "4956", "kind": "model", "name": "ComputerActionMove", "namespace": "OpenAI", @@ -61369,17 +61474,17 @@ } ], "baseModel": { - "$ref": "4910" + "$ref": "4918" }, "properties": [ { - "$id": "4949", + "$id": "4957", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a move action, this property is\nalways set to `move`.", "type": { - "$id": "4950", + "$id": "4958", "kind": "enumvalue", "name": "move", "value": "move", @@ -61387,7 +61492,7 @@ "$ref": "644" }, "enumType": { - "$ref": "4915" + "$ref": "4923" }, "decorators": [] }, @@ -61405,13 +61510,13 @@ "isHttpMetadata": false }, { - "$id": "4951", + "$id": "4959", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate to move to.", "type": { - "$id": "4952", + "$id": "4960", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61431,13 +61536,13 @@ "isHttpMetadata": false }, { - "$id": "4953", + "$id": "4961", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate to move to.", "type": { - "$id": "4954", + "$id": "4962", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61459,7 +61564,7 @@ ] }, "screenshot": { - "$id": "4955", + "$id": "4963", "kind": "model", "name": "ComputerActionScreenshot", "namespace": "OpenAI", @@ -61474,17 +61579,17 @@ } ], "baseModel": { - "$ref": "4910" + "$ref": "4918" }, "properties": [ { - "$id": "4956", + "$id": "4964", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a screenshot action, this property is\nalways set to `screenshot`.", "type": { - "$id": "4957", + "$id": "4965", "kind": "enumvalue", "name": "screenshot", "value": "screenshot", @@ -61492,7 +61597,7 @@ "$ref": "644" }, "enumType": { - "$ref": "4915" + "$ref": "4923" }, "decorators": [] }, @@ -61512,7 +61617,7 @@ ] }, "scroll": { - "$id": "4958", + "$id": "4966", "kind": "model", "name": "ComputerActionScroll", "namespace": "OpenAI", @@ -61527,17 +61632,17 @@ } ], "baseModel": { - "$ref": "4910" + "$ref": "4918" }, "properties": [ { - "$id": "4959", + "$id": "4967", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a scroll action, this property is\nalways set to `scroll`.", "type": { - "$id": "4960", + "$id": "4968", "kind": "enumvalue", "name": "scroll", "value": "scroll", @@ -61545,7 +61650,7 @@ "$ref": "644" }, "enumType": { - "$ref": "4915" + "$ref": "4923" }, "decorators": [] }, @@ -61563,13 +61668,13 @@ "isHttpMetadata": false }, { - "$id": "4961", + "$id": "4969", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate where the scroll occurred.", "type": { - "$id": "4962", + "$id": "4970", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61589,13 +61694,13 @@ "isHttpMetadata": false }, { - "$id": "4963", + "$id": "4971", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate where the scroll occurred.", "type": { - "$id": "4964", + "$id": "4972", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61615,13 +61720,13 @@ "isHttpMetadata": false }, { - "$id": "4965", + "$id": "4973", "kind": "property", "name": "scroll_x", "serializedName": "scroll_x", "doc": "The horizontal scroll distance.", "type": { - "$id": "4966", + "$id": "4974", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61641,13 +61746,13 @@ "isHttpMetadata": false }, { - "$id": "4967", + "$id": "4975", "kind": "property", "name": "scroll_y", "serializedName": "scroll_y", "doc": "The vertical scroll distance.", "type": { - "$id": "4968", + "$id": "4976", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61669,7 +61774,7 @@ ] }, "type": { - "$id": "4969", + "$id": "4977", "kind": "model", "name": "ComputerActionTypeKeys", "namespace": "OpenAI", @@ -61684,17 +61789,17 @@ } ], "baseModel": { - "$ref": "4910" + "$ref": "4918" }, "properties": [ { - "$id": "4970", + "$id": "4978", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a type action, this property is\nalways set to `type`.", "type": { - "$id": "4971", + "$id": "4979", "kind": "enumvalue", "name": "type", "value": "type", @@ -61702,7 +61807,7 @@ "$ref": "644" }, "enumType": { - "$ref": "4915" + "$ref": "4923" }, "decorators": [] }, @@ -61720,13 +61825,13 @@ "isHttpMetadata": false }, { - "$id": "4972", + "$id": "4980", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text to type.", "type": { - "$id": "4973", + "$id": "4981", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61748,7 +61853,7 @@ ] }, "wait": { - "$id": "4974", + "$id": "4982", "kind": "model", "name": "ComputerActionWait", "namespace": "OpenAI", @@ -61763,17 +61868,17 @@ } ], "baseModel": { - "$ref": "4910" + "$ref": "4918" }, "properties": [ { - "$id": "4975", + "$id": "4983", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a wait action, this property is\nalways set to `wait`.", "type": { - "$id": "4976", + "$id": "4984", "kind": "enumvalue", "name": "wait", "value": "wait", @@ -61781,7 +61886,7 @@ "$ref": "644" }, "enumType": { - "$ref": "4915" + "$ref": "4923" }, "decorators": [] }, @@ -61801,7 +61906,7 @@ ] }, "keypress": { - "$id": "4977", + "$id": "4985", "kind": "model", "name": "ComputerActionKeyPress", "namespace": "OpenAI", @@ -61816,17 +61921,17 @@ } ], "baseModel": { - "$ref": "4910" + "$ref": "4918" }, "properties": [ { - "$id": "4978", + "$id": "4986", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a keypress action, this property is\nalways set to `keypress`.", "type": { - "$id": "4979", + "$id": "4987", "kind": "enumvalue", "name": "keypress", "value": "keypress", @@ -61834,7 +61939,7 @@ "$ref": "644" }, "enumType": { - "$ref": "4915" + "$ref": "4923" }, "decorators": [] }, @@ -61852,7 +61957,7 @@ "isHttpMetadata": false }, { - "$id": "4980", + "$id": "4988", "kind": "property", "name": "keys", "serializedName": "keys", @@ -61891,17 +61996,17 @@ "isHttpMetadata": false }, { - "$id": "4981", + "$id": "4989", "kind": "property", "name": "pending_safety_checks", "serializedName": "pending_safety_checks", "doc": "The pending safety checks for the computer call.", "type": { - "$id": "4982", + "$id": "4990", "kind": "array", "name": "ArrayComputerToolCallSafetyCheck", "valueType": { - "$id": "4983", + "$id": "4991", "kind": "model", "name": "ComputerToolCallSafetyCheck", "namespace": "OpenAI", @@ -61916,13 +62021,13 @@ ], "properties": [ { - "$id": "4984", + "$id": "4992", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the pending safety check.", "type": { - "$id": "4985", + "$id": "4993", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61942,13 +62047,13 @@ "isHttpMetadata": false }, { - "$id": "4986", + "$id": "4994", "kind": "property", "name": "code", "serializedName": "code", "doc": "The type of the pending safety check.", "type": { - "$id": "4987", + "$id": "4995", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61968,13 +62073,13 @@ "isHttpMetadata": false }, { - "$id": "4988", + "$id": "4996", "kind": "property", "name": "message", "serializedName": "message", "doc": "Details about the pending safety check.", "type": { - "$id": "4989", + "$id": "4997", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62014,7 +62119,7 @@ ] }, "computer_call_output": { - "$id": "4990", + "$id": "4998", "kind": "model", "name": "ComputerToolCallOutputItemParam", "namespace": "OpenAI", @@ -62029,16 +62134,16 @@ } ], "baseModel": { - "$ref": "4833" + "$ref": "4841" }, "properties": [ { - "$id": "4991", + "$id": "4999", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4992", + "$id": "5000", "kind": "enumvalue", "name": "computer_call_output", "value": "computer_call_output", @@ -62046,7 +62151,7 @@ "$ref": "619" }, "enumType": { - "$ref": "4839" + "$ref": "4847" }, "decorators": [] }, @@ -62064,13 +62169,13 @@ "isHttpMetadata": false }, { - "$id": "4993", + "$id": "5001", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the computer tool call that produced the output.", "type": { - "$id": "4994", + "$id": "5002", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62090,13 +62195,13 @@ "isHttpMetadata": false }, { - "$id": "4995", + "$id": "5003", "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": "4982" + "$ref": "4990" }, "optional": true, "readOnly": false, @@ -62112,12 +62217,12 @@ "isHttpMetadata": false }, { - "$id": "4996", + "$id": "5004", "kind": "property", "name": "output", "serializedName": "output", "type": { - "$id": "4997", + "$id": "5005", "kind": "model", "name": "ComputerToolCallOutputItemOutput", "namespace": "OpenAI", @@ -62130,7 +62235,7 @@ } ], "discriminatorProperty": { - "$id": "4998", + "$id": "5006", "kind": "property", "name": "type", "serializedName": "type", @@ -62152,12 +62257,12 @@ }, "properties": [ { - "$ref": "4998" + "$ref": "5006" } ], "discriminatedSubtypes": { "computer_screenshot": { - "$id": "4999", + "$id": "5007", "kind": "model", "name": "ComputerToolCallOutputItemOutputComputerScreenshot", "namespace": "OpenAI", @@ -62171,16 +62276,16 @@ } ], "baseModel": { - "$ref": "4997" + "$ref": "5005" }, "properties": [ { - "$id": "5000", + "$id": "5008", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5001", + "$id": "5009", "kind": "enumvalue", "name": "screenshot", "value": "computer_screenshot", @@ -62188,7 +62293,7 @@ "$ref": "662" }, "enumType": { - "$id": "5002", + "$id": "5010", "kind": "enum", "decorators": [], "doc": "A computer screenshot image used with the computer use tool.", @@ -62196,7 +62301,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "5003", + "$id": "5011", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -62205,16 +62310,16 @@ }, "values": [ { - "$id": "5004", + "$id": "5012", "kind": "enumvalue", "decorators": [], "name": "screenshot", "value": "computer_screenshot", "valueType": { - "$ref": "5003" + "$ref": "5011" }, "enumType": { - "$ref": "5002" + "$ref": "5010" } } ], @@ -62243,12 +62348,12 @@ "isHttpMetadata": false }, { - "$id": "5005", + "$id": "5013", "kind": "property", "name": "image_url", "serializedName": "image_url", "type": { - "$id": "5006", + "$id": "5014", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62268,12 +62373,12 @@ "isHttpMetadata": false }, { - "$id": "5007", + "$id": "5015", "kind": "property", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "5008", + "$id": "5016", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62312,7 +62417,7 @@ ] }, "web_search_call": { - "$id": "5009", + "$id": "5017", "kind": "model", "name": "WebSearchToolCallItemParam", "namespace": "OpenAI", @@ -62327,16 +62432,16 @@ } ], "baseModel": { - "$ref": "4833" + "$ref": "4841" }, "properties": [ { - "$id": "5010", + "$id": "5018", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5011", + "$id": "5019", "kind": "enumvalue", "name": "web_search_call", "value": "web_search_call", @@ -62344,7 +62449,7 @@ "$ref": "619" }, "enumType": { - "$ref": "4839" + "$ref": "4847" }, "decorators": [] }, @@ -62364,7 +62469,7 @@ ] }, "function_call": { - "$id": "5012", + "$id": "5020", "kind": "model", "name": "FunctionToolCallItemParam", "namespace": "OpenAI", @@ -62379,16 +62484,16 @@ } ], "baseModel": { - "$ref": "4833" + "$ref": "4841" }, "properties": [ { - "$id": "5013", + "$id": "5021", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5014", + "$id": "5022", "kind": "enumvalue", "name": "function_call", "value": "function_call", @@ -62396,7 +62501,7 @@ "$ref": "619" }, "enumType": { - "$ref": "4839" + "$ref": "4847" }, "decorators": [] }, @@ -62414,13 +62519,13 @@ "isHttpMetadata": false }, { - "$id": "5015", + "$id": "5023", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "5016", + "$id": "5024", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62440,13 +62545,13 @@ "isHttpMetadata": false }, { - "$id": "5017", + "$id": "5025", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to run.", "type": { - "$id": "5018", + "$id": "5026", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62466,13 +62571,13 @@ "isHttpMetadata": false }, { - "$id": "5019", + "$id": "5027", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "A JSON string of the arguments to pass to the function.", "type": { - "$id": "5020", + "$id": "5028", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62494,7 +62599,7 @@ ] }, "reasoning": { - "$id": "5021", + "$id": "5029", "kind": "model", "name": "ReasoningItemParam", "namespace": "OpenAI", @@ -62509,16 +62614,16 @@ } ], "baseModel": { - "$ref": "4833" + "$ref": "4841" }, "properties": [ { - "$id": "5022", + "$id": "5030", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5023", + "$id": "5031", "kind": "enumvalue", "name": "reasoning", "value": "reasoning", @@ -62526,7 +62631,7 @@ "$ref": "619" }, "enumType": { - "$ref": "4839" + "$ref": "4847" }, "decorators": [] }, @@ -62544,16 +62649,16 @@ "isHttpMetadata": false }, { - "$id": "5024", + "$id": "5032", "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": "5025", + "$id": "5033", "kind": "nullable", "type": { - "$id": "5026", + "$id": "5034", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62575,17 +62680,17 @@ "isHttpMetadata": false }, { - "$id": "5027", + "$id": "5035", "kind": "property", "name": "summary", "serializedName": "summary", "doc": "Reasoning text contents.", "type": { - "$id": "5028", + "$id": "5036", "kind": "array", "name": "ArrayReasoningItemSummaryPart", "valueType": { - "$id": "5029", + "$id": "5037", "kind": "model", "name": "ReasoningItemSummaryPart", "namespace": "OpenAI", @@ -62598,7 +62703,7 @@ } ], "discriminatorProperty": { - "$id": "5030", + "$id": "5038", "kind": "property", "name": "type", "serializedName": "type", @@ -62620,12 +62725,12 @@ }, "properties": [ { - "$ref": "5030" + "$ref": "5038" } ], "discriminatedSubtypes": { "summary_text": { - "$id": "5031", + "$id": "5039", "kind": "model", "name": "ReasoningItemSummaryTextPart", "namespace": "OpenAI", @@ -62639,16 +62744,16 @@ } ], "baseModel": { - "$ref": "5029" + "$ref": "5037" }, "properties": [ { - "$id": "5032", + "$id": "5040", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5033", + "$id": "5041", "kind": "enumvalue", "name": "summary_text", "value": "summary_text", @@ -62656,7 +62761,7 @@ "$ref": "665" }, "enumType": { - "$id": "5034", + "$id": "5042", "kind": "enum", "decorators": [ { @@ -62668,7 +62773,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "5035", + "$id": "5043", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -62677,16 +62782,16 @@ }, "values": [ { - "$id": "5036", + "$id": "5044", "kind": "enumvalue", "decorators": [], "name": "summary_text", "value": "summary_text", "valueType": { - "$ref": "5035" + "$ref": "5043" }, "enumType": { - "$ref": "5034" + "$ref": "5042" } } ], @@ -62715,12 +62820,12 @@ "isHttpMetadata": false }, { - "$id": "5037", + "$id": "5045", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "5038", + "$id": "5046", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62762,7 +62867,7 @@ ] }, "item_reference": { - "$id": "5039", + "$id": "5047", "kind": "model", "name": "ItemReferenceItemParam", "namespace": "OpenAI", @@ -62777,16 +62882,16 @@ } ], "baseModel": { - "$ref": "4833" + "$ref": "4841" }, "properties": [ { - "$id": "5040", + "$id": "5048", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5041", + "$id": "5049", "kind": "enumvalue", "name": "item_reference", "value": "item_reference", @@ -62794,7 +62899,7 @@ "$ref": "619" }, "enumType": { - "$ref": "4839" + "$ref": "4847" }, "decorators": [] }, @@ -62812,13 +62917,13 @@ "isHttpMetadata": false }, { - "$id": "5042", + "$id": "5050", "kind": "property", "name": "id", "serializedName": "id", "doc": "The service-originated ID of the previously generated response item being referenced.", "type": { - "$id": "5043", + "$id": "5051", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62840,7 +62945,7 @@ ] }, "image_generation_call": { - "$id": "5044", + "$id": "5052", "kind": "model", "name": "ImageGenToolCallItemParam", "namespace": "OpenAI", @@ -62855,16 +62960,16 @@ } ], "baseModel": { - "$ref": "4833" + "$ref": "4841" }, "properties": [ { - "$id": "5045", + "$id": "5053", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5046", + "$id": "5054", "kind": "enumvalue", "name": "image_generation_call", "value": "image_generation_call", @@ -62872,7 +62977,7 @@ "$ref": "619" }, "enumType": { - "$ref": "4839" + "$ref": "4847" }, "decorators": [] }, @@ -62890,16 +62995,16 @@ "isHttpMetadata": false }, { - "$id": "5047", + "$id": "5055", "kind": "property", "name": "result", "serializedName": "result", "doc": "The generated image encoded in base64.", "type": { - "$id": "5048", + "$id": "5056", "kind": "nullable", "type": { - "$id": "5049", + "$id": "5057", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -62924,7 +63029,7 @@ ] }, "code_interpreter_call": { - "$id": "5050", + "$id": "5058", "kind": "model", "name": "CodeInterpreterToolCallItemParam", "namespace": "OpenAI", @@ -62939,16 +63044,16 @@ } ], "baseModel": { - "$ref": "4833" + "$ref": "4841" }, "properties": [ { - "$id": "5051", + "$id": "5059", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5052", + "$id": "5060", "kind": "enumvalue", "name": "code_interpreter_call", "value": "code_interpreter_call", @@ -62956,7 +63061,7 @@ "$ref": "619" }, "enumType": { - "$ref": "4839" + "$ref": "4847" }, "decorators": [] }, @@ -62974,13 +63079,13 @@ "isHttpMetadata": false }, { - "$id": "5053", + "$id": "5061", "kind": "property", "name": "container_id", "serializedName": "container_id", "doc": "The ID of the container used to run the code.", "type": { - "$id": "5054", + "$id": "5062", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63000,13 +63105,13 @@ "isHttpMetadata": false }, { - "$id": "5055", + "$id": "5063", "kind": "property", "name": "code", "serializedName": "code", "doc": "The code to run.", "type": { - "$id": "5056", + "$id": "5064", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63026,17 +63131,17 @@ "isHttpMetadata": false }, { - "$id": "5057", + "$id": "5065", "kind": "property", "name": "outputs", "serializedName": "outputs", "doc": "The outputs of the code interpreter tool call.", "type": { - "$id": "5058", + "$id": "5066", "kind": "array", "name": "ArrayCodeInterpreterToolOutput", "valueType": { - "$id": "5059", + "$id": "5067", "kind": "model", "name": "CodeInterpreterToolOutput", "namespace": "OpenAI", @@ -63049,7 +63154,7 @@ } ], "discriminatorProperty": { - "$id": "5060", + "$id": "5068", "kind": "property", "name": "type", "serializedName": "type", @@ -63072,12 +63177,12 @@ }, "properties": [ { - "$ref": "5060" + "$ref": "5068" } ], "discriminatedSubtypes": { "logs": { - "$id": "5061", + "$id": "5069", "kind": "model", "name": "CodeInterpreterToolLogsOutput", "namespace": "OpenAI", @@ -63091,17 +63196,17 @@ } ], "baseModel": { - "$ref": "5059" + "$ref": "5067" }, "properties": [ { - "$id": "5062", + "$id": "5070", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the output. Always 'logs'.", "type": { - "$id": "5063", + "$id": "5071", "kind": "enumvalue", "name": "logs", "value": "logs", @@ -63109,7 +63214,7 @@ "$ref": "668" }, "enumType": { - "$id": "5064", + "$id": "5072", "kind": "enum", "decorators": [ { @@ -63121,7 +63226,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "5065", + "$id": "5073", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -63130,29 +63235,29 @@ }, "values": [ { - "$id": "5066", + "$id": "5074", "kind": "enumvalue", "decorators": [], "name": "logs", "value": "logs", "valueType": { - "$ref": "5065" + "$ref": "5073" }, "enumType": { - "$ref": "5064" + "$ref": "5072" } }, { - "$id": "5067", + "$id": "5075", "kind": "enumvalue", "decorators": [], "name": "image", "value": "image", "valueType": { - "$ref": "5065" + "$ref": "5073" }, "enumType": { - "$ref": "5064" + "$ref": "5072" } } ], @@ -63181,13 +63286,13 @@ "isHttpMetadata": false }, { - "$id": "5068", + "$id": "5076", "kind": "property", "name": "logs", "serializedName": "logs", "doc": "The logs output from the code interpreter.", "type": { - "$id": "5069", + "$id": "5077", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63209,7 +63314,7 @@ ] }, "image": { - "$id": "5070", + "$id": "5078", "kind": "model", "name": "CodeInterpreterToolImageOutput", "namespace": "OpenAI", @@ -63223,17 +63328,17 @@ } ], "baseModel": { - "$ref": "5059" + "$ref": "5067" }, "properties": [ { - "$id": "5071", + "$id": "5079", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the output. Always 'image'.", "type": { - "$id": "5072", + "$id": "5080", "kind": "enumvalue", "name": "image", "value": "image", @@ -63241,7 +63346,7 @@ "$ref": "668" }, "enumType": { - "$ref": "5064" + "$ref": "5072" }, "decorators": [] }, @@ -63259,13 +63364,13 @@ "isHttpMetadata": false }, { - "$id": "5073", + "$id": "5081", "kind": "property", "name": "ImageUri", "serializedName": "url", "doc": "The URL of the image output from the code interpreter.", "type": { - "$id": "5074", + "$id": "5082", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -63307,7 +63412,7 @@ ] }, "local_shell_call": { - "$id": "5075", + "$id": "5083", "kind": "model", "name": "LocalShellToolCallItemParam", "namespace": "OpenAI", @@ -63322,16 +63427,16 @@ } ], "baseModel": { - "$ref": "4833" + "$ref": "4841" }, "properties": [ { - "$id": "5076", + "$id": "5084", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5077", + "$id": "5085", "kind": "enumvalue", "name": "local_shell_call", "value": "local_shell_call", @@ -63339,7 +63444,7 @@ "$ref": "619" }, "enumType": { - "$ref": "4839" + "$ref": "4847" }, "decorators": [] }, @@ -63357,13 +63462,13 @@ "isHttpMetadata": false }, { - "$id": "5078", + "$id": "5086", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the local shell tool call generated by the model.", "type": { - "$id": "5079", + "$id": "5087", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63383,12 +63488,12 @@ "isHttpMetadata": false }, { - "$id": "5080", + "$id": "5088", "kind": "property", "name": "action", "serializedName": "action", "type": { - "$id": "5081", + "$id": "5089", "kind": "model", "name": "LocalShellExecAction", "namespace": "OpenAI", @@ -63403,7 +63508,7 @@ ], "properties": [ { - "$id": "5082", + "$id": "5090", "kind": "property", "name": "type", "serializedName": "type", @@ -63425,7 +63530,7 @@ "isHttpMetadata": false }, { - "$id": "5083", + "$id": "5091", "kind": "property", "name": "command", "serializedName": "command", @@ -63447,16 +63552,16 @@ "isHttpMetadata": false }, { - "$id": "5084", + "$id": "5092", "kind": "property", "name": "timeout_ms", "serializedName": "timeout_ms", "doc": "Optional timeout in milliseconds for the command.", "type": { - "$id": "5085", + "$id": "5093", "kind": "nullable", "type": { - "$id": "5086", + "$id": "5094", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -63478,16 +63583,16 @@ "isHttpMetadata": false }, { - "$id": "5087", + "$id": "5095", "kind": "property", "name": "working_directory", "serializedName": "working_directory", "doc": "Optional working directory to run the command in.", "type": { - "$id": "5088", + "$id": "5096", "kind": "nullable", "type": { - "$id": "5089", + "$id": "5097", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63509,7 +63614,7 @@ "isHttpMetadata": false }, { - "$id": "5090", + "$id": "5098", "kind": "property", "name": "env", "serializedName": "env", @@ -63531,16 +63636,16 @@ "isHttpMetadata": false }, { - "$id": "5091", + "$id": "5099", "kind": "property", "name": "user", "serializedName": "user", "doc": "Optional user to run the command as.", "type": { - "$id": "5092", + "$id": "5100", "kind": "nullable", "type": { - "$id": "5093", + "$id": "5101", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63579,7 +63684,7 @@ ] }, "local_shell_call_output": { - "$id": "5094", + "$id": "5102", "kind": "model", "name": "LocalShellToolCallOutputItemParam", "namespace": "OpenAI", @@ -63594,16 +63699,16 @@ } ], "baseModel": { - "$ref": "4833" + "$ref": "4841" }, "properties": [ { - "$id": "5095", + "$id": "5103", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5096", + "$id": "5104", "kind": "enumvalue", "name": "local_shell_call_output", "value": "local_shell_call_output", @@ -63611,7 +63716,7 @@ "$ref": "619" }, "enumType": { - "$ref": "4839" + "$ref": "4847" }, "decorators": [] }, @@ -63629,13 +63734,13 @@ "isHttpMetadata": false }, { - "$id": "5097", + "$id": "5105", "kind": "property", "name": "output", "serializedName": "output", "doc": "A JSON string of the output of the local shell tool call.", "type": { - "$id": "5098", + "$id": "5106", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63657,7 +63762,7 @@ ] }, "mcp_list_tools": { - "$id": "5099", + "$id": "5107", "kind": "model", "name": "MCPListToolsItemParam", "namespace": "OpenAI", @@ -63672,16 +63777,16 @@ } ], "baseModel": { - "$ref": "4833" + "$ref": "4841" }, "properties": [ { - "$id": "5100", + "$id": "5108", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5101", + "$id": "5109", "kind": "enumvalue", "name": "mcp_list_tools", "value": "mcp_list_tools", @@ -63689,7 +63794,7 @@ "$ref": "619" }, "enumType": { - "$ref": "4839" + "$ref": "4847" }, "decorators": [] }, @@ -63707,13 +63812,13 @@ "isHttpMetadata": false }, { - "$id": "5102", + "$id": "5110", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server.", "type": { - "$id": "5103", + "$id": "5111", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63733,17 +63838,17 @@ "isHttpMetadata": false }, { - "$id": "5104", + "$id": "5112", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "The tools available on the server.", "type": { - "$id": "5105", + "$id": "5113", "kind": "array", "name": "ArrayMcpListToolsTool", "valueType": { - "$id": "5106", + "$id": "5114", "kind": "model", "name": "MCPListToolsTool", "namespace": "OpenAI", @@ -63758,13 +63863,13 @@ ], "properties": [ { - "$id": "5107", + "$id": "5115", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the tool.", "type": { - "$id": "5108", + "$id": "5116", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63784,16 +63889,16 @@ "isHttpMetadata": false }, { - "$id": "5109", + "$id": "5117", "kind": "property", "name": "description", "serializedName": "description", "doc": "The description of the tool.", "type": { - "$id": "5110", + "$id": "5118", "kind": "nullable", "type": { - "$id": "5111", + "$id": "5119", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63815,13 +63920,13 @@ "isHttpMetadata": false }, { - "$id": "5112", + "$id": "5120", "kind": "property", "name": "input_schema", "serializedName": "input_schema", "doc": "The JSON schema describing the tool's input.", "type": { - "$id": "5113", + "$id": "5121", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -63841,16 +63946,16 @@ "isHttpMetadata": false }, { - "$id": "5114", + "$id": "5122", "kind": "property", "name": "annotations", "serializedName": "annotations", "doc": "Additional annotations about the tool.", "type": { - "$id": "5115", + "$id": "5123", "kind": "nullable", "type": { - "$id": "5116", + "$id": "5124", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -63890,16 +63995,16 @@ "isHttpMetadata": false }, { - "$id": "5117", + "$id": "5125", "kind": "property", "name": "error", "serializedName": "error", "doc": "Error message if the server could not list tools.", "type": { - "$id": "5118", + "$id": "5126", "kind": "nullable", "type": { - "$id": "5119", + "$id": "5127", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63923,7 +64028,7 @@ ] }, "mcp_approval_request": { - "$id": "5120", + "$id": "5128", "kind": "model", "name": "MCPApprovalRequestItemParam", "namespace": "OpenAI", @@ -63938,16 +64043,16 @@ } ], "baseModel": { - "$ref": "4833" + "$ref": "4841" }, "properties": [ { - "$id": "5121", + "$id": "5129", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5122", + "$id": "5130", "kind": "enumvalue", "name": "mcp_approval_request", "value": "mcp_approval_request", @@ -63955,7 +64060,7 @@ "$ref": "619" }, "enumType": { - "$ref": "4839" + "$ref": "4847" }, "decorators": [] }, @@ -63973,13 +64078,13 @@ "isHttpMetadata": false }, { - "$id": "5123", + "$id": "5131", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server making the request.", "type": { - "$id": "5124", + "$id": "5132", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63999,13 +64104,13 @@ "isHttpMetadata": false }, { - "$id": "5125", + "$id": "5133", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the tool to run.", "type": { - "$id": "5126", + "$id": "5134", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64025,13 +64130,13 @@ "isHttpMetadata": false }, { - "$id": "5127", + "$id": "5135", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "A JSON string of arguments for the tool.", "type": { - "$id": "5128", + "$id": "5136", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64053,7 +64158,7 @@ ] }, "mcp_approval_response": { - "$id": "5129", + "$id": "5137", "kind": "model", "name": "MCPApprovalResponseItemParam", "namespace": "OpenAI", @@ -64068,16 +64173,16 @@ } ], "baseModel": { - "$ref": "4833" + "$ref": "4841" }, "properties": [ { - "$id": "5130", + "$id": "5138", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5131", + "$id": "5139", "kind": "enumvalue", "name": "mcp_approval_response", "value": "mcp_approval_response", @@ -64085,7 +64190,7 @@ "$ref": "619" }, "enumType": { - "$ref": "4839" + "$ref": "4847" }, "decorators": [] }, @@ -64103,13 +64208,13 @@ "isHttpMetadata": false }, { - "$id": "5132", + "$id": "5140", "kind": "property", "name": "approval_request_id", "serializedName": "approval_request_id", "doc": "The ID of the approval request being answered.", "type": { - "$id": "5133", + "$id": "5141", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64129,13 +64234,13 @@ "isHttpMetadata": false }, { - "$id": "5134", + "$id": "5142", "kind": "property", "name": "approve", "serializedName": "approve", "doc": "Whether the request was approved.", "type": { - "$id": "5135", + "$id": "5143", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -64155,16 +64260,16 @@ "isHttpMetadata": false }, { - "$id": "5136", + "$id": "5144", "kind": "property", "name": "reason", "serializedName": "reason", "doc": "Optional reason for the decision.", "type": { - "$id": "5137", + "$id": "5145", "kind": "nullable", "type": { - "$id": "5138", + "$id": "5146", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64188,7 +64293,7 @@ ] }, "mcp_call": { - "$id": "5139", + "$id": "5147", "kind": "model", "name": "MCPCallItemParam", "namespace": "OpenAI", @@ -64203,16 +64308,16 @@ } ], "baseModel": { - "$ref": "4833" + "$ref": "4841" }, "properties": [ { - "$id": "5140", + "$id": "5148", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5141", + "$id": "5149", "kind": "enumvalue", "name": "mcp_call", "value": "mcp_call", @@ -64220,7 +64325,7 @@ "$ref": "619" }, "enumType": { - "$ref": "4839" + "$ref": "4847" }, "decorators": [] }, @@ -64238,13 +64343,13 @@ "isHttpMetadata": false }, { - "$id": "5142", + "$id": "5150", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server running the tool.", "type": { - "$id": "5143", + "$id": "5151", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64264,13 +64369,13 @@ "isHttpMetadata": false }, { - "$id": "5144", + "$id": "5152", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the tool that was run.", "type": { - "$id": "5145", + "$id": "5153", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64290,13 +64395,13 @@ "isHttpMetadata": false }, { - "$id": "5146", + "$id": "5154", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "A JSON string of the arguments passed to the tool.", "type": { - "$id": "5147", + "$id": "5155", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64316,16 +64421,16 @@ "isHttpMetadata": false }, { - "$id": "5148", + "$id": "5156", "kind": "property", "name": "output", "serializedName": "output", "doc": "The output from the tool call.", "type": { - "$id": "5149", + "$id": "5157", "kind": "nullable", "type": { - "$id": "5150", + "$id": "5158", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64347,16 +64452,16 @@ "isHttpMetadata": false }, { - "$id": "5151", + "$id": "5159", "kind": "property", "name": "error", "serializedName": "error", "doc": "The error from the tool call, if any.", "type": { - "$id": "5152", + "$id": "5160", "kind": "nullable", "type": { - "$id": "5153", + "$id": "5161", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64406,16 +64511,16 @@ "isHttpMetadata": false }, { - "$id": "5154", + "$id": "5162", "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": "5155", + "$id": "5163", "kind": "nullable", "type": { - "$id": "5156", + "$id": "5164", "kind": "array", "name": "ArrayIncludable", "valueType": { @@ -64440,16 +64545,16 @@ "isHttpMetadata": false }, { - "$id": "5157", + "$id": "5165", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "doc": "Whether to allow the model to run tool calls in parallel.", "type": { - "$id": "5158", + "$id": "5166", "kind": "nullable", "type": { - "$id": "5159", + "$id": "5167", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -64471,16 +64576,16 @@ "isHttpMetadata": false }, { - "$id": "5160", + "$id": "5168", "kind": "property", "name": "store", "serializedName": "store", "doc": "Whether to store the generated model response for later retrieval via\nAPI.", "type": { - "$id": "5161", + "$id": "5169", "kind": "nullable", "type": { - "$id": "5162", + "$id": "5170", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -64502,16 +64607,16 @@ "isHttpMetadata": false }, { - "$id": "5163", + "$id": "5171", "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": "5164", + "$id": "5172", "kind": "nullable", "type": { - "$id": "5165", + "$id": "5173", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -64531,101 +64636,121 @@ } }, "isHttpMetadata": false + }, + { + "$id": "5174", + "kind": "property", + "name": "ConversationId", + "serializedName": "conversation", + "doc": "The conversation that this response belongs to.\nItems from this conversation are prepended to input_items for this response request.\nInput items and output items from this response are automatically added to this conversation after this response completes.", + "type": { + "$id": "5175", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.CreateResponse.conversation", + "serializationOptions": { + "json": { + "name": "conversation" + } + }, + "isHttpMetadata": false } ] }, { - "$ref": "4640" - }, - { - "$ref": "4657" + "$ref": "4645" }, { - "$ref": "4662" + "$ref": "4665" }, { - "$ref": "4664" + "$ref": "4670" }, { - "$ref": "4676" + "$ref": "4672" }, { - "$ref": "4679" + "$ref": "4684" }, { - "$ref": "4682" + "$ref": "4687" }, { - "$ref": "4685" + "$ref": "4690" }, { - "$ref": "4688" + "$ref": "4693" }, { - "$ref": "4691" + "$ref": "4696" }, { - "$ref": "4703" + "$ref": "4699" }, { - "$ref": "4708" + "$ref": "4711" }, { - "$ref": "4710" + "$ref": "4716" }, { - "$ref": "4725" + "$ref": "4718" }, { - "$ref": "4732" + "$ref": "4733" }, { - "$ref": "4737" + "$ref": "4740" }, { - "$ref": "4742" + "$ref": "4745" }, { - "$ref": "4752" + "$ref": "4750" }, { - "$ref": "4762" + "$ref": "4760" }, { - "$ref": "4769" + "$ref": "4770" }, { - "$ref": "4771" + "$ref": "4777" }, { - "$ref": "4786" + "$ref": "4779" }, { - "$ref": "4797" + "$ref": "4794" }, { - "$ref": "4810" + "$ref": "4805" }, { - "$ref": "4819" + "$ref": "4818" }, { "$ref": "4827" }, - { - "$ref": "4833" - }, { "$ref": "4835" }, { - "$ref": "4858" + "$ref": "4841" }, { - "$ref": "4868" + "$ref": "4843" }, { - "$ref": "4872" + "$ref": "4866" }, { "$ref": "4876" @@ -64634,118 +64759,124 @@ "$ref": "4880" }, { - "$ref": "4887" + "$ref": "4884" }, { - "$ref": "4894" + "$ref": "4888" }, { - "$ref": "4904" + "$ref": "4895" }, { - "$ref": "4910" + "$ref": "4902" }, { "$ref": "4912" }, { - "$ref": "4931" + "$ref": "4918" }, { - "$ref": "4938" + "$ref": "4920" }, { - "$ref": "4943" + "$ref": "4939" }, { - "$ref": "4948" + "$ref": "4946" }, { - "$ref": "4955" + "$ref": "4951" }, { - "$ref": "4958" + "$ref": "4956" }, { - "$ref": "4969" + "$ref": "4963" }, { - "$ref": "4974" + "$ref": "4966" }, { "$ref": "4977" }, { - "$ref": "4983" + "$ref": "4982" + }, + { + "$ref": "4985" }, { - "$ref": "4990" + "$ref": "4991" }, { - "$ref": "4997" + "$ref": "4998" }, { - "$ref": "4999" + "$ref": "5005" }, { - "$ref": "5009" + "$ref": "5007" }, { - "$ref": "5012" + "$ref": "5017" }, { - "$ref": "5021" + "$ref": "5020" }, { "$ref": "5029" }, { - "$ref": "5031" + "$ref": "5037" }, { "$ref": "5039" }, { - "$ref": "5044" + "$ref": "5047" }, { - "$ref": "5050" + "$ref": "5052" }, { - "$ref": "5059" + "$ref": "5058" }, { - "$ref": "5061" + "$ref": "5067" }, { - "$ref": "5070" + "$ref": "5069" }, { - "$ref": "5075" + "$ref": "5078" }, { - "$ref": "5081" + "$ref": "5083" }, { - "$ref": "5094" + "$ref": "5089" }, { - "$ref": "5099" + "$ref": "5102" }, { - "$ref": "5106" + "$ref": "5107" }, { - "$ref": "5120" + "$ref": "5114" }, { - "$ref": "5129" + "$ref": "5128" }, { - "$ref": "5139" + "$ref": "5137" }, { - "$id": "5166", + "$ref": "5147" + }, + { + "$id": "5176", "kind": "model", "name": "Response", "namespace": "OpenAI", @@ -64759,7 +64890,7 @@ ], "properties": [ { - "$id": "5167", + "$id": "5177", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -64781,16 +64912,16 @@ "isHttpMetadata": false }, { - "$id": "5168", + "$id": "5178", "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": "5169", + "$id": "5179", "kind": "nullable", "type": { - "$id": "5170", + "$id": "5180", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -64812,16 +64943,16 @@ "isHttpMetadata": false }, { - "$id": "5171", + "$id": "5181", "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": "5172", + "$id": "5182", "kind": "nullable", "type": { - "$id": "5173", + "$id": "5183", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -64843,16 +64974,16 @@ "isHttpMetadata": false }, { - "$id": "5174", + "$id": "5184", "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": "5175", + "$id": "5185", "kind": "nullable", "type": { - "$id": "5176", + "$id": "5186", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64874,7 +65005,7 @@ "isHttpMetadata": false }, { - "$id": "5177", + "$id": "5187", "kind": "property", "name": "service_tier", "serializedName": "service_tier", @@ -64895,13 +65026,13 @@ "isHttpMetadata": false }, { - "$id": "5178", + "$id": "5188", "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": "4635" + "$ref": "4640" }, "optional": true, "readOnly": false, @@ -64917,7 +65048,7 @@ "isHttpMetadata": false }, { - "$id": "5179", + "$id": "5189", "kind": "property", "name": "model", "serializedName": "model", @@ -64939,12 +65070,12 @@ "isHttpMetadata": false }, { - "$id": "5180", + "$id": "5190", "kind": "property", "name": "reasoning", "serializedName": "reasoning", "type": { - "$ref": "4639" + "$ref": "4644" }, "optional": true, "readOnly": false, @@ -64960,13 +65091,13 @@ "isHttpMetadata": false }, { - "$id": "5181", + "$id": "5191", "kind": "property", "name": "background", "serializedName": "background", "doc": "Whether to run the model response in the background.\n[Learn more](/docs/guides/background).", "type": { - "$ref": "4648" + "$ref": "4653" }, "optional": true, "readOnly": false, @@ -64982,13 +65113,13 @@ "isHttpMetadata": false }, { - "$id": "5182", + "$id": "5192", "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": "4651" + "$ref": "4656" }, "optional": true, "readOnly": false, @@ -65004,13 +65135,35 @@ "isHttpMetadata": false }, { - "$id": "5183", + "$id": "5193", + "kind": "property", + "name": "max_tool_calls", + "serializedName": "max_tool_calls", + "doc": "The maximum number of total calls to built-in tools that can be processed in a response. This maximum number applies across all built-in tool calls, not per individual tool. Any further attempts to call a tool by the model will be ignored.", + "type": { + "$ref": "4659" + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.Response.max_tool_calls", + "serializationOptions": { + "json": { + "name": "max_tool_calls" + } + }, + "isHttpMetadata": false + }, + { + "$id": "5194", "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": "4654" + "$ref": "4662" }, "optional": true, "readOnly": false, @@ -65026,13 +65179,13 @@ "isHttpMetadata": false }, { - "$id": "5184", + "$id": "5195", "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": "4657" + "$ref": "4665" }, "optional": true, "readOnly": false, @@ -65048,13 +65201,13 @@ "isHttpMetadata": false }, { - "$id": "5185", + "$id": "5196", "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": "4346" + "$ref": "4348" }, "optional": true, "readOnly": false, @@ -65070,13 +65223,13 @@ "isHttpMetadata": false }, { - "$id": "5186", + "$id": "5197", "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": "4661" + "$ref": "4669" }, "optional": true, "readOnly": false, @@ -65092,13 +65245,13 @@ "isHttpMetadata": false }, { - "$id": "5187", + "$id": "5198", "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": "4697" + "$ref": "4705" }, "optional": true, "readOnly": false, @@ -65114,13 +65267,13 @@ "isHttpMetadata": false }, { - "$id": "5188", + "$id": "5199", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for this Response.", "type": { - "$id": "5189", + "$id": "5200", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65140,7 +65293,7 @@ "isHttpMetadata": false }, { - "$id": "5190", + "$id": "5201", "kind": "property", "name": "object", "serializedName": "object", @@ -65162,7 +65315,7 @@ "isHttpMetadata": false }, { - "$id": "5191", + "$id": "5202", "kind": "property", "name": "status", "serializedName": "status", @@ -65184,18 +65337,18 @@ "isHttpMetadata": false }, { - "$id": "5192", + "$id": "5203", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) of when this Response was created.", "type": { - "$id": "5193", + "$id": "5204", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5194", + "$id": "5205", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -65218,15 +65371,15 @@ "isHttpMetadata": false }, { - "$id": "5195", + "$id": "5206", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$id": "5196", + "$id": "5207", "kind": "nullable", "type": { - "$id": "5197", + "$id": "5208", "kind": "model", "name": "ResponseError", "namespace": "OpenAI", @@ -65241,7 +65394,7 @@ ], "properties": [ { - "$id": "5198", + "$id": "5209", "kind": "property", "name": "code", "serializedName": "code", @@ -65262,13 +65415,13 @@ "isHttpMetadata": false }, { - "$id": "5199", + "$id": "5210", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "5200", + "$id": "5211", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65305,16 +65458,16 @@ "isHttpMetadata": false }, { - "$id": "5201", + "$id": "5212", "kind": "property", "name": "incomplete_details", "serializedName": "incomplete_details", "doc": "Details about why the response is incomplete.", "type": { - "$id": "5202", + "$id": "5213", "kind": "nullable", "type": { - "$id": "5203", + "$id": "5214", "kind": "model", "name": "ResponseIncompleteDetails1", "namespace": "OpenAI", @@ -65323,7 +65476,7 @@ "decorators": [], "properties": [ { - "$id": "5204", + "$id": "5215", "kind": "property", "name": "reason", "serializedName": "reason", @@ -65362,17 +65515,17 @@ "isHttpMetadata": false }, { - "$id": "5205", + "$id": "5216", "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": "5206", + "$id": "5217", "kind": "array", "name": "ArrayItemResource", "valueType": { - "$id": "5207", + "$id": "5218", "kind": "model", "name": "ItemResource", "namespace": "OpenAI", @@ -65386,7 +65539,7 @@ } ], "discriminatorProperty": { - "$id": "5208", + "$id": "5219", "kind": "property", "name": "type", "serializedName": "type", @@ -65408,15 +65561,15 @@ }, "properties": [ { - "$ref": "5208" + "$ref": "5219" }, { - "$id": "5209", + "$id": "5220", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "5210", + "$id": "5221", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65438,7 +65591,7 @@ ], "discriminatedSubtypes": { "message": { - "$id": "5211", + "$id": "5222", "kind": "model", "name": "ResponsesMessageItemResource", "namespace": "OpenAI", @@ -65453,7 +65606,7 @@ } ], "discriminatorProperty": { - "$id": "5212", + "$id": "5223", "kind": "property", "name": "role", "serializedName": "role", @@ -65475,17 +65628,17 @@ "isHttpMetadata": false }, "baseModel": { - "$ref": "5207" + "$ref": "5218" }, "properties": [ { - "$id": "5213", + "$id": "5224", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the responses item, which is always 'message'.", "type": { - "$ref": "4838" + "$ref": "4846" }, "optional": false, "readOnly": false, @@ -65501,7 +65654,7 @@ "isHttpMetadata": false }, { - "$id": "5214", + "$id": "5225", "kind": "property", "name": "status", "serializedName": "status", @@ -65523,12 +65676,12 @@ "isHttpMetadata": false }, { - "$ref": "5212" + "$ref": "5223" } ], "discriminatedSubtypes": { "user": { - "$id": "5215", + "$id": "5226", "kind": "model", "name": "ResponsesUserMessageItemResource", "namespace": "OpenAI", @@ -65543,17 +65696,17 @@ } ], "baseModel": { - "$ref": "5211" + "$ref": "5222" }, "properties": [ { - "$id": "5216", + "$id": "5227", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `user`.", "type": { - "$ref": "4860" + "$ref": "4868" }, "optional": false, "readOnly": false, @@ -65569,13 +65722,13 @@ "isHttpMetadata": false }, { - "$id": "5217", + "$id": "5228", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4707" + "$ref": "4715" }, "optional": false, "readOnly": false, @@ -65593,7 +65746,7 @@ ] }, "system": { - "$id": "5218", + "$id": "5229", "kind": "model", "name": "ResponsesSystemMessageItemResource", "namespace": "OpenAI", @@ -65608,17 +65761,17 @@ } ], "baseModel": { - "$ref": "5211" + "$ref": "5222" }, "properties": [ { - "$id": "5219", + "$id": "5230", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `system`.", "type": { - "$ref": "4870" + "$ref": "4878" }, "optional": false, "readOnly": false, @@ -65634,13 +65787,13 @@ "isHttpMetadata": false }, { - "$id": "5220", + "$id": "5231", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4707" + "$ref": "4715" }, "optional": false, "readOnly": false, @@ -65658,7 +65811,7 @@ ] }, "developer": { - "$id": "5221", + "$id": "5232", "kind": "model", "name": "ResponsesDeveloperMessageItemResource", "namespace": "OpenAI", @@ -65673,17 +65826,17 @@ } ], "baseModel": { - "$ref": "5211" + "$ref": "5222" }, "properties": [ { - "$id": "5222", + "$id": "5233", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `developer`.", "type": { - "$ref": "4874" + "$ref": "4882" }, "optional": false, "readOnly": false, @@ -65699,13 +65852,13 @@ "isHttpMetadata": false }, { - "$id": "5223", + "$id": "5234", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4707" + "$ref": "4715" }, "optional": false, "readOnly": false, @@ -65723,7 +65876,7 @@ ] }, "assistant": { - "$id": "5224", + "$id": "5235", "kind": "model", "name": "ResponsesAssistantMessageItemResource", "namespace": "OpenAI", @@ -65738,17 +65891,17 @@ } ], "baseModel": { - "$ref": "5211" + "$ref": "5222" }, "properties": [ { - "$id": "5225", + "$id": "5236", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `assistant`.", "type": { - "$ref": "4878" + "$ref": "4886" }, "optional": false, "readOnly": false, @@ -65764,13 +65917,13 @@ "isHttpMetadata": false }, { - "$id": "5226", + "$id": "5237", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4707" + "$ref": "4715" }, "optional": false, "readOnly": false, @@ -65790,7 +65943,7 @@ } }, "computer_call_output": { - "$id": "5227", + "$id": "5238", "kind": "model", "name": "ComputerToolCallOutputItemResource", "namespace": "OpenAI", @@ -65805,16 +65958,16 @@ } ], "baseModel": { - "$ref": "5207" + "$ref": "5218" }, "properties": [ { - "$id": "5228", + "$id": "5239", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4992" + "$ref": "5000" }, "optional": false, "readOnly": false, @@ -65830,7 +65983,7 @@ "isHttpMetadata": false }, { - "$id": "5229", + "$id": "5240", "kind": "property", "name": "status", "serializedName": "status", @@ -65852,13 +66005,13 @@ "isHttpMetadata": false }, { - "$id": "5230", + "$id": "5241", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the computer tool call that produced the output.", "type": { - "$id": "5231", + "$id": "5242", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65878,13 +66031,13 @@ "isHttpMetadata": false }, { - "$id": "5232", + "$id": "5243", "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": "4982" + "$ref": "4990" }, "optional": true, "readOnly": false, @@ -65900,12 +66053,12 @@ "isHttpMetadata": false }, { - "$id": "5233", + "$id": "5244", "kind": "property", "name": "output", "serializedName": "output", "type": { - "$ref": "4997" + "$ref": "5005" }, "optional": false, "readOnly": false, @@ -65923,7 +66076,7 @@ ] }, "function_call": { - "$id": "5234", + "$id": "5245", "kind": "model", "name": "FunctionToolCallItemResource", "namespace": "OpenAI", @@ -65938,16 +66091,16 @@ } ], "baseModel": { - "$ref": "5207" + "$ref": "5218" }, "properties": [ { - "$id": "5235", + "$id": "5246", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5014" + "$ref": "5022" }, "optional": false, "readOnly": false, @@ -65963,7 +66116,7 @@ "isHttpMetadata": false }, { - "$id": "5236", + "$id": "5247", "kind": "property", "name": "status", "serializedName": "status", @@ -65985,13 +66138,13 @@ "isHttpMetadata": false }, { - "$id": "5237", + "$id": "5248", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "5238", + "$id": "5249", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66011,13 +66164,13 @@ "isHttpMetadata": false }, { - "$id": "5239", + "$id": "5250", "kind": "property", "name": "FunctionName", "serializedName": "name", "doc": "The name of the function to run.", "type": { - "$id": "5240", + "$id": "5251", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66037,13 +66190,13 @@ "isHttpMetadata": false }, { - "$id": "5241", + "$id": "5252", "kind": "property", "name": "FunctionArguments", "serializedName": "arguments", "doc": "A JSON string of the arguments to pass to the function.", "type": { - "$id": "5242", + "$id": "5253", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -66065,7 +66218,7 @@ ] }, "function_call_output": { - "$id": "5243", + "$id": "5254", "kind": "model", "name": "FunctionToolCallOutputItemResource", "namespace": "OpenAI", @@ -66080,16 +66233,16 @@ } ], "baseModel": { - "$ref": "5207" + "$ref": "5218" }, "properties": [ { - "$id": "5244", + "$id": "5255", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4882" + "$ref": "4890" }, "optional": false, "readOnly": false, @@ -66105,7 +66258,7 @@ "isHttpMetadata": false }, { - "$id": "5245", + "$id": "5256", "kind": "property", "name": "status", "serializedName": "status", @@ -66127,13 +66280,13 @@ "isHttpMetadata": false }, { - "$id": "5246", + "$id": "5257", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "5247", + "$id": "5258", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66153,13 +66306,13 @@ "isHttpMetadata": false }, { - "$id": "5248", + "$id": "5259", "kind": "property", "name": "FunctionOutput", "serializedName": "output", "doc": "A JSON string of the output of the function tool call.", "type": { - "$id": "5249", + "$id": "5260", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66181,7 +66334,7 @@ ] }, "mcp_approval_response": { - "$id": "5250", + "$id": "5261", "kind": "model", "name": "MCPApprovalResponseItemResource", "namespace": "OpenAI", @@ -66196,16 +66349,16 @@ } ], "baseModel": { - "$ref": "5207" + "$ref": "5218" }, "properties": [ { - "$id": "5251", + "$id": "5262", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5131" + "$ref": "5139" }, "optional": false, "readOnly": false, @@ -66221,13 +66374,13 @@ "isHttpMetadata": false }, { - "$id": "5252", + "$id": "5263", "kind": "property", "name": "approval_request_id", "serializedName": "approval_request_id", "doc": "The ID of the approval request being answered.", "type": { - "$id": "5253", + "$id": "5264", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66247,13 +66400,13 @@ "isHttpMetadata": false }, { - "$id": "5254", + "$id": "5265", "kind": "property", "name": "Approved", "serializedName": "approve", "doc": "Whether the request was approved.", "type": { - "$id": "5255", + "$id": "5266", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -66273,13 +66426,13 @@ "isHttpMetadata": false }, { - "$id": "5256", + "$id": "5267", "kind": "property", "name": "reason", "serializedName": "reason", "doc": "Optional reason for the decision.", "type": { - "$ref": "5137" + "$ref": "5145" }, "optional": true, "readOnly": false, @@ -66297,7 +66450,7 @@ ] }, "file_search_call": { - "$id": "5257", + "$id": "5268", "kind": "model", "name": "FileSearchToolCallItemResource", "namespace": "OpenAI", @@ -66312,16 +66465,16 @@ } ], "baseModel": { - "$ref": "5207" + "$ref": "5218" }, "properties": [ { - "$id": "5258", + "$id": "5269", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4889" + "$ref": "4897" }, "optional": false, "readOnly": false, @@ -66337,7 +66490,7 @@ "isHttpMetadata": false }, { - "$id": "5259", + "$id": "5270", "kind": "property", "name": "status", "serializedName": "status", @@ -66359,7 +66512,7 @@ "isHttpMetadata": false }, { - "$id": "5260", + "$id": "5271", "kind": "property", "name": "queries", "serializedName": "queries", @@ -66381,13 +66534,13 @@ "isHttpMetadata": false }, { - "$id": "5261", + "$id": "5272", "kind": "property", "name": "results", "serializedName": "results", "doc": "The results of the file search tool call.", "type": { - "$ref": "4892" + "$ref": "4900" }, "optional": true, "readOnly": false, @@ -66405,7 +66558,7 @@ ] }, "computer_call": { - "$id": "5262", + "$id": "5273", "kind": "model", "name": "ComputerToolCallItemResource", "namespace": "OpenAI", @@ -66420,16 +66573,16 @@ } ], "baseModel": { - "$ref": "5207" + "$ref": "5218" }, "properties": [ { - "$id": "5263", + "$id": "5274", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4906" + "$ref": "4914" }, "optional": false, "readOnly": false, @@ -66445,7 +66598,7 @@ "isHttpMetadata": false }, { - "$id": "5264", + "$id": "5275", "kind": "property", "name": "status", "serializedName": "status", @@ -66467,13 +66620,13 @@ "isHttpMetadata": false }, { - "$id": "5265", + "$id": "5276", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "An identifier used when responding to the tool call with output.", "type": { - "$id": "5266", + "$id": "5277", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66493,12 +66646,12 @@ "isHttpMetadata": false }, { - "$id": "5267", + "$id": "5278", "kind": "property", "name": "action", "serializedName": "action", "type": { - "$ref": "4910" + "$ref": "4918" }, "optional": false, "readOnly": false, @@ -66514,13 +66667,13 @@ "isHttpMetadata": false }, { - "$id": "5268", + "$id": "5279", "kind": "property", "name": "pending_safety_checks", "serializedName": "pending_safety_checks", "doc": "The pending safety checks for the computer call.", "type": { - "$ref": "4982" + "$ref": "4990" }, "optional": false, "readOnly": false, @@ -66538,7 +66691,7 @@ ] }, "web_search_call": { - "$id": "5269", + "$id": "5280", "kind": "model", "name": "WebSearchToolCallItemResource", "namespace": "OpenAI", @@ -66553,16 +66706,16 @@ } ], "baseModel": { - "$ref": "5207" + "$ref": "5218" }, "properties": [ { - "$id": "5270", + "$id": "5281", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5011" + "$ref": "5019" }, "optional": false, "readOnly": false, @@ -66578,7 +66731,7 @@ "isHttpMetadata": false }, { - "$id": "5271", + "$id": "5282", "kind": "property", "name": "status", "serializedName": "status", @@ -66602,7 +66755,7 @@ ] }, "reasoning": { - "$id": "5272", + "$id": "5283", "kind": "model", "name": "ReasoningItemResource", "namespace": "OpenAI", @@ -66617,16 +66770,16 @@ } ], "baseModel": { - "$ref": "5207" + "$ref": "5218" }, "properties": [ { - "$id": "5273", + "$id": "5284", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5023" + "$ref": "5031" }, "optional": false, "readOnly": false, @@ -66642,7 +66795,7 @@ "isHttpMetadata": false }, { - "$id": "5274", + "$id": "5285", "kind": "property", "name": "status", "serializedName": "status", @@ -66664,13 +66817,13 @@ "isHttpMetadata": false }, { - "$id": "5275", + "$id": "5286", "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": "5025" + "$ref": "5033" }, "optional": true, "readOnly": false, @@ -66686,13 +66839,13 @@ "isHttpMetadata": false }, { - "$id": "5276", + "$id": "5287", "kind": "property", "name": "SummaryParts", "serializedName": "summary", "doc": "Reasoning text contents.", "type": { - "$ref": "5028" + "$ref": "5036" }, "optional": false, "readOnly": false, @@ -66710,7 +66863,7 @@ ] }, "image_generation_call": { - "$id": "5277", + "$id": "5288", "kind": "model", "name": "ImageGenToolCallItemResource", "namespace": "OpenAI", @@ -66725,16 +66878,16 @@ } ], "baseModel": { - "$ref": "5207" + "$ref": "5218" }, "properties": [ { - "$id": "5278", + "$id": "5289", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5046" + "$ref": "5054" }, "optional": false, "readOnly": false, @@ -66750,7 +66903,7 @@ "isHttpMetadata": false }, { - "$id": "5279", + "$id": "5290", "kind": "property", "name": "status", "serializedName": "status", @@ -66771,13 +66924,13 @@ "isHttpMetadata": false }, { - "$id": "5280", + "$id": "5291", "kind": "property", "name": "ImageResultBytes", "serializedName": "result", "doc": "The generated image encoded in base64.", "type": { - "$ref": "5048" + "$ref": "5056" }, "optional": false, "readOnly": false, @@ -66795,7 +66948,7 @@ ] }, "code_interpreter_call": { - "$id": "5281", + "$id": "5292", "kind": "model", "name": "CodeInterpreterToolCallItemResource", "namespace": "OpenAI", @@ -66810,16 +66963,16 @@ } ], "baseModel": { - "$ref": "5207" + "$ref": "5218" }, "properties": [ { - "$id": "5282", + "$id": "5293", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5052" + "$ref": "5060" }, "optional": false, "readOnly": false, @@ -66835,7 +66988,7 @@ "isHttpMetadata": false }, { - "$id": "5283", + "$id": "5294", "kind": "property", "name": "status", "serializedName": "status", @@ -66856,13 +67009,13 @@ "isHttpMetadata": false }, { - "$id": "5284", + "$id": "5295", "kind": "property", "name": "container_id", "serializedName": "container_id", "doc": "The ID of the container used to run the code.", "type": { - "$id": "5285", + "$id": "5296", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66882,13 +67035,13 @@ "isHttpMetadata": false }, { - "$id": "5286", + "$id": "5297", "kind": "property", "name": "code", "serializedName": "code", "doc": "The code to run.", "type": { - "$id": "5287", + "$id": "5298", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66908,13 +67061,13 @@ "isHttpMetadata": false }, { - "$id": "5288", + "$id": "5299", "kind": "property", "name": "outputs", "serializedName": "outputs", "doc": "The outputs of the code interpreter tool call.", "type": { - "$ref": "5058" + "$ref": "5066" }, "optional": true, "readOnly": false, @@ -66932,7 +67085,7 @@ ] }, "local_shell_call": { - "$id": "5289", + "$id": "5300", "kind": "model", "name": "LocalShellToolCallItemResource", "namespace": "OpenAI", @@ -66947,16 +67100,16 @@ } ], "baseModel": { - "$ref": "5207" + "$ref": "5218" }, "properties": [ { - "$id": "5290", + "$id": "5301", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5077" + "$ref": "5085" }, "optional": false, "readOnly": false, @@ -66972,7 +67125,7 @@ "isHttpMetadata": false }, { - "$id": "5291", + "$id": "5302", "kind": "property", "name": "status", "serializedName": "status", @@ -66993,13 +67146,13 @@ "isHttpMetadata": false }, { - "$id": "5292", + "$id": "5303", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the local shell tool call generated by the model.", "type": { - "$id": "5293", + "$id": "5304", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67019,12 +67172,12 @@ "isHttpMetadata": false }, { - "$id": "5294", + "$id": "5305", "kind": "property", "name": "action", "serializedName": "action", "type": { - "$ref": "5081" + "$ref": "5089" }, "optional": false, "readOnly": false, @@ -67042,7 +67195,7 @@ ] }, "local_shell_call_output": { - "$id": "5295", + "$id": "5306", "kind": "model", "name": "LocalShellToolCallOutputItemResource", "namespace": "OpenAI", @@ -67057,16 +67210,16 @@ } ], "baseModel": { - "$ref": "5207" + "$ref": "5218" }, "properties": [ { - "$id": "5296", + "$id": "5307", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5096" + "$ref": "5104" }, "optional": false, "readOnly": false, @@ -67082,7 +67235,7 @@ "isHttpMetadata": false }, { - "$id": "5297", + "$id": "5308", "kind": "property", "name": "status", "serializedName": "status", @@ -67103,13 +67256,13 @@ "isHttpMetadata": false }, { - "$id": "5298", + "$id": "5309", "kind": "property", "name": "output", "serializedName": "output", "doc": "A JSON string of the output of the local shell tool call.", "type": { - "$id": "5299", + "$id": "5310", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67131,7 +67284,7 @@ ] }, "mcp_list_tools": { - "$id": "5300", + "$id": "5311", "kind": "model", "name": "MCPListToolsItemResource", "namespace": "OpenAI", @@ -67146,16 +67299,16 @@ } ], "baseModel": { - "$ref": "5207" + "$ref": "5218" }, "properties": [ { - "$id": "5301", + "$id": "5312", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5101" + "$ref": "5109" }, "optional": false, "readOnly": false, @@ -67171,13 +67324,13 @@ "isHttpMetadata": false }, { - "$id": "5302", + "$id": "5313", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server.", "type": { - "$id": "5303", + "$id": "5314", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67197,13 +67350,13 @@ "isHttpMetadata": false }, { - "$id": "5304", + "$id": "5315", "kind": "property", "name": "ToolDefinitions", "serializedName": "tools", "doc": "The tools available on the server.", "type": { - "$ref": "5105" + "$ref": "5113" }, "optional": false, "readOnly": false, @@ -67219,16 +67372,16 @@ "isHttpMetadata": false }, { - "$id": "5305", + "$id": "5316", "kind": "property", "name": "error", "serializedName": "error", "doc": "Error message if the server could not list tools.", "type": { - "$id": "5306", + "$id": "5317", "kind": "nullable", "type": { - "$id": "5307", + "$id": "5318", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -67252,7 +67405,7 @@ ] }, "mcp_approval_request": { - "$id": "5308", + "$id": "5319", "kind": "model", "name": "MCPApprovalRequestItemResource", "namespace": "OpenAI", @@ -67267,16 +67420,16 @@ } ], "baseModel": { - "$ref": "5207" + "$ref": "5218" }, "properties": [ { - "$id": "5309", + "$id": "5320", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5122" + "$ref": "5130" }, "optional": false, "readOnly": false, @@ -67292,13 +67445,13 @@ "isHttpMetadata": false }, { - "$id": "5310", + "$id": "5321", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server making the request.", "type": { - "$id": "5311", + "$id": "5322", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67318,13 +67471,13 @@ "isHttpMetadata": false }, { - "$id": "5312", + "$id": "5323", "kind": "property", "name": "ToolName", "serializedName": "name", "doc": "The name of the tool to run.", "type": { - "$id": "5313", + "$id": "5324", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67344,13 +67497,13 @@ "isHttpMetadata": false }, { - "$id": "5314", + "$id": "5325", "kind": "property", "name": "ToolArguments", "serializedName": "arguments", "doc": "A JSON string of arguments for the tool.", "type": { - "$id": "5315", + "$id": "5326", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -67372,7 +67525,7 @@ ] }, "mcp_call": { - "$id": "5316", + "$id": "5327", "kind": "model", "name": "MCPCallItemResource", "namespace": "OpenAI", @@ -67387,16 +67540,16 @@ } ], "baseModel": { - "$ref": "5207" + "$ref": "5218" }, "properties": [ { - "$id": "5317", + "$id": "5328", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5141" + "$ref": "5149" }, "optional": false, "readOnly": false, @@ -67412,13 +67565,13 @@ "isHttpMetadata": false }, { - "$id": "5318", + "$id": "5329", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server running the tool.", "type": { - "$id": "5319", + "$id": "5330", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67438,13 +67591,13 @@ "isHttpMetadata": false }, { - "$id": "5320", + "$id": "5331", "kind": "property", "name": "ToolName", "serializedName": "name", "doc": "The name of the tool that was run.", "type": { - "$id": "5321", + "$id": "5332", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67464,13 +67617,13 @@ "isHttpMetadata": false }, { - "$id": "5322", + "$id": "5333", "kind": "property", "name": "ToolArguments", "serializedName": "arguments", "doc": "A JSON string of the arguments passed to the tool.", "type": { - "$id": "5323", + "$id": "5334", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -67490,13 +67643,13 @@ "isHttpMetadata": false }, { - "$id": "5324", + "$id": "5335", "kind": "property", "name": "ToolOutput", "serializedName": "output", "doc": "The output from the tool call.", "type": { - "$ref": "5149" + "$ref": "5157" }, "optional": true, "readOnly": false, @@ -67512,16 +67665,16 @@ "isHttpMetadata": false }, { - "$id": "5325", + "$id": "5336", "kind": "property", "name": "error", "serializedName": "error", "doc": "The error from the tool call, if any.", "type": { - "$id": "5326", + "$id": "5337", "kind": "nullable", "type": { - "$id": "5327", + "$id": "5338", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -67545,7 +67698,7 @@ ] }, "item_reference": { - "$id": "5328", + "$id": "5339", "kind": "model", "name": "DotNetItemReferenceItemResource", "namespace": "OpenAI", @@ -67560,16 +67713,16 @@ } ], "baseModel": { - "$ref": "5207" + "$ref": "5218" }, "properties": [ { - "$id": "5329", + "$id": "5340", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5041" + "$ref": "5049" }, "optional": false, "readOnly": false, @@ -67605,16 +67758,16 @@ "isHttpMetadata": false }, { - "$id": "5330", + "$id": "5341", "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": "5331", + "$id": "5342", "kind": "nullable", "type": { - "$id": "5332", + "$id": "5343", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67636,12 +67789,12 @@ "isHttpMetadata": false }, { - "$id": "5333", + "$id": "5344", "kind": "property", "name": "usage", "serializedName": "usage", "type": { - "$id": "5334", + "$id": "5345", "kind": "model", "name": "ResponseUsage", "namespace": "OpenAI", @@ -67656,13 +67809,13 @@ ], "properties": [ { - "$id": "5335", + "$id": "5346", "kind": "property", "name": "input_tokens", "serializedName": "input_tokens", "doc": "The number of input tokens.", "type": { - "$id": "5336", + "$id": "5347", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67682,13 +67835,13 @@ "isHttpMetadata": false }, { - "$id": "5337", + "$id": "5348", "kind": "property", "name": "input_tokens_details", "serializedName": "input_tokens_details", "doc": "A detailed breakdown of the input tokens.", "type": { - "$id": "5338", + "$id": "5349", "kind": "model", "name": "ResponseUsageInputTokensDetails", "namespace": "OpenAI", @@ -67697,13 +67850,13 @@ "decorators": [], "properties": [ { - "$id": "5339", + "$id": "5350", "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": "5340", + "$id": "5351", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67738,13 +67891,13 @@ "isHttpMetadata": false }, { - "$id": "5341", + "$id": "5352", "kind": "property", "name": "output_tokens", "serializedName": "output_tokens", "doc": "The number of output tokens.", "type": { - "$id": "5342", + "$id": "5353", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67764,13 +67917,13 @@ "isHttpMetadata": false }, { - "$id": "5343", + "$id": "5354", "kind": "property", "name": "output_tokens_details", "serializedName": "output_tokens_details", "doc": "A detailed breakdown of the output tokens.", "type": { - "$id": "5344", + "$id": "5355", "kind": "model", "name": "ResponseUsageOutputTokensDetails", "namespace": "OpenAI", @@ -67779,13 +67932,13 @@ "decorators": [], "properties": [ { - "$id": "5345", + "$id": "5356", "kind": "property", "name": "reasoning_tokens", "serializedName": "reasoning_tokens", "doc": "The number of reasoning tokens.", "type": { - "$id": "5346", + "$id": "5357", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67820,13 +67973,13 @@ "isHttpMetadata": false }, { - "$id": "5347", + "$id": "5358", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens used.", "type": { - "$id": "5348", + "$id": "5359", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67861,13 +68014,13 @@ "isHttpMetadata": false }, { - "$id": "5349", + "$id": "5360", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "doc": "Whether to allow the model to run tool calls in parallel.", "type": { - "$id": "5350", + "$id": "5361", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -67889,88 +68042,88 @@ ] }, { - "$ref": "5197" + "$ref": "5208" }, { - "$ref": "5203" + "$ref": "5214" }, { - "$ref": "5207" + "$ref": "5218" }, { - "$ref": "5211" + "$ref": "5222" }, { - "$ref": "5215" + "$ref": "5226" }, { - "$ref": "5218" + "$ref": "5229" }, { - "$ref": "5221" + "$ref": "5232" }, { - "$ref": "5224" + "$ref": "5235" }, { - "$ref": "5227" + "$ref": "5238" }, { - "$ref": "5234" + "$ref": "5245" }, { - "$ref": "5243" + "$ref": "5254" }, { - "$ref": "5250" + "$ref": "5261" }, { - "$ref": "5257" + "$ref": "5268" }, { - "$ref": "5262" + "$ref": "5273" }, { - "$ref": "5269" + "$ref": "5280" }, { - "$ref": "5272" + "$ref": "5283" }, { - "$ref": "5277" + "$ref": "5288" }, { - "$ref": "5281" + "$ref": "5292" }, { - "$ref": "5289" + "$ref": "5300" }, { - "$ref": "5295" + "$ref": "5306" }, { - "$ref": "5300" + "$ref": "5311" }, { - "$ref": "5308" + "$ref": "5319" }, { - "$ref": "5316" + "$ref": "5327" }, { - "$ref": "5328" + "$ref": "5339" }, { - "$ref": "5334" + "$ref": "5345" }, { - "$ref": "5338" + "$ref": "5349" }, { - "$ref": "5344" + "$ref": "5355" }, { - "$id": "5351", + "$id": "5362", "kind": "model", "name": "ResponseStreamEvent", "namespace": "OpenAI", @@ -67983,7 +68136,7 @@ } ], "discriminatorProperty": { - "$id": "5352", + "$id": "5363", "kind": "property", "name": "type", "serializedName": "type", @@ -68005,16 +68158,16 @@ }, "properties": [ { - "$ref": "5352" + "$ref": "5363" }, { - "$id": "5353", + "$id": "5364", "kind": "property", "name": "sequence_number", "serializedName": "sequence_number", "doc": "The sequence number for this event.", "type": { - "$id": "5354", + "$id": "5365", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -68036,7 +68189,7 @@ ], "discriminatedSubtypes": { "response.completed": { - "$id": "5355", + "$id": "5366", "kind": "model", "name": "ResponseCompletedEvent", "namespace": "OpenAI", @@ -68051,17 +68204,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5356", + "$id": "5367", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.completed`.", "type": { - "$id": "5357", + "$id": "5368", "kind": "enumvalue", "name": "response_completed", "value": "response.completed", @@ -68069,14 +68222,14 @@ "$ref": "775" }, "enumType": { - "$id": "5358", + "$id": "5369", "kind": "enum", "decorators": [], "name": "ResponseStreamEventType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "5359", + "$id": "5370", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -68085,718 +68238,718 @@ }, "values": [ { - "$id": "5360", + "$id": "5371", "kind": "enumvalue", "decorators": [], "name": "response_audio_delta", "value": "response.audio.delta", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5361", + "$id": "5372", "kind": "enumvalue", "decorators": [], "name": "response_audio_done", "value": "response.audio.done", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5362", + "$id": "5373", "kind": "enumvalue", "decorators": [], "name": "response_audio_transcript_delta", "value": "response.audio_transcript.delta", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5363", + "$id": "5374", "kind": "enumvalue", "decorators": [], "name": "response_audio_transcript_done", "value": "response.audio_transcript.done", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5364", + "$id": "5375", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_code_delta", "value": "response.code_interpreter_call_code.delta", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5365", + "$id": "5376", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_code_done", "value": "response.code_interpreter_call_code.done", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5366", + "$id": "5377", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_completed", "value": "response.code_interpreter_call.completed", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5367", + "$id": "5378", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_in_progress", "value": "response.code_interpreter_call.in_progress", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5368", + "$id": "5379", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_interpreting", "value": "response.code_interpreter_call.interpreting", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5369", + "$id": "5380", "kind": "enumvalue", "decorators": [], "name": "response_completed", "value": "response.completed", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5370", + "$id": "5381", "kind": "enumvalue", "decorators": [], "name": "response_content_part_added", "value": "response.content_part.added", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5371", + "$id": "5382", "kind": "enumvalue", "decorators": [], "name": "response_content_part_done", "value": "response.content_part.done", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5372", + "$id": "5383", "kind": "enumvalue", "decorators": [], "name": "response_created", "value": "response.created", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5373", + "$id": "5384", "kind": "enumvalue", "decorators": [], "name": "error", "value": "error", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5374", + "$id": "5385", "kind": "enumvalue", "decorators": [], "name": "response_file_search_call_completed", "value": "response.file_search_call.completed", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5375", + "$id": "5386", "kind": "enumvalue", "decorators": [], "name": "response_file_search_call_in_progress", "value": "response.file_search_call.in_progress", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5376", + "$id": "5387", "kind": "enumvalue", "decorators": [], "name": "response_file_search_call_searching", "value": "response.file_search_call.searching", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5377", + "$id": "5388", "kind": "enumvalue", "decorators": [], "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5378", + "$id": "5389", "kind": "enumvalue", "decorators": [], "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5379", + "$id": "5390", "kind": "enumvalue", "decorators": [], "name": "response_in_progress", "value": "response.in_progress", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5380", + "$id": "5391", "kind": "enumvalue", "decorators": [], "name": "response_failed", "value": "response.failed", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5381", + "$id": "5392", "kind": "enumvalue", "decorators": [], "name": "response_incomplete", "value": "response.incomplete", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5382", + "$id": "5393", "kind": "enumvalue", "decorators": [], "name": "response_output_item_added", "value": "response.output_item.added", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5383", + "$id": "5394", "kind": "enumvalue", "decorators": [], "name": "response_output_item_done", "value": "response.output_item.done", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5384", + "$id": "5395", "kind": "enumvalue", "decorators": [], "name": "response_refusal_delta", "value": "response.refusal.delta", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5385", + "$id": "5396", "kind": "enumvalue", "decorators": [], "name": "response_refusal_done", "value": "response.refusal.done", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5386", + "$id": "5397", "kind": "enumvalue", "decorators": [], "name": "response_output_text_annotation_added", "value": "response.output_text.annotation.added", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5387", + "$id": "5398", "kind": "enumvalue", "decorators": [], "name": "response_output_text_delta", "value": "response.output_text.delta", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5388", + "$id": "5399", "kind": "enumvalue", "decorators": [], "name": "response_output_text_done", "value": "response.output_text.done", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5389", + "$id": "5400", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_part_added", "value": "response.reasoning_summary_part.added", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5390", + "$id": "5401", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_part_done", "value": "response.reasoning_summary_part.done", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5391", + "$id": "5402", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_text_delta", "value": "response.reasoning_summary_text.delta", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5392", + "$id": "5403", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_text_done", "value": "response.reasoning_summary_text.done", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5393", + "$id": "5404", "kind": "enumvalue", "decorators": [], "name": "response_web_search_call_completed", "value": "response.web_search_call.completed", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5394", + "$id": "5405", "kind": "enumvalue", "decorators": [], "name": "response_web_search_call_in_progress", "value": "response.web_search_call.in_progress", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5395", + "$id": "5406", "kind": "enumvalue", "decorators": [], "name": "response_web_search_call_searching", "value": "response.web_search_call.searching", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5396", + "$id": "5407", "kind": "enumvalue", "decorators": [], "name": "response_image_generation_call_completed", "value": "response.image_generation_call.completed", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5397", + "$id": "5408", "kind": "enumvalue", "decorators": [], "name": "response_image_generation_call_generating", "value": "response.image_generation_call.generating", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5398", + "$id": "5409", "kind": "enumvalue", "decorators": [], "name": "response_image_generation_call_in_progress", "value": "response.image_generation_call.in_progress", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5399", + "$id": "5410", "kind": "enumvalue", "decorators": [], "name": "response_image_generation_call_partial_image", "value": "response.image_generation_call.partial_image", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5400", + "$id": "5411", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_arguments_delta", "value": "response.mcp_call_arguments.delta", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5401", + "$id": "5412", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_arguments_done", "value": "response.mcp_call_arguments.done", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5402", + "$id": "5413", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_completed", "value": "response.mcp_call.completed", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5403", + "$id": "5414", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_failed", "value": "response.mcp_call.failed", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5404", + "$id": "5415", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_in_progress", "value": "response.mcp_call.in_progress", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5405", + "$id": "5416", "kind": "enumvalue", "decorators": [], "name": "response_mcp_list_tools_completed", "value": "response.mcp_list_tools.completed", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5406", + "$id": "5417", "kind": "enumvalue", "decorators": [], "name": "response_mcp_list_tools_failed", "value": "response.mcp_list_tools.failed", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5407", + "$id": "5418", "kind": "enumvalue", "decorators": [], "name": "response_mcp_list_tools_in_progress", "value": "response.mcp_list_tools.in_progress", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5408", + "$id": "5419", "kind": "enumvalue", "decorators": [], "name": "response_queued", "value": "response.queued", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5409", + "$id": "5420", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_delta", "value": "response.reasoning.delta", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5410", + "$id": "5421", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_done", "value": "response.reasoning.done", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5411", + "$id": "5422", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_delta", "value": "response.reasoning_summary.delta", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5412", + "$id": "5423", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_done", "value": "response.reasoning_summary.done", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5413", + "$id": "5424", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_text_delta", "value": "response.reasoning_text.delta", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } }, { - "$id": "5414", + "$id": "5425", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_text_done", "value": "response.reasoning_text.done", "valueType": { - "$ref": "5359" + "$ref": "5370" }, "enumType": { - "$ref": "5358" + "$ref": "5369" } } ], @@ -68825,13 +68978,13 @@ "isHttpMetadata": false }, { - "$id": "5415", + "$id": "5426", "kind": "property", "name": "response", "serializedName": "response", "doc": "Properties of the completed response.", "type": { - "$ref": "5166" + "$ref": "5176" }, "optional": false, "readOnly": false, @@ -68849,7 +69002,7 @@ ] }, "response.content_part.added": { - "$id": "5416", + "$id": "5427", "kind": "model", "name": "ResponseContentPartAddedEvent", "namespace": "OpenAI", @@ -68864,17 +69017,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5417", + "$id": "5428", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.content_part.added`.", "type": { - "$id": "5418", + "$id": "5429", "kind": "enumvalue", "name": "response_content_part_added", "value": "response.content_part.added", @@ -68882,7 +69035,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -68900,13 +69053,13 @@ "isHttpMetadata": false }, { - "$id": "5419", + "$id": "5430", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the content part was added to.", "type": { - "$id": "5420", + "$id": "5431", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -68926,13 +69079,13 @@ "isHttpMetadata": false }, { - "$id": "5421", + "$id": "5432", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the content part was added to.", "type": { - "$id": "5422", + "$id": "5433", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -68952,13 +69105,13 @@ "isHttpMetadata": false }, { - "$id": "5423", + "$id": "5434", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part that was added.", "type": { - "$id": "5424", + "$id": "5435", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -68978,13 +69131,13 @@ "isHttpMetadata": false }, { - "$id": "5425", + "$id": "5436", "kind": "property", "name": "part", "serializedName": "part", "doc": "The content part that was added.", "type": { - "$ref": "4708" + "$ref": "4716" }, "optional": false, "readOnly": false, @@ -69002,7 +69155,7 @@ ] }, "response.content_part.done": { - "$id": "5426", + "$id": "5437", "kind": "model", "name": "ResponseContentPartDoneEvent", "namespace": "OpenAI", @@ -69017,17 +69170,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5427", + "$id": "5438", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.content_part.done`.", "type": { - "$id": "5428", + "$id": "5439", "kind": "enumvalue", "name": "response_content_part_done", "value": "response.content_part.done", @@ -69035,7 +69188,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -69053,13 +69206,13 @@ "isHttpMetadata": false }, { - "$id": "5429", + "$id": "5440", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the content part was added to.", "type": { - "$id": "5430", + "$id": "5441", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69079,13 +69232,13 @@ "isHttpMetadata": false }, { - "$id": "5431", + "$id": "5442", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the content part was added to.", "type": { - "$id": "5432", + "$id": "5443", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69105,13 +69258,13 @@ "isHttpMetadata": false }, { - "$id": "5433", + "$id": "5444", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part that is done.", "type": { - "$id": "5434", + "$id": "5445", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69131,13 +69284,13 @@ "isHttpMetadata": false }, { - "$id": "5435", + "$id": "5446", "kind": "property", "name": "part", "serializedName": "part", "doc": "The content part that is done.", "type": { - "$ref": "4708" + "$ref": "4716" }, "optional": false, "readOnly": false, @@ -69155,7 +69308,7 @@ ] }, "response.created": { - "$id": "5436", + "$id": "5447", "kind": "model", "name": "ResponseCreatedEvent", "namespace": "OpenAI", @@ -69170,17 +69323,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5437", + "$id": "5448", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.created`.", "type": { - "$id": "5438", + "$id": "5449", "kind": "enumvalue", "name": "response_created", "value": "response.created", @@ -69188,7 +69341,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -69206,13 +69359,13 @@ "isHttpMetadata": false }, { - "$id": "5439", + "$id": "5450", "kind": "property", "name": "response", "serializedName": "response", "doc": "The response that was created.", "type": { - "$ref": "5166" + "$ref": "5176" }, "optional": false, "readOnly": false, @@ -69230,7 +69383,7 @@ ] }, "error": { - "$id": "5440", + "$id": "5451", "kind": "model", "name": "ResponseErrorEvent", "namespace": "OpenAI", @@ -69245,17 +69398,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5441", + "$id": "5452", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `error`.", "type": { - "$id": "5442", + "$id": "5453", "kind": "enumvalue", "name": "error", "value": "error", @@ -69263,7 +69416,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -69281,16 +69434,16 @@ "isHttpMetadata": false }, { - "$id": "5443", + "$id": "5454", "kind": "property", "name": "code", "serializedName": "code", "doc": "The error code.", "type": { - "$id": "5444", + "$id": "5455", "kind": "nullable", "type": { - "$id": "5445", + "$id": "5456", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69312,13 +69465,13 @@ "isHttpMetadata": false }, { - "$id": "5446", + "$id": "5457", "kind": "property", "name": "message", "serializedName": "message", "doc": "The error message.", "type": { - "$id": "5447", + "$id": "5458", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69338,16 +69491,16 @@ "isHttpMetadata": false }, { - "$id": "5448", + "$id": "5459", "kind": "property", "name": "param", "serializedName": "param", "doc": "The error parameter.", "type": { - "$id": "5449", + "$id": "5460", "kind": "nullable", "type": { - "$id": "5450", + "$id": "5461", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69371,7 +69524,7 @@ ] }, "response.file_search_call.completed": { - "$id": "5451", + "$id": "5462", "kind": "model", "name": "ResponseFileSearchCallCompletedEvent", "namespace": "OpenAI", @@ -69386,17 +69539,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5452", + "$id": "5463", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.file_search_call.completed`.", "type": { - "$id": "5453", + "$id": "5464", "kind": "enumvalue", "name": "response_file_search_call_completed", "value": "response.file_search_call.completed", @@ -69404,7 +69557,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -69422,13 +69575,13 @@ "isHttpMetadata": false }, { - "$id": "5454", + "$id": "5465", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the file search call is initiated.", "type": { - "$id": "5455", + "$id": "5466", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69448,13 +69601,13 @@ "isHttpMetadata": false }, { - "$id": "5456", + "$id": "5467", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the file search call is initiated.", "type": { - "$id": "5457", + "$id": "5468", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69476,7 +69629,7 @@ ] }, "response.file_search_call.in_progress": { - "$id": "5458", + "$id": "5469", "kind": "model", "name": "ResponseFileSearchCallInProgressEvent", "namespace": "OpenAI", @@ -69491,17 +69644,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5459", + "$id": "5470", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.file_search_call.in_progress`.", "type": { - "$id": "5460", + "$id": "5471", "kind": "enumvalue", "name": "response_file_search_call_in_progress", "value": "response.file_search_call.in_progress", @@ -69509,7 +69662,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -69527,13 +69680,13 @@ "isHttpMetadata": false }, { - "$id": "5461", + "$id": "5472", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the file search call is initiated.", "type": { - "$id": "5462", + "$id": "5473", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69553,13 +69706,13 @@ "isHttpMetadata": false }, { - "$id": "5463", + "$id": "5474", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the file search call is initiated.", "type": { - "$id": "5464", + "$id": "5475", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69581,7 +69734,7 @@ ] }, "response.file_search_call.searching": { - "$id": "5465", + "$id": "5476", "kind": "model", "name": "ResponseFileSearchCallSearchingEvent", "namespace": "OpenAI", @@ -69596,17 +69749,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5466", + "$id": "5477", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.file_search_call.searching`.", "type": { - "$id": "5467", + "$id": "5478", "kind": "enumvalue", "name": "response_file_search_call_searching", "value": "response.file_search_call.searching", @@ -69614,7 +69767,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -69632,13 +69785,13 @@ "isHttpMetadata": false }, { - "$id": "5468", + "$id": "5479", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the file search call is searching.", "type": { - "$id": "5469", + "$id": "5480", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69658,13 +69811,13 @@ "isHttpMetadata": false }, { - "$id": "5470", + "$id": "5481", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the file search call is initiated.", "type": { - "$id": "5471", + "$id": "5482", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69686,7 +69839,7 @@ ] }, "response.function_call_arguments.delta": { - "$id": "5472", + "$id": "5483", "kind": "model", "name": "ResponseFunctionCallArgumentsDeltaEvent", "namespace": "OpenAI", @@ -69701,17 +69854,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5473", + "$id": "5484", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.function_call_arguments.delta`.", "type": { - "$id": "5474", + "$id": "5485", "kind": "enumvalue", "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", @@ -69719,7 +69872,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -69737,13 +69890,13 @@ "isHttpMetadata": false }, { - "$id": "5475", + "$id": "5486", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the function-call arguments delta is added to.", "type": { - "$id": "5476", + "$id": "5487", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69763,13 +69916,13 @@ "isHttpMetadata": false }, { - "$id": "5477", + "$id": "5488", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the function-call arguments delta is added to.", "type": { - "$id": "5478", + "$id": "5489", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69789,13 +69942,13 @@ "isHttpMetadata": false }, { - "$id": "5479", + "$id": "5490", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The function-call arguments delta that is added.", "type": { - "$id": "5480", + "$id": "5491", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -69817,7 +69970,7 @@ ] }, "response.function_call_arguments.done": { - "$id": "5481", + "$id": "5492", "kind": "model", "name": "ResponseFunctionCallArgumentsDoneEvent", "namespace": "OpenAI", @@ -69832,16 +69985,16 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5482", + "$id": "5493", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5483", + "$id": "5494", "kind": "enumvalue", "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", @@ -69849,7 +70002,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -69867,13 +70020,13 @@ "isHttpMetadata": false }, { - "$id": "5484", + "$id": "5495", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "5485", + "$id": "5496", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69893,13 +70046,13 @@ "isHttpMetadata": false }, { - "$id": "5486", + "$id": "5497", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item.", "type": { - "$id": "5487", + "$id": "5498", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69919,13 +70072,13 @@ "isHttpMetadata": false }, { - "$id": "5488", + "$id": "5499", "kind": "property", "name": "FunctionArguments", "serializedName": "arguments", "doc": "The function-call arguments.", "type": { - "$id": "5489", + "$id": "5500", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -69947,7 +70100,7 @@ ] }, "response.in_progress": { - "$id": "5490", + "$id": "5501", "kind": "model", "name": "ResponseInProgressEvent", "namespace": "OpenAI", @@ -69962,17 +70115,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5491", + "$id": "5502", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.in_progress`.", "type": { - "$id": "5492", + "$id": "5503", "kind": "enumvalue", "name": "response_in_progress", "value": "response.in_progress", @@ -69980,7 +70133,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -69998,13 +70151,13 @@ "isHttpMetadata": false }, { - "$id": "5493", + "$id": "5504", "kind": "property", "name": "response", "serializedName": "response", "doc": "The response that is in progress.", "type": { - "$ref": "5166" + "$ref": "5176" }, "optional": false, "readOnly": false, @@ -70022,7 +70175,7 @@ ] }, "response.failed": { - "$id": "5494", + "$id": "5505", "kind": "model", "name": "ResponseFailedEvent", "namespace": "OpenAI", @@ -70037,17 +70190,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5495", + "$id": "5506", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.failed`.", "type": { - "$id": "5496", + "$id": "5507", "kind": "enumvalue", "name": "response_failed", "value": "response.failed", @@ -70055,7 +70208,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -70073,13 +70226,13 @@ "isHttpMetadata": false }, { - "$id": "5497", + "$id": "5508", "kind": "property", "name": "response", "serializedName": "response", "doc": "The response that failed.", "type": { - "$ref": "5166" + "$ref": "5176" }, "optional": false, "readOnly": false, @@ -70097,7 +70250,7 @@ ] }, "response.incomplete": { - "$id": "5498", + "$id": "5509", "kind": "model", "name": "ResponseIncompleteEvent", "namespace": "OpenAI", @@ -70112,17 +70265,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5499", + "$id": "5510", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.incomplete`.", "type": { - "$id": "5500", + "$id": "5511", "kind": "enumvalue", "name": "response_incomplete", "value": "response.incomplete", @@ -70130,7 +70283,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -70148,13 +70301,13 @@ "isHttpMetadata": false }, { - "$id": "5501", + "$id": "5512", "kind": "property", "name": "response", "serializedName": "response", "doc": "The response that was incomplete.", "type": { - "$ref": "5166" + "$ref": "5176" }, "optional": false, "readOnly": false, @@ -70172,7 +70325,7 @@ ] }, "response.output_item.added": { - "$id": "5502", + "$id": "5513", "kind": "model", "name": "ResponseOutputItemAddedEvent", "namespace": "OpenAI", @@ -70187,17 +70340,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5503", + "$id": "5514", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.output_item.added`.", "type": { - "$id": "5504", + "$id": "5515", "kind": "enumvalue", "name": "response_output_item_added", "value": "response.output_item.added", @@ -70205,7 +70358,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -70223,13 +70376,13 @@ "isHttpMetadata": false }, { - "$id": "5505", + "$id": "5516", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that was added.", "type": { - "$id": "5506", + "$id": "5517", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70249,13 +70402,13 @@ "isHttpMetadata": false }, { - "$id": "5507", + "$id": "5518", "kind": "property", "name": "item", "serializedName": "item", "doc": "The output item that was added.", "type": { - "$ref": "5207" + "$ref": "5218" }, "optional": false, "readOnly": false, @@ -70273,7 +70426,7 @@ ] }, "response.output_item.done": { - "$id": "5508", + "$id": "5519", "kind": "model", "name": "ResponseOutputItemDoneEvent", "namespace": "OpenAI", @@ -70288,17 +70441,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5509", + "$id": "5520", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.output_item.done`.", "type": { - "$id": "5510", + "$id": "5521", "kind": "enumvalue", "name": "response_output_item_done", "value": "response.output_item.done", @@ -70306,7 +70459,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -70324,13 +70477,13 @@ "isHttpMetadata": false }, { - "$id": "5511", + "$id": "5522", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that was marked done.", "type": { - "$id": "5512", + "$id": "5523", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70350,13 +70503,13 @@ "isHttpMetadata": false }, { - "$id": "5513", + "$id": "5524", "kind": "property", "name": "item", "serializedName": "item", "doc": "The output item that was marked done.", "type": { - "$ref": "5207" + "$ref": "5218" }, "optional": false, "readOnly": false, @@ -70374,7 +70527,7 @@ ] }, "response.refusal.delta": { - "$id": "5514", + "$id": "5525", "kind": "model", "name": "ResponseRefusalDeltaEvent", "namespace": "OpenAI", @@ -70389,17 +70542,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5515", + "$id": "5526", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.refusal.delta`.", "type": { - "$id": "5516", + "$id": "5527", "kind": "enumvalue", "name": "response_refusal_delta", "value": "response.refusal.delta", @@ -70407,7 +70560,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -70425,13 +70578,13 @@ "isHttpMetadata": false }, { - "$id": "5517", + "$id": "5528", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the refusal text is added to.", "type": { - "$id": "5518", + "$id": "5529", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70451,13 +70604,13 @@ "isHttpMetadata": false }, { - "$id": "5519", + "$id": "5530", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the refusal text is added to.", "type": { - "$id": "5520", + "$id": "5531", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70477,13 +70630,13 @@ "isHttpMetadata": false }, { - "$id": "5521", + "$id": "5532", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part that the refusal text is added to.", "type": { - "$id": "5522", + "$id": "5533", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70503,13 +70656,13 @@ "isHttpMetadata": false }, { - "$id": "5523", + "$id": "5534", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The refusal text that is added.", "type": { - "$id": "5524", + "$id": "5535", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70531,7 +70684,7 @@ ] }, "response.refusal.done": { - "$id": "5525", + "$id": "5536", "kind": "model", "name": "ResponseRefusalDoneEvent", "namespace": "OpenAI", @@ -70546,17 +70699,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5526", + "$id": "5537", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.refusal.done`.", "type": { - "$id": "5527", + "$id": "5538", "kind": "enumvalue", "name": "response_refusal_done", "value": "response.refusal.done", @@ -70564,7 +70717,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -70582,13 +70735,13 @@ "isHttpMetadata": false }, { - "$id": "5528", + "$id": "5539", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the refusal text is finalized.", "type": { - "$id": "5529", + "$id": "5540", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70608,13 +70761,13 @@ "isHttpMetadata": false }, { - "$id": "5530", + "$id": "5541", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the refusal text is finalized.", "type": { - "$id": "5531", + "$id": "5542", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70634,13 +70787,13 @@ "isHttpMetadata": false }, { - "$id": "5532", + "$id": "5543", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part that the refusal text is finalized.", "type": { - "$id": "5533", + "$id": "5544", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70660,13 +70813,13 @@ "isHttpMetadata": false }, { - "$id": "5534", + "$id": "5545", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "The refusal text that is finalized.", "type": { - "$id": "5535", + "$id": "5546", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70688,7 +70841,7 @@ ] }, "response.output_text.delta": { - "$id": "5536", + "$id": "5547", "kind": "model", "name": "ResponseTextDeltaEvent", "namespace": "OpenAI", @@ -70703,17 +70856,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5537", + "$id": "5548", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.output_text.delta`.", "type": { - "$id": "5538", + "$id": "5549", "kind": "enumvalue", "name": "response_output_text_delta", "value": "response.output_text.delta", @@ -70721,7 +70874,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -70739,13 +70892,13 @@ "isHttpMetadata": false }, { - "$id": "5539", + "$id": "5550", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the text delta was added to.", "type": { - "$id": "5540", + "$id": "5551", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70765,13 +70918,13 @@ "isHttpMetadata": false }, { - "$id": "5541", + "$id": "5552", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the text delta was added to.", "type": { - "$id": "5542", + "$id": "5553", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70791,13 +70944,13 @@ "isHttpMetadata": false }, { - "$id": "5543", + "$id": "5554", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part that the text delta was added to.", "type": { - "$id": "5544", + "$id": "5555", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70817,13 +70970,13 @@ "isHttpMetadata": false }, { - "$id": "5545", + "$id": "5556", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The text delta that was added.", "type": { - "$id": "5546", + "$id": "5557", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70845,7 +70998,7 @@ ] }, "response.output_text.done": { - "$id": "5547", + "$id": "5558", "kind": "model", "name": "ResponseTextDoneEvent", "namespace": "OpenAI", @@ -70860,17 +71013,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5548", + "$id": "5559", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.output_text.done`.", "type": { - "$id": "5549", + "$id": "5560", "kind": "enumvalue", "name": "response_output_text_done", "value": "response.output_text.done", @@ -70878,7 +71031,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -70896,13 +71049,13 @@ "isHttpMetadata": false }, { - "$id": "5550", + "$id": "5561", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the text content is finalized.", "type": { - "$id": "5551", + "$id": "5562", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70922,13 +71075,13 @@ "isHttpMetadata": false }, { - "$id": "5552", + "$id": "5563", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the text content is finalized.", "type": { - "$id": "5553", + "$id": "5564", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70948,13 +71101,13 @@ "isHttpMetadata": false }, { - "$id": "5554", + "$id": "5565", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part that the text content is finalized.", "type": { - "$id": "5555", + "$id": "5566", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70974,13 +71127,13 @@ "isHttpMetadata": false }, { - "$id": "5556", + "$id": "5567", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content that is finalized.", "type": { - "$id": "5557", + "$id": "5568", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71002,7 +71155,7 @@ ] }, "response.reasoning_summary_part.added": { - "$id": "5558", + "$id": "5569", "kind": "model", "name": "ResponseReasoningSummaryPartAddedEvent", "namespace": "OpenAI", @@ -71017,17 +71170,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5559", + "$id": "5570", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.reasoning_summary_part.added`.", "type": { - "$id": "5560", + "$id": "5571", "kind": "enumvalue", "name": "response_reasoning_summary_part_added", "value": "response.reasoning_summary_part.added", @@ -71035,7 +71188,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -71053,13 +71206,13 @@ "isHttpMetadata": false }, { - "$id": "5561", + "$id": "5572", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item this summary part is associated with.", "type": { - "$id": "5562", + "$id": "5573", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71079,13 +71232,13 @@ "isHttpMetadata": false }, { - "$id": "5563", + "$id": "5574", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item this summary part is associated with.", "type": { - "$id": "5564", + "$id": "5575", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71105,13 +71258,13 @@ "isHttpMetadata": false }, { - "$id": "5565", + "$id": "5576", "kind": "property", "name": "summary_index", "serializedName": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "5566", + "$id": "5577", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71131,13 +71284,13 @@ "isHttpMetadata": false }, { - "$id": "5567", + "$id": "5578", "kind": "property", "name": "part", "serializedName": "part", "doc": "The summary part that was added.", "type": { - "$ref": "5029" + "$ref": "5037" }, "optional": false, "readOnly": false, @@ -71155,7 +71308,7 @@ ] }, "response.reasoning_summary_part.done": { - "$id": "5568", + "$id": "5579", "kind": "model", "name": "ResponseReasoningSummaryPartDoneEvent", "namespace": "OpenAI", @@ -71170,17 +71323,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5569", + "$id": "5580", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.reasoning_summary_part.done`.", "type": { - "$id": "5570", + "$id": "5581", "kind": "enumvalue", "name": "response_reasoning_summary_part_done", "value": "response.reasoning_summary_part.done", @@ -71188,7 +71341,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -71206,13 +71359,13 @@ "isHttpMetadata": false }, { - "$id": "5571", + "$id": "5582", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item this summary part is associated with.", "type": { - "$id": "5572", + "$id": "5583", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71232,13 +71385,13 @@ "isHttpMetadata": false }, { - "$id": "5573", + "$id": "5584", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item this summary part is associated with.", "type": { - "$id": "5574", + "$id": "5585", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71258,13 +71411,13 @@ "isHttpMetadata": false }, { - "$id": "5575", + "$id": "5586", "kind": "property", "name": "summary_index", "serializedName": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "5576", + "$id": "5587", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71284,13 +71437,13 @@ "isHttpMetadata": false }, { - "$id": "5577", + "$id": "5588", "kind": "property", "name": "part", "serializedName": "part", "doc": "The completed summary part.", "type": { - "$ref": "5029" + "$ref": "5037" }, "optional": false, "readOnly": false, @@ -71308,7 +71461,7 @@ ] }, "response.reasoning_summary_text.delta": { - "$id": "5578", + "$id": "5589", "kind": "model", "name": "ResponseReasoningSummaryTextDeltaEvent", "namespace": "OpenAI", @@ -71323,17 +71476,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5579", + "$id": "5590", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.reasoning_summary_text.delta`.", "type": { - "$id": "5580", + "$id": "5591", "kind": "enumvalue", "name": "response_reasoning_summary_text_delta", "value": "response.reasoning_summary_text.delta", @@ -71341,7 +71494,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -71359,13 +71512,13 @@ "isHttpMetadata": false }, { - "$id": "5581", + "$id": "5592", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item this summary text delta is associated with.", "type": { - "$id": "5582", + "$id": "5593", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71385,13 +71538,13 @@ "isHttpMetadata": false }, { - "$id": "5583", + "$id": "5594", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item this summary text delta is associated with.", "type": { - "$id": "5584", + "$id": "5595", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71411,13 +71564,13 @@ "isHttpMetadata": false }, { - "$id": "5585", + "$id": "5596", "kind": "property", "name": "summary_index", "serializedName": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "5586", + "$id": "5597", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71437,13 +71590,13 @@ "isHttpMetadata": false }, { - "$id": "5587", + "$id": "5598", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The text delta that was added to the summary.", "type": { - "$id": "5588", + "$id": "5599", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71465,7 +71618,7 @@ ] }, "response.reasoning_summary_text.done": { - "$id": "5589", + "$id": "5600", "kind": "model", "name": "ResponseReasoningSummaryTextDoneEvent", "namespace": "OpenAI", @@ -71480,17 +71633,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5590", + "$id": "5601", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.reasoning_summary_text.done`.", "type": { - "$id": "5591", + "$id": "5602", "kind": "enumvalue", "name": "response_reasoning_summary_text_done", "value": "response.reasoning_summary_text.done", @@ -71498,7 +71651,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -71516,13 +71669,13 @@ "isHttpMetadata": false }, { - "$id": "5592", + "$id": "5603", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item this summary text is associated with.", "type": { - "$id": "5593", + "$id": "5604", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71542,13 +71695,13 @@ "isHttpMetadata": false }, { - "$id": "5594", + "$id": "5605", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item this summary text is associated with.", "type": { - "$id": "5595", + "$id": "5606", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71568,13 +71721,13 @@ "isHttpMetadata": false }, { - "$id": "5596", + "$id": "5607", "kind": "property", "name": "summary_index", "serializedName": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "5597", + "$id": "5608", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71594,13 +71747,13 @@ "isHttpMetadata": false }, { - "$id": "5598", + "$id": "5609", "kind": "property", "name": "text", "serializedName": "text", "doc": "The full text of the completed reasoning summary.", "type": { - "$id": "5599", + "$id": "5610", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71622,7 +71775,7 @@ ] }, "response.reasoning_text.delta": { - "$id": "5600", + "$id": "5611", "kind": "model", "name": "ResponseReasoningTextDeltaEvent", "namespace": "OpenAI", @@ -71632,17 +71785,17 @@ "discriminatorValue": "response.reasoning_text.delta", "decorators": [], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5601", + "$id": "5612", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.reasoning_text.delta`.", "type": { - "$id": "5602", + "$id": "5613", "kind": "enumvalue", "name": "response_reasoning_text_delta", "value": "response.reasoning_text.delta", @@ -71650,7 +71803,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -71668,13 +71821,13 @@ "isHttpMetadata": false }, { - "$id": "5603", + "$id": "5614", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item this reasoning text delta is associated with.", "type": { - "$id": "5604", + "$id": "5615", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71694,13 +71847,13 @@ "isHttpMetadata": false }, { - "$id": "5605", + "$id": "5616", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item this reasoning text delta is associated with.", "type": { - "$id": "5606", + "$id": "5617", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71720,13 +71873,13 @@ "isHttpMetadata": false }, { - "$id": "5607", + "$id": "5618", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the reasoning content part this delta is associated with.", "type": { - "$id": "5608", + "$id": "5619", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71746,13 +71899,13 @@ "isHttpMetadata": false }, { - "$id": "5609", + "$id": "5620", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The text delta that was added to the reasoning content.", "type": { - "$id": "5610", + "$id": "5621", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71774,7 +71927,7 @@ ] }, "response.reasoning_text.done": { - "$id": "5611", + "$id": "5622", "kind": "model", "name": "ResponseReasoningTextDoneEvent", "namespace": "OpenAI", @@ -71784,17 +71937,17 @@ "discriminatorValue": "response.reasoning_text.done", "decorators": [], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5612", + "$id": "5623", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.reasoning_text.done`.", "type": { - "$id": "5613", + "$id": "5624", "kind": "enumvalue", "name": "response_reasoning_text_done", "value": "response.reasoning_text.done", @@ -71802,7 +71955,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -71820,13 +71973,13 @@ "isHttpMetadata": false }, { - "$id": "5614", + "$id": "5625", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item this reasoning text is associated with.", "type": { - "$id": "5615", + "$id": "5626", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71846,13 +71999,13 @@ "isHttpMetadata": false }, { - "$id": "5616", + "$id": "5627", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item this reasoning text is associated with.", "type": { - "$id": "5617", + "$id": "5628", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71872,13 +72025,13 @@ "isHttpMetadata": false }, { - "$id": "5618", + "$id": "5629", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the reasoning content part.", "type": { - "$id": "5619", + "$id": "5630", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71898,13 +72051,13 @@ "isHttpMetadata": false }, { - "$id": "5620", + "$id": "5631", "kind": "property", "name": "text", "serializedName": "text", "doc": "The full text of the completed reasoning content.", "type": { - "$id": "5621", + "$id": "5632", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71926,7 +72079,7 @@ ] }, "response.web_search_call.completed": { - "$id": "5622", + "$id": "5633", "kind": "model", "name": "ResponseWebSearchCallCompletedEvent", "namespace": "OpenAI", @@ -71941,17 +72094,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5623", + "$id": "5634", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.web_search_call.completed`.", "type": { - "$id": "5624", + "$id": "5635", "kind": "enumvalue", "name": "response_web_search_call_completed", "value": "response.web_search_call.completed", @@ -71959,7 +72112,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -71977,13 +72130,13 @@ "isHttpMetadata": false }, { - "$id": "5625", + "$id": "5636", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the web search call is associated with.", "type": { - "$id": "5626", + "$id": "5637", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72003,13 +72156,13 @@ "isHttpMetadata": false }, { - "$id": "5627", + "$id": "5638", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "Unique ID for the output item associated with the web search call.", "type": { - "$id": "5628", + "$id": "5639", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72031,7 +72184,7 @@ ] }, "response.web_search_call.in_progress": { - "$id": "5629", + "$id": "5640", "kind": "model", "name": "ResponseWebSearchCallInProgressEvent", "namespace": "OpenAI", @@ -72046,17 +72199,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5630", + "$id": "5641", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.web_search_call.in_progress`.", "type": { - "$id": "5631", + "$id": "5642", "kind": "enumvalue", "name": "response_web_search_call_in_progress", "value": "response.web_search_call.in_progress", @@ -72064,7 +72217,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -72082,13 +72235,13 @@ "isHttpMetadata": false }, { - "$id": "5632", + "$id": "5643", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the web search call is associated with.", "type": { - "$id": "5633", + "$id": "5644", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72108,13 +72261,13 @@ "isHttpMetadata": false }, { - "$id": "5634", + "$id": "5645", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "Unique ID for the output item associated with the web search call.", "type": { - "$id": "5635", + "$id": "5646", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72136,7 +72289,7 @@ ] }, "response.web_search_call.searching": { - "$id": "5636", + "$id": "5647", "kind": "model", "name": "ResponseWebSearchCallSearchingEvent", "namespace": "OpenAI", @@ -72151,17 +72304,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5637", + "$id": "5648", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.web_search_call.searching`.", "type": { - "$id": "5638", + "$id": "5649", "kind": "enumvalue", "name": "response_web_search_call_searching", "value": "response.web_search_call.searching", @@ -72169,7 +72322,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -72187,13 +72340,13 @@ "isHttpMetadata": false }, { - "$id": "5639", + "$id": "5650", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the web search call is associated with.", "type": { - "$id": "5640", + "$id": "5651", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72213,13 +72366,13 @@ "isHttpMetadata": false }, { - "$id": "5641", + "$id": "5652", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "Unique ID for the output item associated with the web search call.", "type": { - "$id": "5642", + "$id": "5653", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72241,7 +72394,7 @@ ] }, "response.image_generation_call.completed": { - "$id": "5643", + "$id": "5654", "kind": "model", "name": "ResponseImageGenCallCompletedEvent", "namespace": "OpenAI", @@ -72256,17 +72409,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5644", + "$id": "5655", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.image_generation_call.completed'.", "type": { - "$id": "5645", + "$id": "5656", "kind": "enumvalue", "name": "response_image_generation_call_completed", "value": "response.image_generation_call.completed", @@ -72274,7 +72427,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -72292,13 +72445,13 @@ "isHttpMetadata": false }, { - "$id": "5646", + "$id": "5657", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5647", + "$id": "5658", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72318,13 +72471,13 @@ "isHttpMetadata": false }, { - "$id": "5648", + "$id": "5659", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "5649", + "$id": "5660", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72346,7 +72499,7 @@ ] }, "response.image_generation_call.generating": { - "$id": "5650", + "$id": "5661", "kind": "model", "name": "ResponseImageGenCallGeneratingEvent", "namespace": "OpenAI", @@ -72361,17 +72514,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5651", + "$id": "5662", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.image_generation_call.generating'.", "type": { - "$id": "5652", + "$id": "5663", "kind": "enumvalue", "name": "response_image_generation_call_generating", "value": "response.image_generation_call.generating", @@ -72379,7 +72532,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -72397,13 +72550,13 @@ "isHttpMetadata": false }, { - "$id": "5653", + "$id": "5664", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5654", + "$id": "5665", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72423,13 +72576,13 @@ "isHttpMetadata": false }, { - "$id": "5655", + "$id": "5666", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "5656", + "$id": "5667", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72451,7 +72604,7 @@ ] }, "response.image_generation_call.in_progress": { - "$id": "5657", + "$id": "5668", "kind": "model", "name": "ResponseImageGenCallInProgressEvent", "namespace": "OpenAI", @@ -72466,17 +72619,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5658", + "$id": "5669", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.image_generation_call.in_progress'.", "type": { - "$id": "5659", + "$id": "5670", "kind": "enumvalue", "name": "response_image_generation_call_in_progress", "value": "response.image_generation_call.in_progress", @@ -72484,7 +72637,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -72502,13 +72655,13 @@ "isHttpMetadata": false }, { - "$id": "5660", + "$id": "5671", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5661", + "$id": "5672", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72528,13 +72681,13 @@ "isHttpMetadata": false }, { - "$id": "5662", + "$id": "5673", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "5663", + "$id": "5674", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72556,7 +72709,7 @@ ] }, "response.image_generation_call.partial_image": { - "$id": "5664", + "$id": "5675", "kind": "model", "name": "ResponseImageGenCallPartialImageEvent", "namespace": "OpenAI", @@ -72571,17 +72724,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5665", + "$id": "5676", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.image_generation_call.partial_image'.", "type": { - "$id": "5666", + "$id": "5677", "kind": "enumvalue", "name": "response_image_generation_call_partial_image", "value": "response.image_generation_call.partial_image", @@ -72589,7 +72742,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -72607,13 +72760,13 @@ "isHttpMetadata": false }, { - "$id": "5667", + "$id": "5678", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5668", + "$id": "5679", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72633,13 +72786,13 @@ "isHttpMetadata": false }, { - "$id": "5669", + "$id": "5680", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "5670", + "$id": "5681", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72659,13 +72812,13 @@ "isHttpMetadata": false }, { - "$id": "5671", + "$id": "5682", "kind": "property", "name": "partial_image_index", "serializedName": "partial_image_index", "doc": "0-based index for the partial image (backend is 1-based, but this is 0-based for the user).", "type": { - "$id": "5672", + "$id": "5683", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72685,13 +72838,13 @@ "isHttpMetadata": false }, { - "$id": "5673", + "$id": "5684", "kind": "property", "name": "PartialImageBytes", "serializedName": "partial_image_b64", "doc": "Base64-encoded partial image data, suitable for rendering as an image.", "type": { - "$id": "5674", + "$id": "5685", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -72714,7 +72867,7 @@ ] }, "response.mcp_call_arguments.delta": { - "$id": "5675", + "$id": "5686", "kind": "model", "name": "ResponseMCPCallArgumentsDeltaEvent", "namespace": "OpenAI", @@ -72729,17 +72882,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5676", + "$id": "5687", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.mcp_call.arguments_delta'.", "type": { - "$id": "5677", + "$id": "5688", "kind": "enumvalue", "name": "response_mcp_call_arguments_delta", "value": "response.mcp_call_arguments.delta", @@ -72747,7 +72900,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -72765,13 +72918,13 @@ "isHttpMetadata": false }, { - "$id": "5678", + "$id": "5689", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5679", + "$id": "5690", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72791,13 +72944,13 @@ "isHttpMetadata": false }, { - "$id": "5680", + "$id": "5691", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the MCP tool call item being processed.", "type": { - "$id": "5681", + "$id": "5692", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72817,13 +72970,13 @@ "isHttpMetadata": false }, { - "$id": "5682", + "$id": "5693", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The partial update to the arguments for the MCP tool call.", "type": { - "$id": "5683", + "$id": "5694", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -72845,7 +72998,7 @@ ] }, "response.mcp_call_arguments.done": { - "$id": "5684", + "$id": "5695", "kind": "model", "name": "ResponseMCPCallArgumentsDoneEvent", "namespace": "OpenAI", @@ -72860,17 +73013,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5685", + "$id": "5696", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.mcp_call.arguments_done'.", "type": { - "$id": "5686", + "$id": "5697", "kind": "enumvalue", "name": "response_mcp_call_arguments_done", "value": "response.mcp_call_arguments.done", @@ -72878,7 +73031,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -72896,13 +73049,13 @@ "isHttpMetadata": false }, { - "$id": "5687", + "$id": "5698", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5688", + "$id": "5699", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72922,13 +73075,13 @@ "isHttpMetadata": false }, { - "$id": "5689", + "$id": "5700", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the MCP tool call item being processed.", "type": { - "$id": "5690", + "$id": "5701", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72948,13 +73101,13 @@ "isHttpMetadata": false }, { - "$id": "5691", + "$id": "5702", "kind": "property", "name": "ToolArguments", "serializedName": "arguments", "doc": "A JSON string containing the finalized arguments for the MCP tool call.", "type": { - "$id": "5692", + "$id": "5703", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -72976,7 +73129,7 @@ ] }, "response.mcp_call.completed": { - "$id": "5693", + "$id": "5704", "kind": "model", "name": "ResponseMCPCallCompletedEvent", "namespace": "OpenAI", @@ -72991,17 +73144,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5694", + "$id": "5705", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.mcp_call.completed'.", "type": { - "$id": "5695", + "$id": "5706", "kind": "enumvalue", "name": "response_mcp_call_completed", "value": "response.mcp_call.completed", @@ -73009,7 +73162,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -73027,13 +73180,13 @@ "isHttpMetadata": false }, { - "$id": "5696", + "$id": "5707", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the MCP tool call item that completed.", "type": { - "$id": "5697", + "$id": "5708", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73053,13 +73206,13 @@ "isHttpMetadata": false }, { - "$id": "5698", + "$id": "5709", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that completed.", "type": { - "$id": "5699", + "$id": "5710", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73081,7 +73234,7 @@ ] }, "response.mcp_call.failed": { - "$id": "5700", + "$id": "5711", "kind": "model", "name": "ResponseMCPCallFailedEvent", "namespace": "OpenAI", @@ -73096,17 +73249,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5701", + "$id": "5712", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.mcp_call.failed'.", "type": { - "$id": "5702", + "$id": "5713", "kind": "enumvalue", "name": "response_mcp_call_failed", "value": "response.mcp_call.failed", @@ -73114,7 +73267,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -73132,13 +73285,13 @@ "isHttpMetadata": false }, { - "$id": "5703", + "$id": "5714", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the MCP tool call item that failed.", "type": { - "$id": "5704", + "$id": "5715", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73158,13 +73311,13 @@ "isHttpMetadata": false }, { - "$id": "5705", + "$id": "5716", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that failed.", "type": { - "$id": "5706", + "$id": "5717", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73186,7 +73339,7 @@ ] }, "response.mcp_call.in_progress": { - "$id": "5707", + "$id": "5718", "kind": "model", "name": "ResponseMCPCallInProgressEvent", "namespace": "OpenAI", @@ -73201,17 +73354,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5708", + "$id": "5719", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.mcp_call.in_progress'.", "type": { - "$id": "5709", + "$id": "5720", "kind": "enumvalue", "name": "response_mcp_call_in_progress", "value": "response.mcp_call.in_progress", @@ -73219,7 +73372,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -73237,13 +73390,13 @@ "isHttpMetadata": false }, { - "$id": "5710", + "$id": "5721", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5711", + "$id": "5722", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73263,13 +73416,13 @@ "isHttpMetadata": false }, { - "$id": "5712", + "$id": "5723", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the MCP tool call item being processed.", "type": { - "$id": "5713", + "$id": "5724", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73291,7 +73444,7 @@ ] }, "response.mcp_list_tools.completed": { - "$id": "5714", + "$id": "5725", "kind": "model", "name": "ResponseMCPListToolsCompletedEvent", "namespace": "OpenAI", @@ -73306,17 +73459,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5715", + "$id": "5726", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.mcp_list_tools.completed'.", "type": { - "$id": "5716", + "$id": "5727", "kind": "enumvalue", "name": "response_mcp_list_tools_completed", "value": "response.mcp_list_tools.completed", @@ -73324,7 +73477,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -73342,13 +73495,13 @@ "isHttpMetadata": false }, { - "$id": "5717", + "$id": "5728", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the MCP tool call item that produced this output.", "type": { - "$id": "5718", + "$id": "5729", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73368,13 +73521,13 @@ "isHttpMetadata": false }, { - "$id": "5719", + "$id": "5730", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that was processed.", "type": { - "$id": "5720", + "$id": "5731", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73396,7 +73549,7 @@ ] }, "response.mcp_list_tools.failed": { - "$id": "5721", + "$id": "5732", "kind": "model", "name": "ResponseMCPListToolsFailedEvent", "namespace": "OpenAI", @@ -73411,17 +73564,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5722", + "$id": "5733", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.mcp_list_tools.failed'.", "type": { - "$id": "5723", + "$id": "5734", "kind": "enumvalue", "name": "response_mcp_list_tools_failed", "value": "response.mcp_list_tools.failed", @@ -73429,7 +73582,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -73447,13 +73600,13 @@ "isHttpMetadata": false }, { - "$id": "5724", + "$id": "5735", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the MCP tool call item that failed.", "type": { - "$id": "5725", + "$id": "5736", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73473,13 +73626,13 @@ "isHttpMetadata": false }, { - "$id": "5726", + "$id": "5737", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that failed.", "type": { - "$id": "5727", + "$id": "5738", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73501,7 +73654,7 @@ ] }, "response.mcp_list_tools.in_progress": { - "$id": "5728", + "$id": "5739", "kind": "model", "name": "ResponseMCPListToolsInProgressEvent", "namespace": "OpenAI", @@ -73516,17 +73669,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5729", + "$id": "5740", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.mcp_list_tools.in_progress'.", "type": { - "$id": "5730", + "$id": "5741", "kind": "enumvalue", "name": "response_mcp_list_tools_in_progress", "value": "response.mcp_list_tools.in_progress", @@ -73534,7 +73687,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -73552,13 +73705,13 @@ "isHttpMetadata": false }, { - "$id": "5731", + "$id": "5742", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the MCP tool call item that is being processed.", "type": { - "$id": "5732", + "$id": "5743", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73578,13 +73731,13 @@ "isHttpMetadata": false }, { - "$id": "5733", + "$id": "5744", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that is being processed.", "type": { - "$id": "5734", + "$id": "5745", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73606,7 +73759,7 @@ ] }, "response.output_text.annotation.added": { - "$id": "5735", + "$id": "5746", "kind": "model", "name": "ResponseOutputTextAnnotationAddedEvent", "namespace": "OpenAI", @@ -73621,17 +73774,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5736", + "$id": "5747", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.output_text_annotation.added'.", "type": { - "$id": "5737", + "$id": "5748", "kind": "enumvalue", "name": "response_output_text_annotation_added", "value": "response.output_text.annotation.added", @@ -73639,7 +73792,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -73657,13 +73810,13 @@ "isHttpMetadata": false }, { - "$id": "5738", + "$id": "5749", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the item to which the annotation is being added.", "type": { - "$id": "5739", + "$id": "5750", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73683,13 +73836,13 @@ "isHttpMetadata": false }, { - "$id": "5740", + "$id": "5751", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5741", + "$id": "5752", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73709,13 +73862,13 @@ "isHttpMetadata": false }, { - "$id": "5742", + "$id": "5753", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part within the output item.", "type": { - "$id": "5743", + "$id": "5754", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73735,13 +73888,13 @@ "isHttpMetadata": false }, { - "$id": "5744", + "$id": "5755", "kind": "property", "name": "annotation_index", "serializedName": "annotation_index", "doc": "The index of the annotation within the content part.", "type": { - "$id": "5745", + "$id": "5756", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73761,13 +73914,13 @@ "isHttpMetadata": false }, { - "$id": "5746", + "$id": "5757", "kind": "property", "name": "annotation", "serializedName": "annotation", "doc": "The annotation object being added. (See annotation schema for details.)", "type": { - "$id": "5747", + "$id": "5758", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -73789,7 +73942,7 @@ ] }, "response.queued": { - "$id": "5748", + "$id": "5759", "kind": "model", "name": "ResponseQueuedEvent", "namespace": "OpenAI", @@ -73804,17 +73957,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5749", + "$id": "5760", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.queued'.", "type": { - "$id": "5750", + "$id": "5761", "kind": "enumvalue", "name": "response_queued", "value": "response.queued", @@ -73822,7 +73975,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -73840,13 +73993,13 @@ "isHttpMetadata": false }, { - "$id": "5751", + "$id": "5762", "kind": "property", "name": "response", "serializedName": "response", "doc": "The full response object that is queued.", "type": { - "$ref": "5166" + "$ref": "5176" }, "optional": false, "readOnly": false, @@ -73864,7 +74017,7 @@ ] }, "response.reasoning.delta": { - "$id": "5752", + "$id": "5763", "kind": "model", "name": "ResponseReasoningDeltaEvent", "namespace": "OpenAI", @@ -73879,17 +74032,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5753", + "$id": "5764", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.reasoning.delta'.", "type": { - "$id": "5754", + "$id": "5765", "kind": "enumvalue", "name": "response_reasoning_delta", "value": "response.reasoning.delta", @@ -73897,7 +74050,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -73915,13 +74068,13 @@ "isHttpMetadata": false }, { - "$id": "5755", + "$id": "5766", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the item for which reasoning is being updated.", "type": { - "$id": "5756", + "$id": "5767", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73941,13 +74094,13 @@ "isHttpMetadata": false }, { - "$id": "5757", + "$id": "5768", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5758", + "$id": "5769", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73967,13 +74120,13 @@ "isHttpMetadata": false }, { - "$id": "5759", + "$id": "5770", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the reasoning content part within the output item.", "type": { - "$id": "5760", + "$id": "5771", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73993,13 +74146,13 @@ "isHttpMetadata": false }, { - "$id": "5761", + "$id": "5772", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The partial update to the reasoning content.", "type": { - "$id": "5762", + "$id": "5773", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -74021,7 +74174,7 @@ ] }, "response.reasoning.done": { - "$id": "5763", + "$id": "5774", "kind": "model", "name": "ResponseReasoningDoneEvent", "namespace": "OpenAI", @@ -74036,17 +74189,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5764", + "$id": "5775", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.reasoning.done'.", "type": { - "$id": "5765", + "$id": "5776", "kind": "enumvalue", "name": "response_reasoning_done", "value": "response.reasoning.done", @@ -74054,7 +74207,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -74072,13 +74225,13 @@ "isHttpMetadata": false }, { - "$id": "5766", + "$id": "5777", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the item for which reasoning is finalized.", "type": { - "$id": "5767", + "$id": "5778", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74098,13 +74251,13 @@ "isHttpMetadata": false }, { - "$id": "5768", + "$id": "5779", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5769", + "$id": "5780", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74124,13 +74277,13 @@ "isHttpMetadata": false }, { - "$id": "5770", + "$id": "5781", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the reasoning content part within the output item.", "type": { - "$id": "5771", + "$id": "5782", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74150,13 +74303,13 @@ "isHttpMetadata": false }, { - "$id": "5772", + "$id": "5783", "kind": "property", "name": "text", "serializedName": "text", "doc": "The finalized reasoning text.", "type": { - "$id": "5773", + "$id": "5784", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74178,7 +74331,7 @@ ] }, "response.reasoning_summary.delta": { - "$id": "5774", + "$id": "5785", "kind": "model", "name": "ResponseReasoningSummaryDeltaEvent", "namespace": "OpenAI", @@ -74193,17 +74346,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5775", + "$id": "5786", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.reasoning_summary.delta'.", "type": { - "$id": "5776", + "$id": "5787", "kind": "enumvalue", "name": "response_reasoning_summary_delta", "value": "response.reasoning_summary.delta", @@ -74211,7 +74364,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -74229,13 +74382,13 @@ "isHttpMetadata": false }, { - "$id": "5777", + "$id": "5788", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the item for which the reasoning summary is being updated.", "type": { - "$id": "5778", + "$id": "5789", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74255,13 +74408,13 @@ "isHttpMetadata": false }, { - "$id": "5779", + "$id": "5790", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5780", + "$id": "5791", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74281,13 +74434,13 @@ "isHttpMetadata": false }, { - "$id": "5781", + "$id": "5792", "kind": "property", "name": "summary_index", "serializedName": "summary_index", "doc": "The index of the summary part within the output item.", "type": { - "$id": "5782", + "$id": "5793", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74307,13 +74460,13 @@ "isHttpMetadata": false }, { - "$id": "5783", + "$id": "5794", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The partial update to the reasoning summary content.", "type": { - "$id": "5784", + "$id": "5795", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -74335,7 +74488,7 @@ ] }, "response.reasoning_summary.done": { - "$id": "5785", + "$id": "5796", "kind": "model", "name": "ResponseReasoningSummaryDoneEvent", "namespace": "OpenAI", @@ -74350,17 +74503,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5786", + "$id": "5797", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.reasoning_summary.done'.", "type": { - "$id": "5787", + "$id": "5798", "kind": "enumvalue", "name": "response_reasoning_summary_done", "value": "response.reasoning_summary.done", @@ -74368,7 +74521,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -74386,13 +74539,13 @@ "isHttpMetadata": false }, { - "$id": "5788", + "$id": "5799", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the item for which the reasoning summary is finalized.", "type": { - "$id": "5789", + "$id": "5800", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74412,13 +74565,13 @@ "isHttpMetadata": false }, { - "$id": "5790", + "$id": "5801", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5791", + "$id": "5802", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74438,13 +74591,13 @@ "isHttpMetadata": false }, { - "$id": "5792", + "$id": "5803", "kind": "property", "name": "summary_index", "serializedName": "summary_index", "doc": "The index of the summary part within the output item.", "type": { - "$id": "5793", + "$id": "5804", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74464,13 +74617,13 @@ "isHttpMetadata": false }, { - "$id": "5794", + "$id": "5805", "kind": "property", "name": "text", "serializedName": "text", "doc": "The finalized reasoning summary text.", "type": { - "$id": "5795", + "$id": "5806", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74492,7 +74645,7 @@ ] }, "response.code_interpreter_call_code.delta": { - "$id": "5796", + "$id": "5807", "kind": "model", "name": "ResponseCodeInterpreterCallCodeDeltaEvent", "namespace": "OpenAI", @@ -74507,17 +74660,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5797", + "$id": "5808", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.code_interpreter_call_code.delta`.", "type": { - "$id": "5798", + "$id": "5809", "kind": "enumvalue", "name": "response_code_interpreter_call_code_delta", "value": "response.code_interpreter_call_code.delta", @@ -74525,7 +74678,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -74543,13 +74696,13 @@ "isHttpMetadata": false }, { - "$id": "5799", + "$id": "5810", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5800", + "$id": "5811", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74569,13 +74722,13 @@ "isHttpMetadata": false }, { - "$id": "5801", + "$id": "5812", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5802", + "$id": "5813", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74595,13 +74748,13 @@ "isHttpMetadata": false }, { - "$id": "5803", + "$id": "5814", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The partial code snippet added by the code interpreter.", "type": { - "$id": "5804", + "$id": "5815", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74623,7 +74776,7 @@ ] }, "response.code_interpreter_call_code.done": { - "$id": "5805", + "$id": "5816", "kind": "model", "name": "ResponseCodeInterpreterCallCodeDoneEvent", "namespace": "OpenAI", @@ -74638,17 +74791,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5806", + "$id": "5817", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.code_interpreter_call_code.done`.", "type": { - "$id": "5807", + "$id": "5818", "kind": "enumvalue", "name": "response_code_interpreter_call_code_done", "value": "response.code_interpreter_call_code.done", @@ -74656,7 +74809,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -74674,13 +74827,13 @@ "isHttpMetadata": false }, { - "$id": "5808", + "$id": "5819", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5809", + "$id": "5820", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74700,13 +74853,13 @@ "isHttpMetadata": false }, { - "$id": "5810", + "$id": "5821", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5811", + "$id": "5822", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74726,13 +74879,13 @@ "isHttpMetadata": false }, { - "$id": "5812", + "$id": "5823", "kind": "property", "name": "code", "serializedName": "code", "doc": "The final code snippet output by the code interpreter.", "type": { - "$id": "5813", + "$id": "5824", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74754,7 +74907,7 @@ ] }, "response.code_interpreter_call.completed": { - "$id": "5814", + "$id": "5825", "kind": "model", "name": "ResponseCodeInterpreterCallCompletedEvent", "namespace": "OpenAI", @@ -74769,17 +74922,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5815", + "$id": "5826", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.code_interpreter_call.completed`.", "type": { - "$id": "5816", + "$id": "5827", "kind": "enumvalue", "name": "response_code_interpreter_call_completed", "value": "response.code_interpreter_call.completed", @@ -74787,7 +74940,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -74805,13 +74958,13 @@ "isHttpMetadata": false }, { - "$id": "5817", + "$id": "5828", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5818", + "$id": "5829", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74831,13 +74984,13 @@ "isHttpMetadata": false }, { - "$id": "5819", + "$id": "5830", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5820", + "$id": "5831", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74859,7 +75012,7 @@ ] }, "response.code_interpreter_call.in_progress": { - "$id": "5821", + "$id": "5832", "kind": "model", "name": "ResponseCodeInterpreterCallInProgressEvent", "namespace": "OpenAI", @@ -74874,17 +75027,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5822", + "$id": "5833", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.code_interpreter_call.in_progress`.", "type": { - "$id": "5823", + "$id": "5834", "kind": "enumvalue", "name": "response_code_interpreter_call_in_progress", "value": "response.code_interpreter_call.in_progress", @@ -74892,7 +75045,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -74910,13 +75063,13 @@ "isHttpMetadata": false }, { - "$id": "5824", + "$id": "5835", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5825", + "$id": "5836", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74936,13 +75089,13 @@ "isHttpMetadata": false }, { - "$id": "5826", + "$id": "5837", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5827", + "$id": "5838", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74964,7 +75117,7 @@ ] }, "response.code_interpreter_call.interpreting": { - "$id": "5828", + "$id": "5839", "kind": "model", "name": "ResponseCodeInterpreterCallInterpretingEvent", "namespace": "OpenAI", @@ -74979,17 +75132,17 @@ } ], "baseModel": { - "$ref": "5351" + "$ref": "5362" }, "properties": [ { - "$id": "5829", + "$id": "5840", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.code_interpreter_call.interpreting`.", "type": { - "$id": "5830", + "$id": "5841", "kind": "enumvalue", "name": "response_code_interpreter_call_interpreting", "value": "response.code_interpreter_call.interpreting", @@ -74997,7 +75150,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5358" + "$ref": "5369" }, "decorators": [] }, @@ -75015,13 +75168,13 @@ "isHttpMetadata": false }, { - "$id": "5831", + "$id": "5842", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5832", + "$id": "5843", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -75041,13 +75194,13 @@ "isHttpMetadata": false }, { - "$id": "5833", + "$id": "5844", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5834", + "$id": "5845", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75071,52 +75224,49 @@ } }, { - "$ref": "5355" - }, - { - "$ref": "5416" + "$ref": "5366" }, { - "$ref": "5426" + "$ref": "5427" }, { - "$ref": "5436" + "$ref": "5437" }, { - "$ref": "5440" + "$ref": "5447" }, { "$ref": "5451" }, { - "$ref": "5458" + "$ref": "5462" }, { - "$ref": "5465" + "$ref": "5469" }, { - "$ref": "5472" + "$ref": "5476" }, { - "$ref": "5481" + "$ref": "5483" }, { - "$ref": "5490" + "$ref": "5492" }, { - "$ref": "5494" + "$ref": "5501" }, { - "$ref": "5498" + "$ref": "5505" }, { - "$ref": "5502" + "$ref": "5509" }, { - "$ref": "5508" + "$ref": "5513" }, { - "$ref": "5514" + "$ref": "5519" }, { "$ref": "5525" @@ -75131,10 +75281,10 @@ "$ref": "5558" }, { - "$ref": "5568" + "$ref": "5569" }, { - "$ref": "5578" + "$ref": "5579" }, { "$ref": "5589" @@ -75149,55 +75299,55 @@ "$ref": "5622" }, { - "$ref": "5629" + "$ref": "5633" }, { - "$ref": "5636" + "$ref": "5640" }, { - "$ref": "5643" + "$ref": "5647" }, { - "$ref": "5650" + "$ref": "5654" }, { - "$ref": "5657" + "$ref": "5661" }, { - "$ref": "5664" + "$ref": "5668" }, { "$ref": "5675" }, { - "$ref": "5684" + "$ref": "5686" }, { - "$ref": "5693" + "$ref": "5695" }, { - "$ref": "5700" + "$ref": "5704" }, { - "$ref": "5707" + "$ref": "5711" }, { - "$ref": "5714" + "$ref": "5718" }, { - "$ref": "5721" + "$ref": "5725" }, { - "$ref": "5728" + "$ref": "5732" }, { - "$ref": "5735" + "$ref": "5739" }, { - "$ref": "5748" + "$ref": "5746" }, { - "$ref": "5752" + "$ref": "5759" }, { "$ref": "5763" @@ -75212,19 +75362,22 @@ "$ref": "5796" }, { - "$ref": "5805" + "$ref": "5807" + }, + { + "$ref": "5816" }, { - "$ref": "5814" + "$ref": "5825" }, { - "$ref": "5821" + "$ref": "5832" }, { - "$ref": "5828" + "$ref": "5839" }, { - "$id": "5835", + "$id": "5846", "kind": "model", "name": "ResponseErrorResponse", "namespace": "OpenAI", @@ -75238,12 +75391,12 @@ ], "properties": [ { - "$id": "5836", + "$id": "5847", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$ref": "5197" + "$ref": "5208" }, "optional": false, "readOnly": false, @@ -75261,7 +75414,7 @@ ] }, { - "$id": "5837", + "$id": "5848", "kind": "model", "name": "DeleteResponseResponse", "namespace": "OpenAI", @@ -75275,12 +75428,12 @@ ], "properties": [ { - "$id": "5838", + "$id": "5849", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "5839", + "$id": "5850", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75300,7 +75453,7 @@ "isHttpMetadata": false }, { - "$id": "5840", + "$id": "5851", "kind": "property", "name": "object", "serializedName": "object", @@ -75321,7 +75474,7 @@ "isHttpMetadata": false }, { - "$id": "5841", + "$id": "5852", "kind": "property", "name": "deleted", "serializedName": "deleted", @@ -75344,7 +75497,7 @@ ] }, { - "$id": "5842", + "$id": "5853", "kind": "model", "name": "ResponseItemList", "namespace": "OpenAI", @@ -75359,7 +75512,7 @@ ], "properties": [ { - "$id": "5843", + "$id": "5854", "kind": "property", "name": "object", "serializedName": "object", @@ -75381,13 +75534,13 @@ "isHttpMetadata": false }, { - "$id": "5844", + "$id": "5855", "kind": "property", "name": "data", "serializedName": "data", "doc": "A list of items used to generate this response.", "type": { - "$ref": "5206" + "$ref": "5217" }, "optional": false, "readOnly": false, @@ -75403,13 +75556,13 @@ "isHttpMetadata": false }, { - "$id": "5845", + "$id": "5856", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Whether there are more items available.", "type": { - "$id": "5846", + "$id": "5857", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -75429,13 +75582,13 @@ "isHttpMetadata": false }, { - "$id": "5847", + "$id": "5858", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The ID of the first item in the list.", "type": { - "$id": "5848", + "$id": "5859", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75455,13 +75608,13 @@ "isHttpMetadata": false }, { - "$id": "5849", + "$id": "5860", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The ID of the last item in the list.", "type": { - "$id": "5850", + "$id": "5861", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75483,7 +75636,7 @@ ] }, { - "$id": "5851", + "$id": "5862", "kind": "model", "name": "CreateImageRequest", "namespace": "OpenAI", @@ -75492,13 +75645,13 @@ "decorators": [], "properties": [ { - "$id": "5852", + "$id": "5863", "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": "5853", + "$id": "5864", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75518,13 +75671,13 @@ "isHttpMetadata": false }, { - "$id": "5854", + "$id": "5865", "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": "5855", + "$id": "5866", "kind": "nullable", "type": { "$ref": "831" @@ -75545,16 +75698,16 @@ "isHttpMetadata": false }, { - "$id": "5856", + "$id": "5867", "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": "5857", + "$id": "5868", "kind": "nullable", "type": { - "$id": "5858", + "$id": "5869", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -75576,13 +75729,13 @@ "isHttpMetadata": false }, { - "$id": "5859", + "$id": "5870", "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": "5860", + "$id": "5871", "kind": "nullable", "type": { "$ref": "836" @@ -75603,13 +75756,13 @@ "isHttpMetadata": false }, { - "$id": "5861", + "$id": "5872", "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": "5862", + "$id": "5873", "kind": "nullable", "type": { "$ref": "844" @@ -75630,13 +75783,13 @@ "isHttpMetadata": false }, { - "$id": "5863", + "$id": "5874", "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": "5864", + "$id": "5875", "kind": "nullable", "type": { "$ref": "848" @@ -75657,16 +75810,16 @@ "isHttpMetadata": false }, { - "$id": "5865", + "$id": "5876", "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": "5866", + "$id": "5877", "kind": "nullable", "type": { - "$id": "5867", + "$id": "5878", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -75688,13 +75841,13 @@ "isHttpMetadata": false }, { - "$id": "5868", + "$id": "5879", "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": "5869", + "$id": "5880", "kind": "nullable", "type": { "$ref": "853" @@ -75715,13 +75868,13 @@ "isHttpMetadata": false }, { - "$id": "5870", + "$id": "5881", "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": "5871", + "$id": "5882", "kind": "nullable", "type": { "$ref": "863" @@ -75742,13 +75895,13 @@ "isHttpMetadata": false }, { - "$id": "5872", + "$id": "5883", "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": "5873", + "$id": "5884", "kind": "nullable", "type": { "$ref": "867" @@ -75769,13 +75922,13 @@ "isHttpMetadata": false }, { - "$id": "5874", + "$id": "5885", "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": "5875", + "$id": "5886", "kind": "nullable", "type": { "$ref": "872" @@ -75796,13 +75949,13 @@ "isHttpMetadata": false }, { - "$id": "5876", + "$id": "5887", "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": "5877", + "$id": "5888", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75824,7 +75977,7 @@ ] }, { - "$id": "5878", + "$id": "5889", "kind": "model", "name": "ImagesResponse", "namespace": "OpenAI", @@ -75834,18 +75987,18 @@ "decorators": [], "properties": [ { - "$id": "5879", + "$id": "5890", "kind": "property", "name": "created", "serializedName": "created", "doc": "The Unix timestamp (in seconds) of when the image was created.", "type": { - "$id": "5880", + "$id": "5891", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5881", + "$id": "5892", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -75868,17 +76021,17 @@ "isHttpMetadata": false }, { - "$id": "5882", + "$id": "5893", "kind": "property", "name": "data", "serializedName": "data", "doc": "The list of generated images.", "type": { - "$id": "5883", + "$id": "5894", "kind": "array", "name": "ArrayImage", "valueType": { - "$id": "5884", + "$id": "5895", "kind": "model", "name": "Image", "namespace": "OpenAI", @@ -75888,13 +76041,13 @@ "decorators": [], "properties": [ { - "$id": "5885", + "$id": "5896", "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": "5886", + "$id": "5897", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -75915,13 +76068,13 @@ "isHttpMetadata": false }, { - "$id": "5887", + "$id": "5898", "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": "5888", + "$id": "5899", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -75941,13 +76094,13 @@ "isHttpMetadata": false }, { - "$id": "5889", + "$id": "5900", "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": "5890", + "$id": "5901", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75985,13 +76138,13 @@ "isHttpMetadata": false }, { - "$id": "5891", + "$id": "5902", "kind": "property", "name": "usage", "serializedName": "usage", "doc": "For `gpt-image-1` only, the token usage information for the image generation.", "type": { - "$id": "5892", + "$id": "5903", "kind": "model", "name": "ImagesResponseUsage", "namespace": "OpenAI", @@ -76000,13 +76153,13 @@ "decorators": [], "properties": [ { - "$id": "5893", + "$id": "5904", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens (images and text) used for the image generation.", "type": { - "$id": "5894", + "$id": "5905", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76026,13 +76179,13 @@ "isHttpMetadata": false }, { - "$id": "5895", + "$id": "5906", "kind": "property", "name": "input_tokens", "serializedName": "input_tokens", "doc": "The number of tokens (images and text) in the input prompt.", "type": { - "$id": "5896", + "$id": "5907", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76052,13 +76205,13 @@ "isHttpMetadata": false }, { - "$id": "5897", + "$id": "5908", "kind": "property", "name": "output_tokens", "serializedName": "output_tokens", "doc": "The number of image tokens in the output image.", "type": { - "$id": "5898", + "$id": "5909", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76078,13 +76231,13 @@ "isHttpMetadata": false }, { - "$id": "5899", + "$id": "5910", "kind": "property", "name": "input_tokens_details", "serializedName": "input_tokens_details", "doc": "The input tokens detailed information for the image generation.", "type": { - "$id": "5900", + "$id": "5911", "kind": "model", "name": "ImagesResponseUsageInputTokensDetails", "namespace": "OpenAI", @@ -76093,13 +76246,13 @@ "decorators": [], "properties": [ { - "$id": "5901", + "$id": "5912", "kind": "property", "name": "text_tokens", "serializedName": "text_tokens", "doc": "The number of text tokens in the input prompt.", "type": { - "$id": "5902", + "$id": "5913", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76119,13 +76272,13 @@ "isHttpMetadata": false }, { - "$id": "5903", + "$id": "5914", "kind": "property", "name": "image_tokens", "serializedName": "image_tokens", "doc": "The number of image tokens in the input prompt.", "type": { - "$id": "5904", + "$id": "5915", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76177,16 +76330,16 @@ ] }, { - "$ref": "5884" + "$ref": "5895" }, { - "$ref": "5892" + "$ref": "5903" }, { - "$ref": "5900" + "$ref": "5911" }, { - "$id": "5905", + "$id": "5916", "kind": "model", "name": "CreateImageEditRequest", "namespace": "OpenAI", @@ -76195,18 +76348,18 @@ "decorators": [], "properties": [ { - "$id": "5906", + "$id": "5917", "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": "5907", + "$id": "5918", "kind": "union", "name": "CreateImageEditRequestImage", "variantTypes": [ { - "$id": "5908", + "$id": "5919", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -76214,11 +76367,11 @@ "decorators": [] }, { - "$id": "5909", + "$id": "5920", "kind": "array", "name": "Array25", "valueType": { - "$id": "5910", + "$id": "5921", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -76253,13 +76406,13 @@ "isHttpMetadata": false }, { - "$id": "5911", + "$id": "5922", "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": "5912", + "$id": "5923", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76285,13 +76438,13 @@ "isHttpMetadata": false }, { - "$id": "5913", + "$id": "5924", "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": "5914", + "$id": "5925", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -76318,13 +76471,13 @@ "isHttpMetadata": false }, { - "$id": "5915", + "$id": "5926", "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": "5916", + "$id": "5927", "kind": "nullable", "type": { "$ref": "876" @@ -76351,13 +76504,13 @@ "isHttpMetadata": false }, { - "$id": "5917", + "$id": "5928", "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": "5918", + "$id": "5929", "kind": "nullable", "type": { "$ref": "881" @@ -76384,21 +76537,21 @@ "isHttpMetadata": false }, { - "$id": "5919", + "$id": "5930", "kind": "property", "name": "n", "serializedName": "n", "doc": "The number of images to generate. Must be between 1 and 10.", "type": { - "$id": "5920", + "$id": "5931", "kind": "nullable", "type": { - "$id": "5921", + "$id": "5932", "kind": "int32", "name": "OneToTenInt", "crossLanguageDefinitionId": "OpenAI.OneToTenInt", "baseType": { - "$id": "5922", + "$id": "5933", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76428,13 +76581,13 @@ "isHttpMetadata": false }, { - "$id": "5923", + "$id": "5934", "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": "5924", + "$id": "5935", "kind": "nullable", "type": { "$ref": "885" @@ -76461,13 +76614,13 @@ "isHttpMetadata": false }, { - "$id": "5925", + "$id": "5936", "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": "5926", + "$id": "5937", "kind": "nullable", "type": { "$ref": "893" @@ -76494,13 +76647,13 @@ "isHttpMetadata": false }, { - "$id": "5927", + "$id": "5938", "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": "5928", + "$id": "5939", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76526,13 +76679,13 @@ "isHttpMetadata": false }, { - "$id": "5929", + "$id": "5940", "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": "5930", + "$id": "5941", "kind": "nullable", "type": { "$ref": "897" @@ -76561,7 +76714,7 @@ ] }, { - "$id": "5931", + "$id": "5942", "kind": "model", "name": "CreateImageVariationRequest", "namespace": "OpenAI", @@ -76570,13 +76723,13 @@ "decorators": [], "properties": [ { - "$id": "5932", + "$id": "5943", "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": "5933", + "$id": "5944", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -76603,13 +76756,13 @@ "isHttpMetadata": false }, { - "$id": "5934", + "$id": "5945", "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": "5935", + "$id": "5946", "kind": "nullable", "type": { "$ref": "904" @@ -76636,21 +76789,21 @@ "isHttpMetadata": false }, { - "$id": "5936", + "$id": "5947", "kind": "property", "name": "n", "serializedName": "n", "doc": "The number of images to generate. Must be between 1 and 10.", "type": { - "$id": "5937", + "$id": "5948", "kind": "nullable", "type": { - "$id": "5938", + "$id": "5949", "kind": "int32", "name": "OneToTenInt", "crossLanguageDefinitionId": "OpenAI.OneToTenInt", "baseType": { - "$id": "5939", + "$id": "5950", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76680,13 +76833,13 @@ "isHttpMetadata": false }, { - "$id": "5940", + "$id": "5951", "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": "5941", + "$id": "5952", "kind": "nullable", "type": { "$ref": "907" @@ -76713,13 +76866,13 @@ "isHttpMetadata": false }, { - "$id": "5942", + "$id": "5953", "kind": "property", "name": "size", "serializedName": "size", "doc": "The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`.", "type": { - "$id": "5943", + "$id": "5954", "kind": "nullable", "type": { "$ref": "911" @@ -76746,13 +76899,13 @@ "isHttpMetadata": false }, { - "$id": "5944", + "$id": "5955", "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": "5945", + "$id": "5956", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76780,7 +76933,7 @@ ] }, { - "$id": "5946", + "$id": "5957", "kind": "model", "name": "CreateMessageRequest", "namespace": "OpenAI", @@ -76789,7 +76942,7 @@ "decorators": [], "properties": [ { - "$id": "5947", + "$id": "5958", "kind": "property", "name": "role", "serializedName": "role", @@ -76811,16 +76964,16 @@ "isHttpMetadata": false }, { - "$id": "5948", + "$id": "5959", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "5949", + "$id": "5960", "kind": "array", "name": "ArrayMessageContent", "valueType": { - "$id": "5950", + "$id": "5961", "kind": "model", "name": "MessageContent", "namespace": "OpenAI", @@ -76830,7 +76983,7 @@ "doc": "Represents a single piece of content in an Assistants API message.", "decorators": [], "discriminatorProperty": { - "$id": "5951", + "$id": "5962", "kind": "property", "name": "type", "serializedName": "type", @@ -76852,12 +77005,12 @@ }, "properties": [ { - "$ref": "5951" + "$ref": "5962" } ], "discriminatedSubtypes": { "image_file": { - "$id": "5952", + "$id": "5963", "kind": "model", "name": "MessageContentImageFileObject", "namespace": "OpenAI", @@ -76868,17 +77021,17 @@ "discriminatorValue": "image_file", "decorators": [], "baseModel": { - "$ref": "5950" + "$ref": "5961" }, "properties": [ { - "$id": "5953", + "$id": "5964", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `image_file`.", "type": { - "$id": "5954", + "$id": "5965", "kind": "enumvalue", "name": "image_file", "value": "image_file", @@ -76886,14 +77039,14 @@ "$ref": "921" }, "enumType": { - "$id": "5955", + "$id": "5966", "kind": "enum", "decorators": [], "name": "MessageContentType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "5956", + "$id": "5967", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -76902,59 +77055,59 @@ }, "values": [ { - "$id": "5957", + "$id": "5968", "kind": "enumvalue", "decorators": [], "doc": "The content is a text message.", "name": "text", "value": "text", "valueType": { - "$ref": "5956" + "$ref": "5967" }, "enumType": { - "$ref": "5955" + "$ref": "5966" } }, { - "$id": "5958", + "$id": "5969", "kind": "enumvalue", "decorators": [], "doc": "The content is an image file.", "name": "image_file", "value": "image_file", "valueType": { - "$ref": "5956" + "$ref": "5967" }, "enumType": { - "$ref": "5955" + "$ref": "5966" } }, { - "$id": "5959", + "$id": "5970", "kind": "enumvalue", "decorators": [], "doc": "The content is an image URL.", "name": "image_url", "value": "image_url", "valueType": { - "$ref": "5956" + "$ref": "5967" }, "enumType": { - "$ref": "5955" + "$ref": "5966" } }, { - "$id": "5960", + "$id": "5971", "kind": "enumvalue", "decorators": [], "doc": "The content is a refusal message.", "name": "refusal", "value": "refusal", "valueType": { - "$ref": "5956" + "$ref": "5967" }, "enumType": { - "$ref": "5955" + "$ref": "5966" } } ], @@ -76984,12 +77137,12 @@ "isHttpMetadata": false }, { - "$id": "5961", + "$id": "5972", "kind": "property", "name": "image_file", "serializedName": "image_file", "type": { - "$id": "5962", + "$id": "5973", "kind": "model", "name": "MessageContentImageFileObjectImageFile", "namespace": "OpenAI", @@ -76998,13 +77151,13 @@ "decorators": [], "properties": [ { - "$id": "5963", + "$id": "5974", "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": "5964", + "$id": "5975", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77024,7 +77177,7 @@ "isHttpMetadata": false }, { - "$id": "5965", + "$id": "5976", "kind": "property", "name": "detail", "serializedName": "detail", @@ -77063,7 +77216,7 @@ ] }, "text": { - "$id": "5966", + "$id": "5977", "kind": "model", "name": "MessageContentTextObject", "namespace": "OpenAI", @@ -77074,17 +77227,17 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "5950" + "$ref": "5961" }, "properties": [ { - "$id": "5967", + "$id": "5978", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `text`.", "type": { - "$id": "5968", + "$id": "5979", "kind": "enumvalue", "name": "text", "value": "text", @@ -77092,7 +77245,7 @@ "$ref": "921" }, "enumType": { - "$ref": "5955" + "$ref": "5966" }, "doc": "The content is a text message.", "decorators": [] @@ -77111,24 +77264,24 @@ "isHttpMetadata": false }, { - "$id": "5969", + "$id": "5980", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "5970", + "$id": "5981", "kind": "union", "name": "MessageContentTextObjectText", "variantTypes": [ { - "$id": "5971", + "$id": "5982", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "5972", + "$id": "5983", "kind": "model", "name": "MessageContentTextObjectText1", "namespace": "OpenAI", @@ -77137,12 +77290,12 @@ "decorators": [], "properties": [ { - "$id": "5973", + "$id": "5984", "kind": "property", "name": "value", "serializedName": "value", "type": { - "$id": "5974", + "$id": "5985", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77162,16 +77315,16 @@ "isHttpMetadata": false }, { - "$id": "5975", + "$id": "5986", "kind": "property", "name": "annotations", "serializedName": "annotations", "type": { - "$id": "5976", + "$id": "5987", "kind": "array", "name": "ArrayMessageContentTextObjectAnnotation", "valueType": { - "$id": "5977", + "$id": "5988", "kind": "model", "name": "MessageContentTextObjectAnnotation", "namespace": "OpenAI", @@ -77180,7 +77333,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "5978", + "$id": "5989", "kind": "property", "name": "type", "serializedName": "type", @@ -77203,12 +77356,12 @@ }, "properties": [ { - "$ref": "5978" + "$ref": "5989" } ], "discriminatedSubtypes": { "file_citation": { - "$id": "5979", + "$id": "5990", "kind": "model", "name": "MessageContentTextAnnotationsFileCitationObject", "namespace": "OpenAI", @@ -77219,17 +77372,17 @@ "discriminatorValue": "file_citation", "decorators": [], "baseModel": { - "$ref": "5977" + "$ref": "5988" }, "properties": [ { - "$id": "5980", + "$id": "5991", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `file_citation`.", "type": { - "$id": "5981", + "$id": "5992", "kind": "enumvalue", "name": "file_citation", "value": "file_citation", @@ -77237,14 +77390,14 @@ "$ref": "932" }, "enumType": { - "$id": "5982", + "$id": "5993", "kind": "enum", "decorators": [], "name": "MessageContentTextAnnotationType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "5983", + "$id": "5994", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -77253,29 +77406,29 @@ }, "values": [ { - "$id": "5984", + "$id": "5995", "kind": "enumvalue", "decorators": [], "name": "file_citation", "value": "file_citation", "valueType": { - "$ref": "5983" + "$ref": "5994" }, "enumType": { - "$ref": "5982" + "$ref": "5993" } }, { - "$id": "5985", + "$id": "5996", "kind": "enumvalue", "decorators": [], "name": "file_path", "value": "file_path", "valueType": { - "$ref": "5983" + "$ref": "5994" }, "enumType": { - "$ref": "5982" + "$ref": "5993" } } ], @@ -77304,13 +77457,13 @@ "isHttpMetadata": false }, { - "$id": "5986", + "$id": "5997", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "5987", + "$id": "5998", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77330,12 +77483,12 @@ "isHttpMetadata": false }, { - "$id": "5988", + "$id": "5999", "kind": "property", "name": "file_citation", "serializedName": "file_citation", "type": { - "$id": "5989", + "$id": "6000", "kind": "model", "name": "MessageContentTextAnnotationsFileCitationObjectFileCitation", "namespace": "OpenAI", @@ -77344,13 +77497,13 @@ "decorators": [], "properties": [ { - "$id": "5990", + "$id": "6001", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the specific File the citation is from.", "type": { - "$id": "5991", + "$id": "6002", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77385,12 +77538,12 @@ "isHttpMetadata": false }, { - "$id": "5992", + "$id": "6003", "kind": "property", "name": "start_index", "serializedName": "start_index", "type": { - "$id": "5993", + "$id": "6004", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -77410,12 +77563,12 @@ "isHttpMetadata": false }, { - "$id": "5994", + "$id": "6005", "kind": "property", "name": "end_index", "serializedName": "end_index", "type": { - "$id": "5995", + "$id": "6006", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -77437,7 +77590,7 @@ ] }, "file_path": { - "$id": "5996", + "$id": "6007", "kind": "model", "name": "MessageContentTextAnnotationsFilePathObject", "namespace": "OpenAI", @@ -77448,17 +77601,17 @@ "discriminatorValue": "file_path", "decorators": [], "baseModel": { - "$ref": "5977" + "$ref": "5988" }, "properties": [ { - "$id": "5997", + "$id": "6008", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `file_path`.", "type": { - "$id": "5998", + "$id": "6009", "kind": "enumvalue", "name": "file_path", "value": "file_path", @@ -77466,7 +77619,7 @@ "$ref": "932" }, "enumType": { - "$ref": "5982" + "$ref": "5993" }, "decorators": [] }, @@ -77484,13 +77637,13 @@ "isHttpMetadata": false }, { - "$id": "5999", + "$id": "6010", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "6000", + "$id": "6011", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77510,12 +77663,12 @@ "isHttpMetadata": false }, { - "$id": "6001", + "$id": "6012", "kind": "property", "name": "file_path", "serializedName": "file_path", "type": { - "$id": "6002", + "$id": "6013", "kind": "model", "name": "MessageContentTextAnnotationsFilePathObjectFilePath", "namespace": "OpenAI", @@ -77524,13 +77677,13 @@ "decorators": [], "properties": [ { - "$id": "6003", + "$id": "6014", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file that was generated.", "type": { - "$id": "6004", + "$id": "6015", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77565,12 +77718,12 @@ "isHttpMetadata": false }, { - "$id": "6005", + "$id": "6016", "kind": "property", "name": "start_index", "serializedName": "start_index", "type": { - "$id": "6006", + "$id": "6017", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -77590,12 +77743,12 @@ "isHttpMetadata": false }, { - "$id": "6007", + "$id": "6018", "kind": "property", "name": "end_index", "serializedName": "end_index", "type": { - "$id": "6008", + "$id": "6019", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -77656,7 +77809,7 @@ ] }, "refusal": { - "$id": "6009", + "$id": "6020", "kind": "model", "name": "MessageContentRefusalObject", "namespace": "OpenAI", @@ -77667,17 +77820,17 @@ "discriminatorValue": "refusal", "decorators": [], "baseModel": { - "$ref": "5950" + "$ref": "5961" }, "properties": [ { - "$id": "6010", + "$id": "6021", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `refusal`.", "type": { - "$id": "6011", + "$id": "6022", "kind": "enumvalue", "name": "refusal", "value": "refusal", @@ -77685,7 +77838,7 @@ "$ref": "921" }, "enumType": { - "$ref": "5955" + "$ref": "5966" }, "doc": "The content is a refusal message.", "decorators": [] @@ -77704,12 +77857,12 @@ "isHttpMetadata": false }, { - "$id": "6012", + "$id": "6023", "kind": "property", "name": "refusal", "serializedName": "refusal", "type": { - "$id": "6013", + "$id": "6024", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77731,7 +77884,7 @@ ] }, "image_url": { - "$id": "6014", + "$id": "6025", "kind": "model", "name": "MessageContentImageUrlObject", "namespace": "OpenAI", @@ -77742,17 +77895,17 @@ "discriminatorValue": "image_url", "decorators": [], "baseModel": { - "$ref": "5950" + "$ref": "5961" }, "properties": [ { - "$id": "6015", + "$id": "6026", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content part.", "type": { - "$id": "6016", + "$id": "6027", "kind": "enumvalue", "name": "image_url", "value": "image_url", @@ -77760,7 +77913,7 @@ "$ref": "921" }, "enumType": { - "$ref": "5955" + "$ref": "5966" }, "doc": "The content is an image URL.", "decorators": [] @@ -77779,12 +77932,12 @@ "isHttpMetadata": false }, { - "$id": "6017", + "$id": "6028", "kind": "property", "name": "image_url", "serializedName": "image_url", "type": { - "$id": "6018", + "$id": "6029", "kind": "model", "name": "MessageContentImageUrlObjectImageUrl", "namespace": "OpenAI", @@ -77793,13 +77946,13 @@ "decorators": [], "properties": [ { - "$id": "6019", + "$id": "6030", "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": "6020", + "$id": "6031", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -77819,7 +77972,7 @@ "isHttpMetadata": false }, { - "$id": "6021", + "$id": "6032", "kind": "property", "name": "detail", "serializedName": "detail", @@ -77876,20 +78029,20 @@ "isHttpMetadata": false }, { - "$id": "6022", + "$id": "6033", "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": "6023", + "$id": "6034", "kind": "nullable", "type": { - "$id": "6024", + "$id": "6035", "kind": "array", "name": "Array26", "valueType": { - "$id": "6025", + "$id": "6036", "kind": "model", "name": "CreateMessageRequestAttachment", "namespace": "OpenAI", @@ -77898,13 +78051,13 @@ "decorators": [], "properties": [ { - "$id": "6026", + "$id": "6037", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to attach to the message.", "type": { - "$id": "6027", + "$id": "6038", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77924,17 +78077,17 @@ "isHttpMetadata": false }, { - "$id": "6028", + "$id": "6039", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "The tools to add this file to.", "type": { - "$id": "6029", + "$id": "6040", "kind": "array", "name": "Array27", "valueType": { - "$id": "6030", + "$id": "6041", "kind": "union", "name": "CreateMessageRequestAttachmentTool", "variantTypes": [ @@ -77942,7 +78095,7 @@ "$ref": "2398" }, { - "$id": "6031", + "$id": "6042", "kind": "model", "name": "AssistantToolsFileSearchTypeOnly", "namespace": "OpenAI", @@ -77951,7 +78104,7 @@ "decorators": [], "properties": [ { - "$id": "6032", + "$id": "6043", "kind": "property", "name": "type", "serializedName": "type", @@ -78015,7 +78168,7 @@ "isHttpMetadata": false }, { - "$id": "6033", + "$id": "6044", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -78039,52 +78192,52 @@ ] }, { - "$ref": "5950" + "$ref": "5961" }, { - "$ref": "5952" + "$ref": "5963" }, { - "$ref": "5962" + "$ref": "5973" }, { - "$ref": "5966" + "$ref": "5977" }, { - "$ref": "5972" + "$ref": "5983" }, { - "$ref": "5977" + "$ref": "5988" }, { - "$ref": "5979" + "$ref": "5990" }, { - "$ref": "5989" + "$ref": "6000" }, { - "$ref": "5996" + "$ref": "6007" }, { - "$ref": "6002" + "$ref": "6013" }, { - "$ref": "6009" + "$ref": "6020" }, { - "$ref": "6014" + "$ref": "6025" }, { - "$ref": "6018" + "$ref": "6029" }, { - "$ref": "6025" + "$ref": "6036" }, { - "$ref": "6031" + "$ref": "6042" }, { - "$id": "6034", + "$id": "6045", "kind": "model", "name": "MessageObject", "namespace": "OpenAI", @@ -78094,13 +78247,13 @@ "decorators": [], "properties": [ { - "$id": "6035", + "$id": "6046", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6036", + "$id": "6047", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78120,7 +78273,7 @@ "isHttpMetadata": false }, { - "$id": "6037", + "$id": "6048", "kind": "property", "name": "object", "serializedName": "object", @@ -78142,18 +78295,18 @@ "isHttpMetadata": false }, { - "$id": "6038", + "$id": "6049", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the message was created.", "type": { - "$id": "6039", + "$id": "6050", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6040", + "$id": "6051", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -78176,13 +78329,13 @@ "isHttpMetadata": false }, { - "$id": "6041", + "$id": "6052", "kind": "property", "name": "thread_id", "serializedName": "thread_id", "doc": "The [thread](/docs/api-reference/threads) ID that this message belongs to.", "type": { - "$id": "6042", + "$id": "6053", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78202,7 +78355,7 @@ "isHttpMetadata": false }, { - "$id": "6043", + "$id": "6054", "kind": "property", "name": "status", "serializedName": "status", @@ -78224,16 +78377,16 @@ "isHttpMetadata": false }, { - "$id": "6044", + "$id": "6055", "kind": "property", "name": "incomplete_details", "serializedName": "incomplete_details", "doc": "On an incomplete message, details about why the message is incomplete.", "type": { - "$id": "6045", + "$id": "6056", "kind": "nullable", "type": { - "$id": "6046", + "$id": "6057", "kind": "model", "name": "MessageObjectIncompleteDetails1", "namespace": "OpenAI", @@ -78242,7 +78395,7 @@ "decorators": [], "properties": [ { - "$id": "6047", + "$id": "6058", "kind": "property", "name": "reason", "serializedName": "reason", @@ -78281,21 +78434,21 @@ "isHttpMetadata": false }, { - "$id": "6048", + "$id": "6059", "kind": "property", "name": "completed_at", "serializedName": "completed_at", "doc": "The Unix timestamp (in seconds) for when the message was completed.", "type": { - "$id": "6049", + "$id": "6060", "kind": "nullable", "type": { - "$id": "6050", + "$id": "6061", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6051", + "$id": "6062", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -78320,21 +78473,21 @@ "isHttpMetadata": false }, { - "$id": "6052", + "$id": "6063", "kind": "property", "name": "incomplete_at", "serializedName": "incomplete_at", "doc": "The Unix timestamp (in seconds) for when the message was marked as incomplete.", "type": { - "$id": "6053", + "$id": "6064", "kind": "nullable", "type": { - "$id": "6054", + "$id": "6065", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6055", + "$id": "6066", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -78359,7 +78512,7 @@ "isHttpMetadata": false }, { - "$id": "6056", + "$id": "6067", "kind": "property", "name": "role", "serializedName": "role", @@ -78381,13 +78534,13 @@ "isHttpMetadata": false }, { - "$id": "6057", + "$id": "6068", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message in array of text and/or images.", "type": { - "$ref": "5949" + "$ref": "5960" }, "optional": false, "readOnly": true, @@ -78403,16 +78556,16 @@ "isHttpMetadata": false }, { - "$id": "6058", + "$id": "6069", "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": "6059", + "$id": "6070", "kind": "nullable", "type": { - "$id": "6060", + "$id": "6071", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78434,16 +78587,16 @@ "isHttpMetadata": false }, { - "$id": "6061", + "$id": "6072", "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": "6062", + "$id": "6073", "kind": "nullable", "type": { - "$id": "6063", + "$id": "6074", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78465,20 +78618,20 @@ "isHttpMetadata": false }, { - "$id": "6064", + "$id": "6075", "kind": "property", "name": "attachments", "serializedName": "attachments", "doc": "A list of files attached to the message, and the tools they were added to.", "type": { - "$id": "6065", + "$id": "6076", "kind": "nullable", "type": { - "$id": "6066", + "$id": "6077", "kind": "array", "name": "Array28", "valueType": { - "$id": "6067", + "$id": "6078", "kind": "model", "name": "MessageObjectAttachment", "namespace": "OpenAI", @@ -78487,13 +78640,13 @@ "decorators": [], "properties": [ { - "$id": "6068", + "$id": "6079", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to attach to the message.", "type": { - "$id": "6069", + "$id": "6080", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78513,17 +78666,17 @@ "isHttpMetadata": false }, { - "$id": "6070", + "$id": "6081", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "The tools to add this file to.", "type": { - "$id": "6071", + "$id": "6082", "kind": "array", "name": "Array29", "valueType": { - "$id": "6072", + "$id": "6083", "kind": "union", "name": "MessageObjectAttachmentTool", "variantTypes": [ @@ -78531,7 +78684,7 @@ "$ref": "2398" }, { - "$ref": "6031" + "$ref": "6042" } ], "namespace": "OpenAI", @@ -78574,7 +78727,7 @@ "isHttpMetadata": false }, { - "$id": "6073", + "$id": "6084", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -78598,13 +78751,13 @@ ] }, { - "$ref": "6046" + "$ref": "6057" }, { - "$ref": "6067" + "$ref": "6078" }, { - "$id": "6074", + "$id": "6085", "kind": "model", "name": "ListMessagesResponse", "namespace": "OpenAI", @@ -78613,7 +78766,7 @@ "decorators": [], "properties": [ { - "$id": "6075", + "$id": "6086", "kind": "property", "name": "object", "serializedName": "object", @@ -78634,16 +78787,16 @@ "isHttpMetadata": false }, { - "$id": "6076", + "$id": "6087", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6077", + "$id": "6088", "kind": "array", "name": "ArrayMessageObject", "valueType": { - "$ref": "6034" + "$ref": "6045" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -78662,12 +78815,12 @@ "isHttpMetadata": false }, { - "$id": "6078", + "$id": "6089", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6079", + "$id": "6090", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78687,12 +78840,12 @@ "isHttpMetadata": false }, { - "$id": "6080", + "$id": "6091", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6081", + "$id": "6092", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78712,12 +78865,12 @@ "isHttpMetadata": false }, { - "$id": "6082", + "$id": "6093", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6083", + "$id": "6094", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78739,7 +78892,7 @@ ] }, { - "$id": "6084", + "$id": "6095", "kind": "model", "name": "ModifyMessageRequest", "namespace": "OpenAI", @@ -78748,7 +78901,7 @@ "decorators": [], "properties": [ { - "$id": "6085", + "$id": "6096", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -78772,7 +78925,7 @@ ] }, { - "$id": "6086", + "$id": "6097", "kind": "model", "name": "DeleteMessageResponse", "namespace": "OpenAI", @@ -78781,12 +78934,12 @@ "decorators": [], "properties": [ { - "$id": "6087", + "$id": "6098", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6088", + "$id": "6099", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78806,12 +78959,12 @@ "isHttpMetadata": false }, { - "$id": "6089", + "$id": "6100", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6090", + "$id": "6101", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78831,7 +78984,7 @@ "isHttpMetadata": false }, { - "$id": "6091", + "$id": "6102", "kind": "property", "name": "object", "serializedName": "object", @@ -78854,7 +79007,7 @@ ] }, { - "$id": "6092", + "$id": "6103", "kind": "model", "name": "CreateModerationRequest", "namespace": "OpenAI", @@ -78863,18 +79016,18 @@ "decorators": [], "properties": [ { - "$id": "6093", + "$id": "6104", "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": "6094", + "$id": "6105", "kind": "union", "name": "CreateModerationRequestInput", "variantTypes": [ { - "$id": "6095", + "$id": "6106", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78884,16 +79037,16 @@ "$ref": "2438" }, { - "$id": "6096", + "$id": "6107", "kind": "array", "name": "Array30", "valueType": { - "$id": "6097", + "$id": "6108", "kind": "union", "name": "CreateModerationRequestInput1", "variantTypes": [ { - "$id": "6098", + "$id": "6109", "kind": "model", "name": "CreateModerationRequestInput2", "namespace": "OpenAI", @@ -78902,7 +79055,7 @@ "decorators": [], "properties": [ { - "$id": "6099", + "$id": "6110", "kind": "property", "name": "type", "serializedName": "type", @@ -78924,13 +79077,13 @@ "isHttpMetadata": false }, { - "$id": "6100", + "$id": "6111", "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": "6101", + "$id": "6112", "kind": "model", "name": "CreateModerationRequestInputImageUrl", "namespace": "OpenAI", @@ -78939,13 +79092,13 @@ "decorators": [], "properties": [ { - "$id": "6102", + "$id": "6113", "kind": "property", "name": "url", "serializedName": "url", "doc": "Either a URL of the image or the base64 encoded image data.", "type": { - "$id": "6103", + "$id": "6114", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78982,7 +79135,7 @@ ] }, { - "$id": "6104", + "$id": "6115", "kind": "model", "name": "CreateModerationRequestInput3", "namespace": "OpenAI", @@ -78991,7 +79144,7 @@ "decorators": [], "properties": [ { - "$id": "6105", + "$id": "6116", "kind": "property", "name": "type", "serializedName": "type", @@ -79013,13 +79166,13 @@ "isHttpMetadata": false }, { - "$id": "6106", + "$id": "6117", "kind": "property", "name": "text", "serializedName": "text", "doc": "A string of text to classify.", "type": { - "$id": "6107", + "$id": "6118", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79065,7 +79218,7 @@ "isHttpMetadata": false }, { - "$id": "6108", + "$id": "6119", "kind": "property", "name": "model", "serializedName": "model", @@ -79089,16 +79242,16 @@ ] }, { - "$ref": "6098" + "$ref": "6109" }, { - "$ref": "6101" + "$ref": "6112" }, { - "$ref": "6104" + "$ref": "6115" }, { - "$id": "6109", + "$id": "6120", "kind": "model", "name": "CreateModerationResponse", "namespace": "OpenAI", @@ -79108,13 +79261,13 @@ "decorators": [], "properties": [ { - "$id": "6110", + "$id": "6121", "kind": "property", "name": "id", "serializedName": "id", "doc": "The unique identifier for the moderation request.", "type": { - "$id": "6111", + "$id": "6122", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79134,13 +79287,13 @@ "isHttpMetadata": false }, { - "$id": "6112", + "$id": "6123", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model used to generate the moderation results.", "type": { - "$id": "6113", + "$id": "6124", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79160,17 +79313,17 @@ "isHttpMetadata": false }, { - "$id": "6114", + "$id": "6125", "kind": "property", "name": "results", "serializedName": "results", "doc": "A list of moderation objects.", "type": { - "$id": "6115", + "$id": "6126", "kind": "array", "name": "ArrayCreateModerationResponseResult", "valueType": { - "$id": "6116", + "$id": "6127", "kind": "model", "name": "CreateModerationResponseResult", "namespace": "OpenAI", @@ -79179,13 +79332,13 @@ "decorators": [], "properties": [ { - "$id": "6117", + "$id": "6128", "kind": "property", "name": "flagged", "serializedName": "flagged", "doc": "Whether any of the below categories are flagged.", "type": { - "$id": "6118", + "$id": "6129", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79205,13 +79358,13 @@ "isHttpMetadata": false }, { - "$id": "6119", + "$id": "6130", "kind": "property", "name": "categories", "serializedName": "categories", "doc": "A list of the categories, and whether they are flagged or not.", "type": { - "$id": "6120", + "$id": "6131", "kind": "model", "name": "CreateModerationResponseResultCategories", "namespace": "OpenAI", @@ -79220,13 +79373,13 @@ "decorators": [], "properties": [ { - "$id": "6121", + "$id": "6132", "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": "6122", + "$id": "6133", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79246,13 +79399,13 @@ "isHttpMetadata": false }, { - "$id": "6123", + "$id": "6134", "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": "6124", + "$id": "6135", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79272,13 +79425,13 @@ "isHttpMetadata": false }, { - "$id": "6125", + "$id": "6136", "kind": "property", "name": "harassment", "serializedName": "harassment", "doc": "Content that expresses, incites, or promotes harassing language towards any target.", "type": { - "$id": "6126", + "$id": "6137", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79298,13 +79451,13 @@ "isHttpMetadata": false }, { - "$id": "6127", + "$id": "6138", "kind": "property", "name": "harassment/threatening", "serializedName": "harassment/threatening", "doc": "Harassment content that also includes violence or serious harm towards any target.", "type": { - "$id": "6128", + "$id": "6139", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79324,13 +79477,13 @@ "isHttpMetadata": false }, { - "$id": "6129", + "$id": "6140", "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": "6130", + "$id": "6141", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79350,13 +79503,13 @@ "isHttpMetadata": false }, { - "$id": "6131", + "$id": "6142", "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": "6132", + "$id": "6143", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79376,13 +79529,13 @@ "isHttpMetadata": false }, { - "$id": "6133", + "$id": "6144", "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": "6134", + "$id": "6145", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79402,13 +79555,13 @@ "isHttpMetadata": false }, { - "$id": "6135", + "$id": "6146", "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": "6136", + "$id": "6147", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79428,13 +79581,13 @@ "isHttpMetadata": false }, { - "$id": "6137", + "$id": "6148", "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": "6138", + "$id": "6149", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79454,13 +79607,13 @@ "isHttpMetadata": false }, { - "$id": "6139", + "$id": "6150", "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": "6140", + "$id": "6151", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79480,13 +79633,13 @@ "isHttpMetadata": false }, { - "$id": "6141", + "$id": "6152", "kind": "property", "name": "sexual/minors", "serializedName": "sexual/minors", "doc": "Sexual content that includes an individual who is under 18 years old.", "type": { - "$id": "6142", + "$id": "6153", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79506,13 +79659,13 @@ "isHttpMetadata": false }, { - "$id": "6143", + "$id": "6154", "kind": "property", "name": "violence", "serializedName": "violence", "doc": "Content that depicts death, violence, or physical injury.", "type": { - "$id": "6144", + "$id": "6155", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79532,13 +79685,13 @@ "isHttpMetadata": false }, { - "$id": "6145", + "$id": "6156", "kind": "property", "name": "violence/graphic", "serializedName": "violence/graphic", "doc": "Content that depicts death, violence, or physical injury in graphic detail.", "type": { - "$id": "6146", + "$id": "6157", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79573,13 +79726,13 @@ "isHttpMetadata": false }, { - "$id": "6147", + "$id": "6158", "kind": "property", "name": "category_scores", "serializedName": "category_scores", "doc": "A list of the categories along with their scores as predicted by model.", "type": { - "$id": "6148", + "$id": "6159", "kind": "model", "name": "CreateModerationResponseResultCategoryScores", "namespace": "OpenAI", @@ -79588,13 +79741,13 @@ "decorators": [], "properties": [ { - "$id": "6149", + "$id": "6160", "kind": "property", "name": "hate", "serializedName": "hate", "doc": "The score for the category 'hate'.", "type": { - "$id": "6150", + "$id": "6161", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79614,13 +79767,13 @@ "isHttpMetadata": false }, { - "$id": "6151", + "$id": "6162", "kind": "property", "name": "hate/threatening", "serializedName": "hate/threatening", "doc": "The score for the category 'hate/threatening'.", "type": { - "$id": "6152", + "$id": "6163", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79640,13 +79793,13 @@ "isHttpMetadata": false }, { - "$id": "6153", + "$id": "6164", "kind": "property", "name": "harassment", "serializedName": "harassment", "doc": "The score for the category 'harassment'.", "type": { - "$id": "6154", + "$id": "6165", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79666,13 +79819,13 @@ "isHttpMetadata": false }, { - "$id": "6155", + "$id": "6166", "kind": "property", "name": "harassment/threatening", "serializedName": "harassment/threatening", "doc": "The score for the category 'harassment/threatening'.", "type": { - "$id": "6156", + "$id": "6167", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79692,13 +79845,13 @@ "isHttpMetadata": false }, { - "$id": "6157", + "$id": "6168", "kind": "property", "name": "illicit", "serializedName": "illicit", "doc": "The score for the category 'illicit'.", "type": { - "$id": "6158", + "$id": "6169", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79718,13 +79871,13 @@ "isHttpMetadata": false }, { - "$id": "6159", + "$id": "6170", "kind": "property", "name": "illicit/violent", "serializedName": "illicit/violent", "doc": "The score for the category 'illicit/violent'.", "type": { - "$id": "6160", + "$id": "6171", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79744,13 +79897,13 @@ "isHttpMetadata": false }, { - "$id": "6161", + "$id": "6172", "kind": "property", "name": "self-harm", "serializedName": "self-harm", "doc": "The score for the category 'self-harm'.", "type": { - "$id": "6162", + "$id": "6173", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79770,13 +79923,13 @@ "isHttpMetadata": false }, { - "$id": "6163", + "$id": "6174", "kind": "property", "name": "self-harm/intent", "serializedName": "self-harm/intent", "doc": "The score for the category 'self-harm/intent'.", "type": { - "$id": "6164", + "$id": "6175", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79796,13 +79949,13 @@ "isHttpMetadata": false }, { - "$id": "6165", + "$id": "6176", "kind": "property", "name": "self-harm/instructions", "serializedName": "self-harm/instructions", "doc": "The score for the category 'self-harm/instructions'.", "type": { - "$id": "6166", + "$id": "6177", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79822,13 +79975,13 @@ "isHttpMetadata": false }, { - "$id": "6167", + "$id": "6178", "kind": "property", "name": "sexual", "serializedName": "sexual", "doc": "The score for the category 'sexual'.", "type": { - "$id": "6168", + "$id": "6179", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79848,13 +80001,13 @@ "isHttpMetadata": false }, { - "$id": "6169", + "$id": "6180", "kind": "property", "name": "sexual/minors", "serializedName": "sexual/minors", "doc": "The score for the category 'sexual/minors'.", "type": { - "$id": "6170", + "$id": "6181", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79874,13 +80027,13 @@ "isHttpMetadata": false }, { - "$id": "6171", + "$id": "6182", "kind": "property", "name": "violence", "serializedName": "violence", "doc": "The score for the category 'violence'.", "type": { - "$id": "6172", + "$id": "6183", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79900,13 +80053,13 @@ "isHttpMetadata": false }, { - "$id": "6173", + "$id": "6184", "kind": "property", "name": "violence/graphic", "serializedName": "violence/graphic", "doc": "The score for the category 'violence/graphic'.", "type": { - "$id": "6174", + "$id": "6185", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79941,13 +80094,13 @@ "isHttpMetadata": false }, { - "$id": "6175", + "$id": "6186", "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": "6176", + "$id": "6187", "kind": "model", "name": "CreateModerationResponseResultCategoryAppliedInputTypes", "namespace": "OpenAI", @@ -79956,17 +80109,17 @@ "decorators": [], "properties": [ { - "$id": "6177", + "$id": "6188", "kind": "property", "name": "hate", "serializedName": "hate", "doc": "The applied input type(s) for the category 'hate'.", "type": { - "$id": "6178", + "$id": "6189", "kind": "array", "name": "Array31", "valueType": { - "$id": "6179", + "$id": "6190", "kind": "enumvalue", "name": "text", "value": "text", @@ -79974,14 +80127,14 @@ "$ref": "1451" }, "enumType": { - "$id": "6180", + "$id": "6191", "kind": "enum", "decorators": [], "name": "ModerationAppliedInputType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6181", + "$id": "6192", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -79990,29 +80143,29 @@ }, "values": [ { - "$id": "6182", + "$id": "6193", "kind": "enumvalue", "decorators": [], "name": "text", "value": "text", "valueType": { - "$ref": "6181" + "$ref": "6192" }, "enumType": { - "$ref": "6180" + "$ref": "6191" } }, { - "$id": "6183", + "$id": "6194", "kind": "enumvalue", "decorators": [], "name": "image", "value": "image", "valueType": { - "$ref": "6181" + "$ref": "6192" }, "enumType": { - "$ref": "6180" + "$ref": "6191" } } ], @@ -80044,13 +80197,13 @@ "isHttpMetadata": false }, { - "$id": "6184", + "$id": "6195", "kind": "property", "name": "hate/threatening", "serializedName": "hate/threatening", "doc": "The applied input type(s) for the category 'hate/threatening'.", "type": { - "$ref": "6178" + "$ref": "6189" }, "optional": false, "readOnly": false, @@ -80066,13 +80219,13 @@ "isHttpMetadata": false }, { - "$id": "6185", + "$id": "6196", "kind": "property", "name": "harassment", "serializedName": "harassment", "doc": "The applied input type(s) for the category 'harassment'.", "type": { - "$ref": "6178" + "$ref": "6189" }, "optional": false, "readOnly": false, @@ -80088,13 +80241,13 @@ "isHttpMetadata": false }, { - "$id": "6186", + "$id": "6197", "kind": "property", "name": "harassment/threatening", "serializedName": "harassment/threatening", "doc": "The applied input type(s) for the category 'harassment/threatening'.", "type": { - "$ref": "6178" + "$ref": "6189" }, "optional": false, "readOnly": false, @@ -80110,13 +80263,13 @@ "isHttpMetadata": false }, { - "$id": "6187", + "$id": "6198", "kind": "property", "name": "illicit", "serializedName": "illicit", "doc": "The applied input type(s) for the category 'illicit'.", "type": { - "$ref": "6178" + "$ref": "6189" }, "optional": false, "readOnly": false, @@ -80132,13 +80285,13 @@ "isHttpMetadata": false }, { - "$id": "6188", + "$id": "6199", "kind": "property", "name": "illicit/violent", "serializedName": "illicit/violent", "doc": "The applied input type(s) for the category 'illicit/violent'.", "type": { - "$ref": "6178" + "$ref": "6189" }, "optional": false, "readOnly": false, @@ -80154,25 +80307,25 @@ "isHttpMetadata": false }, { - "$id": "6189", + "$id": "6200", "kind": "property", "name": "self-harm", "serializedName": "self-harm", "doc": "The applied input type(s) for the category 'self-harm'.", "type": { - "$id": "6190", + "$id": "6201", "kind": "array", "name": "Array32", "valueType": { - "$id": "6191", + "$id": "6202", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSelfHarm", "variantTypes": [ { - "$ref": "6179" + "$ref": "6190" }, { - "$id": "6192", + "$id": "6203", "kind": "enumvalue", "name": "image", "value": "image", @@ -80180,7 +80333,7 @@ "$ref": "1451" }, "enumType": { - "$ref": "6180" + "$ref": "6191" }, "decorators": [] } @@ -80205,25 +80358,25 @@ "isHttpMetadata": false }, { - "$id": "6193", + "$id": "6204", "kind": "property", "name": "self-harm/intent", "serializedName": "self-harm/intent", "doc": "The applied input type(s) for the category 'self-harm/intent'.", "type": { - "$id": "6194", + "$id": "6205", "kind": "array", "name": "Array33", "valueType": { - "$id": "6195", + "$id": "6206", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmIntent", "variantTypes": [ { - "$ref": "6179" + "$ref": "6190" }, { - "$ref": "6192" + "$ref": "6203" } ], "namespace": "OpenAI", @@ -80246,25 +80399,25 @@ "isHttpMetadata": false }, { - "$id": "6196", + "$id": "6207", "kind": "property", "name": "self-harm/instructions", "serializedName": "self-harm/instructions", "doc": "The applied input type(s) for the category 'self-harm/instructions'.", "type": { - "$id": "6197", + "$id": "6208", "kind": "array", "name": "Array34", "valueType": { - "$id": "6198", + "$id": "6209", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmInstruction", "variantTypes": [ { - "$ref": "6179" + "$ref": "6190" }, { - "$ref": "6192" + "$ref": "6203" } ], "namespace": "OpenAI", @@ -80287,25 +80440,25 @@ "isHttpMetadata": false }, { - "$id": "6199", + "$id": "6210", "kind": "property", "name": "sexual", "serializedName": "sexual", "doc": "The applied input type(s) for the category 'sexual'.", "type": { - "$id": "6200", + "$id": "6211", "kind": "array", "name": "Array35", "valueType": { - "$id": "6201", + "$id": "6212", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSexual", "variantTypes": [ { - "$ref": "6179" + "$ref": "6190" }, { - "$ref": "6192" + "$ref": "6203" } ], "namespace": "OpenAI", @@ -80328,13 +80481,13 @@ "isHttpMetadata": false }, { - "$id": "6202", + "$id": "6213", "kind": "property", "name": "sexual/minors", "serializedName": "sexual/minors", "doc": "The applied input type(s) for the category 'sexual/minors'.", "type": { - "$ref": "6178" + "$ref": "6189" }, "optional": false, "readOnly": false, @@ -80350,25 +80503,25 @@ "isHttpMetadata": false }, { - "$id": "6203", + "$id": "6214", "kind": "property", "name": "violence", "serializedName": "violence", "doc": "The applied input type(s) for the category 'violence'.", "type": { - "$id": "6204", + "$id": "6215", "kind": "array", "name": "Array36", "valueType": { - "$id": "6205", + "$id": "6216", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesViolence", "variantTypes": [ { - "$ref": "6179" + "$ref": "6190" }, { - "$ref": "6192" + "$ref": "6203" } ], "namespace": "OpenAI", @@ -80391,25 +80544,25 @@ "isHttpMetadata": false }, { - "$id": "6206", + "$id": "6217", "kind": "property", "name": "violence/graphic", "serializedName": "violence/graphic", "doc": "The applied input type(s) for the category 'violence/graphic'.", "type": { - "$id": "6207", + "$id": "6218", "kind": "array", "name": "Array37", "valueType": { - "$id": "6208", + "$id": "6219", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesViolenceGraphic", "variantTypes": [ { - "$ref": "6179" + "$ref": "6190" }, { - "$ref": "6192" + "$ref": "6203" } ], "namespace": "OpenAI", @@ -80467,19 +80620,19 @@ ] }, { - "$ref": "6116" + "$ref": "6127" }, { - "$ref": "6120" + "$ref": "6131" }, { - "$ref": "6148" + "$ref": "6159" }, { - "$ref": "6176" + "$ref": "6187" }, { - "$id": "6209", + "$id": "6220", "kind": "model", "name": "CreateThreadAndRunRequest", "namespace": "OpenAI", @@ -80488,13 +80641,13 @@ "decorators": [], "properties": [ { - "$id": "6210", + "$id": "6221", "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": "6211", + "$id": "6222", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80514,12 +80667,12 @@ "isHttpMetadata": false }, { - "$id": "6212", + "$id": "6223", "kind": "property", "name": "thread", "serializedName": "thread", "type": { - "$id": "6213", + "$id": "6224", "kind": "model", "name": "CreateThreadRequest", "namespace": "OpenAI", @@ -80529,17 +80682,17 @@ "decorators": [], "properties": [ { - "$id": "6214", + "$id": "6225", "kind": "property", "name": "messages", "serializedName": "messages", "doc": "A list of [messages](/docs/api-reference/messages) to start the thread with.", "type": { - "$id": "6215", + "$id": "6226", "kind": "array", "name": "ArrayCreateMessageRequest", "valueType": { - "$ref": "5946" + "$ref": "5957" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -80558,16 +80711,16 @@ "isHttpMetadata": false }, { - "$id": "6216", + "$id": "6227", "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": "6217", + "$id": "6228", "kind": "nullable", "type": { - "$id": "6218", + "$id": "6229", "kind": "model", "name": "CreateThreadRequestToolResources1", "namespace": "OpenAI", @@ -80576,12 +80729,12 @@ "decorators": [], "properties": [ { - "$id": "6219", + "$id": "6230", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "6220", + "$id": "6231", "kind": "model", "name": "CreateThreadRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -80590,7 +80743,7 @@ "decorators": [], "properties": [ { - "$id": "6221", + "$id": "6232", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -80627,7 +80780,7 @@ "isHttpMetadata": false }, { - "$id": "6222", + "$id": "6233", "kind": "property", "name": "file_search", "serializedName": "file_search", @@ -80665,7 +80818,7 @@ "isHttpMetadata": false }, { - "$id": "6223", + "$id": "6234", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -80702,13 +80855,13 @@ "isHttpMetadata": false }, { - "$id": "6224", + "$id": "6235", "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": "6225", + "$id": "6236", "kind": "nullable", "type": { "$ref": "962" @@ -80729,16 +80882,16 @@ "isHttpMetadata": false }, { - "$id": "6226", + "$id": "6237", "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": "6227", + "$id": "6238", "kind": "nullable", "type": { - "$id": "6228", + "$id": "6239", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80760,13 +80913,13 @@ "isHttpMetadata": false }, { - "$id": "6229", + "$id": "6240", "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": "6230", + "$id": "6241", "kind": "nullable", "type": { "$ref": "2395" @@ -80787,16 +80940,16 @@ "isHttpMetadata": false }, { - "$id": "6231", + "$id": "6242", "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": "6232", + "$id": "6243", "kind": "nullable", "type": { - "$id": "6233", + "$id": "6244", "kind": "model", "name": "CreateThreadAndRunRequestToolResources1", "namespace": "OpenAI", @@ -80805,12 +80958,12 @@ "decorators": [], "properties": [ { - "$id": "6234", + "$id": "6245", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "6235", + "$id": "6246", "kind": "model", "name": "CreateThreadAndRunRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -80819,7 +80972,7 @@ "decorators": [], "properties": [ { - "$id": "6236", + "$id": "6247", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -80856,7 +81009,7 @@ "isHttpMetadata": false }, { - "$id": "6237", + "$id": "6248", "kind": "property", "name": "file_search", "serializedName": "file_search", @@ -80894,7 +81047,7 @@ "isHttpMetadata": false }, { - "$id": "6238", + "$id": "6249", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -80916,16 +81069,16 @@ "isHttpMetadata": false }, { - "$id": "6239", + "$id": "6250", "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": "6240", + "$id": "6251", "kind": "nullable", "type": { - "$id": "6241", + "$id": "6252", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -80947,16 +81100,16 @@ "isHttpMetadata": false }, { - "$id": "6242", + "$id": "6253", "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": "6243", + "$id": "6254", "kind": "nullable", "type": { - "$id": "6244", + "$id": "6255", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -80978,16 +81131,16 @@ "isHttpMetadata": false }, { - "$id": "6245", + "$id": "6256", "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": "6246", + "$id": "6257", "kind": "nullable", "type": { - "$id": "6247", + "$id": "6258", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -81009,16 +81162,16 @@ "isHttpMetadata": false }, { - "$id": "6248", + "$id": "6259", "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": "6249", + "$id": "6260", "kind": "nullable", "type": { - "$id": "6250", + "$id": "6261", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81040,16 +81193,16 @@ "isHttpMetadata": false }, { - "$id": "6251", + "$id": "6262", "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": "6252", + "$id": "6263", "kind": "nullable", "type": { - "$id": "6253", + "$id": "6264", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81071,15 +81224,15 @@ "isHttpMetadata": false }, { - "$id": "6254", + "$id": "6265", "kind": "property", "name": "truncation_strategy", "serializedName": "truncation_strategy", "type": { - "$id": "6255", + "$id": "6266", "kind": "nullable", "type": { - "$id": "6256", + "$id": "6267", "kind": "model", "name": "TruncationObject", "namespace": "OpenAI", @@ -81089,7 +81242,7 @@ "decorators": [], "properties": [ { - "$id": "6257", + "$id": "6268", "kind": "property", "name": "type", "serializedName": "type", @@ -81111,16 +81264,16 @@ "isHttpMetadata": false }, { - "$id": "6258", + "$id": "6269", "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": "6259", + "$id": "6270", "kind": "nullable", "type": { - "$id": "6260", + "$id": "6271", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81159,15 +81312,15 @@ "isHttpMetadata": false }, { - "$id": "6261", + "$id": "6272", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "6262", + "$id": "6273", "kind": "nullable", "type": { - "$id": "6263", + "$id": "6274", "kind": "union", "name": "AssistantsApiToolChoiceOption", "variantTypes": [ @@ -81175,7 +81328,7 @@ "$ref": "1000" }, { - "$id": "6264", + "$id": "6275", "kind": "model", "name": "AssistantsNamedToolChoice", "namespace": "OpenAI", @@ -81185,7 +81338,7 @@ "decorators": [], "properties": [ { - "$id": "6265", + "$id": "6276", "kind": "property", "name": "type", "serializedName": "type", @@ -81207,12 +81360,12 @@ "isHttpMetadata": false }, { - "$id": "6266", + "$id": "6277", "kind": "property", "name": "function", "serializedName": "function", "type": { - "$id": "6267", + "$id": "6278", "kind": "model", "name": "AssistantsNamedToolChoiceFunction", "namespace": "OpenAI", @@ -81221,13 +81374,13 @@ "decorators": [], "properties": [ { - "$id": "6268", + "$id": "6279", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "6269", + "$id": "6280", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81283,17 +81436,17 @@ "isHttpMetadata": false }, { - "$id": "6270", + "$id": "6281", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "type": { - "$id": "6271", + "$id": "6282", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "6272", + "$id": "6283", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -81315,12 +81468,12 @@ "isHttpMetadata": false }, { - "$id": "6273", + "$id": "6284", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "6274", + "$id": "6285", "kind": "nullable", "type": { "$ref": "2456" @@ -81343,31 +81496,31 @@ ] }, { - "$ref": "6213" + "$ref": "6224" }, { - "$ref": "6218" + "$ref": "6229" }, { - "$ref": "6220" + "$ref": "6231" }, { - "$ref": "6233" + "$ref": "6244" }, { - "$ref": "6235" + "$ref": "6246" }, { - "$ref": "6256" + "$ref": "6267" }, { - "$ref": "6264" + "$ref": "6275" }, { - "$ref": "6267" + "$ref": "6278" }, { - "$id": "6275", + "$id": "6286", "kind": "model", "name": "RunObject", "namespace": "OpenAI", @@ -81377,13 +81530,13 @@ "decorators": [], "properties": [ { - "$id": "6276", + "$id": "6287", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6277", + "$id": "6288", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81403,7 +81556,7 @@ "isHttpMetadata": false }, { - "$id": "6278", + "$id": "6289", "kind": "property", "name": "object", "serializedName": "object", @@ -81425,18 +81578,18 @@ "isHttpMetadata": false }, { - "$id": "6279", + "$id": "6290", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the run was created.", "type": { - "$id": "6280", + "$id": "6291", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6281", + "$id": "6292", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81459,13 +81612,13 @@ "isHttpMetadata": false }, { - "$id": "6282", + "$id": "6293", "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": "6283", + "$id": "6294", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81485,13 +81638,13 @@ "isHttpMetadata": false }, { - "$id": "6284", + "$id": "6295", "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": "6285", + "$id": "6296", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81511,7 +81664,7 @@ "isHttpMetadata": false }, { - "$id": "6286", + "$id": "6297", "kind": "property", "name": "status", "serializedName": "status", @@ -81533,16 +81686,16 @@ "isHttpMetadata": false }, { - "$id": "6287", + "$id": "6298", "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": "6288", + "$id": "6299", "kind": "nullable", "type": { - "$id": "6289", + "$id": "6300", "kind": "model", "name": "RunObjectRequiredAction1", "namespace": "OpenAI", @@ -81551,7 +81704,7 @@ "decorators": [], "properties": [ { - "$id": "6290", + "$id": "6301", "kind": "property", "name": "type", "serializedName": "type", @@ -81573,13 +81726,13 @@ "isHttpMetadata": false }, { - "$id": "6291", + "$id": "6302", "kind": "property", "name": "submit_tool_outputs", "serializedName": "submit_tool_outputs", "doc": "Details on the tool outputs needed for this run to continue.", "type": { - "$id": "6292", + "$id": "6303", "kind": "model", "name": "RunObjectRequiredActionSubmitToolOutputs", "namespace": "OpenAI", @@ -81588,17 +81741,17 @@ "decorators": [], "properties": [ { - "$id": "6293", + "$id": "6304", "kind": "property", "name": "tool_calls", "serializedName": "tool_calls", "doc": "A list of the relevant tool calls.", "type": { - "$id": "6294", + "$id": "6305", "kind": "array", "name": "ArrayRunToolCallObject", "valueType": { - "$id": "6295", + "$id": "6306", "kind": "model", "name": "RunToolCallObject", "namespace": "OpenAI", @@ -81608,13 +81761,13 @@ "decorators": [], "properties": [ { - "$id": "6296", + "$id": "6307", "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": "6297", + "$id": "6308", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81634,7 +81787,7 @@ "isHttpMetadata": false }, { - "$id": "6298", + "$id": "6309", "kind": "property", "name": "type", "serializedName": "type", @@ -81656,13 +81809,13 @@ "isHttpMetadata": false }, { - "$id": "6299", + "$id": "6310", "kind": "property", "name": "function", "serializedName": "function", "doc": "The function definition.", "type": { - "$id": "6300", + "$id": "6311", "kind": "model", "name": "RunToolCallObjectFunction", "namespace": "OpenAI", @@ -81671,13 +81824,13 @@ "decorators": [], "properties": [ { - "$id": "6301", + "$id": "6312", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function.", "type": { - "$id": "6302", + "$id": "6313", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81697,13 +81850,13 @@ "isHttpMetadata": false }, { - "$id": "6303", + "$id": "6314", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "The arguments that the model expects you to pass to the function.", "type": { - "$id": "6304", + "$id": "6315", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81788,16 +81941,16 @@ "isHttpMetadata": false }, { - "$id": "6305", + "$id": "6316", "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": "6306", + "$id": "6317", "kind": "nullable", "type": { - "$id": "6307", + "$id": "6318", "kind": "model", "name": "RunObjectLastError1", "namespace": "OpenAI", @@ -81806,7 +81959,7 @@ "decorators": [], "properties": [ { - "$id": "6308", + "$id": "6319", "kind": "property", "name": "code", "serializedName": "code", @@ -81828,13 +81981,13 @@ "isHttpMetadata": false }, { - "$id": "6309", + "$id": "6320", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "6310", + "$id": "6321", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81871,21 +82024,21 @@ "isHttpMetadata": false }, { - "$id": "6311", + "$id": "6322", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the run will expire.", "type": { - "$id": "6312", + "$id": "6323", "kind": "nullable", "type": { - "$id": "6313", + "$id": "6324", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6314", + "$id": "6325", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81910,21 +82063,21 @@ "isHttpMetadata": false }, { - "$id": "6315", + "$id": "6326", "kind": "property", "name": "started_at", "serializedName": "started_at", "doc": "The Unix timestamp (in seconds) for when the run was started.", "type": { - "$id": "6316", + "$id": "6327", "kind": "nullable", "type": { - "$id": "6317", + "$id": "6328", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6318", + "$id": "6329", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81949,21 +82102,21 @@ "isHttpMetadata": false }, { - "$id": "6319", + "$id": "6330", "kind": "property", "name": "cancelled_at", "serializedName": "cancelled_at", "doc": "The Unix timestamp (in seconds) for when the run was cancelled.", "type": { - "$id": "6320", + "$id": "6331", "kind": "nullable", "type": { - "$id": "6321", + "$id": "6332", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6322", + "$id": "6333", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81988,21 +82141,21 @@ "isHttpMetadata": false }, { - "$id": "6323", + "$id": "6334", "kind": "property", "name": "failed_at", "serializedName": "failed_at", "doc": "The Unix timestamp (in seconds) for when the run failed.", "type": { - "$id": "6324", + "$id": "6335", "kind": "nullable", "type": { - "$id": "6325", + "$id": "6336", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6326", + "$id": "6337", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82027,21 +82180,21 @@ "isHttpMetadata": false }, { - "$id": "6327", + "$id": "6338", "kind": "property", "name": "completed_at", "serializedName": "completed_at", "doc": "The Unix timestamp (in seconds) for when the run was completed.", "type": { - "$id": "6328", + "$id": "6339", "kind": "nullable", "type": { - "$id": "6329", + "$id": "6340", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6330", + "$id": "6341", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82066,16 +82219,16 @@ "isHttpMetadata": false }, { - "$id": "6331", + "$id": "6342", "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": "6332", + "$id": "6343", "kind": "nullable", "type": { - "$id": "6333", + "$id": "6344", "kind": "model", "name": "RunObjectIncompleteDetails1", "namespace": "OpenAI", @@ -82084,7 +82237,7 @@ "decorators": [], "properties": [ { - "$id": "6334", + "$id": "6345", "kind": "property", "name": "reason", "serializedName": "reason", @@ -82123,13 +82276,13 @@ "isHttpMetadata": false }, { - "$id": "6335", + "$id": "6346", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model that the [assistant](/docs/api-reference/assistants) used for this run.", "type": { - "$id": "6336", + "$id": "6347", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82149,13 +82302,13 @@ "isHttpMetadata": false }, { - "$id": "6337", + "$id": "6348", "kind": "property", "name": "instructions", "serializedName": "instructions", "doc": "The instructions that the [assistant](/docs/api-reference/assistants) used for this run.", "type": { - "$id": "6338", + "$id": "6349", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82175,7 +82328,7 @@ "isHttpMetadata": false }, { - "$id": "6339", + "$id": "6350", "kind": "property", "name": "tools", "serializedName": "tools", @@ -82197,7 +82350,7 @@ "isHttpMetadata": false }, { - "$id": "6340", + "$id": "6351", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -82219,15 +82372,15 @@ "isHttpMetadata": false }, { - "$id": "6341", + "$id": "6352", "kind": "property", "name": "usage", "serializedName": "usage", "type": { - "$id": "6342", + "$id": "6353", "kind": "nullable", "type": { - "$id": "6343", + "$id": "6354", "kind": "model", "name": "RunCompletionUsage", "namespace": "OpenAI", @@ -82237,13 +82390,13 @@ "decorators": [], "properties": [ { - "$id": "6344", + "$id": "6355", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "Number of completion tokens used over the course of the run.", "type": { - "$id": "6345", + "$id": "6356", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82263,13 +82416,13 @@ "isHttpMetadata": false }, { - "$id": "6346", + "$id": "6357", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "Number of prompt tokens used over the course of the run.", "type": { - "$id": "6347", + "$id": "6358", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82289,13 +82442,13 @@ "isHttpMetadata": false }, { - "$id": "6348", + "$id": "6359", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "Total number of tokens used (prompt + completion).", "type": { - "$id": "6349", + "$id": "6360", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82332,16 +82485,16 @@ "isHttpMetadata": false }, { - "$id": "6350", + "$id": "6361", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "The sampling temperature used for this run. If not set, defaults to 1.", "type": { - "$id": "6351", + "$id": "6362", "kind": "nullable", "type": { - "$id": "6352", + "$id": "6363", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -82363,16 +82516,16 @@ "isHttpMetadata": false }, { - "$id": "6353", + "$id": "6364", "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": "6354", + "$id": "6365", "kind": "nullable", "type": { - "$id": "6355", + "$id": "6366", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -82394,16 +82547,16 @@ "isHttpMetadata": false }, { - "$id": "6356", + "$id": "6367", "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": "6357", + "$id": "6368", "kind": "nullable", "type": { - "$id": "6358", + "$id": "6369", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82425,16 +82578,16 @@ "isHttpMetadata": false }, { - "$id": "6359", + "$id": "6370", "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": "6360", + "$id": "6371", "kind": "nullable", "type": { - "$id": "6361", + "$id": "6372", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82456,15 +82609,15 @@ "isHttpMetadata": false }, { - "$id": "6362", + "$id": "6373", "kind": "property", "name": "truncation_strategy", "serializedName": "truncation_strategy", "type": { - "$id": "6363", + "$id": "6374", "kind": "nullable", "type": { - "$ref": "6256" + "$ref": "6267" }, "namespace": "OpenAI" }, @@ -82482,15 +82635,15 @@ "isHttpMetadata": false }, { - "$id": "6364", + "$id": "6375", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "6365", + "$id": "6376", "kind": "nullable", "type": { - "$ref": "6263" + "$ref": "6274" }, "namespace": "OpenAI" }, @@ -82508,17 +82661,17 @@ "isHttpMetadata": false }, { - "$id": "6366", + "$id": "6377", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "type": { - "$id": "6367", + "$id": "6378", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "6368", + "$id": "6379", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -82540,12 +82693,12 @@ "isHttpMetadata": false }, { - "$id": "6369", + "$id": "6380", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "6370", + "$id": "6381", "kind": "nullable", "type": { "$ref": "2456" @@ -82568,28 +82721,28 @@ ] }, { - "$ref": "6289" + "$ref": "6300" }, { - "$ref": "6292" + "$ref": "6303" }, { - "$ref": "6295" + "$ref": "6306" }, { - "$ref": "6300" + "$ref": "6311" }, { - "$ref": "6307" + "$ref": "6318" }, { - "$ref": "6333" + "$ref": "6344" }, { - "$ref": "6343" + "$ref": "6354" }, { - "$id": "6371", + "$id": "6382", "kind": "model", "name": "CreateRunRequest", "namespace": "OpenAI", @@ -82598,13 +82751,13 @@ "decorators": [], "properties": [ { - "$id": "6372", + "$id": "6383", "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": "6373", + "$id": "6384", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82624,13 +82777,13 @@ "isHttpMetadata": false }, { - "$id": "6374", + "$id": "6385", "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": "6375", + "$id": "6386", "kind": "nullable", "type": { "$ref": "15" @@ -82651,12 +82804,12 @@ "isHttpMetadata": false }, { - "$id": "6376", + "$id": "6387", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", "type": { - "$id": "6377", + "$id": "6388", "kind": "nullable", "type": { "$ref": "53" @@ -82677,16 +82830,16 @@ "isHttpMetadata": false }, { - "$id": "6378", + "$id": "6389", "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": "6379", + "$id": "6390", "kind": "nullable", "type": { - "$id": "6380", + "$id": "6391", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82708,16 +82861,16 @@ "isHttpMetadata": false }, { - "$id": "6381", + "$id": "6392", "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": "6382", + "$id": "6393", "kind": "nullable", "type": { - "$id": "6383", + "$id": "6394", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82739,16 +82892,16 @@ "isHttpMetadata": false }, { - "$id": "6384", + "$id": "6395", "kind": "property", "name": "additional_messages", "serializedName": "additional_messages", "doc": "Adds additional messages to the thread before creating the run.", "type": { - "$id": "6385", + "$id": "6396", "kind": "nullable", "type": { - "$ref": "6215" + "$ref": "6226" }, "namespace": "OpenAI" }, @@ -82766,13 +82919,13 @@ "isHttpMetadata": false }, { - "$id": "6386", + "$id": "6397", "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": "6387", + "$id": "6398", "kind": "nullable", "type": { "$ref": "2395" @@ -82793,7 +82946,7 @@ "isHttpMetadata": false }, { - "$id": "6388", + "$id": "6399", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -82815,16 +82968,16 @@ "isHttpMetadata": false }, { - "$id": "6389", + "$id": "6400", "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": "6390", + "$id": "6401", "kind": "nullable", "type": { - "$id": "6391", + "$id": "6402", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -82846,16 +82999,16 @@ "isHttpMetadata": false }, { - "$id": "6392", + "$id": "6403", "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": "6393", + "$id": "6404", "kind": "nullable", "type": { - "$id": "6394", + "$id": "6405", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -82877,16 +83030,16 @@ "isHttpMetadata": false }, { - "$id": "6395", + "$id": "6406", "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": "6396", + "$id": "6407", "kind": "nullable", "type": { - "$id": "6397", + "$id": "6408", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -82908,16 +83061,16 @@ "isHttpMetadata": false }, { - "$id": "6398", + "$id": "6409", "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": "6399", + "$id": "6410", "kind": "nullable", "type": { - "$id": "6400", + "$id": "6411", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82939,16 +83092,16 @@ "isHttpMetadata": false }, { - "$id": "6401", + "$id": "6412", "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": "6402", + "$id": "6413", "kind": "nullable", "type": { - "$id": "6403", + "$id": "6414", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82970,15 +83123,15 @@ "isHttpMetadata": false }, { - "$id": "6404", + "$id": "6415", "kind": "property", "name": "truncation_strategy", "serializedName": "truncation_strategy", "type": { - "$id": "6405", + "$id": "6416", "kind": "nullable", "type": { - "$ref": "6256" + "$ref": "6267" }, "namespace": "OpenAI" }, @@ -82996,15 +83149,15 @@ "isHttpMetadata": false }, { - "$id": "6406", + "$id": "6417", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "6407", + "$id": "6418", "kind": "nullable", "type": { - "$ref": "6263" + "$ref": "6274" }, "namespace": "OpenAI" }, @@ -83022,17 +83175,17 @@ "isHttpMetadata": false }, { - "$id": "6408", + "$id": "6419", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "type": { - "$id": "6409", + "$id": "6420", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "6410", + "$id": "6421", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -83054,12 +83207,12 @@ "isHttpMetadata": false }, { - "$id": "6411", + "$id": "6422", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "6412", + "$id": "6423", "kind": "nullable", "type": { "$ref": "2456" @@ -83082,7 +83235,7 @@ ] }, { - "$id": "6413", + "$id": "6424", "kind": "model", "name": "ListRunsResponse", "namespace": "OpenAI", @@ -83091,7 +83244,7 @@ "decorators": [], "properties": [ { - "$id": "6414", + "$id": "6425", "kind": "property", "name": "object", "serializedName": "object", @@ -83112,16 +83265,16 @@ "isHttpMetadata": false }, { - "$id": "6415", + "$id": "6426", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6416", + "$id": "6427", "kind": "array", "name": "ArrayRunObject", "valueType": { - "$ref": "6275" + "$ref": "6286" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -83140,12 +83293,12 @@ "isHttpMetadata": false }, { - "$id": "6417", + "$id": "6428", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6418", + "$id": "6429", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83165,12 +83318,12 @@ "isHttpMetadata": false }, { - "$id": "6419", + "$id": "6430", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6420", + "$id": "6431", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83190,12 +83343,12 @@ "isHttpMetadata": false }, { - "$id": "6421", + "$id": "6432", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6422", + "$id": "6433", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -83217,7 +83370,7 @@ ] }, { - "$id": "6423", + "$id": "6434", "kind": "model", "name": "ModifyRunRequest", "namespace": "OpenAI", @@ -83226,7 +83379,7 @@ "decorators": [], "properties": [ { - "$id": "6424", + "$id": "6435", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -83250,7 +83403,7 @@ ] }, { - "$id": "6425", + "$id": "6436", "kind": "model", "name": "SubmitToolOutputsRunRequest", "namespace": "OpenAI", @@ -83259,17 +83412,17 @@ "decorators": [], "properties": [ { - "$id": "6426", + "$id": "6437", "kind": "property", "name": "tool_outputs", "serializedName": "tool_outputs", "doc": "A list of tools for which the outputs are being submitted.", "type": { - "$id": "6427", + "$id": "6438", "kind": "array", "name": "Array38", "valueType": { - "$id": "6428", + "$id": "6439", "kind": "model", "name": "SubmitToolOutputsRunRequestToolOutput", "namespace": "OpenAI", @@ -83278,13 +83431,13 @@ "decorators": [], "properties": [ { - "$id": "6429", + "$id": "6440", "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": "6430", + "$id": "6441", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83304,13 +83457,13 @@ "isHttpMetadata": false }, { - "$id": "6431", + "$id": "6442", "kind": "property", "name": "output", "serializedName": "output", "doc": "The output of the tool call to be submitted to continue the run.", "type": { - "$id": "6432", + "$id": "6443", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83348,16 +83501,16 @@ "isHttpMetadata": false }, { - "$id": "6433", + "$id": "6444", "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": "6434", + "$id": "6445", "kind": "nullable", "type": { - "$id": "6435", + "$id": "6446", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -83381,10 +83534,10 @@ ] }, { - "$ref": "6428" + "$ref": "6439" }, { - "$id": "6436", + "$id": "6447", "kind": "model", "name": "ListRunStepsResponse", "namespace": "OpenAI", @@ -83393,7 +83546,7 @@ "decorators": [], "properties": [ { - "$id": "6437", + "$id": "6448", "kind": "property", "name": "object", "serializedName": "object", @@ -83414,16 +83567,16 @@ "isHttpMetadata": false }, { - "$id": "6438", + "$id": "6449", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6439", + "$id": "6450", "kind": "array", "name": "ArrayRunStepObject", "valueType": { - "$id": "6440", + "$id": "6451", "kind": "model", "name": "RunStepObject", "namespace": "OpenAI", @@ -83433,13 +83586,13 @@ "decorators": [], "properties": [ { - "$id": "6441", + "$id": "6452", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier of the run step, which can be referenced in API endpoints.", "type": { - "$id": "6442", + "$id": "6453", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83459,7 +83612,7 @@ "isHttpMetadata": false }, { - "$id": "6443", + "$id": "6454", "kind": "property", "name": "object", "serializedName": "object", @@ -83481,18 +83634,18 @@ "isHttpMetadata": false }, { - "$id": "6444", + "$id": "6455", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the run step was created.", "type": { - "$id": "6445", + "$id": "6456", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6446", + "$id": "6457", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -83515,13 +83668,13 @@ "isHttpMetadata": false }, { - "$id": "6447", + "$id": "6458", "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": "6448", + "$id": "6459", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83541,13 +83694,13 @@ "isHttpMetadata": false }, { - "$id": "6449", + "$id": "6460", "kind": "property", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "6450", + "$id": "6461", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83567,13 +83720,13 @@ "isHttpMetadata": false }, { - "$id": "6451", + "$id": "6462", "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": "6452", + "$id": "6463", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83593,7 +83746,7 @@ "isHttpMetadata": false }, { - "$id": "6453", + "$id": "6464", "kind": "property", "name": "type", "serializedName": "type", @@ -83615,7 +83768,7 @@ "isHttpMetadata": false }, { - "$id": "6454", + "$id": "6465", "kind": "property", "name": "status", "serializedName": "status", @@ -83637,13 +83790,13 @@ "isHttpMetadata": false }, { - "$id": "6455", + "$id": "6466", "kind": "property", "name": "step_details", "serializedName": "step_details", "doc": "The details of the run step.", "type": { - "$id": "6456", + "$id": "6467", "kind": "model", "name": "RunStepObjectStepDetails", "namespace": "OpenAI", @@ -83652,7 +83805,7 @@ "doc": "Abstractly represents a run step details object.", "decorators": [], "discriminatorProperty": { - "$id": "6457", + "$id": "6468", "kind": "property", "name": "type", "serializedName": "type", @@ -83675,12 +83828,12 @@ }, "properties": [ { - "$ref": "6457" + "$ref": "6468" } ], "discriminatedSubtypes": { "message_creation": { - "$id": "6458", + "$id": "6469", "kind": "model", "name": "RunStepDetailsMessageCreationObject", "namespace": "OpenAI", @@ -83690,17 +83843,17 @@ "discriminatorValue": "message_creation", "decorators": [], "baseModel": { - "$ref": "6456" + "$ref": "6467" }, "properties": [ { - "$id": "6459", + "$id": "6470", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `message_creation`.", "type": { - "$id": "6460", + "$id": "6471", "kind": "enumvalue", "name": "message_creation", "value": "message_creation", @@ -83708,14 +83861,14 @@ "$ref": "1042" }, "enumType": { - "$id": "6461", + "$id": "6472", "kind": "enum", "decorators": [], "name": "RunStepDetailsType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6462", + "$id": "6473", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -83724,29 +83877,29 @@ }, "values": [ { - "$id": "6463", + "$id": "6474", "kind": "enumvalue", "decorators": [], "name": "message_creation", "value": "message_creation", "valueType": { - "$ref": "6462" + "$ref": "6473" }, "enumType": { - "$ref": "6461" + "$ref": "6472" } }, { - "$id": "6464", + "$id": "6475", "kind": "enumvalue", "decorators": [], "name": "tool_calls", "value": "tool_calls", "valueType": { - "$ref": "6462" + "$ref": "6473" }, "enumType": { - "$ref": "6461" + "$ref": "6472" } } ], @@ -83775,12 +83928,12 @@ "isHttpMetadata": false }, { - "$id": "6465", + "$id": "6476", "kind": "property", "name": "message_creation", "serializedName": "message_creation", "type": { - "$id": "6466", + "$id": "6477", "kind": "model", "name": "RunStepDetailsMessageCreationObjectMessageCreation", "namespace": "OpenAI", @@ -83789,13 +83942,13 @@ "decorators": [], "properties": [ { - "$id": "6467", + "$id": "6478", "kind": "property", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message that was created by this run step.", "type": { - "$id": "6468", + "$id": "6479", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83832,7 +83985,7 @@ ] }, "tool_calls": { - "$id": "6469", + "$id": "6480", "kind": "model", "name": "RunStepDetailsToolCallsObject", "namespace": "OpenAI", @@ -83842,17 +83995,17 @@ "discriminatorValue": "tool_calls", "decorators": [], "baseModel": { - "$ref": "6456" + "$ref": "6467" }, "properties": [ { - "$id": "6470", + "$id": "6481", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `tool_calls`.", "type": { - "$id": "6471", + "$id": "6482", "kind": "enumvalue", "name": "tool_calls", "value": "tool_calls", @@ -83860,7 +84013,7 @@ "$ref": "1042" }, "enumType": { - "$ref": "6461" + "$ref": "6472" }, "decorators": [] }, @@ -83878,17 +84031,17 @@ "isHttpMetadata": false }, { - "$id": "6472", + "$id": "6483", "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": "6473", + "$id": "6484", "kind": "array", "name": "ArrayRunStepDetailsToolCallsObjectToolCallsObject", "valueType": { - "$id": "6474", + "$id": "6485", "kind": "model", "name": "RunStepDetailsToolCallsObjectToolCallsObject", "namespace": "OpenAI", @@ -83897,7 +84050,7 @@ "doc": "Abstractly represents a run step tool call details inner object.", "decorators": [], "discriminatorProperty": { - "$id": "6475", + "$id": "6486", "kind": "property", "name": "type", "serializedName": "type", @@ -83920,16 +84073,16 @@ }, "properties": [ { - "$ref": "6475" + "$ref": "6486" }, { - "$id": "6476", + "$id": "6487", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the tool call object.", "type": { - "$id": "6477", + "$id": "6488", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83951,7 +84104,7 @@ ], "discriminatedSubtypes": { "code_interpreter": { - "$id": "6478", + "$id": "6489", "kind": "model", "name": "RunStepDetailsToolCallsCodeObject", "namespace": "OpenAI", @@ -83961,17 +84114,17 @@ "discriminatorValue": "code_interpreter", "decorators": [], "baseModel": { - "$ref": "6474" + "$ref": "6485" }, "properties": [ { - "$id": "6479", + "$id": "6490", "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": "6480", + "$id": "6491", "kind": "enumvalue", "name": "code_interpreter", "value": "code_interpreter", @@ -83979,14 +84132,14 @@ "$ref": "1046" }, "enumType": { - "$id": "6481", + "$id": "6492", "kind": "enum", "decorators": [], "name": "RunStepDetailsToolCallType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6482", + "$id": "6493", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -83995,42 +84148,42 @@ }, "values": [ { - "$id": "6483", + "$id": "6494", "kind": "enumvalue", "decorators": [], "name": "code_interpreter", "value": "code_interpreter", "valueType": { - "$ref": "6482" + "$ref": "6493" }, "enumType": { - "$ref": "6481" + "$ref": "6492" } }, { - "$id": "6484", + "$id": "6495", "kind": "enumvalue", "decorators": [], "name": "file_search", "value": "file_search", "valueType": { - "$ref": "6482" + "$ref": "6493" }, "enumType": { - "$ref": "6481" + "$ref": "6492" } }, { - "$id": "6485", + "$id": "6496", "kind": "enumvalue", "decorators": [], "name": "function", "value": "function", "valueType": { - "$ref": "6482" + "$ref": "6493" }, "enumType": { - "$ref": "6481" + "$ref": "6492" } } ], @@ -84059,13 +84212,13 @@ "isHttpMetadata": false }, { - "$id": "6486", + "$id": "6497", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "doc": "The Code Interpreter tool call definition.", "type": { - "$id": "6487", + "$id": "6498", "kind": "model", "name": "RunStepDetailsToolCallsCodeObjectCodeInterpreter", "namespace": "OpenAI", @@ -84074,13 +84227,13 @@ "decorators": [], "properties": [ { - "$id": "6488", + "$id": "6499", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input to the Code Interpreter tool call.", "type": { - "$id": "6489", + "$id": "6500", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84100,17 +84253,17 @@ "isHttpMetadata": false }, { - "$id": "6490", + "$id": "6501", "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": "6491", + "$id": "6502", "kind": "array", "name": "ArrayRunStepDetailsToolCallsCodeObjectCodeInterpreterOutputsObject", "valueType": { - "$id": "6492", + "$id": "6503", "kind": "model", "name": "RunStepDetailsToolCallsCodeObjectCodeInterpreterOutputsObject", "namespace": "OpenAI", @@ -84119,7 +84272,7 @@ "doc": "Abstractly represents a run step tool call details code interpreter output.", "decorators": [], "discriminatorProperty": { - "$id": "6493", + "$id": "6504", "kind": "property", "name": "type", "serializedName": "type", @@ -84142,12 +84295,12 @@ }, "properties": [ { - "$ref": "6493" + "$ref": "6504" } ], "discriminatedSubtypes": { "logs": { - "$id": "6494", + "$id": "6505", "kind": "model", "name": "RunStepDetailsToolCallsCodeOutputLogsObject", "namespace": "OpenAI", @@ -84157,17 +84310,17 @@ "discriminatorValue": "logs", "decorators": [], "baseModel": { - "$ref": "6492" + "$ref": "6503" }, "properties": [ { - "$id": "6495", + "$id": "6506", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `logs`.", "type": { - "$id": "6496", + "$id": "6507", "kind": "enumvalue", "name": "logs", "value": "logs", @@ -84175,14 +84328,14 @@ "$ref": "1051" }, "enumType": { - "$id": "6497", + "$id": "6508", "kind": "enum", "decorators": [], "name": "RunStepDetailsCodeInterpreterOutputType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6498", + "$id": "6509", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -84191,29 +84344,29 @@ }, "values": [ { - "$id": "6499", + "$id": "6510", "kind": "enumvalue", "decorators": [], "name": "logs", "value": "logs", "valueType": { - "$ref": "6498" + "$ref": "6509" }, "enumType": { - "$ref": "6497" + "$ref": "6508" } }, { - "$id": "6500", + "$id": "6511", "kind": "enumvalue", "decorators": [], "name": "image", "value": "image", "valueType": { - "$ref": "6498" + "$ref": "6509" }, "enumType": { - "$ref": "6497" + "$ref": "6508" } } ], @@ -84242,13 +84395,13 @@ "isHttpMetadata": false }, { - "$id": "6501", + "$id": "6512", "kind": "property", "name": "logs", "serializedName": "logs", "doc": "The text output from the Code Interpreter tool call.", "type": { - "$id": "6502", + "$id": "6513", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84270,7 +84423,7 @@ ] }, "image": { - "$id": "6503", + "$id": "6514", "kind": "model", "name": "RunStepDetailsToolCallsCodeOutputImageObject", "namespace": "OpenAI", @@ -84279,17 +84432,17 @@ "discriminatorValue": "image", "decorators": [], "baseModel": { - "$ref": "6492" + "$ref": "6503" }, "properties": [ { - "$id": "6504", + "$id": "6515", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `image`.", "type": { - "$id": "6505", + "$id": "6516", "kind": "enumvalue", "name": "image", "value": "image", @@ -84297,7 +84450,7 @@ "$ref": "1051" }, "enumType": { - "$ref": "6497" + "$ref": "6508" }, "decorators": [] }, @@ -84315,12 +84468,12 @@ "isHttpMetadata": false }, { - "$id": "6506", + "$id": "6517", "kind": "property", "name": "image", "serializedName": "image", "type": { - "$id": "6507", + "$id": "6518", "kind": "model", "name": "RunStepDetailsToolCallsCodeOutputImageObjectImage", "namespace": "OpenAI", @@ -84329,13 +84482,13 @@ "decorators": [], "properties": [ { - "$id": "6508", + "$id": "6519", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The [file](/docs/api-reference/files) ID of the image.", "type": { - "$id": "6509", + "$id": "6520", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84407,7 +84560,7 @@ ] }, "file_search": { - "$id": "6510", + "$id": "6521", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchObject", "namespace": "OpenAI", @@ -84416,17 +84569,17 @@ "discriminatorValue": "file_search", "decorators": [], "baseModel": { - "$ref": "6474" + "$ref": "6485" }, "properties": [ { - "$id": "6511", + "$id": "6522", "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": "6512", + "$id": "6523", "kind": "enumvalue", "name": "file_search", "value": "file_search", @@ -84434,7 +84587,7 @@ "$ref": "1046" }, "enumType": { - "$ref": "6481" + "$ref": "6492" }, "decorators": [] }, @@ -84452,13 +84605,13 @@ "isHttpMetadata": false }, { - "$id": "6513", + "$id": "6524", "kind": "property", "name": "file_search", "serializedName": "file_search", "doc": "For now, this is always going to be an empty object.", "type": { - "$id": "6514", + "$id": "6525", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchObjectFileSearch", "namespace": "OpenAI", @@ -84467,12 +84620,12 @@ "decorators": [], "properties": [ { - "$id": "6515", + "$id": "6526", "kind": "property", "name": "ranking_options", "serializedName": "ranking_options", "type": { - "$id": "6516", + "$id": "6527", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchRankingOptionsObject", "namespace": "OpenAI", @@ -84482,7 +84635,7 @@ "decorators": [], "properties": [ { - "$id": "6517", + "$id": "6528", "kind": "property", "name": "ranker", "serializedName": "ranker", @@ -84503,13 +84656,13 @@ "isHttpMetadata": false }, { - "$id": "6518", + "$id": "6529", "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": "6519", + "$id": "6530", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -84544,17 +84697,17 @@ "isHttpMetadata": false }, { - "$id": "6520", + "$id": "6531", "kind": "property", "name": "results", "serializedName": "results", "doc": "The results of the file search.", "type": { - "$id": "6521", + "$id": "6532", "kind": "array", "name": "ArrayRunStepDetailsToolCallsFileSearchResultObject", "valueType": { - "$id": "6522", + "$id": "6533", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchResultObject", "namespace": "OpenAI", @@ -84564,13 +84717,13 @@ "decorators": [], "properties": [ { - "$id": "6523", + "$id": "6534", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file that result was found in.", "type": { - "$id": "6524", + "$id": "6535", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84590,13 +84743,13 @@ "isHttpMetadata": false }, { - "$id": "6525", + "$id": "6536", "kind": "property", "name": "file_name", "serializedName": "file_name", "doc": "The name of the file that result was found in.", "type": { - "$id": "6526", + "$id": "6537", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84616,13 +84769,13 @@ "isHttpMetadata": false }, { - "$id": "6527", + "$id": "6538", "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": "6528", + "$id": "6539", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -84642,17 +84795,17 @@ "isHttpMetadata": false }, { - "$id": "6529", + "$id": "6540", "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": "6530", + "$id": "6541", "kind": "array", "name": "Array39", "valueType": { - "$id": "6531", + "$id": "6542", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchResultObjectContent", "namespace": "OpenAI", @@ -84661,13 +84814,13 @@ "decorators": [], "properties": [ { - "$id": "6532", + "$id": "6543", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content.", "type": { - "$id": "6533", + "$id": "6544", "kind": "enumvalue", "name": "text", "value": "text", @@ -84675,14 +84828,14 @@ "$ref": "1458" }, "enumType": { - "$id": "6534", + "$id": "6545", "kind": "enum", "decorators": [], "name": "RunStepDetailsToolCallsFileSearchResultObjectContentType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6535", + "$id": "6546", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -84691,16 +84844,16 @@ }, "values": [ { - "$id": "6536", + "$id": "6547", "kind": "enumvalue", "decorators": [], "name": "text", "value": "text", "enumType": { - "$ref": "6534" + "$ref": "6545" }, "valueType": { - "$ref": "6535" + "$ref": "6546" } } ], @@ -84729,13 +84882,13 @@ "isHttpMetadata": false }, { - "$id": "6537", + "$id": "6548", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content of the file.", "type": { - "$id": "6538", + "$id": "6549", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84808,7 +84961,7 @@ ] }, "function": { - "$id": "6539", + "$id": "6550", "kind": "model", "name": "RunStepDetailsToolCallsFunctionObject", "namespace": "OpenAI", @@ -84817,17 +84970,17 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "6474" + "$ref": "6485" }, "properties": [ { - "$id": "6540", + "$id": "6551", "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": "6541", + "$id": "6552", "kind": "enumvalue", "name": "function", "value": "function", @@ -84835,7 +84988,7 @@ "$ref": "1046" }, "enumType": { - "$ref": "6481" + "$ref": "6492" }, "decorators": [] }, @@ -84853,13 +85006,13 @@ "isHttpMetadata": false }, { - "$id": "6542", + "$id": "6553", "kind": "property", "name": "function", "serializedName": "function", "doc": "The definition of the function that was called.", "type": { - "$id": "6543", + "$id": "6554", "kind": "model", "name": "RunStepDetailsToolCallsFunctionObjectFunction", "namespace": "OpenAI", @@ -84868,13 +85021,13 @@ "decorators": [], "properties": [ { - "$id": "6544", + "$id": "6555", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function.", "type": { - "$id": "6545", + "$id": "6556", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84894,13 +85047,13 @@ "isHttpMetadata": false }, { - "$id": "6546", + "$id": "6557", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "The arguments passed to the function.", "type": { - "$id": "6547", + "$id": "6558", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84920,16 +85073,16 @@ "isHttpMetadata": false }, { - "$id": "6548", + "$id": "6559", "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": "6549", + "$id": "6560", "kind": "nullable", "type": { - "$id": "6550", + "$id": "6561", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85003,16 +85156,16 @@ "isHttpMetadata": false }, { - "$id": "6551", + "$id": "6562", "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": "6552", + "$id": "6563", "kind": "nullable", "type": { - "$id": "6553", + "$id": "6564", "kind": "model", "name": "RunStepObjectLastError1", "namespace": "OpenAI", @@ -85021,7 +85174,7 @@ "decorators": [], "properties": [ { - "$id": "6554", + "$id": "6565", "kind": "property", "name": "code", "serializedName": "code", @@ -85043,13 +85196,13 @@ "isHttpMetadata": false }, { - "$id": "6555", + "$id": "6566", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "6556", + "$id": "6567", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85086,21 +85239,21 @@ "isHttpMetadata": false }, { - "$id": "6557", + "$id": "6568", "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": "6558", + "$id": "6569", "kind": "nullable", "type": { - "$id": "6559", + "$id": "6570", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6560", + "$id": "6571", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85125,21 +85278,21 @@ "isHttpMetadata": false }, { - "$id": "6561", + "$id": "6572", "kind": "property", "name": "cancelled_at", "serializedName": "cancelled_at", "doc": "The Unix timestamp (in seconds) for when the run step was cancelled.", "type": { - "$id": "6562", + "$id": "6573", "kind": "nullable", "type": { - "$id": "6563", + "$id": "6574", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6564", + "$id": "6575", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85164,21 +85317,21 @@ "isHttpMetadata": false }, { - "$id": "6565", + "$id": "6576", "kind": "property", "name": "failed_at", "serializedName": "failed_at", "doc": "The Unix timestamp (in seconds) for when the run step failed.", "type": { - "$id": "6566", + "$id": "6577", "kind": "nullable", "type": { - "$id": "6567", + "$id": "6578", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6568", + "$id": "6579", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85203,21 +85356,21 @@ "isHttpMetadata": false }, { - "$id": "6569", + "$id": "6580", "kind": "property", "name": "completed_at", "serializedName": "completed_at", "doc": "The Unix timestamp (in seconds) for when the run step completed.", "type": { - "$id": "6570", + "$id": "6581", "kind": "nullable", "type": { - "$id": "6571", + "$id": "6582", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6572", + "$id": "6583", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85242,7 +85395,7 @@ "isHttpMetadata": false }, { - "$id": "6573", + "$id": "6584", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -85264,15 +85417,15 @@ "isHttpMetadata": false }, { - "$id": "6574", + "$id": "6585", "kind": "property", "name": "usage", "serializedName": "usage", "type": { - "$id": "6575", + "$id": "6586", "kind": "nullable", "type": { - "$id": "6576", + "$id": "6587", "kind": "model", "name": "RunStepCompletionUsage", "namespace": "OpenAI", @@ -85282,13 +85435,13 @@ "decorators": [], "properties": [ { - "$id": "6577", + "$id": "6588", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "Number of completion tokens used over the course of the run step.", "type": { - "$id": "6578", + "$id": "6589", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85308,13 +85461,13 @@ "isHttpMetadata": false }, { - "$id": "6579", + "$id": "6590", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "Number of prompt tokens used over the course of the run step.", "type": { - "$id": "6580", + "$id": "6591", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85334,13 +85487,13 @@ "isHttpMetadata": false }, { - "$id": "6581", + "$id": "6592", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "Total number of tokens used (prompt + completion).", "type": { - "$id": "6582", + "$id": "6593", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85395,12 +85548,12 @@ "isHttpMetadata": false }, { - "$id": "6583", + "$id": "6594", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6584", + "$id": "6595", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85420,12 +85573,12 @@ "isHttpMetadata": false }, { - "$id": "6585", + "$id": "6596", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6586", + "$id": "6597", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85445,12 +85598,12 @@ "isHttpMetadata": false }, { - "$id": "6587", + "$id": "6598", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6588", + "$id": "6599", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -85472,70 +85625,70 @@ ] }, { - "$ref": "6440" + "$ref": "6451" }, { - "$ref": "6456" + "$ref": "6467" }, { - "$ref": "6458" + "$ref": "6469" }, { - "$ref": "6466" + "$ref": "6477" }, { - "$ref": "6469" + "$ref": "6480" }, { - "$ref": "6474" + "$ref": "6485" }, { - "$ref": "6478" + "$ref": "6489" }, { - "$ref": "6487" + "$ref": "6498" }, { - "$ref": "6492" + "$ref": "6503" }, { - "$ref": "6494" + "$ref": "6505" }, { - "$ref": "6503" + "$ref": "6514" }, { - "$ref": "6507" + "$ref": "6518" }, { - "$ref": "6510" + "$ref": "6521" }, { - "$ref": "6514" + "$ref": "6525" }, { - "$ref": "6516" + "$ref": "6527" }, { - "$ref": "6522" + "$ref": "6533" }, { - "$ref": "6531" + "$ref": "6542" }, { - "$ref": "6539" + "$ref": "6550" }, { - "$ref": "6543" + "$ref": "6554" }, { - "$ref": "6553" + "$ref": "6564" }, { - "$ref": "6576" + "$ref": "6587" }, { - "$id": "6589", + "$id": "6600", "kind": "model", "name": "ThreadObject", "namespace": "OpenAI", @@ -85545,13 +85698,13 @@ "decorators": [], "properties": [ { - "$id": "6590", + "$id": "6601", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6591", + "$id": "6602", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85571,7 +85724,7 @@ "isHttpMetadata": false }, { - "$id": "6592", + "$id": "6603", "kind": "property", "name": "object", "serializedName": "object", @@ -85593,18 +85746,18 @@ "isHttpMetadata": false }, { - "$id": "6593", + "$id": "6604", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the thread was created.", "type": { - "$id": "6594", + "$id": "6605", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6595", + "$id": "6606", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85627,16 +85780,16 @@ "isHttpMetadata": false }, { - "$id": "6596", + "$id": "6607", "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": "6597", + "$id": "6608", "kind": "nullable", "type": { - "$id": "6598", + "$id": "6609", "kind": "model", "name": "ThreadObjectToolResources1", "namespace": "OpenAI", @@ -85645,12 +85798,12 @@ "decorators": [], "properties": [ { - "$id": "6599", + "$id": "6610", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "6600", + "$id": "6611", "kind": "model", "name": "ThreadObjectToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -85659,7 +85812,7 @@ "decorators": [], "properties": [ { - "$id": "6601", + "$id": "6612", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -85696,12 +85849,12 @@ "isHttpMetadata": false }, { - "$id": "6602", + "$id": "6613", "kind": "property", "name": "file_search", "serializedName": "file_search", "type": { - "$id": "6603", + "$id": "6614", "kind": "model", "name": "ThreadObjectToolResourcesFileSearch", "namespace": "OpenAI", @@ -85710,7 +85863,7 @@ "decorators": [], "properties": [ { - "$id": "6604", + "$id": "6615", "kind": "property", "name": "vector_store_ids", "serializedName": "vector_store_ids", @@ -85764,7 +85917,7 @@ "isHttpMetadata": false }, { - "$id": "6605", + "$id": "6616", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -85788,16 +85941,16 @@ ] }, { - "$ref": "6598" + "$ref": "6609" }, { - "$ref": "6600" + "$ref": "6611" }, { - "$ref": "6603" + "$ref": "6614" }, { - "$id": "6606", + "$id": "6617", "kind": "model", "name": "ModifyThreadRequest", "namespace": "OpenAI", @@ -85806,16 +85959,16 @@ "decorators": [], "properties": [ { - "$id": "6607", + "$id": "6618", "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": "6608", + "$id": "6619", "kind": "nullable", "type": { - "$id": "6609", + "$id": "6620", "kind": "model", "name": "ModifyThreadRequestToolResources1", "namespace": "OpenAI", @@ -85824,12 +85977,12 @@ "decorators": [], "properties": [ { - "$id": "6610", + "$id": "6621", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "6611", + "$id": "6622", "kind": "model", "name": "ModifyThreadRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -85838,7 +85991,7 @@ "decorators": [], "properties": [ { - "$id": "6612", + "$id": "6623", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -85875,7 +86028,7 @@ "isHttpMetadata": false }, { - "$id": "6613", + "$id": "6624", "kind": "property", "name": "file_search", "serializedName": "file_search", @@ -85913,7 +86066,7 @@ "isHttpMetadata": false }, { - "$id": "6614", + "$id": "6625", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -85937,13 +86090,13 @@ ] }, { - "$ref": "6609" + "$ref": "6620" }, { - "$ref": "6611" + "$ref": "6622" }, { - "$id": "6615", + "$id": "6626", "kind": "model", "name": "DeleteThreadResponse", "namespace": "OpenAI", @@ -85952,12 +86105,12 @@ "decorators": [], "properties": [ { - "$id": "6616", + "$id": "6627", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6617", + "$id": "6628", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85977,12 +86130,12 @@ "isHttpMetadata": false }, { - "$id": "6618", + "$id": "6629", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6619", + "$id": "6630", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -86002,7 +86155,7 @@ "isHttpMetadata": false }, { - "$id": "6620", + "$id": "6631", "kind": "property", "name": "object", "serializedName": "object", @@ -86025,7 +86178,7 @@ ] }, { - "$id": "6621", + "$id": "6632", "kind": "model", "name": "ListVectorStoresResponse", "namespace": "OpenAI", @@ -86034,7 +86187,7 @@ "decorators": [], "properties": [ { - "$id": "6622", + "$id": "6633", "kind": "property", "name": "object", "serializedName": "object", @@ -86055,16 +86208,16 @@ "isHttpMetadata": false }, { - "$id": "6623", + "$id": "6634", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6624", + "$id": "6635", "kind": "array", "name": "ArrayVectorStoreObject", "valueType": { - "$id": "6625", + "$id": "6636", "kind": "model", "name": "VectorStoreObject", "namespace": "OpenAI", @@ -86074,13 +86227,13 @@ "decorators": [], "properties": [ { - "$id": "6626", + "$id": "6637", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6627", + "$id": "6638", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86100,7 +86253,7 @@ "isHttpMetadata": false }, { - "$id": "6628", + "$id": "6639", "kind": "property", "name": "object", "serializedName": "object", @@ -86122,18 +86275,18 @@ "isHttpMetadata": false }, { - "$id": "6629", + "$id": "6640", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the vector store was created.", "type": { - "$id": "6630", + "$id": "6641", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6631", + "$id": "6642", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86156,13 +86309,13 @@ "isHttpMetadata": false }, { - "$id": "6632", + "$id": "6643", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the vector store.", "type": { - "$id": "6633", + "$id": "6644", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86182,13 +86335,13 @@ "isHttpMetadata": false }, { - "$id": "6634", + "$id": "6645", "kind": "property", "name": "usage_bytes", "serializedName": "usage_bytes", "doc": "The total number of bytes used by the files in the vector store.", "type": { - "$id": "6635", + "$id": "6646", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86208,12 +86361,12 @@ "isHttpMetadata": false }, { - "$id": "6636", + "$id": "6647", "kind": "property", "name": "file_counts", "serializedName": "file_counts", "type": { - "$id": "6637", + "$id": "6648", "kind": "model", "name": "VectorStoreObjectFileCounts", "namespace": "OpenAI", @@ -86222,13 +86375,13 @@ "decorators": [], "properties": [ { - "$id": "6638", + "$id": "6649", "kind": "property", "name": "in_progress", "serializedName": "in_progress", "doc": "The number of files that are currently being processed.", "type": { - "$id": "6639", + "$id": "6650", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86248,13 +86401,13 @@ "isHttpMetadata": false }, { - "$id": "6640", + "$id": "6651", "kind": "property", "name": "completed", "serializedName": "completed", "doc": "The number of files that have been successfully processed.", "type": { - "$id": "6641", + "$id": "6652", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86274,13 +86427,13 @@ "isHttpMetadata": false }, { - "$id": "6642", + "$id": "6653", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "The number of files that have failed to process.", "type": { - "$id": "6643", + "$id": "6654", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86300,13 +86453,13 @@ "isHttpMetadata": false }, { - "$id": "6644", + "$id": "6655", "kind": "property", "name": "cancelled", "serializedName": "cancelled", "doc": "The number of files that were cancelled.", "type": { - "$id": "6645", + "$id": "6656", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86326,13 +86479,13 @@ "isHttpMetadata": false }, { - "$id": "6646", + "$id": "6657", "kind": "property", "name": "total", "serializedName": "total", "doc": "The total number of files.", "type": { - "$id": "6647", + "$id": "6658", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86367,7 +86520,7 @@ "isHttpMetadata": false }, { - "$id": "6648", + "$id": "6659", "kind": "property", "name": "status", "serializedName": "status", @@ -86389,12 +86542,12 @@ "isHttpMetadata": false }, { - "$id": "6649", + "$id": "6660", "kind": "property", "name": "expires_after", "serializedName": "expires_after", "type": { - "$id": "6650", + "$id": "6661", "kind": "model", "name": "VectorStoreExpirationAfter", "namespace": "OpenAI", @@ -86404,13 +86557,13 @@ "decorators": [], "properties": [ { - "$id": "6651", + "$id": "6662", "kind": "property", "name": "anchor", "serializedName": "anchor", "doc": "Anchor timestamp after which the expiration policy applies. Supported anchors: `last_active_at`.", "type": { - "$id": "6652", + "$id": "6663", "kind": "enumvalue", "name": "last_active_at", "value": "last_active_at", @@ -86418,14 +86571,14 @@ "$ref": "1461" }, "enumType": { - "$id": "6653", + "$id": "6664", "kind": "enum", "decorators": [], "name": "VectorStoreExpirationAnchor", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6654", + "$id": "6665", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -86434,16 +86587,16 @@ }, "values": [ { - "$id": "6655", + "$id": "6666", "kind": "enumvalue", "decorators": [], "name": "last_active_at", "value": "last_active_at", "enumType": { - "$ref": "6653" + "$ref": "6664" }, "valueType": { - "$ref": "6654" + "$ref": "6665" } } ], @@ -86472,13 +86625,13 @@ "isHttpMetadata": false }, { - "$id": "6656", + "$id": "6667", "kind": "property", "name": "days", "serializedName": "days", "doc": "The number of days after the anchor time that the vector store will expire.", "type": { - "$id": "6657", + "$id": "6668", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86513,21 +86666,21 @@ "isHttpMetadata": false }, { - "$id": "6658", + "$id": "6669", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the vector store will expire.", "type": { - "$id": "6659", + "$id": "6670", "kind": "nullable", "type": { - "$id": "6660", + "$id": "6671", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6661", + "$id": "6672", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86552,21 +86705,21 @@ "isHttpMetadata": false }, { - "$id": "6662", + "$id": "6673", "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": "6663", + "$id": "6674", "kind": "nullable", "type": { - "$id": "6664", + "$id": "6675", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6665", + "$id": "6676", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86591,7 +86744,7 @@ "isHttpMetadata": false }, { - "$id": "6666", + "$id": "6677", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -86631,12 +86784,12 @@ "isHttpMetadata": false }, { - "$id": "6667", + "$id": "6678", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6668", + "$id": "6679", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86656,12 +86809,12 @@ "isHttpMetadata": false }, { - "$id": "6669", + "$id": "6680", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6670", + "$id": "6681", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86681,12 +86834,12 @@ "isHttpMetadata": false }, { - "$id": "6671", + "$id": "6682", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6672", + "$id": "6683", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -86708,16 +86861,16 @@ ] }, { - "$ref": "6625" + "$ref": "6636" }, { - "$ref": "6637" + "$ref": "6648" }, { - "$ref": "6650" + "$ref": "6661" }, { - "$id": "6673", + "$id": "6684", "kind": "model", "name": "CreateVectorStoreRequest", "namespace": "OpenAI", @@ -86726,7 +86879,7 @@ "decorators": [], "properties": [ { - "$id": "6674", + "$id": "6685", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -86748,13 +86901,13 @@ "isHttpMetadata": false }, { - "$id": "6675", + "$id": "6686", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the vector store.", "type": { - "$id": "6676", + "$id": "6687", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86774,12 +86927,12 @@ "isHttpMetadata": false }, { - "$id": "6677", + "$id": "6688", "kind": "property", "name": "expires_after", "serializedName": "expires_after", "type": { - "$ref": "6650" + "$ref": "6661" }, "optional": true, "readOnly": false, @@ -86795,13 +86948,13 @@ "isHttpMetadata": false }, { - "$id": "6678", + "$id": "6689", "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": "6679", + "$id": "6690", "kind": "union", "name": "CreateVectorStoreRequestChunkingStrategy", "variantTypes": [ @@ -86829,7 +86982,7 @@ "isHttpMetadata": false }, { - "$id": "6680", + "$id": "6691", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -86853,7 +87006,7 @@ ] }, { - "$id": "6681", + "$id": "6692", "kind": "model", "name": "UpdateVectorStoreRequest", "namespace": "OpenAI", @@ -86862,16 +87015,16 @@ "decorators": [], "properties": [ { - "$id": "6682", + "$id": "6693", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the vector store.", "type": { - "$id": "6683", + "$id": "6694", "kind": "nullable", "type": { - "$id": "6684", + "$id": "6695", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86893,15 +87046,15 @@ "isHttpMetadata": false }, { - "$id": "6685", + "$id": "6696", "kind": "property", "name": "expires_after", "serializedName": "expires_after", "type": { - "$id": "6686", + "$id": "6697", "kind": "nullable", "type": { - "$ref": "6650" + "$ref": "6661" }, "namespace": "OpenAI" }, @@ -86919,7 +87072,7 @@ "isHttpMetadata": false }, { - "$id": "6687", + "$id": "6698", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -86943,7 +87096,7 @@ ] }, { - "$id": "6688", + "$id": "6699", "kind": "model", "name": "DeleteVectorStoreResponse", "namespace": "OpenAI", @@ -86952,12 +87105,12 @@ "decorators": [], "properties": [ { - "$id": "6689", + "$id": "6700", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6690", + "$id": "6701", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86977,12 +87130,12 @@ "isHttpMetadata": false }, { - "$id": "6691", + "$id": "6702", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6692", + "$id": "6703", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -87002,7 +87155,7 @@ "isHttpMetadata": false }, { - "$id": "6693", + "$id": "6704", "kind": "property", "name": "object", "serializedName": "object", @@ -87025,7 +87178,7 @@ ] }, { - "$id": "6694", + "$id": "6705", "kind": "model", "name": "CreateVectorStoreFileBatchRequest", "namespace": "OpenAI", @@ -87034,7 +87187,7 @@ "decorators": [], "properties": [ { - "$id": "6695", + "$id": "6706", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -87056,7 +87209,7 @@ "isHttpMetadata": false }, { - "$id": "6696", + "$id": "6707", "kind": "property", "name": "chunking_strategy", "serializedName": "chunking_strategy", @@ -87077,15 +87230,15 @@ "isHttpMetadata": false }, { - "$id": "6697", + "$id": "6708", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6698", + "$id": "6709", "kind": "nullable", "type": { - "$ref": "3946" + "$ref": "3948" }, "namespace": "OpenAI" }, @@ -87105,7 +87258,7 @@ ] }, { - "$id": "6699", + "$id": "6710", "kind": "model", "name": "VectorStoreFileBatchObject", "namespace": "OpenAI", @@ -87115,13 +87268,13 @@ "decorators": [], "properties": [ { - "$id": "6700", + "$id": "6711", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6701", + "$id": "6712", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87141,7 +87294,7 @@ "isHttpMetadata": false }, { - "$id": "6702", + "$id": "6713", "kind": "property", "name": "object", "serializedName": "object", @@ -87163,18 +87316,18 @@ "isHttpMetadata": false }, { - "$id": "6703", + "$id": "6714", "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": "6704", + "$id": "6715", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6705", + "$id": "6716", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87197,13 +87350,13 @@ "isHttpMetadata": false }, { - "$id": "6706", + "$id": "6717", "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": "6707", + "$id": "6718", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87223,7 +87376,7 @@ "isHttpMetadata": false }, { - "$id": "6708", + "$id": "6719", "kind": "property", "name": "status", "serializedName": "status", @@ -87245,12 +87398,12 @@ "isHttpMetadata": false }, { - "$id": "6709", + "$id": "6720", "kind": "property", "name": "file_counts", "serializedName": "file_counts", "type": { - "$id": "6710", + "$id": "6721", "kind": "model", "name": "VectorStoreFileBatchObjectFileCounts", "namespace": "OpenAI", @@ -87259,13 +87412,13 @@ "decorators": [], "properties": [ { - "$id": "6711", + "$id": "6722", "kind": "property", "name": "in_progress", "serializedName": "in_progress", "doc": "The number of files that are currently being processed.", "type": { - "$id": "6712", + "$id": "6723", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87285,13 +87438,13 @@ "isHttpMetadata": false }, { - "$id": "6713", + "$id": "6724", "kind": "property", "name": "completed", "serializedName": "completed", "doc": "The number of files that have been processed.", "type": { - "$id": "6714", + "$id": "6725", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87311,13 +87464,13 @@ "isHttpMetadata": false }, { - "$id": "6715", + "$id": "6726", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "The number of files that have failed to process.", "type": { - "$id": "6716", + "$id": "6727", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87337,13 +87490,13 @@ "isHttpMetadata": false }, { - "$id": "6717", + "$id": "6728", "kind": "property", "name": "cancelled", "serializedName": "cancelled", "doc": "The number of files that where cancelled.", "type": { - "$id": "6718", + "$id": "6729", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87363,13 +87516,13 @@ "isHttpMetadata": false }, { - "$id": "6719", + "$id": "6730", "kind": "property", "name": "total", "serializedName": "total", "doc": "The total number of files.", "type": { - "$id": "6720", + "$id": "6731", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87406,10 +87559,10 @@ ] }, { - "$ref": "6710" + "$ref": "6721" }, { - "$id": "6721", + "$id": "6732", "kind": "model", "name": "ListVectorStoreFilesResponse", "namespace": "OpenAI", @@ -87418,7 +87571,7 @@ "decorators": [], "properties": [ { - "$id": "6722", + "$id": "6733", "kind": "property", "name": "object", "serializedName": "object", @@ -87439,16 +87592,16 @@ "isHttpMetadata": false }, { - "$id": "6723", + "$id": "6734", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6724", + "$id": "6735", "kind": "array", "name": "ArrayVectorStoreFileObject", "valueType": { - "$id": "6725", + "$id": "6736", "kind": "model", "name": "VectorStoreFileObject", "namespace": "OpenAI", @@ -87458,13 +87611,13 @@ "decorators": [], "properties": [ { - "$id": "6726", + "$id": "6737", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6727", + "$id": "6738", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87484,7 +87637,7 @@ "isHttpMetadata": false }, { - "$id": "6728", + "$id": "6739", "kind": "property", "name": "object", "serializedName": "object", @@ -87506,13 +87659,13 @@ "isHttpMetadata": false }, { - "$id": "6729", + "$id": "6740", "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": "6730", + "$id": "6741", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87532,18 +87685,18 @@ "isHttpMetadata": false }, { - "$id": "6731", + "$id": "6742", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the vector store file was created.", "type": { - "$id": "6732", + "$id": "6743", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6733", + "$id": "6744", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87566,13 +87719,13 @@ "isHttpMetadata": false }, { - "$id": "6734", + "$id": "6745", "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": "6735", + "$id": "6746", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87592,7 +87745,7 @@ "isHttpMetadata": false }, { - "$id": "6736", + "$id": "6747", "kind": "property", "name": "status", "serializedName": "status", @@ -87614,16 +87767,16 @@ "isHttpMetadata": false }, { - "$id": "6737", + "$id": "6748", "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": "6738", + "$id": "6749", "kind": "nullable", "type": { - "$id": "6739", + "$id": "6750", "kind": "model", "name": "VectorStoreFileObjectLastError1", "namespace": "OpenAI", @@ -87632,7 +87785,7 @@ "decorators": [], "properties": [ { - "$id": "6740", + "$id": "6751", "kind": "property", "name": "code", "serializedName": "code", @@ -87654,13 +87807,13 @@ "isHttpMetadata": false }, { - "$id": "6741", + "$id": "6752", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "6742", + "$id": "6753", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87697,13 +87850,13 @@ "isHttpMetadata": false }, { - "$id": "6743", + "$id": "6754", "kind": "property", "name": "chunking_strategy", "serializedName": "chunking_strategy", "doc": "The strategy used to chunk the file.", "type": { - "$id": "6744", + "$id": "6755", "kind": "model", "name": "ChunkingStrategyResponseParam", "namespace": "OpenAI", @@ -87711,7 +87864,7 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "6745", + "$id": "6756", "kind": "property", "name": "type", "serializedName": "type", @@ -87733,12 +87886,12 @@ }, "properties": [ { - "$ref": "6745" + "$ref": "6756" } ], "discriminatedSubtypes": { "other": { - "$id": "6746", + "$id": "6757", "kind": "model", "name": "OtherChunkingStrategyResponseParam", "namespace": "OpenAI", @@ -87748,17 +87901,17 @@ "discriminatorValue": "other", "decorators": [], "baseModel": { - "$ref": "6744" + "$ref": "6755" }, "properties": [ { - "$id": "6747", + "$id": "6758", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `other`.", "type": { - "$id": "6748", + "$id": "6759", "kind": "enumvalue", "name": "other", "value": "other", @@ -87766,14 +87919,14 @@ "$ref": "1081" }, "enumType": { - "$id": "6749", + "$id": "6760", "kind": "enum", "decorators": [], "name": "ChunkingStrategyResponseParamType", "isGeneratedName": true, "namespace": "OpenAI", "valueType": { - "$id": "6750", + "$id": "6761", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -87782,29 +87935,29 @@ }, "values": [ { - "$id": "6751", + "$id": "6762", "kind": "enumvalue", "decorators": [], "name": "static", "value": "static", "valueType": { - "$ref": "6750" + "$ref": "6761" }, "enumType": { - "$ref": "6749" + "$ref": "6760" } }, { - "$id": "6752", + "$id": "6763", "kind": "enumvalue", "decorators": [], "name": "other", "value": "other", "valueType": { - "$ref": "6750" + "$ref": "6761" }, "enumType": { - "$ref": "6749" + "$ref": "6760" } } ], @@ -87835,7 +87988,7 @@ ] }, "static": { - "$id": "6753", + "$id": "6764", "kind": "model", "name": "StaticChunkingStrategyResponseParam", "namespace": "OpenAI", @@ -87844,17 +87997,17 @@ "discriminatorValue": "static", "decorators": [], "baseModel": { - "$ref": "6744" + "$ref": "6755" }, "properties": [ { - "$id": "6754", + "$id": "6765", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `static`.", "type": { - "$id": "6755", + "$id": "6766", "kind": "enumvalue", "name": "static", "value": "static", @@ -87862,7 +88015,7 @@ "$ref": "1081" }, "enumType": { - "$ref": "6749" + "$ref": "6760" }, "decorators": [] }, @@ -87880,7 +88033,7 @@ "isHttpMetadata": false }, { - "$id": "6756", + "$id": "6767", "kind": "property", "name": "static", "serializedName": "static", @@ -87918,15 +88071,15 @@ "isHttpMetadata": false }, { - "$id": "6757", + "$id": "6768", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6758", + "$id": "6769", "kind": "nullable", "type": { - "$ref": "3946" + "$ref": "3948" }, "namespace": "OpenAI" }, @@ -87962,12 +88115,12 @@ "isHttpMetadata": false }, { - "$id": "6759", + "$id": "6770", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6760", + "$id": "6771", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87987,12 +88140,12 @@ "isHttpMetadata": false }, { - "$id": "6761", + "$id": "6772", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6762", + "$id": "6773", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88012,12 +88165,12 @@ "isHttpMetadata": false }, { - "$id": "6763", + "$id": "6774", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6764", + "$id": "6775", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -88039,22 +88192,22 @@ ] }, { - "$ref": "6725" + "$ref": "6736" }, { - "$ref": "6739" + "$ref": "6750" }, { - "$ref": "6744" + "$ref": "6755" }, { - "$ref": "6746" + "$ref": "6757" }, { - "$ref": "6753" + "$ref": "6764" }, { - "$id": "6765", + "$id": "6776", "kind": "model", "name": "CreateVectorStoreFileRequest", "namespace": "OpenAI", @@ -88063,13 +88216,13 @@ "decorators": [], "properties": [ { - "$id": "6766", + "$id": "6777", "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": "6767", + "$id": "6778", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88089,7 +88242,7 @@ "isHttpMetadata": false }, { - "$id": "6768", + "$id": "6779", "kind": "property", "name": "chunking_strategy", "serializedName": "chunking_strategy", @@ -88110,15 +88263,15 @@ "isHttpMetadata": false }, { - "$id": "6769", + "$id": "6780", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6770", + "$id": "6781", "kind": "nullable", "type": { - "$ref": "3946" + "$ref": "3948" }, "namespace": "OpenAI" }, @@ -88138,7 +88291,7 @@ ] }, { - "$id": "6771", + "$id": "6782", "kind": "model", "name": "DeleteVectorStoreFileResponse", "namespace": "OpenAI", @@ -88147,12 +88300,12 @@ "decorators": [], "properties": [ { - "$id": "6772", + "$id": "6783", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6773", + "$id": "6784", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88172,12 +88325,12 @@ "isHttpMetadata": false }, { - "$id": "6774", + "$id": "6785", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6775", + "$id": "6786", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -88197,7 +88350,7 @@ "isHttpMetadata": false }, { - "$id": "6776", + "$id": "6787", "kind": "property", "name": "object", "serializedName": "object", @@ -88220,7 +88373,7 @@ ] }, { - "$id": "6777", + "$id": "6788", "kind": "model", "name": "UpdateVectorStoreFileAttributesRequest", "namespace": "OpenAI", @@ -88229,15 +88382,15 @@ "decorators": [], "properties": [ { - "$id": "6778", + "$id": "6789", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6779", + "$id": "6790", "kind": "nullable", "type": { - "$ref": "3946" + "$ref": "3948" }, "namespace": "OpenAI" }, @@ -88257,7 +88410,7 @@ ] }, { - "$id": "6780", + "$id": "6791", "kind": "model", "name": "VectorStoreFileContentResponse", "namespace": "OpenAI", @@ -88267,7 +88420,7 @@ "decorators": [], "properties": [ { - "$id": "6781", + "$id": "6792", "kind": "property", "name": "object", "serializedName": "object", @@ -88289,17 +88442,17 @@ "isHttpMetadata": false }, { - "$id": "6782", + "$id": "6793", "kind": "property", "name": "data", "serializedName": "data", "doc": "Parsed content of the file.", "type": { - "$id": "6783", + "$id": "6794", "kind": "array", "name": "Array40", "valueType": { - "$id": "6784", + "$id": "6795", "kind": "model", "name": "VectorStoreFileContentResponseDatum", "namespace": "OpenAI", @@ -88308,13 +88461,13 @@ "decorators": [], "properties": [ { - "$id": "6785", + "$id": "6796", "kind": "property", "name": "type", "serializedName": "type", "doc": "The content type (currently only `\"text\"`)", "type": { - "$id": "6786", + "$id": "6797", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88334,13 +88487,13 @@ "isHttpMetadata": false }, { - "$id": "6787", + "$id": "6798", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content", "type": { - "$id": "6788", + "$id": "6799", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88378,13 +88531,13 @@ "isHttpMetadata": false }, { - "$id": "6789", + "$id": "6800", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates if there are more content pages to fetch.", "type": { - "$id": "6790", + "$id": "6801", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -88404,16 +88557,16 @@ "isHttpMetadata": false }, { - "$id": "6791", + "$id": "6802", "kind": "property", "name": "next_page", "serializedName": "next_page", "doc": "The token for the next page, if any.", "type": { - "$id": "6792", + "$id": "6803", "kind": "nullable", "type": { - "$id": "6793", + "$id": "6804", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88437,10 +88590,10 @@ ] }, { - "$ref": "6784" + "$ref": "6795" }, { - "$id": "6794", + "$id": "6805", "kind": "model", "name": "VectorStoreSearchRequestRankingOptions", "namespace": "OpenAI", @@ -88449,7 +88602,7 @@ "decorators": [], "properties": [ { - "$id": "6795", + "$id": "6806", "kind": "property", "name": "ranker", "serializedName": "ranker", @@ -88470,12 +88623,12 @@ "isHttpMetadata": false }, { - "$id": "6796", + "$id": "6807", "kind": "property", "name": "score_threshold", "serializedName": "score_threshold", "type": { - "$id": "6797", + "$id": "6808", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -88497,7 +88650,7 @@ ] }, { - "$id": "6798", + "$id": "6809", "kind": "model", "name": "VectorStoreSearchRequest", "namespace": "OpenAI", @@ -88506,18 +88659,18 @@ "decorators": [], "properties": [ { - "$id": "6799", + "$id": "6810", "kind": "property", "name": "query", "serializedName": "query", "doc": "A query string for a search", "type": { - "$id": "6800", + "$id": "6811", "kind": "union", "name": "VectorStoreSearchRequestQuery", "variantTypes": [ { - "$id": "6801", + "$id": "6812", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88544,13 +88697,13 @@ "isHttpMetadata": false }, { - "$id": "6802", + "$id": "6813", "kind": "property", "name": "rewrite_query", "serializedName": "rewrite_query", "doc": "Whether to rewrite the natural language query for vector search.", "type": { - "$id": "6803", + "$id": "6814", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -88570,13 +88723,13 @@ "isHttpMetadata": false }, { - "$id": "6804", + "$id": "6815", "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": "6805", + "$id": "6816", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88596,21 +88749,21 @@ "isHttpMetadata": false }, { - "$id": "6806", + "$id": "6817", "kind": "property", "name": "filters", "serializedName": "filters", "doc": "A filter to apply based on file attributes.", "type": { - "$id": "6807", + "$id": "6818", "kind": "union", "name": "VectorStoreSearchRequestFilters", "variantTypes": [ { - "$ref": "4388" + "$ref": "4390" }, { - "$ref": "4423" + "$ref": "4425" } ], "namespace": "OpenAI", @@ -88630,13 +88783,13 @@ "isHttpMetadata": false }, { - "$id": "6808", + "$id": "6819", "kind": "property", "name": "ranking_options", "serializedName": "ranking_options", "doc": "Ranking options for search.", "type": { - "$ref": "6794" + "$ref": "6805" }, "optional": true, "readOnly": false, @@ -88654,7 +88807,7 @@ ] }, { - "$id": "6809", + "$id": "6820", "kind": "model", "name": "VectorStoreSearchResultsPage", "namespace": "OpenAI", @@ -88663,7 +88816,7 @@ "decorators": [], "properties": [ { - "$id": "6810", + "$id": "6821", "kind": "property", "name": "object", "serializedName": "object", @@ -88685,7 +88838,7 @@ "isHttpMetadata": false }, { - "$id": "6811", + "$id": "6822", "kind": "property", "name": "search_query", "serializedName": "search_query", @@ -88706,17 +88859,17 @@ "isHttpMetadata": false }, { - "$id": "6812", + "$id": "6823", "kind": "property", "name": "data", "serializedName": "data", "doc": "The list of search result items.", "type": { - "$id": "6813", + "$id": "6824", "kind": "array", "name": "ArrayVectorStoreSearchResultItem", "valueType": { - "$id": "6814", + "$id": "6825", "kind": "model", "name": "VectorStoreSearchResultItem", "namespace": "OpenAI", @@ -88725,13 +88878,13 @@ "decorators": [], "properties": [ { - "$id": "6815", + "$id": "6826", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the vector store file.", "type": { - "$id": "6816", + "$id": "6827", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88751,13 +88904,13 @@ "isHttpMetadata": false }, { - "$id": "6817", + "$id": "6828", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the vector store file.", "type": { - "$id": "6818", + "$id": "6829", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88777,13 +88930,13 @@ "isHttpMetadata": false }, { - "$id": "6819", + "$id": "6830", "kind": "property", "name": "score", "serializedName": "score", "doc": "The similarity score for the result.", "type": { - "$id": "6820", + "$id": "6831", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -88803,15 +88956,15 @@ "isHttpMetadata": false }, { - "$id": "6821", + "$id": "6832", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6822", + "$id": "6833", "kind": "nullable", "type": { - "$ref": "3946" + "$ref": "3948" }, "namespace": "OpenAI" }, @@ -88829,17 +88982,17 @@ "isHttpMetadata": false }, { - "$id": "6823", + "$id": "6834", "kind": "property", "name": "content", "serializedName": "content", "doc": "Content chunks from the file.", "type": { - "$id": "6824", + "$id": "6835", "kind": "array", "name": "ArrayVectorStoreSearchResultContentObject", "valueType": { - "$id": "6825", + "$id": "6836", "kind": "model", "name": "VectorStoreSearchResultContentObject", "namespace": "OpenAI", @@ -88848,7 +89001,7 @@ "decorators": [], "properties": [ { - "$id": "6826", + "$id": "6837", "kind": "property", "name": "type", "serializedName": "type", @@ -88870,13 +89023,13 @@ "isHttpMetadata": false }, { - "$id": "6827", + "$id": "6838", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content returned from search.", "type": { - "$id": "6828", + "$id": "6839", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88932,13 +89085,13 @@ "isHttpMetadata": false }, { - "$id": "6829", + "$id": "6840", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates if there are more results to fetch.", "type": { - "$id": "6830", + "$id": "6841", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -88958,16 +89111,16 @@ "isHttpMetadata": false }, { - "$id": "6831", + "$id": "6842", "kind": "property", "name": "next_page", "serializedName": "next_page", "doc": "The token for the next page, if any.", "type": { - "$id": "6832", + "$id": "6843", "kind": "nullable", "type": { - "$id": "6833", + "$id": "6844", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88991,13 +89144,13 @@ ] }, { - "$ref": "6814" + "$ref": "6825" }, { - "$ref": "6825" + "$ref": "6836" }, { - "$id": "6834", + "$id": "6845", "kind": "model", "name": "CreateCompletionRequest", "namespace": "OpenAI", @@ -89006,7 +89159,7 @@ "decorators": [], "properties": [ { - "$id": "6835", + "$id": "6846", "kind": "property", "name": "model", "serializedName": "model", @@ -89028,21 +89181,21 @@ "isHttpMetadata": false }, { - "$id": "6836", + "$id": "6847", "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": "6837", + "$id": "6848", "kind": "nullable", "type": { - "$id": "6838", + "$id": "6849", "kind": "union", "name": "CreateCompletionRequestPrompt", "variantTypes": [ { - "$id": "6839", + "$id": "6850", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89055,7 +89208,7 @@ "$ref": "2671" }, { - "$ref": "3414" + "$ref": "3416" } ], "namespace": "OpenAI", @@ -89077,16 +89230,16 @@ "isHttpMetadata": false }, { - "$id": "6840", + "$id": "6851", "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": "6841", + "$id": "6852", "kind": "nullable", "type": { - "$id": "6842", + "$id": "6853", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -89108,16 +89261,16 @@ "isHttpMetadata": false }, { - "$id": "6843", + "$id": "6854", "kind": "property", "name": "echo", "serializedName": "echo", "doc": "Echo back the prompt in addition to the completion", "type": { - "$id": "6844", + "$id": "6855", "kind": "nullable", "type": { - "$id": "6845", + "$id": "6856", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -89139,16 +89292,16 @@ "isHttpMetadata": false }, { - "$id": "6846", + "$id": "6857", "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": "6847", + "$id": "6858", "kind": "nullable", "type": { - "$id": "6848", + "$id": "6859", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -89170,16 +89323,16 @@ "isHttpMetadata": false }, { - "$id": "6849", + "$id": "6860", "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": "6850", + "$id": "6861", "kind": "nullable", "type": { - "$ref": "3167" + "$ref": "3169" }, "namespace": "OpenAI" }, @@ -89197,16 +89350,16 @@ "isHttpMetadata": false }, { - "$id": "6851", + "$id": "6862", "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": "6852", + "$id": "6863", "kind": "nullable", "type": { - "$id": "6853", + "$id": "6864", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -89228,16 +89381,16 @@ "isHttpMetadata": false }, { - "$id": "6854", + "$id": "6865", "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": "6855", + "$id": "6866", "kind": "nullable", "type": { - "$id": "6856", + "$id": "6867", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -89259,16 +89412,16 @@ "isHttpMetadata": false }, { - "$id": "6857", + "$id": "6868", "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": "6858", + "$id": "6869", "kind": "nullable", "type": { - "$id": "6859", + "$id": "6870", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -89290,16 +89443,16 @@ "isHttpMetadata": false }, { - "$id": "6860", + "$id": "6871", "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": "6861", + "$id": "6872", "kind": "nullable", "type": { - "$id": "6862", + "$id": "6873", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -89321,16 +89474,16 @@ "isHttpMetadata": false }, { - "$id": "6863", + "$id": "6874", "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": "6864", + "$id": "6875", "kind": "nullable", "type": { - "$id": "6865", + "$id": "6876", "kind": "int64", "name": "int64", "crossLanguageDefinitionId": "TypeSpec.int64", @@ -89352,15 +89505,15 @@ "isHttpMetadata": false }, { - "$id": "6866", + "$id": "6877", "kind": "property", "name": "stop", "serializedName": "stop", "type": { - "$id": "6867", + "$id": "6878", "kind": "nullable", "type": { - "$ref": "3163" + "$ref": "3165" }, "namespace": "OpenAI" }, @@ -89378,16 +89531,16 @@ "isHttpMetadata": false }, { - "$id": "6868", + "$id": "6879", "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": "6869", + "$id": "6880", "kind": "nullable", "type": { - "$id": "6870", + "$id": "6881", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -89409,15 +89562,15 @@ "isHttpMetadata": false }, { - "$id": "6871", + "$id": "6882", "kind": "property", "name": "stream_options", "serializedName": "stream_options", "type": { - "$id": "6872", + "$id": "6883", "kind": "nullable", "type": { - "$ref": "3197" + "$ref": "3199" }, "namespace": "OpenAI" }, @@ -89435,16 +89588,16 @@ "isHttpMetadata": false }, { - "$id": "6873", + "$id": "6884", "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": "6874", + "$id": "6885", "kind": "nullable", "type": { - "$id": "6875", + "$id": "6886", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89466,16 +89619,16 @@ "isHttpMetadata": false }, { - "$id": "6876", + "$id": "6887", "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": "6877", + "$id": "6888", "kind": "nullable", "type": { - "$id": "6878", + "$id": "6889", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -89497,16 +89650,16 @@ "isHttpMetadata": false }, { - "$id": "6879", + "$id": "6890", "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": "6880", + "$id": "6891", "kind": "nullable", "type": { - "$id": "6881", + "$id": "6892", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -89528,13 +89681,13 @@ "isHttpMetadata": false }, { - "$id": "6882", + "$id": "6893", "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": "6883", + "$id": "6894", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89556,7 +89709,7 @@ ] }, { - "$id": "6884", + "$id": "6895", "kind": "model", "name": "CreateCompletionResponse", "namespace": "OpenAI", @@ -89566,13 +89719,13 @@ "decorators": [], "properties": [ { - "$id": "6885", + "$id": "6896", "kind": "property", "name": "id", "serializedName": "id", "doc": "A unique identifier for the completion.", "type": { - "$id": "6886", + "$id": "6897", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89592,17 +89745,17 @@ "isHttpMetadata": false }, { - "$id": "6887", + "$id": "6898", "kind": "property", "name": "choices", "serializedName": "choices", "doc": "The list of completion choices the model generated for the input prompt.", "type": { - "$id": "6888", + "$id": "6899", "kind": "array", "name": "Array41", "valueType": { - "$id": "6889", + "$id": "6900", "kind": "model", "name": "CreateCompletionResponseChoice", "namespace": "OpenAI", @@ -89611,7 +89764,7 @@ "decorators": [], "properties": [ { - "$id": "6890", + "$id": "6901", "kind": "property", "name": "finish_reason", "serializedName": "finish_reason", @@ -89633,12 +89786,12 @@ "isHttpMetadata": false }, { - "$id": "6891", + "$id": "6902", "kind": "property", "name": "index", "serializedName": "index", "type": { - "$id": "6892", + "$id": "6903", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -89658,15 +89811,15 @@ "isHttpMetadata": false }, { - "$id": "6893", + "$id": "6904", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "type": { - "$id": "6894", + "$id": "6905", "kind": "nullable", "type": { - "$id": "6895", + "$id": "6906", "kind": "model", "name": "CreateCompletionResponseChoiceLogprobs1", "namespace": "OpenAI", @@ -89675,7 +89828,7 @@ "decorators": [], "properties": [ { - "$id": "6896", + "$id": "6907", "kind": "property", "name": "text_offset", "serializedName": "text_offset", @@ -89696,7 +89849,7 @@ "isHttpMetadata": false }, { - "$id": "6897", + "$id": "6908", "kind": "property", "name": "token_logprobs", "serializedName": "token_logprobs", @@ -89717,7 +89870,7 @@ "isHttpMetadata": false }, { - "$id": "6898", + "$id": "6909", "kind": "property", "name": "tokens", "serializedName": "tokens", @@ -89738,26 +89891,26 @@ "isHttpMetadata": false }, { - "$id": "6899", + "$id": "6910", "kind": "property", "name": "top_logprobs", "serializedName": "top_logprobs", "type": { - "$id": "6900", + "$id": "6911", "kind": "array", "name": "ArrayRecord1", "valueType": { - "$id": "6901", + "$id": "6912", "kind": "dict", "keyType": { - "$id": "6902", + "$id": "6913", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, "valueType": { - "$id": "6903", + "$id": "6914", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -89799,12 +89952,12 @@ "isHttpMetadata": false }, { - "$id": "6904", + "$id": "6915", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "6905", + "$id": "6916", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89842,18 +89995,18 @@ "isHttpMetadata": false }, { - "$id": "6906", + "$id": "6917", "kind": "property", "name": "created", "serializedName": "created", "doc": "The Unix timestamp (in seconds) of when the completion was created.", "type": { - "$id": "6907", + "$id": "6918", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6908", + "$id": "6919", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -89876,13 +90029,13 @@ "isHttpMetadata": false }, { - "$id": "6909", + "$id": "6920", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model used for completion.", "type": { - "$id": "6910", + "$id": "6921", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89902,13 +90055,13 @@ "isHttpMetadata": false }, { - "$id": "6911", + "$id": "6922", "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": "6912", + "$id": "6923", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89928,7 +90081,7 @@ "isHttpMetadata": false }, { - "$id": "6913", + "$id": "6924", "kind": "property", "name": "object", "serializedName": "object", @@ -89950,7 +90103,7 @@ "isHttpMetadata": false }, { - "$id": "6914", + "$id": "6925", "kind": "property", "name": "usage", "serializedName": "usage", @@ -89973,13 +90126,13 @@ ] }, { - "$ref": "6889" + "$ref": "6900" }, { - "$ref": "6895" + "$ref": "6906" }, { - "$id": "6915", + "$id": "6926", "kind": "model", "name": "ListModelsResponse", "namespace": "OpenAI", @@ -89988,7 +90141,7 @@ "decorators": [], "properties": [ { - "$id": "6916", + "$id": "6927", "kind": "property", "name": "object", "serializedName": "object", @@ -90009,16 +90162,16 @@ "isHttpMetadata": false }, { - "$id": "6917", + "$id": "6928", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6918", + "$id": "6929", "kind": "array", "name": "ArrayModel", "valueType": { - "$id": "6919", + "$id": "6930", "kind": "model", "name": "Model", "namespace": "OpenAI", @@ -90028,13 +90181,13 @@ "decorators": [], "properties": [ { - "$id": "6920", + "$id": "6931", "kind": "property", "name": "id", "serializedName": "id", "doc": "The model identifier, which can be referenced in the API endpoints.", "type": { - "$id": "6921", + "$id": "6932", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90054,18 +90207,18 @@ "isHttpMetadata": false }, { - "$id": "6922", + "$id": "6933", "kind": "property", "name": "created", "serializedName": "created", "doc": "The Unix timestamp (in seconds) when the model was created.", "type": { - "$id": "6923", + "$id": "6934", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6924", + "$id": "6935", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -90088,7 +90241,7 @@ "isHttpMetadata": false }, { - "$id": "6925", + "$id": "6936", "kind": "property", "name": "object", "serializedName": "object", @@ -90110,13 +90263,13 @@ "isHttpMetadata": false }, { - "$id": "6926", + "$id": "6937", "kind": "property", "name": "owned_by", "serializedName": "owned_by", "doc": "The organization that owns the model.", "type": { - "$id": "6927", + "$id": "6938", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90156,10 +90309,10 @@ ] }, { - "$ref": "6919" + "$ref": "6930" }, { - "$id": "6928", + "$id": "6939", "kind": "model", "name": "DeleteModelResponse", "namespace": "OpenAI", @@ -90168,12 +90321,12 @@ "decorators": [], "properties": [ { - "$id": "6929", + "$id": "6940", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6930", + "$id": "6941", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90193,12 +90346,12 @@ "isHttpMetadata": false }, { - "$id": "6931", + "$id": "6942", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6932", + "$id": "6943", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -90218,7 +90371,7 @@ "isHttpMetadata": false }, { - "$id": "6933", + "$id": "6944", "kind": "property", "name": "object", "serializedName": "object", @@ -90241,7 +90394,7 @@ ] }, { - "$id": "6934", + "$id": "6945", "kind": "model", "name": "RealtimeClientEvent", "namespace": "OpenAI", @@ -90250,7 +90403,7 @@ "doc": "A realtime client event.", "decorators": [], "discriminatorProperty": { - "$id": "6935", + "$id": "6946", "kind": "property", "name": "type", "serializedName": "type", @@ -90273,15 +90426,15 @@ }, "properties": [ { - "$ref": "6935" + "$ref": "6946" }, { - "$id": "6936", + "$id": "6947", "kind": "property", "name": "event_id", "serializedName": "event_id", "type": { - "$id": "6937", + "$id": "6948", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90303,7 +90456,7 @@ ], "discriminatedSubtypes": { "session.update": { - "$id": "6938", + "$id": "6949", "kind": "model", "name": "RealtimeClientEventSessionUpdate", "namespace": "OpenAI", @@ -90313,17 +90466,17 @@ "discriminatorValue": "session.update", "decorators": [], "baseModel": { - "$ref": "6934" + "$ref": "6945" }, "properties": [ { - "$id": "6939", + "$id": "6950", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `session.update`.", "type": { - "$id": "6940", + "$id": "6951", "kind": "enumvalue", "name": "session_update", "value": "session.update", @@ -90331,14 +90484,14 @@ "$ref": "1099" }, "enumType": { - "$id": "6941", + "$id": "6952", "kind": "enum", "decorators": [], "name": "RealtimeClientEventType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6942", + "$id": "6953", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -90347,159 +90500,159 @@ }, "values": [ { - "$id": "6943", + "$id": "6954", "kind": "enumvalue", "decorators": [], "name": "session_update", "value": "session.update", "valueType": { - "$ref": "6942" + "$ref": "6953" }, "enumType": { - "$ref": "6941" + "$ref": "6952" } }, { - "$id": "6944", + "$id": "6955", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_append", "value": "input_audio_buffer.append", "valueType": { - "$ref": "6942" + "$ref": "6953" }, "enumType": { - "$ref": "6941" + "$ref": "6952" } }, { - "$id": "6945", + "$id": "6956", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_commit", "value": "input_audio_buffer.commit", "valueType": { - "$ref": "6942" + "$ref": "6953" }, "enumType": { - "$ref": "6941" + "$ref": "6952" } }, { - "$id": "6946", + "$id": "6957", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_clear", "value": "input_audio_buffer.clear", "valueType": { - "$ref": "6942" + "$ref": "6953" }, "enumType": { - "$ref": "6941" + "$ref": "6952" } }, { - "$id": "6947", + "$id": "6958", "kind": "enumvalue", "decorators": [], "name": "output_audio_buffer_clear", "value": "output_audio_buffer.clear", "valueType": { - "$ref": "6942" + "$ref": "6953" }, "enumType": { - "$ref": "6941" + "$ref": "6952" } }, { - "$id": "6948", + "$id": "6959", "kind": "enumvalue", "decorators": [], "name": "conversation_item_create", "value": "conversation.item.create", "valueType": { - "$ref": "6942" + "$ref": "6953" }, "enumType": { - "$ref": "6941" + "$ref": "6952" } }, { - "$id": "6949", + "$id": "6960", "kind": "enumvalue", "decorators": [], "name": "conversation_item_retrieve", "value": "conversation.item.retrieve", "valueType": { - "$ref": "6942" + "$ref": "6953" }, "enumType": { - "$ref": "6941" + "$ref": "6952" } }, { - "$id": "6950", + "$id": "6961", "kind": "enumvalue", "decorators": [], "name": "conversation_item_truncate", "value": "conversation.item.truncate", "valueType": { - "$ref": "6942" + "$ref": "6953" }, "enumType": { - "$ref": "6941" + "$ref": "6952" } }, { - "$id": "6951", + "$id": "6962", "kind": "enumvalue", "decorators": [], "name": "conversation_item_delete", "value": "conversation.item.delete", "valueType": { - "$ref": "6942" + "$ref": "6953" }, "enumType": { - "$ref": "6941" + "$ref": "6952" } }, { - "$id": "6952", + "$id": "6963", "kind": "enumvalue", "decorators": [], "name": "response_create", "value": "response.create", "valueType": { - "$ref": "6942" + "$ref": "6953" }, "enumType": { - "$ref": "6941" + "$ref": "6952" } }, { - "$id": "6953", + "$id": "6964", "kind": "enumvalue", "decorators": [], "name": "response_cancel", "value": "response.cancel", "valueType": { - "$ref": "6942" + "$ref": "6953" }, "enumType": { - "$ref": "6941" + "$ref": "6952" } }, { - "$id": "6954", + "$id": "6965", "kind": "enumvalue", "decorators": [], "name": "transcription_session_update", "value": "transcription_session.update", "valueType": { - "$ref": "6942" + "$ref": "6953" }, "enumType": { - "$ref": "6941" + "$ref": "6952" } } ], @@ -90528,12 +90681,12 @@ "isHttpMetadata": false }, { - "$id": "6955", + "$id": "6966", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$id": "6956", + "$id": "6967", "kind": "model", "name": "RealtimeRequestSession", "namespace": "OpenAI", @@ -90542,12 +90695,12 @@ "decorators": [], "properties": [ { - "$id": "6957", + "$id": "6968", "kind": "property", "name": "modalities", "serializedName": "modalities", "type": { - "$id": "6958", + "$id": "6969", "kind": "array", "name": "ArrayRealtimeModality", "valueType": { @@ -90570,12 +90723,12 @@ "isHttpMetadata": false }, { - "$id": "6959", + "$id": "6970", "kind": "property", "name": "instructions", "serializedName": "instructions", "type": { - "$id": "6960", + "$id": "6971", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90595,7 +90748,7 @@ "isHttpMetadata": false }, { - "$id": "6961", + "$id": "6972", "kind": "property", "name": "model", "serializedName": "model", @@ -90616,7 +90769,7 @@ "isHttpMetadata": false }, { - "$id": "6962", + "$id": "6973", "kind": "property", "name": "voice", "serializedName": "voice", @@ -90637,7 +90790,7 @@ "isHttpMetadata": false }, { - "$id": "6963", + "$id": "6974", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", @@ -90658,7 +90811,7 @@ "isHttpMetadata": false }, { - "$id": "6964", + "$id": "6975", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", @@ -90679,15 +90832,15 @@ "isHttpMetadata": false }, { - "$id": "6965", + "$id": "6976", "kind": "property", "name": "input_audio_transcription", "serializedName": "input_audio_transcription", "type": { - "$id": "6966", + "$id": "6977", "kind": "nullable", "type": { - "$id": "6967", + "$id": "6978", "kind": "model", "name": "RealtimeAudioInputTranscriptionSettings", "namespace": "OpenAI", @@ -90696,7 +90849,7 @@ "decorators": [], "properties": [ { - "$id": "6968", + "$id": "6979", "kind": "property", "name": "model", "serializedName": "model", @@ -90717,12 +90870,12 @@ "isHttpMetadata": false }, { - "$id": "6969", + "$id": "6980", "kind": "property", "name": "language", "serializedName": "language", "type": { - "$id": "6970", + "$id": "6981", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90742,12 +90895,12 @@ "isHttpMetadata": false }, { - "$id": "6971", + "$id": "6982", "kind": "property", "name": "prompt", "serializedName": "prompt", "type": { - "$id": "6972", + "$id": "6983", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90784,15 +90937,15 @@ "isHttpMetadata": false }, { - "$id": "6973", + "$id": "6984", "kind": "property", "name": "turn_detection", "serializedName": "turn_detection", "type": { - "$id": "6974", + "$id": "6985", "kind": "nullable", "type": { - "$id": "6975", + "$id": "6986", "kind": "model", "name": "RealtimeTurnDetection", "namespace": "OpenAI", @@ -90800,7 +90953,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "6976", + "$id": "6987", "kind": "property", "name": "type", "serializedName": "type", @@ -90822,16 +90975,16 @@ }, "properties": [ { - "$ref": "6976" + "$ref": "6987" }, { - "$id": "6977", + "$id": "6988", "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": "6978", + "$id": "6989", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -90851,13 +91004,13 @@ "isHttpMetadata": false }, { - "$id": "6979", + "$id": "6990", "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": "6980", + "$id": "6991", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -90879,7 +91032,7 @@ ], "discriminatedSubtypes": { "server_vad": { - "$id": "6981", + "$id": "6992", "kind": "model", "name": "RealtimeServerVadTurnDetection", "namespace": "OpenAI", @@ -90888,16 +91041,16 @@ "discriminatorValue": "server_vad", "decorators": [], "baseModel": { - "$ref": "6975" + "$ref": "6986" }, "properties": [ { - "$id": "6982", + "$id": "6993", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "6983", + "$id": "6994", "kind": "enumvalue", "name": "server_vad", "value": "server_vad", @@ -90905,14 +91058,14 @@ "$ref": "1132" }, "enumType": { - "$id": "6984", + "$id": "6995", "kind": "enum", "decorators": [], "name": "RealtimeTurnDetectionType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6985", + "$id": "6996", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -90921,30 +91074,30 @@ }, "values": [ { - "$id": "6986", + "$id": "6997", "kind": "enumvalue", "decorators": [], "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.", "name": "server_vad", "value": "server_vad", "valueType": { - "$ref": "6985" + "$ref": "6996" }, "enumType": { - "$ref": "6984" + "$ref": "6995" } }, { - "$id": "6987", + "$id": "6998", "kind": "enumvalue", "decorators": [], "name": "semantic_vad", "value": "semantic_vad", "valueType": { - "$ref": "6985" + "$ref": "6996" }, "enumType": { - "$ref": "6984" + "$ref": "6995" } } ], @@ -90974,13 +91127,13 @@ "isHttpMetadata": false }, { - "$id": "6988", + "$id": "6999", "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": "6989", + "$id": "7000", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -91000,18 +91153,18 @@ "isHttpMetadata": false }, { - "$id": "6990", + "$id": "7001", "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": "6991", + "$id": "7002", "kind": "duration", "name": "duration", "encode": "ISO8601", "wireType": { - "$id": "6992", + "$id": "7003", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91034,18 +91187,18 @@ "isHttpMetadata": false }, { - "$id": "6993", + "$id": "7004", "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": "6994", + "$id": "7005", "kind": "duration", "name": "duration", "encode": "ISO8601", "wireType": { - "$id": "6995", + "$id": "7006", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91070,7 +91223,7 @@ ] }, "semantic_vad": { - "$id": "6996", + "$id": "7007", "kind": "model", "name": "RealtimeSemanticVadTurnDetection", "namespace": "OpenAI", @@ -91079,16 +91232,16 @@ "discriminatorValue": "semantic_vad", "decorators": [], "baseModel": { - "$ref": "6975" + "$ref": "6986" }, "properties": [ { - "$id": "6997", + "$id": "7008", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "6998", + "$id": "7009", "kind": "enumvalue", "name": "semantic_vad", "value": "semantic_vad", @@ -91096,7 +91249,7 @@ "$ref": "1132" }, "enumType": { - "$ref": "6984" + "$ref": "6995" }, "decorators": [] }, @@ -91114,7 +91267,7 @@ "isHttpMetadata": false }, { - "$id": "6999", + "$id": "7010", "kind": "property", "name": "eagerness", "serializedName": "eagerness", @@ -91155,12 +91308,12 @@ "isHttpMetadata": false }, { - "$id": "7000", + "$id": "7011", "kind": "property", "name": "input_audio_noise_reduction", "serializedName": "input_audio_noise_reduction", "type": { - "$id": "7001", + "$id": "7012", "kind": "model", "name": "RealtimeAudioNoiseReduction", "namespace": "OpenAI", @@ -91168,7 +91321,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "7002", + "$id": "7013", "kind": "property", "name": "type", "serializedName": "type", @@ -91190,12 +91343,12 @@ }, "properties": [ { - "$ref": "7002" + "$ref": "7013" } ], "discriminatedSubtypes": { "near_field": { - "$id": "7003", + "$id": "7014", "kind": "model", "name": "RealtimeAudioNearFieldNoiseReduction", "namespace": "OpenAI", @@ -91204,16 +91357,16 @@ "discriminatorValue": "near_field", "decorators": [], "baseModel": { - "$ref": "7001" + "$ref": "7012" }, "properties": [ { - "$id": "7004", + "$id": "7015", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7005", + "$id": "7016", "kind": "enumvalue", "name": "near_field", "value": "near_field", @@ -91221,14 +91374,14 @@ "$ref": "1142" }, "enumType": { - "$id": "7006", + "$id": "7017", "kind": "enum", "decorators": [], "name": "RealtimeAudioNoiseReductionType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "7007", + "$id": "7018", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -91237,29 +91390,29 @@ }, "values": [ { - "$id": "7008", + "$id": "7019", "kind": "enumvalue", "decorators": [], "name": "near_field", "value": "near_field", "valueType": { - "$ref": "7007" + "$ref": "7018" }, "enumType": { - "$ref": "7006" + "$ref": "7017" } }, { - "$id": "7009", + "$id": "7020", "kind": "enumvalue", "decorators": [], "name": "far_field", "value": "far_field", "valueType": { - "$ref": "7007" + "$ref": "7018" }, "enumType": { - "$ref": "7006" + "$ref": "7017" } } ], @@ -91290,7 +91443,7 @@ ] }, "far_field": { - "$id": "7010", + "$id": "7021", "kind": "model", "name": "RealtimeAudioFarFieldNoiseReduction", "namespace": "OpenAI", @@ -91299,16 +91452,16 @@ "discriminatorValue": "far_field", "decorators": [], "baseModel": { - "$ref": "7001" + "$ref": "7012" }, "properties": [ { - "$id": "7011", + "$id": "7022", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7012", + "$id": "7023", "kind": "enumvalue", "name": "far_field", "value": "far_field", @@ -91316,7 +91469,7 @@ "$ref": "1142" }, "enumType": { - "$ref": "7006" + "$ref": "7017" }, "decorators": [] }, @@ -91351,16 +91504,16 @@ "isHttpMetadata": false }, { - "$id": "7013", + "$id": "7024", "kind": "property", "name": "tools", "serializedName": "tools", "type": { - "$id": "7014", + "$id": "7025", "kind": "array", "name": "ArrayRealtimeTool", "valueType": { - "$id": "7015", + "$id": "7026", "kind": "model", "name": "RealtimeTool", "namespace": "OpenAI", @@ -91369,7 +91522,7 @@ "doc": "The base representation of a realtime tool definition.", "decorators": [], "discriminatorProperty": { - "$id": "7016", + "$id": "7027", "kind": "property", "name": "type", "serializedName": "type", @@ -91391,12 +91544,12 @@ }, "properties": [ { - "$ref": "7016" + "$ref": "7027" } ], "discriminatedSubtypes": { "function": { - "$id": "7017", + "$id": "7028", "kind": "model", "name": "RealtimeFunctionTool", "namespace": "OpenAI", @@ -91406,16 +91559,16 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "7015" + "$ref": "7026" }, "properties": [ { - "$id": "7018", + "$id": "7029", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7019", + "$id": "7030", "kind": "enumvalue", "name": "function", "value": "function", @@ -91423,7 +91576,7 @@ "$ref": "1146" }, "enumType": { - "$id": "7020", + "$id": "7031", "kind": "enum", "decorators": [], "doc": "The supported tool type discriminators for realtime tools.\nCurrently, only 'function' tools are supported.", @@ -91431,7 +91584,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "7021", + "$id": "7032", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -91440,16 +91593,16 @@ }, "values": [ { - "$id": "7022", + "$id": "7033", "kind": "enumvalue", "decorators": [], "name": "function", "value": "function", "valueType": { - "$ref": "7021" + "$ref": "7032" }, "enumType": { - "$ref": "7020" + "$ref": "7031" } } ], @@ -91478,12 +91631,12 @@ "isHttpMetadata": false }, { - "$id": "7023", + "$id": "7034", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "7024", + "$id": "7035", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91503,12 +91656,12 @@ "isHttpMetadata": false }, { - "$id": "7025", + "$id": "7036", "kind": "property", "name": "description", "serializedName": "description", "type": { - "$id": "7026", + "$id": "7037", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91528,12 +91681,12 @@ "isHttpMetadata": false }, { - "$id": "7027", + "$id": "7038", "kind": "property", "name": "parameters", "serializedName": "parameters", "type": { - "$id": "7028", + "$id": "7039", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -91573,12 +91726,12 @@ "isHttpMetadata": false }, { - "$id": "7029", + "$id": "7040", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "7030", + "$id": "7041", "kind": "union", "name": "RealtimeToolChoice", "variantTypes": [ @@ -91586,7 +91739,7 @@ "$ref": "1148" }, { - "$id": "7031", + "$id": "7042", "kind": "model", "name": "RealtimeToolChoiceObject", "namespace": "OpenAI", @@ -91595,7 +91748,7 @@ "doc": "A base representation for a realtime tool_choice selecting a named tool.", "decorators": [], "discriminatorProperty": { - "$id": "7032", + "$id": "7043", "kind": "property", "name": "type", "serializedName": "type", @@ -91617,12 +91770,12 @@ }, "properties": [ { - "$ref": "7032" + "$ref": "7043" } ], "discriminatedSubtypes": { "function": { - "$id": "7033", + "$id": "7044", "kind": "model", "name": "RealtimeToolChoiceFunctionObject", "namespace": "OpenAI", @@ -91632,16 +91785,16 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "7031" + "$ref": "7042" }, "properties": [ { - "$id": "7034", + "$id": "7045", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "7019" + "$ref": "7030" }, "optional": false, "readOnly": false, @@ -91657,12 +91810,12 @@ "isHttpMetadata": false }, { - "$id": "7035", + "$id": "7046", "kind": "property", "name": "function", "serializedName": "function", "type": { - "$id": "7036", + "$id": "7047", "kind": "model", "name": "RealtimeToolChoiceFunctionObjectFunction", "namespace": "OpenAI", @@ -91671,12 +91824,12 @@ "decorators": [], "properties": [ { - "$id": "7037", + "$id": "7048", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "7038", + "$id": "7049", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91732,12 +91885,12 @@ "isHttpMetadata": false }, { - "$id": "7039", + "$id": "7050", "kind": "property", "name": "temperature", "serializedName": "temperature", "type": { - "$id": "7040", + "$id": "7051", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -91757,17 +91910,17 @@ "isHttpMetadata": false }, { - "$id": "7041", + "$id": "7052", "kind": "property", "name": "max_response_output_tokens", "serializedName": "max_response_output_tokens", "type": { - "$id": "7042", + "$id": "7053", "kind": "union", "name": "RealtimeRequestSessionMaxResponseOutputTokens", "variantTypes": [ { - "$id": "7043", + "$id": "7054", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -91811,7 +91964,7 @@ ] }, "input_audio_buffer.append": { - "$id": "7044", + "$id": "7055", "kind": "model", "name": "RealtimeClientEventInputAudioBufferAppend", "namespace": "OpenAI", @@ -91821,17 +91974,17 @@ "discriminatorValue": "input_audio_buffer.append", "decorators": [], "baseModel": { - "$ref": "6934" + "$ref": "6945" }, "properties": [ { - "$id": "7045", + "$id": "7056", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.append`.", "type": { - "$id": "7046", + "$id": "7057", "kind": "enumvalue", "name": "input_audio_buffer_append", "value": "input_audio_buffer.append", @@ -91839,7 +91992,7 @@ "$ref": "1099" }, "enumType": { - "$ref": "6941" + "$ref": "6952" }, "decorators": [] }, @@ -91857,13 +92010,13 @@ "isHttpMetadata": false }, { - "$id": "7047", + "$id": "7058", "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": "7048", + "$id": "7059", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -91886,7 +92039,7 @@ ] }, "input_audio_buffer.commit": { - "$id": "7049", + "$id": "7060", "kind": "model", "name": "RealtimeClientEventInputAudioBufferCommit", "namespace": "OpenAI", @@ -91896,17 +92049,17 @@ "discriminatorValue": "input_audio_buffer.commit", "decorators": [], "baseModel": { - "$ref": "6934" + "$ref": "6945" }, "properties": [ { - "$id": "7050", + "$id": "7061", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.commit`.", "type": { - "$id": "7051", + "$id": "7062", "kind": "enumvalue", "name": "input_audio_buffer_commit", "value": "input_audio_buffer.commit", @@ -91914,7 +92067,7 @@ "$ref": "1099" }, "enumType": { - "$ref": "6941" + "$ref": "6952" }, "decorators": [] }, @@ -91934,7 +92087,7 @@ ] }, "input_audio_buffer.clear": { - "$id": "7052", + "$id": "7063", "kind": "model", "name": "RealtimeClientEventInputAudioBufferClear", "namespace": "OpenAI", @@ -91944,17 +92097,17 @@ "discriminatorValue": "input_audio_buffer.clear", "decorators": [], "baseModel": { - "$ref": "6934" + "$ref": "6945" }, "properties": [ { - "$id": "7053", + "$id": "7064", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.clear`.", "type": { - "$id": "7054", + "$id": "7065", "kind": "enumvalue", "name": "input_audio_buffer_clear", "value": "input_audio_buffer.clear", @@ -91962,7 +92115,7 @@ "$ref": "1099" }, "enumType": { - "$ref": "6941" + "$ref": "6952" }, "decorators": [] }, @@ -91982,7 +92135,7 @@ ] }, "output_audio_buffer.clear": { - "$id": "7055", + "$id": "7066", "kind": "model", "name": "RealtimeClientEventOutputAudioBufferClear", "namespace": "OpenAI", @@ -91992,17 +92145,17 @@ "discriminatorValue": "output_audio_buffer.clear", "decorators": [], "baseModel": { - "$ref": "6934" + "$ref": "6945" }, "properties": [ { - "$id": "7056", + "$id": "7067", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.clear`.", "type": { - "$id": "7057", + "$id": "7068", "kind": "enumvalue", "name": "output_audio_buffer_clear", "value": "output_audio_buffer.clear", @@ -92010,7 +92163,7 @@ "$ref": "1099" }, "enumType": { - "$ref": "6941" + "$ref": "6952" }, "decorators": [] }, @@ -92030,7 +92183,7 @@ ] }, "conversation.item.create": { - "$id": "7058", + "$id": "7069", "kind": "model", "name": "RealtimeClientEventConversationItemCreate", "namespace": "OpenAI", @@ -92040,17 +92193,17 @@ "discriminatorValue": "conversation.item.create", "decorators": [], "baseModel": { - "$ref": "6934" + "$ref": "6945" }, "properties": [ { - "$id": "7059", + "$id": "7070", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.create`.", "type": { - "$id": "7060", + "$id": "7071", "kind": "enumvalue", "name": "conversation_item_create", "value": "conversation.item.create", @@ -92058,7 +92211,7 @@ "$ref": "1099" }, "enumType": { - "$ref": "6941" + "$ref": "6952" }, "decorators": [] }, @@ -92076,13 +92229,13 @@ "isHttpMetadata": false }, { - "$id": "7061", + "$id": "7072", "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": "7062", + "$id": "7073", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92102,12 +92255,12 @@ "isHttpMetadata": false }, { - "$id": "7063", + "$id": "7074", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$id": "7064", + "$id": "7075", "kind": "model", "name": "RealtimeConversationRequestItem", "namespace": "OpenAI", @@ -92115,7 +92268,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "7065", + "$id": "7076", "kind": "property", "name": "type", "serializedName": "type", @@ -92137,15 +92290,15 @@ }, "properties": [ { - "$ref": "7065" + "$ref": "7076" }, { - "$id": "7066", + "$id": "7077", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "7067", + "$id": "7078", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92167,7 +92320,7 @@ ], "discriminatedSubtypes": { "message": { - "$id": "7068", + "$id": "7079", "kind": "model", "name": "RealtimeRequestMessageItem", "namespace": "OpenAI", @@ -92176,7 +92329,7 @@ "discriminatorValue": "message", "decorators": [], "discriminatorProperty": { - "$id": "7069", + "$id": "7080", "kind": "property", "name": "role", "serializedName": "role", @@ -92197,16 +92350,16 @@ "isHttpMetadata": false }, "baseModel": { - "$ref": "7064" + "$ref": "7075" }, "properties": [ { - "$id": "7070", + "$id": "7081", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7071", + "$id": "7082", "kind": "enumvalue", "name": "message", "value": "message", @@ -92214,14 +92367,14 @@ "$ref": "1154" }, "enumType": { - "$id": "7072", + "$id": "7083", "kind": "enum", "decorators": [], "name": "RealtimeItemType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "7073", + "$id": "7084", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -92230,42 +92383,42 @@ }, "values": [ { - "$id": "7074", + "$id": "7085", "kind": "enumvalue", "decorators": [], "name": "message", "value": "message", "valueType": { - "$ref": "7073" + "$ref": "7084" }, "enumType": { - "$ref": "7072" + "$ref": "7083" } }, { - "$id": "7075", + "$id": "7086", "kind": "enumvalue", "decorators": [], "name": "function_call", "value": "function_call", "valueType": { - "$ref": "7073" + "$ref": "7084" }, "enumType": { - "$ref": "7072" + "$ref": "7083" } }, { - "$id": "7076", + "$id": "7087", "kind": "enumvalue", "decorators": [], "name": "function_call_output", "value": "function_call_output", "valueType": { - "$ref": "7073" + "$ref": "7084" }, "enumType": { - "$ref": "7072" + "$ref": "7083" } } ], @@ -92294,10 +92447,10 @@ "isHttpMetadata": false }, { - "$ref": "7069" + "$ref": "7080" }, { - "$id": "7077", + "$id": "7088", "kind": "property", "name": "status", "serializedName": "status", @@ -92320,7 +92473,7 @@ ], "discriminatedSubtypes": { "system": { - "$id": "7078", + "$id": "7089", "kind": "model", "name": "RealtimeRequestSystemMessageItem", "namespace": "OpenAI", @@ -92329,16 +92482,16 @@ "discriminatorValue": "system", "decorators": [], "baseModel": { - "$ref": "7068" + "$ref": "7079" }, "properties": [ { - "$id": "7079", + "$id": "7090", "kind": "property", "name": "role", "serializedName": "role", "type": { - "$id": "7080", + "$id": "7091", "kind": "enumvalue", "name": "system", "value": "system", @@ -92346,14 +92499,14 @@ "$ref": "1159" }, "enumType": { - "$id": "7081", + "$id": "7092", "kind": "enum", "decorators": [], "name": "RealtimeMessageRole", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "7082", + "$id": "7093", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -92362,42 +92515,42 @@ }, "values": [ { - "$id": "7083", + "$id": "7094", "kind": "enumvalue", "decorators": [], "name": "system", "value": "system", "valueType": { - "$ref": "7082" + "$ref": "7093" }, "enumType": { - "$ref": "7081" + "$ref": "7092" } }, { - "$id": "7084", + "$id": "7095", "kind": "enumvalue", "decorators": [], "name": "user", "value": "user", "valueType": { - "$ref": "7082" + "$ref": "7093" }, "enumType": { - "$ref": "7081" + "$ref": "7092" } }, { - "$id": "7085", + "$id": "7096", "kind": "enumvalue", "decorators": [], "name": "assistant", "value": "assistant", "valueType": { - "$ref": "7082" + "$ref": "7093" }, "enumType": { - "$ref": "7081" + "$ref": "7092" } } ], @@ -92426,16 +92579,16 @@ "isHttpMetadata": false }, { - "$id": "7086", + "$id": "7097", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "7087", + "$id": "7098", "kind": "array", "name": "ArrayRealtimeRequestTextContentPart", "valueType": { - "$id": "7088", + "$id": "7099", "kind": "model", "name": "RealtimeRequestTextContentPart", "namespace": "OpenAI", @@ -92444,7 +92597,7 @@ "discriminatorValue": "input_text", "decorators": [], "baseModel": { - "$id": "7089", + "$id": "7100", "kind": "model", "name": "RealtimeContentPart", "namespace": "OpenAI", @@ -92452,7 +92605,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "7090", + "$id": "7101", "kind": "property", "name": "type", "serializedName": "type", @@ -92474,15 +92627,15 @@ }, "properties": [ { - "$ref": "7090" + "$ref": "7101" } ], "discriminatedSubtypes": { "input_text": { - "$ref": "7088" + "$ref": "7099" }, "input_audio": { - "$id": "7091", + "$id": "7102", "kind": "model", "name": "RealtimeRequestAudioContentPart", "namespace": "OpenAI", @@ -92491,16 +92644,16 @@ "discriminatorValue": "input_audio", "decorators": [], "baseModel": { - "$ref": "7089" + "$ref": "7100" }, "properties": [ { - "$id": "7092", + "$id": "7103", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7093", + "$id": "7104", "kind": "enumvalue", "name": "input_audio", "value": "input_audio", @@ -92508,14 +92661,14 @@ "$ref": "1169" }, "enumType": { - "$id": "7094", + "$id": "7105", "kind": "enum", "decorators": [], "name": "RealtimeContentPartType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "7095", + "$id": "7106", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -92524,55 +92677,55 @@ }, "values": [ { - "$id": "7096", + "$id": "7107", "kind": "enumvalue", "decorators": [], "name": "input_text", "value": "input_text", "valueType": { - "$ref": "7095" + "$ref": "7106" }, "enumType": { - "$ref": "7094" + "$ref": "7105" } }, { - "$id": "7097", + "$id": "7108", "kind": "enumvalue", "decorators": [], "name": "input_audio", "value": "input_audio", "valueType": { - "$ref": "7095" + "$ref": "7106" }, "enumType": { - "$ref": "7094" + "$ref": "7105" } }, { - "$id": "7098", + "$id": "7109", "kind": "enumvalue", "decorators": [], "name": "text", "value": "text", "valueType": { - "$ref": "7095" + "$ref": "7106" }, "enumType": { - "$ref": "7094" + "$ref": "7105" } }, { - "$id": "7099", + "$id": "7110", "kind": "enumvalue", "decorators": [], "name": "audio", "value": "audio", "valueType": { - "$ref": "7095" + "$ref": "7106" }, "enumType": { - "$ref": "7094" + "$ref": "7105" } } ], @@ -92601,12 +92754,12 @@ "isHttpMetadata": false }, { - "$id": "7100", + "$id": "7111", "kind": "property", "name": "transcript", "serializedName": "transcript", "type": { - "$id": "7101", + "$id": "7112", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92628,7 +92781,7 @@ ] }, "text": { - "$id": "7102", + "$id": "7113", "kind": "model", "name": "RealtimeResponseTextContentPart", "namespace": "OpenAI", @@ -92637,16 +92790,16 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "7089" + "$ref": "7100" }, "properties": [ { - "$id": "7103", + "$id": "7114", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7104", + "$id": "7115", "kind": "enumvalue", "name": "text", "value": "text", @@ -92654,7 +92807,7 @@ "$ref": "1169" }, "enumType": { - "$ref": "7094" + "$ref": "7105" }, "decorators": [] }, @@ -92672,12 +92825,12 @@ "isHttpMetadata": false }, { - "$id": "7105", + "$id": "7116", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "7106", + "$id": "7117", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92699,7 +92852,7 @@ ] }, "audio": { - "$id": "7107", + "$id": "7118", "kind": "model", "name": "RealtimeResponseAudioContentPart", "namespace": "OpenAI", @@ -92708,16 +92861,16 @@ "discriminatorValue": "audio", "decorators": [], "baseModel": { - "$ref": "7089" + "$ref": "7100" }, "properties": [ { - "$id": "7108", + "$id": "7119", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7109", + "$id": "7120", "kind": "enumvalue", "name": "audio", "value": "audio", @@ -92725,7 +92878,7 @@ "$ref": "1169" }, "enumType": { - "$ref": "7094" + "$ref": "7105" }, "decorators": [] }, @@ -92743,15 +92896,15 @@ "isHttpMetadata": false }, { - "$id": "7110", + "$id": "7121", "kind": "property", "name": "transcript", "serializedName": "transcript", "type": { - "$id": "7111", + "$id": "7122", "kind": "nullable", "type": { - "$id": "7112", + "$id": "7123", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92778,12 +92931,12 @@ }, "properties": [ { - "$id": "7113", + "$id": "7124", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7114", + "$id": "7125", "kind": "enumvalue", "name": "input_text", "value": "input_text", @@ -92791,7 +92944,7 @@ "$ref": "1169" }, "enumType": { - "$ref": "7094" + "$ref": "7105" }, "decorators": [] }, @@ -92809,12 +92962,12 @@ "isHttpMetadata": false }, { - "$id": "7115", + "$id": "7126", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "7116", + "$id": "7127", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92854,7 +93007,7 @@ ] }, "user": { - "$id": "7117", + "$id": "7128", "kind": "model", "name": "RealtimeRequestUserMessageItem", "namespace": "OpenAI", @@ -92863,16 +93016,16 @@ "discriminatorValue": "user", "decorators": [], "baseModel": { - "$ref": "7068" + "$ref": "7079" }, "properties": [ { - "$id": "7118", + "$id": "7129", "kind": "property", "name": "role", "serializedName": "role", "type": { - "$id": "7119", + "$id": "7130", "kind": "enumvalue", "name": "user", "value": "user", @@ -92880,7 +93033,7 @@ "$ref": "1159" }, "enumType": { - "$ref": "7081" + "$ref": "7092" }, "decorators": [] }, @@ -92898,24 +93051,24 @@ "isHttpMetadata": false }, { - "$id": "7120", + "$id": "7131", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "7121", + "$id": "7132", "kind": "array", "name": "Array42", "valueType": { - "$id": "7122", + "$id": "7133", "kind": "union", "name": "RealtimeRequestUserMessageItemContent", "variantTypes": [ { - "$ref": "7088" + "$ref": "7099" }, { - "$ref": "7091" + "$ref": "7102" } ], "namespace": "OpenAI", @@ -92940,7 +93093,7 @@ ] }, "assistant": { - "$id": "7123", + "$id": "7134", "kind": "model", "name": "RealtimeRequestAssistantMessageItem", "namespace": "OpenAI", @@ -92949,16 +93102,16 @@ "discriminatorValue": "assistant", "decorators": [], "baseModel": { - "$ref": "7068" + "$ref": "7079" }, "properties": [ { - "$id": "7124", + "$id": "7135", "kind": "property", "name": "role", "serializedName": "role", "type": { - "$id": "7125", + "$id": "7136", "kind": "enumvalue", "name": "assistant", "value": "assistant", @@ -92966,7 +93119,7 @@ "$ref": "1159" }, "enumType": { - "$ref": "7081" + "$ref": "7092" }, "decorators": [] }, @@ -92984,12 +93137,12 @@ "isHttpMetadata": false }, { - "$id": "7126", + "$id": "7137", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$ref": "7087" + "$ref": "7098" }, "optional": false, "readOnly": false, @@ -93009,7 +93162,7 @@ } }, "function_call": { - "$id": "7127", + "$id": "7138", "kind": "model", "name": "RealtimeRequestFunctionCallItem", "namespace": "OpenAI", @@ -93018,16 +93171,16 @@ "discriminatorValue": "function_call", "decorators": [], "baseModel": { - "$ref": "7064" + "$ref": "7075" }, "properties": [ { - "$id": "7128", + "$id": "7139", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7129", + "$id": "7140", "kind": "enumvalue", "name": "function_call", "value": "function_call", @@ -93035,7 +93188,7 @@ "$ref": "1154" }, "enumType": { - "$ref": "7072" + "$ref": "7083" }, "decorators": [] }, @@ -93053,12 +93206,12 @@ "isHttpMetadata": false }, { - "$id": "7130", + "$id": "7141", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "7131", + "$id": "7142", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93078,12 +93231,12 @@ "isHttpMetadata": false }, { - "$id": "7132", + "$id": "7143", "kind": "property", "name": "call_id", "serializedName": "call_id", "type": { - "$id": "7133", + "$id": "7144", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93103,12 +93256,12 @@ "isHttpMetadata": false }, { - "$id": "7134", + "$id": "7145", "kind": "property", "name": "arguments", "serializedName": "arguments", "type": { - "$id": "7135", + "$id": "7146", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93128,7 +93281,7 @@ "isHttpMetadata": false }, { - "$id": "7136", + "$id": "7147", "kind": "property", "name": "status", "serializedName": "status", @@ -93151,7 +93304,7 @@ ] }, "function_call_output": { - "$id": "7137", + "$id": "7148", "kind": "model", "name": "RealtimeRequestFunctionCallOutputItem", "namespace": "OpenAI", @@ -93160,16 +93313,16 @@ "discriminatorValue": "function_call_output", "decorators": [], "baseModel": { - "$ref": "7064" + "$ref": "7075" }, "properties": [ { - "$id": "7138", + "$id": "7149", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7139", + "$id": "7150", "kind": "enumvalue", "name": "function_call_output", "value": "function_call_output", @@ -93177,7 +93330,7 @@ "$ref": "1154" }, "enumType": { - "$ref": "7072" + "$ref": "7083" }, "decorators": [] }, @@ -93195,12 +93348,12 @@ "isHttpMetadata": false }, { - "$id": "7140", + "$id": "7151", "kind": "property", "name": "call_id", "serializedName": "call_id", "type": { - "$id": "7141", + "$id": "7152", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93220,12 +93373,12 @@ "isHttpMetadata": false }, { - "$id": "7142", + "$id": "7153", "kind": "property", "name": "output", "serializedName": "output", "type": { - "$id": "7143", + "$id": "7154", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93264,7 +93417,7 @@ ] }, "conversation.item.truncate": { - "$id": "7144", + "$id": "7155", "kind": "model", "name": "RealtimeClientEventConversationItemTruncate", "namespace": "OpenAI", @@ -93274,17 +93427,17 @@ "discriminatorValue": "conversation.item.truncate", "decorators": [], "baseModel": { - "$ref": "6934" + "$ref": "6945" }, "properties": [ { - "$id": "7145", + "$id": "7156", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.truncate`.", "type": { - "$id": "7146", + "$id": "7157", "kind": "enumvalue", "name": "conversation_item_truncate", "value": "conversation.item.truncate", @@ -93292,7 +93445,7 @@ "$ref": "1099" }, "enumType": { - "$ref": "6941" + "$ref": "6952" }, "decorators": [] }, @@ -93310,13 +93463,13 @@ "isHttpMetadata": false }, { - "$id": "7147", + "$id": "7158", "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": "7148", + "$id": "7159", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93336,13 +93489,13 @@ "isHttpMetadata": false }, { - "$id": "7149", + "$id": "7160", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part to truncate. Set this to 0.", "type": { - "$id": "7150", + "$id": "7161", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -93362,13 +93515,13 @@ "isHttpMetadata": false }, { - "$id": "7151", + "$id": "7162", "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": "7152", + "$id": "7163", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -93390,7 +93543,7 @@ ] }, "conversation.item.delete": { - "$id": "7153", + "$id": "7164", "kind": "model", "name": "RealtimeClientEventConversationItemDelete", "namespace": "OpenAI", @@ -93400,17 +93553,17 @@ "discriminatorValue": "conversation.item.delete", "decorators": [], "baseModel": { - "$ref": "6934" + "$ref": "6945" }, "properties": [ { - "$id": "7154", + "$id": "7165", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.delete`.", "type": { - "$id": "7155", + "$id": "7166", "kind": "enumvalue", "name": "conversation_item_delete", "value": "conversation.item.delete", @@ -93418,7 +93571,7 @@ "$ref": "1099" }, "enumType": { - "$ref": "6941" + "$ref": "6952" }, "decorators": [] }, @@ -93436,13 +93589,13 @@ "isHttpMetadata": false }, { - "$id": "7156", + "$id": "7167", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to delete.", "type": { - "$id": "7157", + "$id": "7168", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93464,7 +93617,7 @@ ] }, "response.create": { - "$id": "7158", + "$id": "7169", "kind": "model", "name": "RealtimeClientEventResponseCreate", "namespace": "OpenAI", @@ -93474,17 +93627,17 @@ "discriminatorValue": "response.create", "decorators": [], "baseModel": { - "$ref": "6934" + "$ref": "6945" }, "properties": [ { - "$id": "7159", + "$id": "7170", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.create`.", "type": { - "$id": "7160", + "$id": "7171", "kind": "enumvalue", "name": "response_create", "value": "response.create", @@ -93492,7 +93645,7 @@ "$ref": "1099" }, "enumType": { - "$ref": "6941" + "$ref": "6952" }, "decorators": [] }, @@ -93510,12 +93663,12 @@ "isHttpMetadata": false }, { - "$id": "7161", + "$id": "7172", "kind": "property", "name": "response", "serializedName": "response", "type": { - "$id": "7162", + "$id": "7173", "kind": "model", "name": "RealtimeResponseCreateParams", "namespace": "OpenAI", @@ -93525,13 +93678,13 @@ "decorators": [], "properties": [ { - "$id": "7163", + "$id": "7174", "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": "6958" + "$ref": "6969" }, "optional": true, "readOnly": false, @@ -93547,13 +93700,13 @@ "isHttpMetadata": false }, { - "$id": "7164", + "$id": "7175", "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": "7165", + "$id": "7176", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93573,7 +93726,7 @@ "isHttpMetadata": false }, { - "$id": "7166", + "$id": "7177", "kind": "property", "name": "voice", "serializedName": "voice", @@ -93595,7 +93748,7 @@ "isHttpMetadata": false }, { - "$id": "7167", + "$id": "7178", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", @@ -93617,13 +93770,13 @@ "isHttpMetadata": false }, { - "$id": "7168", + "$id": "7179", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "Tools (functions) available to the model.", "type": { - "$ref": "7014" + "$ref": "7025" }, "optional": true, "readOnly": false, @@ -93639,13 +93792,13 @@ "isHttpMetadata": false }, { - "$id": "7169", + "$id": "7180", "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": "7170", + "$id": "7181", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93665,13 +93818,13 @@ "isHttpMetadata": false }, { - "$id": "7171", + "$id": "7182", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Sampling temperature for the model, limited to [0.6, 1.2]. Defaults to 0.8.", "type": { - "$id": "7172", + "$id": "7183", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -93691,18 +93844,18 @@ "isHttpMetadata": false }, { - "$id": "7173", + "$id": "7184", "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": "7174", + "$id": "7185", "kind": "union", "name": "RealtimeResponseCreateParamsMaxOutputTokens", "variantTypes": [ { - "$id": "7175", + "$id": "7186", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -93729,7 +93882,7 @@ "isHttpMetadata": false }, { - "$id": "7176", + "$id": "7187", "kind": "property", "name": "conversation", "serializedName": "conversation", @@ -93751,7 +93904,7 @@ "isHttpMetadata": false }, { - "$id": "7177", + "$id": "7188", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -93773,17 +93926,17 @@ "isHttpMetadata": false }, { - "$id": "7178", + "$id": "7189", "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": "7179", + "$id": "7190", "kind": "array", "name": "ArrayRealtimeConversationRequestItem", "valueType": { - "$ref": "7064" + "$ref": "7075" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -93819,7 +93972,7 @@ ] }, "response.cancel": { - "$id": "7180", + "$id": "7191", "kind": "model", "name": "RealtimeClientEventResponseCancel", "namespace": "OpenAI", @@ -93829,17 +93982,17 @@ "discriminatorValue": "response.cancel", "decorators": [], "baseModel": { - "$ref": "6934" + "$ref": "6945" }, "properties": [ { - "$id": "7181", + "$id": "7192", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.cancel`.", "type": { - "$id": "7182", + "$id": "7193", "kind": "enumvalue", "name": "response_cancel", "value": "response.cancel", @@ -93847,7 +94000,7 @@ "$ref": "1099" }, "enumType": { - "$ref": "6941" + "$ref": "6952" }, "decorators": [] }, @@ -93865,13 +94018,13 @@ "isHttpMetadata": false }, { - "$id": "7183", + "$id": "7194", "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": "7184", + "$id": "7195", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93893,7 +94046,7 @@ ] }, "conversation.item.retrieve": { - "$id": "7185", + "$id": "7196", "kind": "model", "name": "RealtimeClientEventConversationItemRetrieve", "namespace": "OpenAI", @@ -93903,17 +94056,17 @@ "discriminatorValue": "conversation.item.retrieve", "decorators": [], "baseModel": { - "$ref": "6934" + "$ref": "6945" }, "properties": [ { - "$id": "7186", + "$id": "7197", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.retrieve`.", "type": { - "$id": "7187", + "$id": "7198", "kind": "enumvalue", "name": "conversation_item_retrieve", "value": "conversation.item.retrieve", @@ -93921,7 +94074,7 @@ "$ref": "1099" }, "enumType": { - "$ref": "6941" + "$ref": "6952" }, "decorators": [] }, @@ -93939,13 +94092,13 @@ "isHttpMetadata": false }, { - "$id": "7188", + "$id": "7199", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to retrieve.", "type": { - "$id": "7189", + "$id": "7200", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93967,7 +94120,7 @@ ] }, "transcription_session.update": { - "$id": "7190", + "$id": "7201", "kind": "model", "name": "RealtimeClientEventTranscriptionSessionUpdate", "namespace": "OpenAI", @@ -93977,17 +94130,17 @@ "discriminatorValue": "transcription_session.update", "decorators": [], "baseModel": { - "$ref": "6934" + "$ref": "6945" }, "properties": [ { - "$id": "7191", + "$id": "7202", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `transcription_session.update`.", "type": { - "$id": "7192", + "$id": "7203", "kind": "enumvalue", "name": "transcription_session_update", "value": "transcription_session.update", @@ -93995,7 +94148,7 @@ "$ref": "1099" }, "enumType": { - "$ref": "6941" + "$ref": "6952" }, "decorators": [] }, @@ -94013,12 +94166,12 @@ "isHttpMetadata": false }, { - "$id": "7193", + "$id": "7204", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$id": "7194", + "$id": "7205", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequest", "namespace": "OpenAI", @@ -94028,13 +94181,13 @@ "decorators": [], "properties": [ { - "$id": "7195", + "$id": "7206", "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": "7196", + "$id": "7207", "kind": "array", "name": "Array43", "valueType": { @@ -94057,7 +94210,7 @@ "isHttpMetadata": false }, { - "$id": "7197", + "$id": "7208", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", @@ -94079,13 +94232,13 @@ "isHttpMetadata": false }, { - "$id": "7198", + "$id": "7209", "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": "7199", + "$id": "7210", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestInputAudioTranscription", "namespace": "OpenAI", @@ -94094,7 +94247,7 @@ "decorators": [], "properties": [ { - "$id": "7200", + "$id": "7211", "kind": "property", "name": "model", "serializedName": "model", @@ -94116,13 +94269,13 @@ "isHttpMetadata": false }, { - "$id": "7201", + "$id": "7212", "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": "7202", + "$id": "7213", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94142,13 +94295,13 @@ "isHttpMetadata": false }, { - "$id": "7203", + "$id": "7214", "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": "7204", + "$id": "7215", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94183,13 +94336,13 @@ "isHttpMetadata": false }, { - "$id": "7205", + "$id": "7216", "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": "7206", + "$id": "7217", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestTurnDetection", "namespace": "OpenAI", @@ -94198,7 +94351,7 @@ "decorators": [], "properties": [ { - "$id": "7207", + "$id": "7218", "kind": "property", "name": "type", "serializedName": "type", @@ -94220,7 +94373,7 @@ "isHttpMetadata": false }, { - "$id": "7208", + "$id": "7219", "kind": "property", "name": "eagerness", "serializedName": "eagerness", @@ -94242,13 +94395,13 @@ "isHttpMetadata": false }, { - "$id": "7209", + "$id": "7220", "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": "7210", + "$id": "7221", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -94268,13 +94421,13 @@ "isHttpMetadata": false }, { - "$id": "7211", + "$id": "7222", "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": "7212", + "$id": "7223", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -94294,13 +94447,13 @@ "isHttpMetadata": false }, { - "$id": "7213", + "$id": "7224", "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": "7214", + "$id": "7225", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -94320,13 +94473,13 @@ "isHttpMetadata": false }, { - "$id": "7215", + "$id": "7226", "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": "7216", + "$id": "7227", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -94346,13 +94499,13 @@ "isHttpMetadata": false }, { - "$id": "7217", + "$id": "7228", "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": "7218", + "$id": "7229", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -94387,16 +94540,16 @@ "isHttpMetadata": false }, { - "$id": "7219", + "$id": "7230", "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": "7220", + "$id": "7231", "kind": "nullable", "type": { - "$id": "7221", + "$id": "7232", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestInputAudioNoiseReduction1", "namespace": "OpenAI", @@ -94405,7 +94558,7 @@ "decorators": [], "properties": [ { - "$id": "7222", + "$id": "7233", "kind": "property", "name": "type", "serializedName": "type", @@ -94444,7 +94597,7 @@ "isHttpMetadata": false }, { - "$id": "7223", + "$id": "7234", "kind": "property", "name": "include", "serializedName": "include", @@ -94466,13 +94619,13 @@ "isHttpMetadata": false }, { - "$id": "7224", + "$id": "7235", "kind": "property", "name": "client_secret", "serializedName": "client_secret", "doc": "Configuration options for the generated client secret.", "type": { - "$id": "7225", + "$id": "7236", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestClientSecret", "namespace": "OpenAI", @@ -94481,13 +94634,13 @@ "decorators": [], "properties": [ { - "$id": "7226", + "$id": "7237", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "Configuration for the ephemeral token expiration.", "type": { - "$id": "7227", + "$id": "7238", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestClientSecretExpiresAt", "namespace": "OpenAI", @@ -94496,7 +94649,7 @@ "decorators": [], "properties": [ { - "$id": "7228", + "$id": "7239", "kind": "property", "name": "anchor", "serializedName": "anchor", @@ -94518,13 +94671,13 @@ "isHttpMetadata": false }, { - "$id": "7229", + "$id": "7240", "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": "7230", + "$id": "7241", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -94593,139 +94746,139 @@ } }, { - "$ref": "6938" - }, - { - "$ref": "6956" + "$ref": "6949" }, { "$ref": "6967" }, { - "$ref": "6975" - }, - { - "$ref": "6981" + "$ref": "6978" }, { - "$ref": "6996" + "$ref": "6986" }, { - "$ref": "7001" + "$ref": "6992" }, { - "$ref": "7003" + "$ref": "7007" }, { - "$ref": "7010" + "$ref": "7012" }, { - "$ref": "7015" + "$ref": "7014" }, { - "$ref": "7017" + "$ref": "7021" }, { - "$ref": "7031" + "$ref": "7026" }, { - "$ref": "7033" + "$ref": "7028" }, { - "$ref": "7036" + "$ref": "7042" }, { "$ref": "7044" }, { - "$ref": "7049" + "$ref": "7047" }, { - "$ref": "7052" + "$ref": "7055" }, { - "$ref": "7055" + "$ref": "7060" }, { - "$ref": "7058" + "$ref": "7063" }, { - "$ref": "7064" + "$ref": "7066" }, { - "$ref": "7068" + "$ref": "7069" }, { - "$ref": "7078" + "$ref": "7075" }, { - "$ref": "7088" + "$ref": "7079" }, { "$ref": "7089" }, { - "$ref": "7091" + "$ref": "7099" + }, + { + "$ref": "7100" }, { "$ref": "7102" }, { - "$ref": "7107" + "$ref": "7113" }, { - "$ref": "7117" + "$ref": "7118" }, { - "$ref": "7123" + "$ref": "7128" }, { - "$ref": "7127" + "$ref": "7134" }, { - "$ref": "7137" + "$ref": "7138" }, { - "$ref": "7144" + "$ref": "7148" }, { - "$ref": "7153" + "$ref": "7155" }, { - "$ref": "7158" + "$ref": "7164" }, { - "$ref": "7162" + "$ref": "7169" }, { - "$ref": "7180" + "$ref": "7173" }, { - "$ref": "7185" + "$ref": "7191" }, { - "$ref": "7190" + "$ref": "7196" }, { - "$ref": "7194" + "$ref": "7201" }, { - "$ref": "7199" + "$ref": "7205" }, { - "$ref": "7206" + "$ref": "7210" }, { - "$ref": "7221" + "$ref": "7217" }, { - "$ref": "7225" + "$ref": "7232" }, { - "$ref": "7227" + "$ref": "7236" }, { - "$id": "7231", + "$ref": "7238" + }, + { + "$id": "7242", "kind": "model", "name": "RealtimeServerEvent", "namespace": "OpenAI", @@ -94734,7 +94887,7 @@ "doc": "A realtime server event.", "decorators": [], "discriminatorProperty": { - "$id": "7232", + "$id": "7243", "kind": "property", "name": "type", "serializedName": "type", @@ -94757,15 +94910,15 @@ }, "properties": [ { - "$ref": "7232" + "$ref": "7243" }, { - "$id": "7233", + "$id": "7244", "kind": "property", "name": "event_id", "serializedName": "event_id", "type": { - "$id": "7234", + "$id": "7245", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94787,7 +94940,7 @@ ], "discriminatedSubtypes": { "error": { - "$id": "7235", + "$id": "7246", "kind": "model", "name": "RealtimeServerEventError", "namespace": "OpenAI", @@ -94797,17 +94950,17 @@ "discriminatorValue": "error", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7236", + "$id": "7247", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `error`.", "type": { - "$id": "7237", + "$id": "7248", "kind": "enumvalue", "name": "error", "value": "error", @@ -94815,14 +94968,14 @@ "$ref": "1211" }, "enumType": { - "$id": "7238", + "$id": "7249", "kind": "enum", "decorators": [], "name": "RealtimeServerEventType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "7239", + "$id": "7250", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -94831,445 +94984,445 @@ }, "values": [ { - "$id": "7240", + "$id": "7251", "kind": "enumvalue", "decorators": [], "name": "error", "value": "error", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7241", + "$id": "7252", "kind": "enumvalue", "decorators": [], "name": "session_created", "value": "session.created", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7242", + "$id": "7253", "kind": "enumvalue", "decorators": [], "name": "session_updated", "value": "session.updated", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7243", + "$id": "7254", "kind": "enumvalue", "decorators": [], "name": "conversation_created", "value": "conversation.created", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7244", + "$id": "7255", "kind": "enumvalue", "decorators": [], "name": "conversation_item_input_audio_transcription_completed", "value": "conversation.item.input_audio_transcription.completed", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7245", + "$id": "7256", "kind": "enumvalue", "decorators": [], "name": "conversation_item_input_audio_transcription_delta", "value": "conversation.item.input_audio_transcription.delta", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7246", + "$id": "7257", "kind": "enumvalue", "decorators": [], "name": "conversation_item_input_audio_transcription_failed", "value": "conversation.item.input_audio_transcription.failed", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7247", + "$id": "7258", "kind": "enumvalue", "decorators": [], "name": "conversation_item_created", "value": "conversation.item.created", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7248", + "$id": "7259", "kind": "enumvalue", "decorators": [], "name": "conversation_item_retrieved", "value": "conversation.item.retrieved", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7249", + "$id": "7260", "kind": "enumvalue", "decorators": [], "name": "conversation_item_truncated", "value": "conversation.item.truncated", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7250", + "$id": "7261", "kind": "enumvalue", "decorators": [], "name": "conversation_item_deleted", "value": "conversation.item.deleted", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7251", + "$id": "7262", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_committed", "value": "input_audio_buffer.committed", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7252", + "$id": "7263", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_cleared", "value": "input_audio_buffer.cleared", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7253", + "$id": "7264", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_speech_started", "value": "input_audio_buffer.speech_started", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7254", + "$id": "7265", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_speech_stopped", "value": "input_audio_buffer.speech_stopped", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7255", + "$id": "7266", "kind": "enumvalue", "decorators": [], "name": "output_audio_buffer_cleared", "value": "output_audio_buffer.cleared", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7256", + "$id": "7267", "kind": "enumvalue", "decorators": [], "name": "output_audio_buffer_started", "value": "output_audio_buffer.started", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7257", + "$id": "7268", "kind": "enumvalue", "decorators": [], "name": "output_audio_buffer_stopped", "value": "output_audio_buffer.stopped", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7258", + "$id": "7269", "kind": "enumvalue", "decorators": [], "name": "response_created", "value": "response.created", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7259", + "$id": "7270", "kind": "enumvalue", "decorators": [], "name": "response_done", "value": "response.done", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7260", + "$id": "7271", "kind": "enumvalue", "decorators": [], "name": "response_output_item_added", "value": "response.output_item.added", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7261", + "$id": "7272", "kind": "enumvalue", "decorators": [], "name": "response_output_item_done", "value": "response.output_item.done", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7262", + "$id": "7273", "kind": "enumvalue", "decorators": [], "name": "response_content_part_added", "value": "response.content_part.added", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7263", + "$id": "7274", "kind": "enumvalue", "decorators": [], "name": "response_content_part_done", "value": "response.content_part.done", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7264", + "$id": "7275", "kind": "enumvalue", "decorators": [], "name": "response_text_delta", "value": "response.text.delta", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7265", + "$id": "7276", "kind": "enumvalue", "decorators": [], "name": "response_text_done", "value": "response.text.done", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7266", + "$id": "7277", "kind": "enumvalue", "decorators": [], "name": "response_audio_transcript_delta", "value": "response.audio_transcript.delta", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7267", + "$id": "7278", "kind": "enumvalue", "decorators": [], "name": "response_audio_transcript_done", "value": "response.audio_transcript.done", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7268", + "$id": "7279", "kind": "enumvalue", "decorators": [], "name": "response_audio_delta", "value": "response.audio.delta", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7269", + "$id": "7280", "kind": "enumvalue", "decorators": [], "name": "response_audio_done", "value": "response.audio.done", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7270", + "$id": "7281", "kind": "enumvalue", "decorators": [], "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7271", + "$id": "7282", "kind": "enumvalue", "decorators": [], "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7272", + "$id": "7283", "kind": "enumvalue", "decorators": [], "name": "transcription_session_updated", "value": "transcription_session.updated", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } }, { - "$id": "7273", + "$id": "7284", "kind": "enumvalue", "decorators": [], "name": "rate_limits_updated", "value": "rate_limits.updated", "valueType": { - "$ref": "7239" + "$ref": "7250" }, "enumType": { - "$ref": "7238" + "$ref": "7249" } } ], @@ -95298,13 +95451,13 @@ "isHttpMetadata": false }, { - "$id": "7274", + "$id": "7285", "kind": "property", "name": "error", "serializedName": "error", "doc": "Details of the error.", "type": { - "$id": "7275", + "$id": "7286", "kind": "model", "name": "RealtimeServerEventErrorError", "namespace": "OpenAI", @@ -95313,13 +95466,13 @@ "decorators": [], "properties": [ { - "$id": "7276", + "$id": "7287", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of error (e.g., \"invalid_request_error\", \"server_error\").", "type": { - "$id": "7277", + "$id": "7288", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95339,16 +95492,16 @@ "isHttpMetadata": false }, { - "$id": "7278", + "$id": "7289", "kind": "property", "name": "code", "serializedName": "code", "doc": "Error code, if any.", "type": { - "$id": "7279", + "$id": "7290", "kind": "nullable", "type": { - "$id": "7280", + "$id": "7291", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95370,13 +95523,13 @@ "isHttpMetadata": false }, { - "$id": "7281", + "$id": "7292", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable error message.", "type": { - "$id": "7282", + "$id": "7293", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95396,16 +95549,16 @@ "isHttpMetadata": false }, { - "$id": "7283", + "$id": "7294", "kind": "property", "name": "param", "serializedName": "param", "doc": "Parameter related to the error, if any.", "type": { - "$id": "7284", + "$id": "7295", "kind": "nullable", "type": { - "$id": "7285", + "$id": "7296", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95427,16 +95580,16 @@ "isHttpMetadata": false }, { - "$id": "7286", + "$id": "7297", "kind": "property", "name": "event_id", "serializedName": "event_id", "doc": "The event_id of the client event that caused the error, if applicable.", "type": { - "$id": "7287", + "$id": "7298", "kind": "nullable", "type": { - "$id": "7288", + "$id": "7299", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95475,7 +95628,7 @@ ] }, "session.created": { - "$id": "7289", + "$id": "7300", "kind": "model", "name": "RealtimeServerEventSessionCreated", "namespace": "OpenAI", @@ -95485,17 +95638,17 @@ "discriminatorValue": "session.created", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7290", + "$id": "7301", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `session.created`.", "type": { - "$id": "7291", + "$id": "7302", "kind": "enumvalue", "name": "session_created", "value": "session.created", @@ -95503,7 +95656,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -95521,12 +95674,12 @@ "isHttpMetadata": false }, { - "$id": "7292", + "$id": "7303", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$id": "7293", + "$id": "7304", "kind": "model", "name": "RealtimeResponseSession", "namespace": "OpenAI", @@ -95535,7 +95688,7 @@ "decorators": [], "properties": [ { - "$id": "7294", + "$id": "7305", "kind": "property", "name": "object", "serializedName": "object", @@ -95556,12 +95709,12 @@ "isHttpMetadata": false }, { - "$id": "7295", + "$id": "7306", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "7296", + "$id": "7307", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95581,12 +95734,12 @@ "isHttpMetadata": false }, { - "$id": "7297", + "$id": "7308", "kind": "property", "name": "model", "serializedName": "model", "type": { - "$id": "7298", + "$id": "7309", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95606,12 +95759,12 @@ "isHttpMetadata": false }, { - "$id": "7299", + "$id": "7310", "kind": "property", "name": "modalities", "serializedName": "modalities", "type": { - "$ref": "6958" + "$ref": "6969" }, "optional": false, "readOnly": false, @@ -95627,12 +95780,12 @@ "isHttpMetadata": false }, { - "$id": "7300", + "$id": "7311", "kind": "property", "name": "instructions", "serializedName": "instructions", "type": { - "$id": "7301", + "$id": "7312", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95652,7 +95805,7 @@ "isHttpMetadata": false }, { - "$id": "7302", + "$id": "7313", "kind": "property", "name": "voice", "serializedName": "voice", @@ -95673,7 +95826,7 @@ "isHttpMetadata": false }, { - "$id": "7303", + "$id": "7314", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", @@ -95694,7 +95847,7 @@ "isHttpMetadata": false }, { - "$id": "7304", + "$id": "7315", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", @@ -95715,15 +95868,15 @@ "isHttpMetadata": false }, { - "$id": "7305", + "$id": "7316", "kind": "property", "name": "input_audio_transcription", "serializedName": "input_audio_transcription", "type": { - "$id": "7306", + "$id": "7317", "kind": "nullable", "type": { - "$ref": "6967" + "$ref": "6978" }, "namespace": "OpenAI" }, @@ -95741,12 +95894,12 @@ "isHttpMetadata": false }, { - "$id": "7307", + "$id": "7318", "kind": "property", "name": "turn_detection", "serializedName": "turn_detection", "type": { - "$ref": "6975" + "$ref": "6986" }, "optional": false, "readOnly": false, @@ -95762,12 +95915,12 @@ "isHttpMetadata": false }, { - "$id": "7308", + "$id": "7319", "kind": "property", "name": "input_audio_noise_reduction", "serializedName": "input_audio_noise_reduction", "type": { - "$ref": "7001" + "$ref": "7012" }, "optional": false, "readOnly": false, @@ -95783,12 +95936,12 @@ "isHttpMetadata": false }, { - "$id": "7309", + "$id": "7320", "kind": "property", "name": "tools", "serializedName": "tools", "type": { - "$ref": "7014" + "$ref": "7025" }, "optional": false, "readOnly": false, @@ -95804,12 +95957,12 @@ "isHttpMetadata": false }, { - "$id": "7310", + "$id": "7321", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$ref": "7030" + "$ref": "7041" }, "optional": false, "readOnly": false, @@ -95825,12 +95978,12 @@ "isHttpMetadata": false }, { - "$id": "7311", + "$id": "7322", "kind": "property", "name": "temperature", "serializedName": "temperature", "type": { - "$id": "7312", + "$id": "7323", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -95850,20 +96003,20 @@ "isHttpMetadata": false }, { - "$id": "7313", + "$id": "7324", "kind": "property", "name": "max_response_output_tokens", "serializedName": "max_response_output_tokens", "type": { - "$id": "7314", + "$id": "7325", "kind": "nullable", "type": { - "$id": "7315", + "$id": "7326", "kind": "union", "name": "RealtimeResponseSessionMaxResponseOutputTokens", "variantTypes": [ { - "$id": "7316", + "$id": "7327", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -95909,7 +96062,7 @@ ] }, "session.updated": { - "$id": "7317", + "$id": "7328", "kind": "model", "name": "RealtimeServerEventSessionUpdated", "namespace": "OpenAI", @@ -95919,17 +96072,17 @@ "discriminatorValue": "session.updated", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7318", + "$id": "7329", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `session.updated`.", "type": { - "$id": "7319", + "$id": "7330", "kind": "enumvalue", "name": "session_updated", "value": "session.updated", @@ -95937,7 +96090,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -95955,12 +96108,12 @@ "isHttpMetadata": false }, { - "$id": "7320", + "$id": "7331", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$ref": "7293" + "$ref": "7304" }, "optional": false, "readOnly": false, @@ -95978,7 +96131,7 @@ ] }, "conversation.created": { - "$id": "7321", + "$id": "7332", "kind": "model", "name": "RealtimeServerEventConversationCreated", "namespace": "OpenAI", @@ -95988,17 +96141,17 @@ "discriminatorValue": "conversation.created", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7322", + "$id": "7333", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.created`.", "type": { - "$id": "7323", + "$id": "7334", "kind": "enumvalue", "name": "conversation_created", "value": "conversation.created", @@ -96006,7 +96159,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -96024,13 +96177,13 @@ "isHttpMetadata": false }, { - "$id": "7324", + "$id": "7335", "kind": "property", "name": "conversation", "serializedName": "conversation", "doc": "The conversation resource.", "type": { - "$id": "7325", + "$id": "7336", "kind": "model", "name": "RealtimeServerEventConversationCreatedConversation", "namespace": "OpenAI", @@ -96039,13 +96192,13 @@ "decorators": [], "properties": [ { - "$id": "7326", + "$id": "7337", "kind": "property", "name": "id", "serializedName": "id", "doc": "The unique ID of the conversation.", "type": { - "$id": "7327", + "$id": "7338", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96065,13 +96218,13 @@ "isHttpMetadata": false }, { - "$id": "7328", + "$id": "7339", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, must be `realtime.conversation`.", "type": { - "$id": "7329", + "$id": "7340", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96108,7 +96261,7 @@ ] }, "input_audio_buffer.committed": { - "$id": "7330", + "$id": "7341", "kind": "model", "name": "RealtimeServerEventInputAudioBufferCommitted", "namespace": "OpenAI", @@ -96118,17 +96271,17 @@ "discriminatorValue": "input_audio_buffer.committed", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7331", + "$id": "7342", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.committed`.", "type": { - "$id": "7332", + "$id": "7343", "kind": "enumvalue", "name": "input_audio_buffer_committed", "value": "input_audio_buffer.committed", @@ -96136,7 +96289,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -96154,13 +96307,13 @@ "isHttpMetadata": false }, { - "$id": "7333", + "$id": "7344", "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": "7334", + "$id": "7345", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96180,13 +96333,13 @@ "isHttpMetadata": false }, { - "$id": "7335", + "$id": "7346", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item that will be created.", "type": { - "$id": "7336", + "$id": "7347", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96208,7 +96361,7 @@ ] }, "input_audio_buffer.cleared": { - "$id": "7337", + "$id": "7348", "kind": "model", "name": "RealtimeServerEventInputAudioBufferCleared", "namespace": "OpenAI", @@ -96218,17 +96371,17 @@ "discriminatorValue": "input_audio_buffer.cleared", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7338", + "$id": "7349", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.cleared`.", "type": { - "$id": "7339", + "$id": "7350", "kind": "enumvalue", "name": "input_audio_buffer_cleared", "value": "input_audio_buffer.cleared", @@ -96236,7 +96389,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -96256,7 +96409,7 @@ ] }, "input_audio_buffer.speech_started": { - "$id": "7340", + "$id": "7351", "kind": "model", "name": "RealtimeServerEventInputAudioBufferSpeechStarted", "namespace": "OpenAI", @@ -96266,17 +96419,17 @@ "discriminatorValue": "input_audio_buffer.speech_started", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7341", + "$id": "7352", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.speech_started`.", "type": { - "$id": "7342", + "$id": "7353", "kind": "enumvalue", "name": "input_audio_buffer_speech_started", "value": "input_audio_buffer.speech_started", @@ -96284,7 +96437,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -96302,13 +96455,13 @@ "isHttpMetadata": false }, { - "$id": "7343", + "$id": "7354", "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": "7344", + "$id": "7355", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96328,13 +96481,13 @@ "isHttpMetadata": false }, { - "$id": "7345", + "$id": "7356", "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": "7346", + "$id": "7357", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96356,7 +96509,7 @@ ] }, "input_audio_buffer.speech_stopped": { - "$id": "7347", + "$id": "7358", "kind": "model", "name": "RealtimeServerEventInputAudioBufferSpeechStopped", "namespace": "OpenAI", @@ -96366,17 +96519,17 @@ "discriminatorValue": "input_audio_buffer.speech_stopped", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7348", + "$id": "7359", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.speech_stopped`.", "type": { - "$id": "7349", + "$id": "7360", "kind": "enumvalue", "name": "input_audio_buffer_speech_stopped", "value": "input_audio_buffer.speech_stopped", @@ -96384,7 +96537,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -96402,13 +96555,13 @@ "isHttpMetadata": false }, { - "$id": "7350", + "$id": "7361", "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": "7351", + "$id": "7362", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96428,13 +96581,13 @@ "isHttpMetadata": false }, { - "$id": "7352", + "$id": "7363", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item that will be created.", "type": { - "$id": "7353", + "$id": "7364", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96456,7 +96609,7 @@ ] }, "output_audio_buffer.cleared": { - "$id": "7354", + "$id": "7365", "kind": "model", "name": "RealtimeServerEventOutputAudioBufferCleared", "namespace": "OpenAI", @@ -96466,17 +96619,17 @@ "discriminatorValue": "output_audio_buffer.cleared", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7355", + "$id": "7366", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.cleared`.", "type": { - "$id": "7356", + "$id": "7367", "kind": "enumvalue", "name": "output_audio_buffer_cleared", "value": "output_audio_buffer.cleared", @@ -96484,7 +96637,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -96502,13 +96655,13 @@ "isHttpMetadata": false }, { - "$id": "7357", + "$id": "7368", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The unique ID of the response that produced the audio.", "type": { - "$id": "7358", + "$id": "7369", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96530,7 +96683,7 @@ ] }, "output_audio_buffer.started": { - "$id": "7359", + "$id": "7370", "kind": "model", "name": "RealtimeServerEventOutputAudioBufferStarted", "namespace": "OpenAI", @@ -96540,17 +96693,17 @@ "discriminatorValue": "output_audio_buffer.started", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7360", + "$id": "7371", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.started`.", "type": { - "$id": "7361", + "$id": "7372", "kind": "enumvalue", "name": "output_audio_buffer_started", "value": "output_audio_buffer.started", @@ -96558,7 +96711,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -96576,13 +96729,13 @@ "isHttpMetadata": false }, { - "$id": "7362", + "$id": "7373", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The unique ID of the response that produced the audio.", "type": { - "$id": "7363", + "$id": "7374", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96604,7 +96757,7 @@ ] }, "output_audio_buffer.stopped": { - "$id": "7364", + "$id": "7375", "kind": "model", "name": "RealtimeServerEventOutputAudioBufferStopped", "namespace": "OpenAI", @@ -96614,17 +96767,17 @@ "discriminatorValue": "output_audio_buffer.stopped", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7365", + "$id": "7376", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.stopped`.", "type": { - "$id": "7366", + "$id": "7377", "kind": "enumvalue", "name": "output_audio_buffer_stopped", "value": "output_audio_buffer.stopped", @@ -96632,7 +96785,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -96650,13 +96803,13 @@ "isHttpMetadata": false }, { - "$id": "7367", + "$id": "7378", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The unique ID of the response that produced the audio.", "type": { - "$id": "7368", + "$id": "7379", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96678,7 +96831,7 @@ ] }, "conversation.item.created": { - "$id": "7369", + "$id": "7380", "kind": "model", "name": "RealtimeServerEventConversationItemCreated", "namespace": "OpenAI", @@ -96688,17 +96841,17 @@ "discriminatorValue": "conversation.item.created", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7370", + "$id": "7381", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.created`.", "type": { - "$id": "7371", + "$id": "7382", "kind": "enumvalue", "name": "conversation_item_created", "value": "conversation.item.created", @@ -96706,7 +96859,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -96724,13 +96877,13 @@ "isHttpMetadata": false }, { - "$id": "7372", + "$id": "7383", "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": "7373", + "$id": "7384", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96750,12 +96903,12 @@ "isHttpMetadata": false }, { - "$id": "7374", + "$id": "7385", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$id": "7375", + "$id": "7386", "kind": "model", "name": "RealtimeConversationResponseItem", "namespace": "OpenAI", @@ -96763,7 +96916,7 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "7376", + "$id": "7387", "kind": "property", "name": "type", "serializedName": "type", @@ -96785,7 +96938,7 @@ }, "properties": [ { - "$id": "7377", + "$id": "7388", "kind": "property", "name": "object", "serializedName": "object", @@ -96806,18 +96959,18 @@ "isHttpMetadata": false }, { - "$ref": "7376" + "$ref": "7387" }, { - "$id": "7378", + "$id": "7389", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "7379", + "$id": "7390", "kind": "nullable", "type": { - "$id": "7380", + "$id": "7391", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96841,7 +96994,7 @@ ], "discriminatedSubtypes": { "message": { - "$id": "7381", + "$id": "7392", "kind": "model", "name": "RealtimeResponseMessageItem", "namespace": "OpenAI", @@ -96850,16 +97003,16 @@ "discriminatorValue": "message", "decorators": [], "baseModel": { - "$ref": "7375" + "$ref": "7386" }, "properties": [ { - "$id": "7382", + "$id": "7393", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "7071" + "$ref": "7082" }, "optional": false, "readOnly": false, @@ -96875,7 +97028,7 @@ "isHttpMetadata": false }, { - "$id": "7383", + "$id": "7394", "kind": "property", "name": "role", "serializedName": "role", @@ -96896,16 +97049,16 @@ "isHttpMetadata": false }, { - "$id": "7384", + "$id": "7395", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "7385", + "$id": "7396", "kind": "array", "name": "ArrayRealtimeContentPart", "valueType": { - "$ref": "7089" + "$ref": "7100" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -96924,7 +97077,7 @@ "isHttpMetadata": false }, { - "$id": "7386", + "$id": "7397", "kind": "property", "name": "status", "serializedName": "status", @@ -96947,7 +97100,7 @@ ] }, "function_call": { - "$id": "7387", + "$id": "7398", "kind": "model", "name": "RealtimeResponseFunctionCallItem", "namespace": "OpenAI", @@ -96956,16 +97109,16 @@ "discriminatorValue": "function_call", "decorators": [], "baseModel": { - "$ref": "7375" + "$ref": "7386" }, "properties": [ { - "$id": "7388", + "$id": "7399", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "7129" + "$ref": "7140" }, "optional": false, "readOnly": false, @@ -96981,12 +97134,12 @@ "isHttpMetadata": false }, { - "$id": "7389", + "$id": "7400", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "7390", + "$id": "7401", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97006,12 +97159,12 @@ "isHttpMetadata": false }, { - "$id": "7391", + "$id": "7402", "kind": "property", "name": "call_id", "serializedName": "call_id", "type": { - "$id": "7392", + "$id": "7403", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97031,12 +97184,12 @@ "isHttpMetadata": false }, { - "$id": "7393", + "$id": "7404", "kind": "property", "name": "arguments", "serializedName": "arguments", "type": { - "$id": "7394", + "$id": "7405", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97056,7 +97209,7 @@ "isHttpMetadata": false }, { - "$id": "7395", + "$id": "7406", "kind": "property", "name": "status", "serializedName": "status", @@ -97079,7 +97232,7 @@ ] }, "function_call_output": { - "$id": "7396", + "$id": "7407", "kind": "model", "name": "RealtimeResponseFunctionCallOutputItem", "namespace": "OpenAI", @@ -97088,16 +97241,16 @@ "discriminatorValue": "function_call_output", "decorators": [], "baseModel": { - "$ref": "7375" + "$ref": "7386" }, "properties": [ { - "$id": "7397", + "$id": "7408", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "7139" + "$ref": "7150" }, "optional": false, "readOnly": false, @@ -97113,12 +97266,12 @@ "isHttpMetadata": false }, { - "$id": "7398", + "$id": "7409", "kind": "property", "name": "call_id", "serializedName": "call_id", "type": { - "$id": "7399", + "$id": "7410", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97138,12 +97291,12 @@ "isHttpMetadata": false }, { - "$id": "7400", + "$id": "7411", "kind": "property", "name": "output", "serializedName": "output", "type": { - "$id": "7401", + "$id": "7412", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97182,7 +97335,7 @@ ] }, "conversation.item.input_audio_transcription.completed": { - "$id": "7402", + "$id": "7413", "kind": "model", "name": "RealtimeServerEventConversationItemInputAudioTranscriptionCompleted", "namespace": "OpenAI", @@ -97192,17 +97345,17 @@ "discriminatorValue": "conversation.item.input_audio_transcription.completed", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7403", + "$id": "7414", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be\n`conversation.item.input_audio_transcription.completed`.", "type": { - "$id": "7404", + "$id": "7415", "kind": "enumvalue", "name": "conversation_item_input_audio_transcription_completed", "value": "conversation.item.input_audio_transcription.completed", @@ -97210,7 +97363,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -97228,13 +97381,13 @@ "isHttpMetadata": false }, { - "$id": "7405", + "$id": "7416", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item containing the audio.", "type": { - "$id": "7406", + "$id": "7417", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97254,13 +97407,13 @@ "isHttpMetadata": false }, { - "$id": "7407", + "$id": "7418", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part containing the audio.", "type": { - "$id": "7408", + "$id": "7419", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97280,13 +97433,13 @@ "isHttpMetadata": false }, { - "$id": "7409", + "$id": "7420", "kind": "property", "name": "transcript", "serializedName": "transcript", "doc": "The transcribed text.", "type": { - "$id": "7410", + "$id": "7421", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97306,20 +97459,20 @@ "isHttpMetadata": false }, { - "$id": "7411", + "$id": "7422", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "doc": "The log probabilities of the transcription.", "type": { - "$id": "7412", + "$id": "7423", "kind": "nullable", "type": { - "$id": "7413", + "$id": "7424", "kind": "array", "name": "ArrayLogProbProperties", "valueType": { - "$id": "7414", + "$id": "7425", "kind": "model", "name": "LogProbProperties", "namespace": "OpenAI", @@ -97329,13 +97482,13 @@ "decorators": [], "properties": [ { - "$id": "7415", + "$id": "7426", "kind": "property", "name": "token", "serializedName": "token", "doc": "The token that was used to generate the log probability.", "type": { - "$id": "7416", + "$id": "7427", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97355,13 +97508,13 @@ "isHttpMetadata": false }, { - "$id": "7417", + "$id": "7428", "kind": "property", "name": "logprob", "serializedName": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "7418", + "$id": "7429", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -97381,7 +97534,7 @@ "isHttpMetadata": false }, { - "$id": "7419", + "$id": "7430", "kind": "property", "name": "bytes", "serializedName": "bytes", @@ -97425,7 +97578,7 @@ ] }, "conversation.item.input_audio_transcription.failed": { - "$id": "7420", + "$id": "7431", "kind": "model", "name": "RealtimeServerEventConversationItemInputAudioTranscriptionFailed", "namespace": "OpenAI", @@ -97435,17 +97588,17 @@ "discriminatorValue": "conversation.item.input_audio_transcription.failed", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7421", + "$id": "7432", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be\n`conversation.item.input_audio_transcription.failed`.", "type": { - "$id": "7422", + "$id": "7433", "kind": "enumvalue", "name": "conversation_item_input_audio_transcription_failed", "value": "conversation.item.input_audio_transcription.failed", @@ -97453,7 +97606,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -97471,13 +97624,13 @@ "isHttpMetadata": false }, { - "$id": "7423", + "$id": "7434", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item.", "type": { - "$id": "7424", + "$id": "7435", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97497,13 +97650,13 @@ "isHttpMetadata": false }, { - "$id": "7425", + "$id": "7436", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part containing the audio.", "type": { - "$id": "7426", + "$id": "7437", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97523,13 +97676,13 @@ "isHttpMetadata": false }, { - "$id": "7427", + "$id": "7438", "kind": "property", "name": "error", "serializedName": "error", "doc": "Details of the transcription error.", "type": { - "$id": "7428", + "$id": "7439", "kind": "model", "name": "RealtimeServerEventConversationItemInputAudioTranscriptionFailedError", "namespace": "OpenAI", @@ -97538,13 +97691,13 @@ "decorators": [], "properties": [ { - "$id": "7429", + "$id": "7440", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of error.", "type": { - "$id": "7430", + "$id": "7441", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97564,13 +97717,13 @@ "isHttpMetadata": false }, { - "$id": "7431", + "$id": "7442", "kind": "property", "name": "code", "serializedName": "code", "doc": "Error code, if any.", "type": { - "$id": "7432", + "$id": "7443", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97590,13 +97743,13 @@ "isHttpMetadata": false }, { - "$id": "7433", + "$id": "7444", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable error message.", "type": { - "$id": "7434", + "$id": "7445", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97616,13 +97769,13 @@ "isHttpMetadata": false }, { - "$id": "7435", + "$id": "7446", "kind": "property", "name": "param", "serializedName": "param", "doc": "Parameter related to the error, if any.", "type": { - "$id": "7436", + "$id": "7447", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97659,7 +97812,7 @@ ] }, "conversation.item.truncated": { - "$id": "7437", + "$id": "7448", "kind": "model", "name": "RealtimeServerEventConversationItemTruncated", "namespace": "OpenAI", @@ -97669,17 +97822,17 @@ "discriminatorValue": "conversation.item.truncated", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7438", + "$id": "7449", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.truncated`.", "type": { - "$id": "7439", + "$id": "7450", "kind": "enumvalue", "name": "conversation_item_truncated", "value": "conversation.item.truncated", @@ -97687,7 +97840,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -97705,13 +97858,13 @@ "isHttpMetadata": false }, { - "$id": "7440", + "$id": "7451", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the assistant message item that was truncated.", "type": { - "$id": "7441", + "$id": "7452", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97731,13 +97884,13 @@ "isHttpMetadata": false }, { - "$id": "7442", + "$id": "7453", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part that was truncated.", "type": { - "$id": "7443", + "$id": "7454", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97757,13 +97910,13 @@ "isHttpMetadata": false }, { - "$id": "7444", + "$id": "7455", "kind": "property", "name": "audio_end_ms", "serializedName": "audio_end_ms", "doc": "The duration up to which the audio was truncated, in milliseconds.", "type": { - "$id": "7445", + "$id": "7456", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97785,7 +97938,7 @@ ] }, "conversation.item.deleted": { - "$id": "7446", + "$id": "7457", "kind": "model", "name": "RealtimeServerEventConversationItemDeleted", "namespace": "OpenAI", @@ -97795,17 +97948,17 @@ "discriminatorValue": "conversation.item.deleted", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7447", + "$id": "7458", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.deleted`.", "type": { - "$id": "7448", + "$id": "7459", "kind": "enumvalue", "name": "conversation_item_deleted", "value": "conversation.item.deleted", @@ -97813,7 +97966,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -97831,13 +97984,13 @@ "isHttpMetadata": false }, { - "$id": "7449", + "$id": "7460", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item that was deleted.", "type": { - "$id": "7450", + "$id": "7461", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97859,7 +98012,7 @@ ] }, "response.created": { - "$id": "7451", + "$id": "7462", "kind": "model", "name": "RealtimeServerEventResponseCreated", "namespace": "OpenAI", @@ -97869,17 +98022,17 @@ "discriminatorValue": "response.created", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7452", + "$id": "7463", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.created`.", "type": { - "$id": "7453", + "$id": "7464", "kind": "enumvalue", "name": "response_created", "value": "response.created", @@ -97887,7 +98040,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -97905,12 +98058,12 @@ "isHttpMetadata": false }, { - "$id": "7454", + "$id": "7465", "kind": "property", "name": "response", "serializedName": "response", "type": { - "$id": "7455", + "$id": "7466", "kind": "model", "name": "RealtimeResponse", "namespace": "OpenAI", @@ -97920,13 +98073,13 @@ "decorators": [], "properties": [ { - "$id": "7456", + "$id": "7467", "kind": "property", "name": "id", "serializedName": "id", "doc": "The unique ID of the response.", "type": { - "$id": "7457", + "$id": "7468", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97946,7 +98099,7 @@ "isHttpMetadata": false }, { - "$id": "7458", + "$id": "7469", "kind": "property", "name": "object", "serializedName": "object", @@ -97968,7 +98121,7 @@ "isHttpMetadata": false }, { - "$id": "7459", + "$id": "7470", "kind": "property", "name": "status", "serializedName": "status", @@ -97990,13 +98143,13 @@ "isHttpMetadata": false }, { - "$id": "7460", + "$id": "7471", "kind": "property", "name": "status_details", "serializedName": "status_details", "doc": "Additional details about the status.", "type": { - "$id": "7461", + "$id": "7472", "kind": "model", "name": "RealtimeResponseStatusDetails", "namespace": "OpenAI", @@ -98005,7 +98158,7 @@ "decorators": [], "properties": [ { - "$id": "7462", + "$id": "7473", "kind": "property", "name": "type", "serializedName": "type", @@ -98027,7 +98180,7 @@ "isHttpMetadata": false }, { - "$id": "7463", + "$id": "7474", "kind": "property", "name": "reason", "serializedName": "reason", @@ -98049,13 +98202,13 @@ "isHttpMetadata": false }, { - "$id": "7464", + "$id": "7475", "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": "7465", + "$id": "7476", "kind": "model", "name": "RealtimeResponseStatusDetailsError", "namespace": "OpenAI", @@ -98064,13 +98217,13 @@ "decorators": [], "properties": [ { - "$id": "7466", + "$id": "7477", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of error.", "type": { - "$id": "7467", + "$id": "7478", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98090,13 +98243,13 @@ "isHttpMetadata": false }, { - "$id": "7468", + "$id": "7479", "kind": "property", "name": "code", "serializedName": "code", "doc": "Error code, if any.", "type": { - "$id": "7469", + "$id": "7480", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98146,17 +98299,17 @@ "isHttpMetadata": false }, { - "$id": "7470", + "$id": "7481", "kind": "property", "name": "output", "serializedName": "output", "doc": "The list of output items generated by the response.", "type": { - "$id": "7471", + "$id": "7482", "kind": "array", "name": "ArrayRealtimeConversationResponseItem", "valueType": { - "$ref": "7375" + "$ref": "7386" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -98175,7 +98328,7 @@ "isHttpMetadata": false }, { - "$id": "7472", + "$id": "7483", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -98197,13 +98350,13 @@ "isHttpMetadata": false }, { - "$id": "7473", + "$id": "7484", "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": "7474", + "$id": "7485", "kind": "model", "name": "RealtimeResponseUsage", "namespace": "OpenAI", @@ -98212,13 +98365,13 @@ "decorators": [], "properties": [ { - "$id": "7475", + "$id": "7486", "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": "7476", + "$id": "7487", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98238,13 +98391,13 @@ "isHttpMetadata": false }, { - "$id": "7477", + "$id": "7488", "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": "7478", + "$id": "7489", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98264,13 +98417,13 @@ "isHttpMetadata": false }, { - "$id": "7479", + "$id": "7490", "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": "7480", + "$id": "7491", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98290,13 +98443,13 @@ "isHttpMetadata": false }, { - "$id": "7481", + "$id": "7492", "kind": "property", "name": "input_token_details", "serializedName": "input_token_details", "doc": "Details about the input tokens used in the Response.", "type": { - "$id": "7482", + "$id": "7493", "kind": "model", "name": "RealtimeResponseUsageInputTokenDetails", "namespace": "OpenAI", @@ -98305,13 +98458,13 @@ "decorators": [], "properties": [ { - "$id": "7483", + "$id": "7494", "kind": "property", "name": "cached_tokens", "serializedName": "cached_tokens", "doc": "The number of cached tokens used in the Response.", "type": { - "$id": "7484", + "$id": "7495", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98331,13 +98484,13 @@ "isHttpMetadata": false }, { - "$id": "7485", + "$id": "7496", "kind": "property", "name": "text_tokens", "serializedName": "text_tokens", "doc": "The number of text tokens used in the Response.", "type": { - "$id": "7486", + "$id": "7497", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98357,13 +98510,13 @@ "isHttpMetadata": false }, { - "$id": "7487", + "$id": "7498", "kind": "property", "name": "audio_tokens", "serializedName": "audio_tokens", "doc": "The number of audio tokens used in the Response.", "type": { - "$id": "7488", + "$id": "7499", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98398,13 +98551,13 @@ "isHttpMetadata": false }, { - "$id": "7489", + "$id": "7500", "kind": "property", "name": "output_token_details", "serializedName": "output_token_details", "doc": "Details about the output tokens used in the Response.", "type": { - "$id": "7490", + "$id": "7501", "kind": "model", "name": "RealtimeResponseUsageOutputTokenDetails", "namespace": "OpenAI", @@ -98413,13 +98566,13 @@ "decorators": [], "properties": [ { - "$id": "7491", + "$id": "7502", "kind": "property", "name": "text_tokens", "serializedName": "text_tokens", "doc": "The number of text tokens used in the Response.", "type": { - "$id": "7492", + "$id": "7503", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98439,13 +98592,13 @@ "isHttpMetadata": false }, { - "$id": "7493", + "$id": "7504", "kind": "property", "name": "audio_tokens", "serializedName": "audio_tokens", "doc": "The number of audio tokens used in the Response.", "type": { - "$id": "7494", + "$id": "7505", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98495,13 +98648,13 @@ "isHttpMetadata": false }, { - "$id": "7495", + "$id": "7506", "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": "7496", + "$id": "7507", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98521,7 +98674,7 @@ "isHttpMetadata": false }, { - "$id": "7497", + "$id": "7508", "kind": "property", "name": "voice", "serializedName": "voice", @@ -98543,13 +98696,13 @@ "isHttpMetadata": false }, { - "$id": "7498", + "$id": "7509", "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": "7499", + "$id": "7510", "kind": "array", "name": "Array44", "valueType": { @@ -98572,7 +98725,7 @@ "isHttpMetadata": false }, { - "$id": "7500", + "$id": "7511", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", @@ -98594,13 +98747,13 @@ "isHttpMetadata": false }, { - "$id": "7501", + "$id": "7512", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Sampling temperature for the model, limited to [0.6, 1.2]. Defaults to 0.8.", "type": { - "$id": "7502", + "$id": "7513", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -98620,18 +98773,18 @@ "isHttpMetadata": false }, { - "$id": "7503", + "$id": "7514", "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": "7504", + "$id": "7515", "kind": "union", "name": "RealtimeResponseMaxOutputTokens", "variantTypes": [ { - "$id": "7505", + "$id": "7516", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98675,7 +98828,7 @@ ] }, "response.done": { - "$id": "7506", + "$id": "7517", "kind": "model", "name": "RealtimeServerEventResponseDone", "namespace": "OpenAI", @@ -98685,17 +98838,17 @@ "discriminatorValue": "response.done", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7507", + "$id": "7518", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.done`.", "type": { - "$id": "7508", + "$id": "7519", "kind": "enumvalue", "name": "response_done", "value": "response.done", @@ -98703,7 +98856,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -98721,12 +98874,12 @@ "isHttpMetadata": false }, { - "$id": "7509", + "$id": "7520", "kind": "property", "name": "response", "serializedName": "response", "type": { - "$ref": "7455" + "$ref": "7466" }, "optional": false, "readOnly": false, @@ -98744,7 +98897,7 @@ ] }, "response.output_item.added": { - "$id": "7510", + "$id": "7521", "kind": "model", "name": "RealtimeServerEventResponseOutputItemAdded", "namespace": "OpenAI", @@ -98754,17 +98907,17 @@ "discriminatorValue": "response.output_item.added", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7511", + "$id": "7522", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.output_item.added`.", "type": { - "$id": "7512", + "$id": "7523", "kind": "enumvalue", "name": "response_output_item_added", "value": "response.output_item.added", @@ -98772,7 +98925,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -98790,13 +98943,13 @@ "isHttpMetadata": false }, { - "$id": "7513", + "$id": "7524", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the Response to which the item belongs.", "type": { - "$id": "7514", + "$id": "7525", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98816,13 +98969,13 @@ "isHttpMetadata": false }, { - "$id": "7515", + "$id": "7526", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the Response.", "type": { - "$id": "7516", + "$id": "7527", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98842,12 +98995,12 @@ "isHttpMetadata": false }, { - "$id": "7517", + "$id": "7528", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$ref": "7375" + "$ref": "7386" }, "optional": false, "readOnly": false, @@ -98865,7 +99018,7 @@ ] }, "response.output_item.done": { - "$id": "7518", + "$id": "7529", "kind": "model", "name": "RealtimeServerEventResponseOutputItemDone", "namespace": "OpenAI", @@ -98875,17 +99028,17 @@ "discriminatorValue": "response.output_item.done", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7519", + "$id": "7530", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.output_item.done`.", "type": { - "$id": "7520", + "$id": "7531", "kind": "enumvalue", "name": "response_output_item_done", "value": "response.output_item.done", @@ -98893,7 +99046,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -98911,13 +99064,13 @@ "isHttpMetadata": false }, { - "$id": "7521", + "$id": "7532", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the Response to which the item belongs.", "type": { - "$id": "7522", + "$id": "7533", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98937,13 +99090,13 @@ "isHttpMetadata": false }, { - "$id": "7523", + "$id": "7534", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the Response.", "type": { - "$id": "7524", + "$id": "7535", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98963,12 +99116,12 @@ "isHttpMetadata": false }, { - "$id": "7525", + "$id": "7536", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$ref": "7375" + "$ref": "7386" }, "optional": false, "readOnly": false, @@ -98986,7 +99139,7 @@ ] }, "response.content_part.added": { - "$id": "7526", + "$id": "7537", "kind": "model", "name": "RealtimeServerEventResponseContentPartAdded", "namespace": "OpenAI", @@ -98996,17 +99149,17 @@ "discriminatorValue": "response.content_part.added", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7527", + "$id": "7538", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.content_part.added`.", "type": { - "$id": "7528", + "$id": "7539", "kind": "enumvalue", "name": "response_content_part_added", "value": "response.content_part.added", @@ -99014,7 +99167,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -99032,13 +99185,13 @@ "isHttpMetadata": false }, { - "$id": "7529", + "$id": "7540", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7530", + "$id": "7541", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99058,13 +99211,13 @@ "isHttpMetadata": false }, { - "$id": "7531", + "$id": "7542", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to which the content part was added.", "type": { - "$id": "7532", + "$id": "7543", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99084,13 +99237,13 @@ "isHttpMetadata": false }, { - "$id": "7533", + "$id": "7544", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7534", + "$id": "7545", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99110,13 +99263,13 @@ "isHttpMetadata": false }, { - "$id": "7535", + "$id": "7546", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7536", + "$id": "7547", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99136,13 +99289,13 @@ "isHttpMetadata": false }, { - "$id": "7537", + "$id": "7548", "kind": "property", "name": "part", "serializedName": "part", "doc": "The content part that was added.", "type": { - "$ref": "7089" + "$ref": "7100" }, "optional": false, "readOnly": false, @@ -99160,7 +99313,7 @@ ] }, "response.content_part.done": { - "$id": "7538", + "$id": "7549", "kind": "model", "name": "RealtimeServerEventResponseContentPartDone", "namespace": "OpenAI", @@ -99170,17 +99323,17 @@ "discriminatorValue": "response.content_part.done", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7539", + "$id": "7550", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.content_part.done`.", "type": { - "$id": "7540", + "$id": "7551", "kind": "enumvalue", "name": "response_content_part_done", "value": "response.content_part.done", @@ -99188,7 +99341,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -99206,13 +99359,13 @@ "isHttpMetadata": false }, { - "$id": "7541", + "$id": "7552", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7542", + "$id": "7553", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99232,13 +99385,13 @@ "isHttpMetadata": false }, { - "$id": "7543", + "$id": "7554", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7544", + "$id": "7555", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99258,13 +99411,13 @@ "isHttpMetadata": false }, { - "$id": "7545", + "$id": "7556", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7546", + "$id": "7557", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99284,13 +99437,13 @@ "isHttpMetadata": false }, { - "$id": "7547", + "$id": "7558", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7548", + "$id": "7559", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99310,13 +99463,13 @@ "isHttpMetadata": false }, { - "$id": "7549", + "$id": "7560", "kind": "property", "name": "part", "serializedName": "part", "doc": "The content part that is done.", "type": { - "$ref": "7089" + "$ref": "7100" }, "optional": false, "readOnly": false, @@ -99334,7 +99487,7 @@ ] }, "response.text.delta": { - "$id": "7550", + "$id": "7561", "kind": "model", "name": "RealtimeServerEventResponseTextDelta", "namespace": "OpenAI", @@ -99344,17 +99497,17 @@ "discriminatorValue": "response.text.delta", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7551", + "$id": "7562", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.text.delta`.", "type": { - "$id": "7552", + "$id": "7563", "kind": "enumvalue", "name": "response_text_delta", "value": "response.text.delta", @@ -99362,7 +99515,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -99380,13 +99533,13 @@ "isHttpMetadata": false }, { - "$id": "7553", + "$id": "7564", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7554", + "$id": "7565", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99406,13 +99559,13 @@ "isHttpMetadata": false }, { - "$id": "7555", + "$id": "7566", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7556", + "$id": "7567", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99432,13 +99585,13 @@ "isHttpMetadata": false }, { - "$id": "7557", + "$id": "7568", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7558", + "$id": "7569", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99458,13 +99611,13 @@ "isHttpMetadata": false }, { - "$id": "7559", + "$id": "7570", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7560", + "$id": "7571", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99484,13 +99637,13 @@ "isHttpMetadata": false }, { - "$id": "7561", + "$id": "7572", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The text delta.", "type": { - "$id": "7562", + "$id": "7573", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99512,7 +99665,7 @@ ] }, "response.text.done": { - "$id": "7563", + "$id": "7574", "kind": "model", "name": "RealtimeServerEventResponseTextDone", "namespace": "OpenAI", @@ -99522,17 +99675,17 @@ "discriminatorValue": "response.text.done", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7564", + "$id": "7575", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.text.done`.", "type": { - "$id": "7565", + "$id": "7576", "kind": "enumvalue", "name": "response_text_done", "value": "response.text.done", @@ -99540,7 +99693,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -99558,13 +99711,13 @@ "isHttpMetadata": false }, { - "$id": "7566", + "$id": "7577", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7567", + "$id": "7578", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99584,13 +99737,13 @@ "isHttpMetadata": false }, { - "$id": "7568", + "$id": "7579", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7569", + "$id": "7580", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99610,13 +99763,13 @@ "isHttpMetadata": false }, { - "$id": "7570", + "$id": "7581", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7571", + "$id": "7582", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99636,13 +99789,13 @@ "isHttpMetadata": false }, { - "$id": "7572", + "$id": "7583", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7573", + "$id": "7584", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99662,13 +99815,13 @@ "isHttpMetadata": false }, { - "$id": "7574", + "$id": "7585", "kind": "property", "name": "text", "serializedName": "text", "doc": "The final text content.", "type": { - "$id": "7575", + "$id": "7586", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99690,7 +99843,7 @@ ] }, "response.audio_transcript.delta": { - "$id": "7576", + "$id": "7587", "kind": "model", "name": "RealtimeServerEventResponseAudioTranscriptDelta", "namespace": "OpenAI", @@ -99700,17 +99853,17 @@ "discriminatorValue": "response.audio_transcript.delta", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7577", + "$id": "7588", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.audio_transcript.delta`.", "type": { - "$id": "7578", + "$id": "7589", "kind": "enumvalue", "name": "response_audio_transcript_delta", "value": "response.audio_transcript.delta", @@ -99718,7 +99871,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -99736,13 +99889,13 @@ "isHttpMetadata": false }, { - "$id": "7579", + "$id": "7590", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7580", + "$id": "7591", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99762,13 +99915,13 @@ "isHttpMetadata": false }, { - "$id": "7581", + "$id": "7592", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7582", + "$id": "7593", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99788,13 +99941,13 @@ "isHttpMetadata": false }, { - "$id": "7583", + "$id": "7594", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7584", + "$id": "7595", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99814,13 +99967,13 @@ "isHttpMetadata": false }, { - "$id": "7585", + "$id": "7596", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7586", + "$id": "7597", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99840,13 +99993,13 @@ "isHttpMetadata": false }, { - "$id": "7587", + "$id": "7598", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The transcript delta.", "type": { - "$id": "7588", + "$id": "7599", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99868,7 +100021,7 @@ ] }, "response.audio_transcript.done": { - "$id": "7589", + "$id": "7600", "kind": "model", "name": "RealtimeServerEventResponseAudioTranscriptDone", "namespace": "OpenAI", @@ -99878,17 +100031,17 @@ "discriminatorValue": "response.audio_transcript.done", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7590", + "$id": "7601", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.audio_transcript.done`.", "type": { - "$id": "7591", + "$id": "7602", "kind": "enumvalue", "name": "response_audio_transcript_done", "value": "response.audio_transcript.done", @@ -99896,7 +100049,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -99914,13 +100067,13 @@ "isHttpMetadata": false }, { - "$id": "7592", + "$id": "7603", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7593", + "$id": "7604", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99940,13 +100093,13 @@ "isHttpMetadata": false }, { - "$id": "7594", + "$id": "7605", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7595", + "$id": "7606", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99966,13 +100119,13 @@ "isHttpMetadata": false }, { - "$id": "7596", + "$id": "7607", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7597", + "$id": "7608", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99992,13 +100145,13 @@ "isHttpMetadata": false }, { - "$id": "7598", + "$id": "7609", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7599", + "$id": "7610", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100018,13 +100171,13 @@ "isHttpMetadata": false }, { - "$id": "7600", + "$id": "7611", "kind": "property", "name": "transcript", "serializedName": "transcript", "doc": "The final transcript of the audio.", "type": { - "$id": "7601", + "$id": "7612", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100046,7 +100199,7 @@ ] }, "response.audio.delta": { - "$id": "7602", + "$id": "7613", "kind": "model", "name": "RealtimeServerEventResponseAudioDelta", "namespace": "OpenAI", @@ -100056,17 +100209,17 @@ "discriminatorValue": "response.audio.delta", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7603", + "$id": "7614", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.audio.delta`.", "type": { - "$id": "7604", + "$id": "7615", "kind": "enumvalue", "name": "response_audio_delta", "value": "response.audio.delta", @@ -100074,7 +100227,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -100092,13 +100245,13 @@ "isHttpMetadata": false }, { - "$id": "7605", + "$id": "7616", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7606", + "$id": "7617", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100118,13 +100271,13 @@ "isHttpMetadata": false }, { - "$id": "7607", + "$id": "7618", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7608", + "$id": "7619", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100144,13 +100297,13 @@ "isHttpMetadata": false }, { - "$id": "7609", + "$id": "7620", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7610", + "$id": "7621", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100170,13 +100323,13 @@ "isHttpMetadata": false }, { - "$id": "7611", + "$id": "7622", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7612", + "$id": "7623", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100196,13 +100349,13 @@ "isHttpMetadata": false }, { - "$id": "7613", + "$id": "7624", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "Base64-encoded audio data delta.", "type": { - "$id": "7614", + "$id": "7625", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -100225,7 +100378,7 @@ ] }, "response.audio.done": { - "$id": "7615", + "$id": "7626", "kind": "model", "name": "RealtimeServerEventResponseAudioDone", "namespace": "OpenAI", @@ -100235,17 +100388,17 @@ "discriminatorValue": "response.audio.done", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7616", + "$id": "7627", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.audio.done`.", "type": { - "$id": "7617", + "$id": "7628", "kind": "enumvalue", "name": "response_audio_done", "value": "response.audio.done", @@ -100253,7 +100406,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -100271,13 +100424,13 @@ "isHttpMetadata": false }, { - "$id": "7618", + "$id": "7629", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7619", + "$id": "7630", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100297,13 +100450,13 @@ "isHttpMetadata": false }, { - "$id": "7620", + "$id": "7631", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7621", + "$id": "7632", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100323,13 +100476,13 @@ "isHttpMetadata": false }, { - "$id": "7622", + "$id": "7633", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7623", + "$id": "7634", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100349,13 +100502,13 @@ "isHttpMetadata": false }, { - "$id": "7624", + "$id": "7635", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7625", + "$id": "7636", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100377,7 +100530,7 @@ ] }, "response.function_call_arguments.delta": { - "$id": "7626", + "$id": "7637", "kind": "model", "name": "RealtimeServerEventResponseFunctionCallArgumentsDelta", "namespace": "OpenAI", @@ -100387,17 +100540,17 @@ "discriminatorValue": "response.function_call_arguments.delta", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7627", + "$id": "7638", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.function_call_arguments.delta`.", "type": { - "$id": "7628", + "$id": "7639", "kind": "enumvalue", "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", @@ -100405,7 +100558,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -100423,13 +100576,13 @@ "isHttpMetadata": false }, { - "$id": "7629", + "$id": "7640", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7630", + "$id": "7641", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100449,13 +100602,13 @@ "isHttpMetadata": false }, { - "$id": "7631", + "$id": "7642", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the function call item.", "type": { - "$id": "7632", + "$id": "7643", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100475,13 +100628,13 @@ "isHttpMetadata": false }, { - "$id": "7633", + "$id": "7644", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7634", + "$id": "7645", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100501,13 +100654,13 @@ "isHttpMetadata": false }, { - "$id": "7635", + "$id": "7646", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the function call.", "type": { - "$id": "7636", + "$id": "7647", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100527,13 +100680,13 @@ "isHttpMetadata": false }, { - "$id": "7637", + "$id": "7648", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The arguments delta as a JSON string.", "type": { - "$id": "7638", + "$id": "7649", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100555,7 +100708,7 @@ ] }, "response.function_call_arguments.done": { - "$id": "7639", + "$id": "7650", "kind": "model", "name": "RealtimeServerEventResponseFunctionCallArgumentsDone", "namespace": "OpenAI", @@ -100565,17 +100718,17 @@ "discriminatorValue": "response.function_call_arguments.done", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7640", + "$id": "7651", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.function_call_arguments.done`.", "type": { - "$id": "7641", + "$id": "7652", "kind": "enumvalue", "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", @@ -100583,7 +100736,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -100601,13 +100754,13 @@ "isHttpMetadata": false }, { - "$id": "7642", + "$id": "7653", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7643", + "$id": "7654", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100627,13 +100780,13 @@ "isHttpMetadata": false }, { - "$id": "7644", + "$id": "7655", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the function call item.", "type": { - "$id": "7645", + "$id": "7656", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100653,13 +100806,13 @@ "isHttpMetadata": false }, { - "$id": "7646", + "$id": "7657", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7647", + "$id": "7658", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100679,13 +100832,13 @@ "isHttpMetadata": false }, { - "$id": "7648", + "$id": "7659", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the function call.", "type": { - "$id": "7649", + "$id": "7660", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100705,13 +100858,13 @@ "isHttpMetadata": false }, { - "$id": "7650", + "$id": "7661", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "The final arguments as a JSON string.", "type": { - "$id": "7651", + "$id": "7662", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100733,7 +100886,7 @@ ] }, "rate_limits.updated": { - "$id": "7652", + "$id": "7663", "kind": "model", "name": "RealtimeServerEventRateLimitsUpdated", "namespace": "OpenAI", @@ -100743,17 +100896,17 @@ "discriminatorValue": "rate_limits.updated", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7653", + "$id": "7664", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `rate_limits.updated`.", "type": { - "$id": "7654", + "$id": "7665", "kind": "enumvalue", "name": "rate_limits_updated", "value": "rate_limits.updated", @@ -100761,7 +100914,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -100779,17 +100932,17 @@ "isHttpMetadata": false }, { - "$id": "7655", + "$id": "7666", "kind": "property", "name": "rate_limits", "serializedName": "rate_limits", "doc": "List of rate limit information.", "type": { - "$id": "7656", + "$id": "7667", "kind": "array", "name": "ArrayRealtimeServerEventRateLimitsUpdatedRateLimitsItem", "valueType": { - "$id": "7657", + "$id": "7668", "kind": "model", "name": "RealtimeServerEventRateLimitsUpdatedRateLimitsItem", "namespace": "OpenAI", @@ -100798,13 +100951,13 @@ "decorators": [], "properties": [ { - "$id": "7658", + "$id": "7669", "kind": "property", "name": "name", "serializedName": "name", "doc": "The rate limit property name that this item includes information about.", "type": { - "$id": "7659", + "$id": "7670", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100824,13 +100977,13 @@ "isHttpMetadata": false }, { - "$id": "7660", + "$id": "7671", "kind": "property", "name": "limit", "serializedName": "limit", "doc": "The maximum configured limit for this rate limit property.", "type": { - "$id": "7661", + "$id": "7672", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100850,13 +101003,13 @@ "isHttpMetadata": false }, { - "$id": "7662", + "$id": "7673", "kind": "property", "name": "remaining", "serializedName": "remaining", "doc": "The remaining quota available against the configured limit for this rate limit property.", "type": { - "$id": "7663", + "$id": "7674", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100876,18 +101029,18 @@ "isHttpMetadata": false }, { - "$id": "7664", + "$id": "7675", "kind": "property", "name": "reset_seconds", "serializedName": "reset_seconds", "doc": "The remaining time, in seconds, until this rate limit property is reset.", "type": { - "$id": "7665", + "$id": "7676", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "7666", + "$id": "7677", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -100930,7 +101083,7 @@ ] }, "conversation.item.input_audio_transcription.delta": { - "$id": "7667", + "$id": "7678", "kind": "model", "name": "RealtimeServerEventConversationItemInputAudioTranscriptionDelta", "namespace": "OpenAI", @@ -100940,17 +101093,17 @@ "discriminatorValue": "conversation.item.input_audio_transcription.delta", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7668", + "$id": "7679", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.input_audio_transcription.delta`.", "type": { - "$id": "7669", + "$id": "7680", "kind": "enumvalue", "name": "conversation_item_input_audio_transcription_delta", "value": "conversation.item.input_audio_transcription.delta", @@ -100958,7 +101111,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -100976,13 +101129,13 @@ "isHttpMetadata": false }, { - "$id": "7670", + "$id": "7681", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7671", + "$id": "7682", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101002,13 +101155,13 @@ "isHttpMetadata": false }, { - "$id": "7672", + "$id": "7683", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7673", + "$id": "7684", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101028,13 +101181,13 @@ "isHttpMetadata": false }, { - "$id": "7674", + "$id": "7685", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The text delta.", "type": { - "$id": "7675", + "$id": "7686", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101054,16 +101207,16 @@ "isHttpMetadata": false }, { - "$id": "7676", + "$id": "7687", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "doc": "The log probabilities of the transcription.", "type": { - "$id": "7677", + "$id": "7688", "kind": "nullable", "type": { - "$ref": "7413" + "$ref": "7424" }, "namespace": "OpenAI" }, @@ -101083,7 +101236,7 @@ ] }, "conversation.item.retrieved": { - "$id": "7678", + "$id": "7689", "kind": "model", "name": "RealtimeServerEventConversationItemRetrieved", "namespace": "OpenAI", @@ -101093,17 +101246,17 @@ "discriminatorValue": "conversation.item.retrieved", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7679", + "$id": "7690", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.retrieved`.", "type": { - "$id": "7680", + "$id": "7691", "kind": "enumvalue", "name": "conversation_item_retrieved", "value": "conversation.item.retrieved", @@ -101111,7 +101264,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -101129,12 +101282,12 @@ "isHttpMetadata": false }, { - "$id": "7681", + "$id": "7692", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$ref": "7375" + "$ref": "7386" }, "optional": false, "readOnly": false, @@ -101152,7 +101305,7 @@ ] }, "transcription_session.updated": { - "$id": "7682", + "$id": "7693", "kind": "model", "name": "RealtimeServerEventTranscriptionSessionUpdated", "namespace": "OpenAI", @@ -101162,17 +101315,17 @@ "discriminatorValue": "transcription_session.updated", "decorators": [], "baseModel": { - "$ref": "7231" + "$ref": "7242" }, "properties": [ { - "$id": "7683", + "$id": "7694", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `transcription_session.updated`.", "type": { - "$id": "7684", + "$id": "7695", "kind": "enumvalue", "name": "transcription_session_updated", "value": "transcription_session.updated", @@ -101180,7 +101333,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7238" + "$ref": "7249" }, "decorators": [] }, @@ -101198,12 +101351,12 @@ "isHttpMetadata": false }, { - "$id": "7685", + "$id": "7696", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$id": "7686", + "$id": "7697", "kind": "model", "name": "RealtimeTranscriptionSessionCreateResponse", "namespace": "OpenAI", @@ -101213,13 +101366,13 @@ "decorators": [], "properties": [ { - "$id": "7687", + "$id": "7698", "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": "7688", + "$id": "7699", "kind": "model", "name": "RealtimeTranscriptionSessionCreateResponseClientSecret", "namespace": "OpenAI", @@ -101228,13 +101381,13 @@ "decorators": [], "properties": [ { - "$id": "7689", + "$id": "7700", "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": "7690", + "$id": "7701", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101254,18 +101407,18 @@ "isHttpMetadata": false }, { - "$id": "7691", + "$id": "7702", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "Timestamp for when the token expires. Currently, all tokens expire\nafter one minute.", "type": { - "$id": "7692", + "$id": "7703", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7693", + "$id": "7704", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101303,13 +101456,13 @@ "isHttpMetadata": false }, { - "$id": "7694", + "$id": "7705", "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": "7695", + "$id": "7706", "kind": "array", "name": "Array45", "valueType": { @@ -101332,13 +101485,13 @@ "isHttpMetadata": false }, { - "$id": "7696", + "$id": "7707", "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": "7697", + "$id": "7708", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101358,13 +101511,13 @@ "isHttpMetadata": false }, { - "$id": "7698", + "$id": "7709", "kind": "property", "name": "input_audio_transcription", "serializedName": "input_audio_transcription", "doc": "Configuration of the transcription model.", "type": { - "$id": "7699", + "$id": "7710", "kind": "model", "name": "RealtimeTranscriptionSessionCreateResponseInputAudioTranscription", "namespace": "OpenAI", @@ -101373,7 +101526,7 @@ "decorators": [], "properties": [ { - "$id": "7700", + "$id": "7711", "kind": "property", "name": "model", "serializedName": "model", @@ -101395,13 +101548,13 @@ "isHttpMetadata": false }, { - "$id": "7701", + "$id": "7712", "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": "7702", + "$id": "7713", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101421,13 +101574,13 @@ "isHttpMetadata": false }, { - "$id": "7703", + "$id": "7714", "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": "7704", + "$id": "7715", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101462,13 +101615,13 @@ "isHttpMetadata": false }, { - "$id": "7705", + "$id": "7716", "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": "7706", + "$id": "7717", "kind": "model", "name": "RealtimeTranscriptionSessionCreateResponseTurnDetection", "namespace": "OpenAI", @@ -101477,13 +101630,13 @@ "decorators": [], "properties": [ { - "$id": "7707", + "$id": "7718", "kind": "property", "name": "type", "serializedName": "type", "doc": "Type of turn detection, only `server_vad` is currently supported.", "type": { - "$id": "7708", + "$id": "7719", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101503,13 +101656,13 @@ "isHttpMetadata": false }, { - "$id": "7709", + "$id": "7720", "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": "7710", + "$id": "7721", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -101529,13 +101682,13 @@ "isHttpMetadata": false }, { - "$id": "7711", + "$id": "7722", "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": "7712", + "$id": "7723", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101555,13 +101708,13 @@ "isHttpMetadata": false }, { - "$id": "7713", + "$id": "7724", "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": "7714", + "$id": "7725", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101615,169 +101768,169 @@ } }, { - "$ref": "7235" + "$ref": "7246" }, { - "$ref": "7275" + "$ref": "7286" }, { - "$ref": "7289" + "$ref": "7300" }, { - "$ref": "7293" + "$ref": "7304" }, { - "$ref": "7317" + "$ref": "7328" }, { - "$ref": "7321" + "$ref": "7332" }, { - "$ref": "7325" + "$ref": "7336" }, { - "$ref": "7330" + "$ref": "7341" }, { - "$ref": "7337" + "$ref": "7348" }, { - "$ref": "7340" + "$ref": "7351" }, { - "$ref": "7347" + "$ref": "7358" }, { - "$ref": "7354" + "$ref": "7365" }, { - "$ref": "7359" + "$ref": "7370" }, { - "$ref": "7364" - }, - { - "$ref": "7369" + "$ref": "7375" }, { - "$ref": "7375" + "$ref": "7380" }, { - "$ref": "7381" + "$ref": "7386" }, { - "$ref": "7387" + "$ref": "7392" }, { - "$ref": "7396" + "$ref": "7398" }, { - "$ref": "7402" + "$ref": "7407" }, { - "$ref": "7414" + "$ref": "7413" }, { - "$ref": "7420" + "$ref": "7425" }, { - "$ref": "7428" + "$ref": "7431" }, { - "$ref": "7437" + "$ref": "7439" }, { - "$ref": "7446" + "$ref": "7448" }, { - "$ref": "7451" + "$ref": "7457" }, { - "$ref": "7455" + "$ref": "7462" }, { - "$ref": "7461" + "$ref": "7466" }, { - "$ref": "7465" + "$ref": "7472" }, { - "$ref": "7474" + "$ref": "7476" }, { - "$ref": "7482" + "$ref": "7485" }, { - "$ref": "7490" + "$ref": "7493" }, { - "$ref": "7506" + "$ref": "7501" }, { - "$ref": "7510" + "$ref": "7517" }, { - "$ref": "7518" + "$ref": "7521" }, { - "$ref": "7526" + "$ref": "7529" }, { - "$ref": "7538" + "$ref": "7537" }, { - "$ref": "7550" + "$ref": "7549" }, { - "$ref": "7563" + "$ref": "7561" }, { - "$ref": "7576" + "$ref": "7574" }, { - "$ref": "7589" + "$ref": "7587" }, { - "$ref": "7602" + "$ref": "7600" }, { - "$ref": "7615" + "$ref": "7613" }, { "$ref": "7626" }, { - "$ref": "7639" + "$ref": "7637" }, { - "$ref": "7652" + "$ref": "7650" }, { - "$ref": "7657" + "$ref": "7663" }, { - "$ref": "7667" + "$ref": "7668" }, { "$ref": "7678" }, { - "$ref": "7682" + "$ref": "7689" }, { - "$ref": "7686" + "$ref": "7693" }, { - "$ref": "7688" + "$ref": "7697" }, { "$ref": "7699" }, { - "$ref": "7706" + "$ref": "7710" }, { - "$id": "7715", + "$ref": "7717" + }, + { + "$id": "7726", "kind": "model", "name": "RealtimeSessionCreateRequest", "namespace": "OpenAI", @@ -101787,13 +101940,13 @@ "decorators": [], "properties": [ { - "$id": "7716", + "$id": "7727", "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": "6958" + "$ref": "6969" }, "optional": true, "readOnly": false, @@ -101809,7 +101962,7 @@ "isHttpMetadata": false }, { - "$id": "7717", + "$id": "7728", "kind": "property", "name": "model", "serializedName": "model", @@ -101831,13 +101984,13 @@ "isHttpMetadata": false }, { - "$id": "7718", + "$id": "7729", "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": "7719", + "$id": "7730", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101857,7 +102010,7 @@ "isHttpMetadata": false }, { - "$id": "7720", + "$id": "7731", "kind": "property", "name": "voice", "serializedName": "voice", @@ -101879,7 +102032,7 @@ "isHttpMetadata": false }, { - "$id": "7721", + "$id": "7732", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", @@ -101901,7 +102054,7 @@ "isHttpMetadata": false }, { - "$id": "7722", + "$id": "7733", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", @@ -101923,13 +102076,13 @@ "isHttpMetadata": false }, { - "$id": "7723", + "$id": "7734", "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": "7724", + "$id": "7735", "kind": "model", "name": "RealtimeSessionCreateRequestInputAudioTranscription", "namespace": "OpenAI", @@ -101938,13 +102091,13 @@ "decorators": [], "properties": [ { - "$id": "7725", + "$id": "7736", "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": "7726", + "$id": "7737", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101964,13 +102117,13 @@ "isHttpMetadata": false }, { - "$id": "7727", + "$id": "7738", "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": "7728", + "$id": "7739", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101990,13 +102143,13 @@ "isHttpMetadata": false }, { - "$id": "7729", + "$id": "7740", "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": "7730", + "$id": "7741", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102031,13 +102184,13 @@ "isHttpMetadata": false }, { - "$id": "7731", + "$id": "7742", "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": "7732", + "$id": "7743", "kind": "model", "name": "RealtimeSessionCreateRequestTurnDetection", "namespace": "OpenAI", @@ -102046,7 +102199,7 @@ "decorators": [], "properties": [ { - "$id": "7733", + "$id": "7744", "kind": "property", "name": "type", "serializedName": "type", @@ -102068,7 +102221,7 @@ "isHttpMetadata": false }, { - "$id": "7734", + "$id": "7745", "kind": "property", "name": "eagerness", "serializedName": "eagerness", @@ -102090,13 +102243,13 @@ "isHttpMetadata": false }, { - "$id": "7735", + "$id": "7746", "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": "7736", + "$id": "7747", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -102116,13 +102269,13 @@ "isHttpMetadata": false }, { - "$id": "7737", + "$id": "7748", "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": "7738", + "$id": "7749", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102142,13 +102295,13 @@ "isHttpMetadata": false }, { - "$id": "7739", + "$id": "7750", "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": "7740", + "$id": "7751", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102168,13 +102321,13 @@ "isHttpMetadata": false }, { - "$id": "7741", + "$id": "7752", "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": "7742", + "$id": "7753", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -102194,13 +102347,13 @@ "isHttpMetadata": false }, { - "$id": "7743", + "$id": "7754", "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": "7744", + "$id": "7755", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -102235,16 +102388,16 @@ "isHttpMetadata": false }, { - "$id": "7745", + "$id": "7756", "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": "7746", + "$id": "7757", "kind": "nullable", "type": { - "$id": "7747", + "$id": "7758", "kind": "model", "name": "RealtimeSessionCreateRequestInputAudioNoiseReduction1", "namespace": "OpenAI", @@ -102253,7 +102406,7 @@ "decorators": [], "properties": [ { - "$id": "7748", + "$id": "7759", "kind": "property", "name": "type", "serializedName": "type", @@ -102292,13 +102445,13 @@ "isHttpMetadata": false }, { - "$id": "7749", + "$id": "7760", "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": "7750", + "$id": "7761", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -102318,13 +102471,13 @@ "isHttpMetadata": false }, { - "$id": "7751", + "$id": "7762", "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": "7752", + "$id": "7763", "kind": "union", "name": "RealtimeSessionCreateRequestTracing", "variantTypes": [ @@ -102332,7 +102485,7 @@ "$ref": "1746" }, { - "$id": "7753", + "$id": "7764", "kind": "model", "name": "RealtimeSessionCreateRequestTracing1", "namespace": "OpenAI", @@ -102341,13 +102494,13 @@ "decorators": [], "properties": [ { - "$id": "7754", + "$id": "7765", "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": "7755", + "$id": "7766", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102367,13 +102520,13 @@ "isHttpMetadata": false }, { - "$id": "7756", + "$id": "7767", "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": "7757", + "$id": "7768", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102393,13 +102546,13 @@ "isHttpMetadata": false }, { - "$id": "7758", + "$id": "7769", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "The arbitrary metadata to attach to this trace to enable\nfiltering in the traces dashboard.", "type": { - "$id": "7759", + "$id": "7770", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -102438,13 +102591,13 @@ "isHttpMetadata": false }, { - "$id": "7760", + "$id": "7771", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "Tools (functions) available to the model.", "type": { - "$ref": "7014" + "$ref": "7025" }, "optional": true, "readOnly": false, @@ -102460,13 +102613,13 @@ "isHttpMetadata": false }, { - "$id": "7761", + "$id": "7772", "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": "7762", + "$id": "7773", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102486,13 +102639,13 @@ "isHttpMetadata": false }, { - "$id": "7763", + "$id": "7774", "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": "7764", + "$id": "7775", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -102512,18 +102665,18 @@ "isHttpMetadata": false }, { - "$id": "7765", + "$id": "7776", "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": "7766", + "$id": "7777", "kind": "union", "name": "RealtimeSessionCreateRequestMaxResponseOutputTokens", "variantTypes": [ { - "$id": "7767", + "$id": "7778", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102550,13 +102703,13 @@ "isHttpMetadata": false }, { - "$id": "7768", + "$id": "7779", "kind": "property", "name": "client_secret", "serializedName": "client_secret", "doc": "Configuration options for the generated client secret.", "type": { - "$id": "7769", + "$id": "7780", "kind": "model", "name": "RealtimeSessionCreateRequestClientSecret", "namespace": "OpenAI", @@ -102565,13 +102718,13 @@ "decorators": [], "properties": [ { - "$id": "7770", + "$id": "7781", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "Configuration for the ephemeral token expiration.", "type": { - "$id": "7771", + "$id": "7782", "kind": "model", "name": "RealtimeSessionCreateRequestClientSecretExpiresAt", "namespace": "OpenAI", @@ -102580,7 +102733,7 @@ "decorators": [], "properties": [ { - "$id": "7772", + "$id": "7783", "kind": "property", "name": "anchor", "serializedName": "anchor", @@ -102602,13 +102755,13 @@ "isHttpMetadata": false }, { - "$id": "7773", + "$id": "7784", "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": "7774", + "$id": "7785", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102660,25 +102813,25 @@ ] }, { - "$ref": "7724" + "$ref": "7735" }, { - "$ref": "7732" + "$ref": "7743" }, { - "$ref": "7747" + "$ref": "7758" }, { - "$ref": "7753" + "$ref": "7764" }, { - "$ref": "7769" + "$ref": "7780" }, { - "$ref": "7771" + "$ref": "7782" }, { - "$id": "7775", + "$id": "7786", "kind": "model", "name": "RealtimeSessionCreateResponse", "namespace": "OpenAI", @@ -102688,13 +102841,13 @@ "decorators": [], "properties": [ { - "$id": "7776", + "$id": "7787", "kind": "property", "name": "client_secret", "serializedName": "client_secret", "doc": "Ephemeral key returned by the API.", "type": { - "$id": "7777", + "$id": "7788", "kind": "model", "name": "RealtimeSessionCreateResponseClientSecret", "namespace": "OpenAI", @@ -102703,13 +102856,13 @@ "decorators": [], "properties": [ { - "$id": "7778", + "$id": "7789", "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": "7779", + "$id": "7790", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102729,18 +102882,18 @@ "isHttpMetadata": false }, { - "$id": "7780", + "$id": "7791", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "Timestamp for when the token expires. Currently, all tokens expire\nafter one minute.", "type": { - "$id": "7781", + "$id": "7792", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7782", + "$id": "7793", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102778,13 +102931,13 @@ "isHttpMetadata": false }, { - "$id": "7783", + "$id": "7794", "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": "6958" + "$ref": "6969" }, "optional": true, "readOnly": false, @@ -102800,13 +102953,13 @@ "isHttpMetadata": false }, { - "$id": "7784", + "$id": "7795", "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": "7785", + "$id": "7796", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102826,7 +102979,7 @@ "isHttpMetadata": false }, { - "$id": "7786", + "$id": "7797", "kind": "property", "name": "voice", "serializedName": "voice", @@ -102848,7 +103001,7 @@ "isHttpMetadata": false }, { - "$id": "7787", + "$id": "7798", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", @@ -102870,7 +103023,7 @@ "isHttpMetadata": false }, { - "$id": "7788", + "$id": "7799", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", @@ -102892,13 +103045,13 @@ "isHttpMetadata": false }, { - "$id": "7789", + "$id": "7800", "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": "7790", + "$id": "7801", "kind": "model", "name": "RealtimeSessionCreateResponseInputAudioTranscription", "namespace": "OpenAI", @@ -102907,13 +103060,13 @@ "decorators": [], "properties": [ { - "$id": "7791", + "$id": "7802", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for transcription, `whisper-1` is the only currently\nsupported model.", "type": { - "$id": "7792", + "$id": "7803", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102948,13 +103101,13 @@ "isHttpMetadata": false }, { - "$id": "7793", + "$id": "7804", "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": "7794", + "$id": "7805", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -102974,13 +103127,13 @@ "isHttpMetadata": false }, { - "$id": "7795", + "$id": "7806", "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": "7796", + "$id": "7807", "kind": "union", "name": "RealtimeSessionCreateResponseTracing", "variantTypes": [ @@ -102988,7 +103141,7 @@ "$ref": "1750" }, { - "$id": "7797", + "$id": "7808", "kind": "model", "name": "RealtimeSessionCreateResponseTracing1", "namespace": "OpenAI", @@ -102997,13 +103150,13 @@ "decorators": [], "properties": [ { - "$id": "7798", + "$id": "7809", "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": "7799", + "$id": "7810", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103023,13 +103176,13 @@ "isHttpMetadata": false }, { - "$id": "7800", + "$id": "7811", "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": "7801", + "$id": "7812", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103049,13 +103202,13 @@ "isHttpMetadata": false }, { - "$id": "7802", + "$id": "7813", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "The arbitrary metadata to attach to this trace to enable\nfiltering in the traces dashboard.", "type": { - "$id": "7803", + "$id": "7814", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -103094,13 +103247,13 @@ "isHttpMetadata": false }, { - "$id": "7804", + "$id": "7815", "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": "7805", + "$id": "7816", "kind": "model", "name": "RealtimeSessionCreateResponseTurnDetection", "namespace": "OpenAI", @@ -103109,13 +103262,13 @@ "decorators": [], "properties": [ { - "$id": "7806", + "$id": "7817", "kind": "property", "name": "type", "serializedName": "type", "doc": "Type of turn detection, only `server_vad` is currently supported.", "type": { - "$id": "7807", + "$id": "7818", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103135,13 +103288,13 @@ "isHttpMetadata": false }, { - "$id": "7808", + "$id": "7819", "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": "7809", + "$id": "7820", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -103161,13 +103314,13 @@ "isHttpMetadata": false }, { - "$id": "7810", + "$id": "7821", "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": "7811", + "$id": "7822", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103187,13 +103340,13 @@ "isHttpMetadata": false }, { - "$id": "7812", + "$id": "7823", "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": "7813", + "$id": "7824", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103228,13 +103381,13 @@ "isHttpMetadata": false }, { - "$id": "7814", + "$id": "7825", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "Tools (functions) available to the model.", "type": { - "$ref": "7014" + "$ref": "7025" }, "optional": true, "readOnly": false, @@ -103250,13 +103403,13 @@ "isHttpMetadata": false }, { - "$id": "7815", + "$id": "7826", "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": "7816", + "$id": "7827", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103276,13 +103429,13 @@ "isHttpMetadata": false }, { - "$id": "7817", + "$id": "7828", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Sampling temperature for the model, limited to [0.6, 1.2]. Defaults to 0.8.", "type": { - "$id": "7818", + "$id": "7829", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -103302,18 +103455,18 @@ "isHttpMetadata": false }, { - "$id": "7819", + "$id": "7830", "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": "7820", + "$id": "7831", "kind": "union", "name": "RealtimeSessionCreateResponseMaxResponseOutputTokens", "variantTypes": [ { - "$id": "7821", + "$id": "7832", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103342,19 +103495,19 @@ ] }, { - "$ref": "7777" + "$ref": "7788" }, { - "$ref": "7790" + "$ref": "7801" }, { - "$ref": "7797" + "$ref": "7808" }, { - "$ref": "7805" + "$ref": "7816" }, { - "$id": "7822", + "$id": "7833", "kind": "model", "name": "CreateUploadRequest", "namespace": "OpenAI", @@ -103363,13 +103516,13 @@ "decorators": [], "properties": [ { - "$id": "7823", + "$id": "7834", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file to upload.", "type": { - "$id": "7824", + "$id": "7835", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103389,7 +103542,7 @@ "isHttpMetadata": false }, { - "$id": "7825", + "$id": "7836", "kind": "property", "name": "purpose", "serializedName": "purpose", @@ -103411,13 +103564,13 @@ "isHttpMetadata": false }, { - "$id": "7826", + "$id": "7837", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "The number of bytes in the file you are uploading.", "type": { - "$id": "7827", + "$id": "7838", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103437,13 +103590,13 @@ "isHttpMetadata": false }, { - "$id": "7828", + "$id": "7839", "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": "7829", + "$id": "7840", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103465,7 +103618,7 @@ ] }, { - "$id": "7830", + "$id": "7841", "kind": "model", "name": "Upload", "namespace": "OpenAI", @@ -103475,13 +103628,13 @@ "decorators": [], "properties": [ { - "$id": "7831", + "$id": "7842", "kind": "property", "name": "id", "serializedName": "id", "doc": "The Upload unique identifier, which can be referenced in API endpoints.", "type": { - "$id": "7832", + "$id": "7843", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103501,18 +103654,18 @@ "isHttpMetadata": false }, { - "$id": "7833", + "$id": "7844", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the Upload was created.", "type": { - "$id": "7834", + "$id": "7845", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7835", + "$id": "7846", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103535,13 +103688,13 @@ "isHttpMetadata": false }, { - "$id": "7836", + "$id": "7847", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file to be uploaded.", "type": { - "$id": "7837", + "$id": "7848", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103561,13 +103714,13 @@ "isHttpMetadata": false }, { - "$id": "7838", + "$id": "7849", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "The intended number of bytes to be uploaded.", "type": { - "$id": "7839", + "$id": "7850", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103587,13 +103740,13 @@ "isHttpMetadata": false }, { - "$id": "7840", + "$id": "7851", "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": "7841", + "$id": "7852", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103613,7 +103766,7 @@ "isHttpMetadata": false }, { - "$id": "7842", + "$id": "7853", "kind": "property", "name": "status", "serializedName": "status", @@ -103635,18 +103788,18 @@ "isHttpMetadata": false }, { - "$id": "7843", + "$id": "7854", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the Upload will expire.", "type": { - "$id": "7844", + "$id": "7855", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7845", + "$id": "7856", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103669,7 +103822,7 @@ "isHttpMetadata": false }, { - "$id": "7846", + "$id": "7857", "kind": "property", "name": "object", "serializedName": "object", @@ -103691,15 +103844,15 @@ "isHttpMetadata": false }, { - "$id": "7847", + "$id": "7858", "kind": "property", "name": "file", "serializedName": "file", "type": { - "$id": "7848", + "$id": "7859", "kind": "nullable", "type": { - "$ref": "3446" + "$ref": "3448" }, "namespace": "OpenAI" }, @@ -103719,7 +103872,7 @@ ] }, { - "$id": "7849", + "$id": "7860", "kind": "model", "name": "AddUploadPartRequest", "namespace": "OpenAI", @@ -103728,13 +103881,13 @@ "decorators": [], "properties": [ { - "$id": "7850", + "$id": "7861", "kind": "property", "name": "data", "serializedName": "data", "doc": "The chunk of bytes for this Part.", "type": { - "$id": "7851", + "$id": "7862", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -103763,7 +103916,7 @@ ] }, { - "$id": "7852", + "$id": "7863", "kind": "model", "name": "UploadPart", "namespace": "OpenAI", @@ -103773,13 +103926,13 @@ "decorators": [], "properties": [ { - "$id": "7853", + "$id": "7864", "kind": "property", "name": "id", "serializedName": "id", "doc": "The upload Part unique identifier, which can be referenced in API endpoints.", "type": { - "$id": "7854", + "$id": "7865", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103799,18 +103952,18 @@ "isHttpMetadata": false }, { - "$id": "7855", + "$id": "7866", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the Part was created.", "type": { - "$id": "7856", + "$id": "7867", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7857", + "$id": "7868", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103833,13 +103986,13 @@ "isHttpMetadata": false }, { - "$id": "7858", + "$id": "7869", "kind": "property", "name": "upload_id", "serializedName": "upload_id", "doc": "The ID of the Upload object that this Part was added to.", "type": { - "$id": "7859", + "$id": "7870", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103859,7 +104012,7 @@ "isHttpMetadata": false }, { - "$id": "7860", + "$id": "7871", "kind": "property", "name": "object", "serializedName": "object", @@ -103883,7 +104036,7 @@ ] }, { - "$id": "7861", + "$id": "7872", "kind": "model", "name": "CompleteUploadRequest", "namespace": "OpenAI", @@ -103892,7 +104045,7 @@ "decorators": [], "properties": [ { - "$id": "7862", + "$id": "7873", "kind": "property", "name": "part_ids", "serializedName": "part_ids", @@ -103914,13 +104067,13 @@ "isHttpMetadata": false }, { - "$id": "7863", + "$id": "7874", "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": "7864", + "$id": "7875", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103942,7 +104095,7 @@ ] }, { - "$id": "7865", + "$id": "7876", "kind": "model", "name": "BatchRequestInput", "namespace": "OpenAI", @@ -103953,12 +104106,12 @@ "decorators": [], "properties": [ { - "$id": "7866", + "$id": "7877", "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": "7867", + "$id": "7878", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103974,7 +104127,7 @@ "isHttpMetadata": false }, { - "$id": "7868", + "$id": "7879", "kind": "property", "name": "method", "doc": "The HTTP method to be used for the request. Currently only `POST` is supported.", @@ -103991,12 +104144,12 @@ "isHttpMetadata": false }, { - "$id": "7869", + "$id": "7880", "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": "7870", + "$id": "7881", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -104014,7 +104167,7 @@ ] }, { - "$id": "7871", + "$id": "7882", "kind": "model", "name": "BatchRequestOutput", "namespace": "OpenAI", @@ -104025,11 +104178,11 @@ "decorators": [], "properties": [ { - "$id": "7872", + "$id": "7883", "kind": "property", "name": "id", "type": { - "$id": "7873", + "$id": "7884", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104045,12 +104198,12 @@ "isHttpMetadata": false }, { - "$id": "7874", + "$id": "7885", "kind": "property", "name": "custom_id", "doc": "A developer-provided per-request id that will be used to match outputs to inputs.", "type": { - "$id": "7875", + "$id": "7886", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104066,14 +104219,14 @@ "isHttpMetadata": false }, { - "$id": "7876", + "$id": "7887", "kind": "property", "name": "response", "type": { - "$id": "7877", + "$id": "7888", "kind": "nullable", "type": { - "$id": "7878", + "$id": "7889", "kind": "model", "name": "BatchRequestOutputResponse1", "namespace": "OpenAI", @@ -104082,12 +104235,12 @@ "decorators": [], "properties": [ { - "$id": "7879", + "$id": "7890", "kind": "property", "name": "status_code", "doc": "The HTTP status code of the response", "type": { - "$id": "7880", + "$id": "7891", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104103,12 +104256,12 @@ "isHttpMetadata": false }, { - "$id": "7881", + "$id": "7892", "kind": "property", "name": "request_id", "doc": "An unique identifier for the OpenAI API request. Please include this request ID when contacting support.", "type": { - "$id": "7882", + "$id": "7893", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104124,12 +104277,12 @@ "isHttpMetadata": false }, { - "$id": "7883", + "$id": "7894", "kind": "property", "name": "body", "doc": "The JSON body of the response", "type": { - "$ref": "3946" + "$ref": "3948" }, "optional": true, "readOnly": false, @@ -104154,15 +104307,15 @@ "isHttpMetadata": false }, { - "$id": "7884", + "$id": "7895", "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": "7885", + "$id": "7896", "kind": "nullable", "type": { - "$id": "7886", + "$id": "7897", "kind": "model", "name": "BatchRequestOutputError1", "namespace": "OpenAI", @@ -104171,12 +104324,12 @@ "decorators": [], "properties": [ { - "$id": "7887", + "$id": "7898", "kind": "property", "name": "code", "doc": "A machine-readable error code.", "type": { - "$id": "7888", + "$id": "7899", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104192,12 +104345,12 @@ "isHttpMetadata": false }, { - "$id": "7889", + "$id": "7900", "kind": "property", "name": "message", "doc": "A human-readable error message.", "type": { - "$id": "7890", + "$id": "7901", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104228,13 +104381,13 @@ ] }, { - "$ref": "7878" + "$ref": "7889" }, { - "$ref": "7886" + "$ref": "7897" }, { - "$id": "7891", + "$id": "7902", "kind": "model", "name": "ChatCompletionFunctionChoice", "namespace": "OpenAI", @@ -104250,7 +104403,7 @@ "properties": [] }, { - "$id": "7892", + "$id": "7903", "kind": "model", "name": "ChatCompletionToolChoice", "namespace": "OpenAI", @@ -104266,7 +104419,7 @@ "properties": [] }, { - "$id": "7893", + "$id": "7904", "kind": "model", "name": "FineTuneChatCompletionRequestAssistantMessage", "namespace": "OpenAI", @@ -104275,7 +104428,7 @@ "decorators": [], "properties": [ { - "$id": "7894", + "$id": "7905", "kind": "property", "name": "weight", "doc": "Controls whether the assistant message is trained against (0 or 1)", @@ -104292,12 +104445,12 @@ "isHttpMetadata": false }, { - "$id": "7895", + "$id": "7906", "kind": "property", "name": "content", "doc": "The contents of the assistant message. Required unless `tool_calls` or `function_call` is specified.", "type": { - "$ref": "3071" + "$ref": "3076" }, "optional": true, "readOnly": false, @@ -104309,12 +104462,12 @@ "isHttpMetadata": false }, { - "$id": "7896", + "$id": "7907", "kind": "property", "name": "refusal", "doc": "The refusal message by the assistant.", "type": { - "$ref": "3077" + "$ref": "3082" }, "optional": true, "readOnly": false, @@ -104326,12 +104479,12 @@ "isHttpMetadata": false }, { - "$id": "7897", + "$id": "7908", "kind": "property", "name": "role", "doc": "The role of the messages author, in this case `assistant`.", "type": { - "$id": "7898", + "$id": "7909", "kind": "enumvalue", "name": "assistant", "value": "assistant", @@ -104353,12 +104506,12 @@ "isHttpMetadata": false }, { - "$id": "7899", + "$id": "7910", "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": "7900", + "$id": "7911", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104374,12 +104527,12 @@ "isHttpMetadata": false }, { - "$id": "7901", + "$id": "7912", "kind": "property", "name": "audio", "doc": "Data about a previous audio response from the model.\n[Learn more](/docs/guides/audio).", "type": { - "$ref": "3084" + "$ref": "3089" }, "optional": true, "readOnly": false, @@ -104391,7 +104544,7 @@ "isHttpMetadata": false }, { - "$id": "7902", + "$id": "7913", "kind": "property", "name": "tool_calls", "type": { @@ -104407,12 +104560,12 @@ "isHttpMetadata": false }, { - "$id": "7903", + "$id": "7914", "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.", "type": { - "$ref": "3090" + "$ref": "3095" }, "optional": true, "readOnly": false, @@ -104426,7 +104579,7 @@ ] }, { - "$id": "7904", + "$id": "7915", "kind": "model", "name": "FineTuneChatRequestInput", "namespace": "OpenAI", @@ -104437,32 +104590,32 @@ "decorators": [], "properties": [ { - "$id": "7905", + "$id": "7916", "kind": "property", "name": "messages", "type": { - "$id": "7906", + "$id": "7917", "kind": "array", "name": "Array46", "valueType": { - "$id": "7907", + "$id": "7918", "kind": "union", "name": "FineTuneChatRequestInputMessage", "variantTypes": [ { - "$ref": "3040" + "$ref": "3045" }, { - "$ref": "3059" + "$ref": "3064" }, { - "$ref": "7893" + "$ref": "7904" }, { - "$ref": "3096" + "$ref": "3101" }, { - "$ref": "3106" + "$ref": "3111" } ], "namespace": "OpenAI", @@ -104481,12 +104634,12 @@ "isHttpMetadata": false }, { - "$id": "7908", + "$id": "7919", "kind": "property", "name": "tools", "doc": "A list of tools the model may generate JSON inputs for.", "type": { - "$ref": "3201" + "$ref": "3203" }, "optional": true, "readOnly": false, @@ -104498,16 +104651,16 @@ "isHttpMetadata": false }, { - "$id": "7909", + "$id": "7920", "kind": "property", "name": "parallel_tool_calls", "type": { - "$id": "7910", + "$id": "7921", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "7911", + "$id": "7922", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -104525,12 +104678,12 @@ "isHttpMetadata": false }, { - "$id": "7912", + "$id": "7923", "kind": "property", "name": "functions", "doc": "A list of functions the model may generate JSON inputs for.", "type": { - "$ref": "3226" + "$ref": "3228" }, "optional": true, "readOnly": false, @@ -104544,7 +104697,7 @@ ] }, { - "$id": "7913", + "$id": "7924", "kind": "model", "name": "FineTuningJobsPageToken", "namespace": "OpenAI", @@ -104554,11 +104707,11 @@ "decorators": [], "properties": [ { - "$id": "7914", + "$id": "7925", "kind": "property", "name": "limit", "type": { - "$id": "7915", + "$id": "7926", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104574,11 +104727,11 @@ "isHttpMetadata": false }, { - "$id": "7916", + "$id": "7927", "kind": "property", "name": "after", "type": { - "$id": "7917", + "$id": "7928", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104596,7 +104749,7 @@ ] }, { - "$id": "7918", + "$id": "7929", "kind": "model", "name": "MessageDeltaContent", "namespace": "OpenAI", @@ -104606,7 +104759,7 @@ "doc": "Represents a single piece of incremental content in an Assistants API streaming response.", "decorators": [], "discriminatorProperty": { - "$id": "7919", + "$id": "7930", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the content item.", @@ -104624,12 +104777,12 @@ }, "properties": [ { - "$ref": "7919" + "$ref": "7930" } ], "discriminatedSubtypes": { "image_file": { - "$id": "7920", + "$id": "7931", "kind": "model", "name": "MessageDeltaContentImageFileObject", "namespace": "OpenAI", @@ -104640,16 +104793,16 @@ "discriminatorValue": "image_file", "decorators": [], "baseModel": { - "$ref": "7918" + "$ref": "7929" }, "properties": [ { - "$id": "7921", + "$id": "7932", "kind": "property", "name": "index", "doc": "The index of the content part in the message.", "type": { - "$id": "7922", + "$id": "7933", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104665,12 +104818,12 @@ "isHttpMetadata": false }, { - "$id": "7923", + "$id": "7934", "kind": "property", "name": "type", "doc": "Always `image_file`.", "type": { - "$ref": "5954" + "$ref": "5965" }, "optional": false, "readOnly": false, @@ -104682,11 +104835,11 @@ "isHttpMetadata": false }, { - "$id": "7924", + "$id": "7935", "kind": "property", "name": "image_file", "type": { - "$id": "7925", + "$id": "7936", "kind": "model", "name": "MessageDeltaContentImageFileObjectImageFile", "namespace": "OpenAI", @@ -104695,12 +104848,12 @@ "decorators": [], "properties": [ { - "$id": "7926", + "$id": "7937", "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": "7927", + "$id": "7938", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104716,7 +104869,7 @@ "isHttpMetadata": false }, { - "$id": "7928", + "$id": "7939", "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`.", @@ -104746,7 +104899,7 @@ ] }, "image_url": { - "$id": "7929", + "$id": "7940", "kind": "model", "name": "MessageDeltaContentImageUrlObject", "namespace": "OpenAI", @@ -104757,16 +104910,16 @@ "discriminatorValue": "image_url", "decorators": [], "baseModel": { - "$ref": "7918" + "$ref": "7929" }, "properties": [ { - "$id": "7930", + "$id": "7941", "kind": "property", "name": "index", "doc": "The index of the content part in the message.", "type": { - "$id": "7931", + "$id": "7942", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104782,12 +104935,12 @@ "isHttpMetadata": false }, { - "$id": "7932", + "$id": "7943", "kind": "property", "name": "type", "doc": "Always `image_url`.", "type": { - "$ref": "6016" + "$ref": "6027" }, "optional": false, "readOnly": false, @@ -104799,11 +104952,11 @@ "isHttpMetadata": false }, { - "$id": "7933", + "$id": "7944", "kind": "property", "name": "image_url", "type": { - "$id": "7934", + "$id": "7945", "kind": "model", "name": "MessageDeltaContentImageUrlObjectImageUrl", "namespace": "OpenAI", @@ -104812,12 +104965,12 @@ "decorators": [], "properties": [ { - "$id": "7935", + "$id": "7946", "kind": "property", "name": "url", "doc": "The URL of the image, must be a supported image types: jpeg, jpg, png, gif, webp.", "type": { - "$id": "7936", + "$id": "7947", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -104833,7 +104986,7 @@ "isHttpMetadata": false }, { - "$id": "7937", + "$id": "7948", "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`.", @@ -104863,7 +105016,7 @@ ] }, "text": { - "$id": "7938", + "$id": "7949", "kind": "model", "name": "MessageDeltaContentTextObject", "namespace": "OpenAI", @@ -104874,16 +105027,16 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "7918" + "$ref": "7929" }, "properties": [ { - "$id": "7939", + "$id": "7950", "kind": "property", "name": "index", "doc": "The index of the content part in the message.", "type": { - "$id": "7940", + "$id": "7951", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104899,12 +105052,12 @@ "isHttpMetadata": false }, { - "$id": "7941", + "$id": "7952", "kind": "property", "name": "type", "doc": "Always `text`.", "type": { - "$ref": "5968" + "$ref": "5979" }, "optional": false, "readOnly": false, @@ -104916,11 +105069,11 @@ "isHttpMetadata": false }, { - "$id": "7942", + "$id": "7953", "kind": "property", "name": "text", "type": { - "$id": "7943", + "$id": "7954", "kind": "model", "name": "MessageDeltaContentTextObjectText", "namespace": "OpenAI", @@ -104929,12 +105082,12 @@ "decorators": [], "properties": [ { - "$id": "7944", + "$id": "7955", "kind": "property", "name": "value", "doc": "The data that makes up the text.", "type": { - "$id": "7945", + "$id": "7956", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104950,15 +105103,15 @@ "isHttpMetadata": false }, { - "$id": "7946", + "$id": "7957", "kind": "property", "name": "annotations", "type": { - "$id": "7947", + "$id": "7958", "kind": "array", "name": "ArrayMessageDeltaTextContentAnnotation", "valueType": { - "$id": "7948", + "$id": "7959", "kind": "model", "name": "MessageDeltaTextContentAnnotation", "namespace": "OpenAI", @@ -104967,7 +105120,7 @@ "usage": "Output", "decorators": [], "discriminatorProperty": { - "$id": "7949", + "$id": "7960", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the content item.", @@ -104985,12 +105138,12 @@ }, "properties": [ { - "$ref": "7949" + "$ref": "7960" } ], "discriminatedSubtypes": { "file_citation": { - "$id": "7950", + "$id": "7961", "kind": "model", "name": "MessageDeltaContentTextAnnotationsFileCitationObject", "namespace": "OpenAI", @@ -105001,16 +105154,16 @@ "discriminatorValue": "file_citation", "decorators": [], "baseModel": { - "$ref": "7948" + "$ref": "7959" }, "properties": [ { - "$id": "7951", + "$id": "7962", "kind": "property", "name": "index", "doc": "The index of the annotation in the text content part.", "type": { - "$id": "7952", + "$id": "7963", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105026,12 +105179,12 @@ "isHttpMetadata": false }, { - "$id": "7953", + "$id": "7964", "kind": "property", "name": "type", "doc": "Always `file_citation`.", "type": { - "$ref": "5981" + "$ref": "5992" }, "optional": false, "readOnly": false, @@ -105043,12 +105196,12 @@ "isHttpMetadata": false }, { - "$id": "7954", + "$id": "7965", "kind": "property", "name": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "7955", + "$id": "7966", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105064,11 +105217,11 @@ "isHttpMetadata": false }, { - "$id": "7956", + "$id": "7967", "kind": "property", "name": "file_citation", "type": { - "$id": "7957", + "$id": "7968", "kind": "model", "name": "MessageDeltaContentTextAnnotationsFileCitationObjectFileCitation", "namespace": "OpenAI", @@ -105077,12 +105230,12 @@ "decorators": [], "properties": [ { - "$id": "7958", + "$id": "7969", "kind": "property", "name": "file_id", "doc": "The ID of the specific File the citation is from.", "type": { - "$id": "7959", + "$id": "7970", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105098,12 +105251,12 @@ "isHttpMetadata": false }, { - "$id": "7960", + "$id": "7971", "kind": "property", "name": "quote", "doc": "The specific quote in the file.", "type": { - "$id": "7961", + "$id": "7972", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105130,11 +105283,11 @@ "isHttpMetadata": false }, { - "$id": "7962", + "$id": "7973", "kind": "property", "name": "start_index", "type": { - "$id": "7963", + "$id": "7974", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105150,11 +105303,11 @@ "isHttpMetadata": false }, { - "$id": "7964", + "$id": "7975", "kind": "property", "name": "end_index", "type": { - "$id": "7965", + "$id": "7976", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105172,7 +105325,7 @@ ] }, "file_path": { - "$id": "7966", + "$id": "7977", "kind": "model", "name": "MessageDeltaContentTextAnnotationsFilePathObject", "namespace": "OpenAI", @@ -105183,16 +105336,16 @@ "discriminatorValue": "file_path", "decorators": [], "baseModel": { - "$ref": "7948" + "$ref": "7959" }, "properties": [ { - "$id": "7967", + "$id": "7978", "kind": "property", "name": "index", "doc": "The index of the annotation in the text content part.", "type": { - "$id": "7968", + "$id": "7979", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105208,12 +105361,12 @@ "isHttpMetadata": false }, { - "$id": "7969", + "$id": "7980", "kind": "property", "name": "type", "doc": "Always `file_path`.", "type": { - "$ref": "5998" + "$ref": "6009" }, "optional": false, "readOnly": false, @@ -105225,12 +105378,12 @@ "isHttpMetadata": false }, { - "$id": "7970", + "$id": "7981", "kind": "property", "name": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "7971", + "$id": "7982", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105246,11 +105399,11 @@ "isHttpMetadata": false }, { - "$id": "7972", + "$id": "7983", "kind": "property", "name": "file_path", "type": { - "$id": "7973", + "$id": "7984", "kind": "model", "name": "MessageDeltaContentTextAnnotationsFilePathObjectFilePath", "namespace": "OpenAI", @@ -105259,12 +105412,12 @@ "decorators": [], "properties": [ { - "$id": "7974", + "$id": "7985", "kind": "property", "name": "file_id", "doc": "The ID of the file that was generated.", "type": { - "$id": "7975", + "$id": "7986", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105291,11 +105444,11 @@ "isHttpMetadata": false }, { - "$id": "7976", + "$id": "7987", "kind": "property", "name": "start_index", "type": { - "$id": "7977", + "$id": "7988", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105311,11 +105464,11 @@ "isHttpMetadata": false }, { - "$id": "7978", + "$id": "7989", "kind": "property", "name": "end_index", "type": { - "$id": "7979", + "$id": "7990", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105360,7 +105513,7 @@ ] }, "refusal": { - "$id": "7980", + "$id": "7991", "kind": "model", "name": "MessageDeltaContentRefusalObject", "namespace": "OpenAI", @@ -105370,16 +105523,16 @@ "discriminatorValue": "refusal", "decorators": [], "baseModel": { - "$ref": "7918" + "$ref": "7929" }, "properties": [ { - "$id": "7981", + "$id": "7992", "kind": "property", "name": "index", "doc": "The index of the refusal part in the message.", "type": { - "$id": "7982", + "$id": "7993", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105395,12 +105548,12 @@ "isHttpMetadata": false }, { - "$id": "7983", + "$id": "7994", "kind": "property", "name": "type", "doc": "Always `refusal`.", "type": { - "$ref": "6011" + "$ref": "6022" }, "optional": false, "readOnly": false, @@ -105412,11 +105565,11 @@ "isHttpMetadata": false }, { - "$id": "7984", + "$id": "7995", "kind": "property", "name": "refusal", "type": { - "$id": "7985", + "$id": "7996", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105436,43 +105589,43 @@ } }, { - "$ref": "7920" + "$ref": "7931" }, { - "$ref": "7925" + "$ref": "7936" }, { - "$ref": "7929" + "$ref": "7940" }, { - "$ref": "7934" + "$ref": "7945" }, { - "$ref": "7938" + "$ref": "7949" }, { - "$ref": "7943" + "$ref": "7954" }, { - "$ref": "7948" + "$ref": "7959" }, { - "$ref": "7950" + "$ref": "7961" }, { - "$ref": "7957" + "$ref": "7968" }, { - "$ref": "7966" + "$ref": "7977" }, { - "$ref": "7973" + "$ref": "7984" }, { - "$ref": "7980" + "$ref": "7991" }, { - "$id": "7986", + "$id": "7997", "kind": "model", "name": "MessageDeltaObject", "namespace": "OpenAI", @@ -105483,12 +105636,12 @@ "decorators": [], "properties": [ { - "$id": "7987", + "$id": "7998", "kind": "property", "name": "id", "doc": "The identifier of the message, which can be referenced in API endpoints.", "type": { - "$id": "7988", + "$id": "7999", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105504,7 +105657,7 @@ "isHttpMetadata": false }, { - "$id": "7989", + "$id": "8000", "kind": "property", "name": "object", "doc": "The object type, which is always `thread.message.delta`.", @@ -105521,12 +105674,12 @@ "isHttpMetadata": false }, { - "$id": "7990", + "$id": "8001", "kind": "property", "name": "delta", "doc": "The delta containing the fields that have changed on the Message.", "type": { - "$id": "7991", + "$id": "8002", "kind": "model", "name": "MessageDeltaObjectDelta", "namespace": "OpenAI", @@ -105535,7 +105688,7 @@ "decorators": [], "properties": [ { - "$id": "7992", + "$id": "8003", "kind": "property", "name": "role", "doc": "The entity that produced the message. One of `user` or `assistant`.", @@ -105552,16 +105705,16 @@ "isHttpMetadata": false }, { - "$id": "7993", + "$id": "8004", "kind": "property", "name": "content", "doc": "The content of the message in array of text and/or images.", "type": { - "$id": "7994", + "$id": "8005", "kind": "array", "name": "ArrayMessageDeltaContent", "valueType": { - "$ref": "7918" + "$ref": "7929" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -105589,10 +105742,10 @@ ] }, { - "$ref": "7991" + "$ref": "8002" }, { - "$id": "7995", + "$id": "8006", "kind": "model", "name": "RunStepDeltaObject", "namespace": "OpenAI", @@ -105603,12 +105756,12 @@ "decorators": [], "properties": [ { - "$id": "7996", + "$id": "8007", "kind": "property", "name": "id", "doc": "The identifier of the run step, which can be referenced in API endpoints.", "type": { - "$id": "7997", + "$id": "8008", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105624,7 +105777,7 @@ "isHttpMetadata": false }, { - "$id": "7998", + "$id": "8009", "kind": "property", "name": "object", "doc": "The object type, which is always `thread.run.step.delta`.", @@ -105641,12 +105794,12 @@ "isHttpMetadata": false }, { - "$id": "7999", + "$id": "8010", "kind": "property", "name": "delta", "doc": "The delta containing the fields that have changed on the run step.", "type": { - "$id": "8000", + "$id": "8011", "kind": "model", "name": "RunStepDeltaObjectDelta", "namespace": "OpenAI", @@ -105655,12 +105808,12 @@ "decorators": [], "properties": [ { - "$id": "8001", + "$id": "8012", "kind": "property", "name": "step_details", "doc": "The details of the run step.", "type": { - "$id": "8002", + "$id": "8013", "kind": "model", "name": "RunStepDeltaStepDetails", "namespace": "OpenAI", @@ -105668,7 +105821,7 @@ "usage": "Output", "decorators": [], "discriminatorProperty": { - "$id": "8003", + "$id": "8014", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the details object.", @@ -105686,12 +105839,12 @@ }, "properties": [ { - "$ref": "8003" + "$ref": "8014" } ], "discriminatedSubtypes": { "message_creation": { - "$id": "8004", + "$id": "8015", "kind": "model", "name": "RunStepDeltaStepDetailsMessageCreationObject", "namespace": "OpenAI", @@ -105702,16 +105855,16 @@ "discriminatorValue": "message_creation", "decorators": [], "baseModel": { - "$ref": "8002" + "$ref": "8013" }, "properties": [ { - "$id": "8005", + "$id": "8016", "kind": "property", "name": "type", "doc": "Always `message_creation`.", "type": { - "$ref": "6460" + "$ref": "6471" }, "optional": false, "readOnly": false, @@ -105723,11 +105876,11 @@ "isHttpMetadata": false }, { - "$id": "8006", + "$id": "8017", "kind": "property", "name": "message_creation", "type": { - "$id": "8007", + "$id": "8018", "kind": "model", "name": "RunStepDeltaStepDetailsMessageCreationObjectMessageCreation", "namespace": "OpenAI", @@ -105736,12 +105889,12 @@ "decorators": [], "properties": [ { - "$id": "8008", + "$id": "8019", "kind": "property", "name": "message_id", "doc": "The ID of the message that was created by this run step.", "type": { - "$id": "8009", + "$id": "8020", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105770,7 +105923,7 @@ ] }, "tool_calls": { - "$id": "8010", + "$id": "8021", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsObject", "namespace": "OpenAI", @@ -105781,16 +105934,16 @@ "discriminatorValue": "tool_calls", "decorators": [], "baseModel": { - "$ref": "8002" + "$ref": "8013" }, "properties": [ { - "$id": "8011", + "$id": "8022", "kind": "property", "name": "type", "doc": "Always `tool_calls`.", "type": { - "$ref": "6471" + "$ref": "6482" }, "optional": false, "readOnly": false, @@ -105802,16 +105955,16 @@ "isHttpMetadata": false }, { - "$id": "8012", + "$id": "8023", "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": "8013", + "$id": "8024", "kind": "array", "name": "ArrayRunStepDeltaStepDetailsToolCallsObjectToolCallsObject", "valueType": { - "$id": "8014", + "$id": "8025", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsObjectToolCallsObject", "namespace": "OpenAI", @@ -105820,7 +105973,7 @@ "doc": "Abstractly represents a run step tool call details inner object.", "decorators": [], "discriminatorProperty": { - "$id": "8015", + "$id": "8026", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the details object.", @@ -105838,12 +105991,12 @@ }, "properties": [ { - "$ref": "8015" + "$ref": "8026" } ], "discriminatedSubtypes": { "code_interpreter": { - "$id": "8016", + "$id": "8027", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeObject", "namespace": "OpenAI", @@ -105854,16 +106007,16 @@ "discriminatorValue": "code_interpreter", "decorators": [], "baseModel": { - "$ref": "8014" + "$ref": "8025" }, "properties": [ { - "$id": "8017", + "$id": "8028", "kind": "property", "name": "index", "doc": "The index of the tool call in the tool calls array.", "type": { - "$id": "8018", + "$id": "8029", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105879,12 +106032,12 @@ "isHttpMetadata": false }, { - "$id": "8019", + "$id": "8030", "kind": "property", "name": "id", "doc": "The ID of the tool call.", "type": { - "$id": "8020", + "$id": "8031", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105900,12 +106053,12 @@ "isHttpMetadata": false }, { - "$id": "8021", + "$id": "8032", "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": "6480" + "$ref": "6491" }, "optional": false, "readOnly": false, @@ -105917,12 +106070,12 @@ "isHttpMetadata": false }, { - "$id": "8022", + "$id": "8033", "kind": "property", "name": "code_interpreter", "doc": "The Code Interpreter tool call definition.", "type": { - "$id": "8023", + "$id": "8034", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreter", "namespace": "OpenAI", @@ -105931,12 +106084,12 @@ "decorators": [], "properties": [ { - "$id": "8024", + "$id": "8035", "kind": "property", "name": "input", "doc": "The input to the Code Interpreter tool call.", "type": { - "$id": "8025", + "$id": "8036", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105952,16 +106105,16 @@ "isHttpMetadata": false }, { - "$id": "8026", + "$id": "8037", "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": "8027", + "$id": "8038", "kind": "array", "name": "ArrayRunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreterOutputsObject", "valueType": { - "$id": "8028", + "$id": "8039", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreterOutputsObject", "namespace": "OpenAI", @@ -105970,7 +106123,7 @@ "doc": "Abstractly represents a run step tool call details code interpreter output.", "decorators": [], "discriminatorProperty": { - "$id": "8029", + "$id": "8040", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the details object.", @@ -105988,12 +106141,12 @@ }, "properties": [ { - "$ref": "8029" + "$ref": "8040" } ], "discriminatedSubtypes": { "logs": { - "$id": "8030", + "$id": "8041", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject", "namespace": "OpenAI", @@ -106004,16 +106157,16 @@ "discriminatorValue": "logs", "decorators": [], "baseModel": { - "$ref": "8028" + "$ref": "8039" }, "properties": [ { - "$id": "8031", + "$id": "8042", "kind": "property", "name": "index", "doc": "The index of the output in the outputs array.", "type": { - "$id": "8032", + "$id": "8043", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106029,12 +106182,12 @@ "isHttpMetadata": false }, { - "$id": "8033", + "$id": "8044", "kind": "property", "name": "type", "doc": "Always `logs`.", "type": { - "$ref": "6496" + "$ref": "6507" }, "optional": false, "readOnly": false, @@ -106046,12 +106199,12 @@ "isHttpMetadata": false }, { - "$id": "8034", + "$id": "8045", "kind": "property", "name": "logs", "doc": "The text output from the Code Interpreter tool call.", "type": { - "$id": "8035", + "$id": "8046", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106069,7 +106222,7 @@ ] }, "image": { - "$id": "8036", + "$id": "8047", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeOutputImageObject", "namespace": "OpenAI", @@ -106079,16 +106232,16 @@ "discriminatorValue": "image", "decorators": [], "baseModel": { - "$ref": "8028" + "$ref": "8039" }, "properties": [ { - "$id": "8037", + "$id": "8048", "kind": "property", "name": "index", "doc": "The index of the output in the outputs array.", "type": { - "$id": "8038", + "$id": "8049", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106104,12 +106257,12 @@ "isHttpMetadata": false }, { - "$id": "8039", + "$id": "8050", "kind": "property", "name": "type", "doc": "Always `image`.", "type": { - "$ref": "6505" + "$ref": "6516" }, "optional": false, "readOnly": false, @@ -106121,11 +106274,11 @@ "isHttpMetadata": false }, { - "$id": "8040", + "$id": "8051", "kind": "property", "name": "image", "type": { - "$id": "8041", + "$id": "8052", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectImage", "namespace": "OpenAI", @@ -106134,12 +106287,12 @@ "decorators": [], "properties": [ { - "$id": "8042", + "$id": "8053", "kind": "property", "name": "file_id", "doc": "The [file](/docs/api-reference/files) ID of the image.", "type": { - "$id": "8043", + "$id": "8054", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106195,7 +106348,7 @@ ] }, "file_search": { - "$id": "8044", + "$id": "8055", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsFileSearchObject", "namespace": "OpenAI", @@ -106205,16 +106358,16 @@ "discriminatorValue": "file_search", "decorators": [], "baseModel": { - "$ref": "8014" + "$ref": "8025" }, "properties": [ { - "$id": "8045", + "$id": "8056", "kind": "property", "name": "index", "doc": "The index of the tool call in the tool calls array.", "type": { - "$id": "8046", + "$id": "8057", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106230,12 +106383,12 @@ "isHttpMetadata": false }, { - "$id": "8047", + "$id": "8058", "kind": "property", "name": "id", "doc": "The ID of the tool call object.", "type": { - "$id": "8048", + "$id": "8059", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106251,12 +106404,12 @@ "isHttpMetadata": false }, { - "$id": "8049", + "$id": "8060", "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": "6512" + "$ref": "6523" }, "optional": false, "readOnly": false, @@ -106268,12 +106421,12 @@ "isHttpMetadata": false }, { - "$id": "8050", + "$id": "8061", "kind": "property", "name": "file_search", "doc": "For now, this is always going to be an empty object.", "type": { - "$id": "8051", + "$id": "8062", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsFileSearchObjectFileSearch", "namespace": "OpenAI", @@ -106282,11 +106435,11 @@ "decorators": [], "properties": [ { - "$id": "8052", + "$id": "8063", "kind": "property", "name": "ranking_options", "type": { - "$ref": "6516" + "$ref": "6527" }, "optional": true, "readOnly": false, @@ -106298,12 +106451,12 @@ "isHttpMetadata": false }, { - "$id": "8053", + "$id": "8064", "kind": "property", "name": "results", "doc": "The results of the file search.", "type": { - "$ref": "6521" + "$ref": "6532" }, "optional": true, "readOnly": true, @@ -106328,7 +106481,7 @@ ] }, "function": { - "$id": "8054", + "$id": "8065", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsFunctionObject", "namespace": "OpenAI", @@ -106338,16 +106491,16 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "8014" + "$ref": "8025" }, "properties": [ { - "$id": "8055", + "$id": "8066", "kind": "property", "name": "index", "doc": "The index of the tool call in the tool calls array.", "type": { - "$id": "8056", + "$id": "8067", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106363,12 +106516,12 @@ "isHttpMetadata": false }, { - "$id": "8057", + "$id": "8068", "kind": "property", "name": "id", "doc": "The ID of the tool call object.", "type": { - "$id": "8058", + "$id": "8069", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106384,12 +106537,12 @@ "isHttpMetadata": false }, { - "$id": "8059", + "$id": "8070", "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": "6541" + "$ref": "6552" }, "optional": false, "readOnly": false, @@ -106401,12 +106554,12 @@ "isHttpMetadata": false }, { - "$id": "8060", + "$id": "8071", "kind": "property", "name": "function", "doc": "The definition of the function that was called.", "type": { - "$id": "8061", + "$id": "8072", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsFunctionObjectFunction", "namespace": "OpenAI", @@ -106415,12 +106568,12 @@ "decorators": [], "properties": [ { - "$id": "8062", + "$id": "8073", "kind": "property", "name": "name", "doc": "The name of the function.", "type": { - "$id": "8063", + "$id": "8074", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106436,12 +106589,12 @@ "isHttpMetadata": false }, { - "$id": "8064", + "$id": "8075", "kind": "property", "name": "arguments", "doc": "The arguments passed to the function.", "type": { - "$id": "8065", + "$id": "8076", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106457,15 +106610,15 @@ "isHttpMetadata": false }, { - "$id": "8066", + "$id": "8077", "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": "8067", + "$id": "8078", "kind": "nullable", "type": { - "$id": "8068", + "$id": "8079", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106536,55 +106689,55 @@ ] }, { - "$ref": "8000" + "$ref": "8011" }, { - "$ref": "8002" + "$ref": "8013" }, { - "$ref": "8004" + "$ref": "8015" }, { - "$ref": "8007" + "$ref": "8018" }, { - "$ref": "8010" + "$ref": "8021" }, { - "$ref": "8014" + "$ref": "8025" }, { - "$ref": "8016" + "$ref": "8027" }, { - "$ref": "8023" + "$ref": "8034" }, { - "$ref": "8028" + "$ref": "8039" }, { - "$ref": "8030" + "$ref": "8041" }, { - "$ref": "8036" + "$ref": "8047" }, { - "$ref": "8041" + "$ref": "8052" }, { - "$ref": "8044" + "$ref": "8055" }, { - "$ref": "8051" + "$ref": "8062" }, { - "$ref": "8054" + "$ref": "8065" }, { - "$ref": "8061" + "$ref": "8072" }, { - "$id": "8069", + "$id": "8080", "kind": "model", "name": "CreateThreadRequestToolResourcesFileSearchBase", "namespace": "OpenAI", @@ -106595,7 +106748,7 @@ "properties": [] }, { - "$id": "8070", + "$id": "8081", "kind": "model", "name": "AssistantCollectionOptions", "namespace": "OpenAI", @@ -106605,12 +106758,12 @@ "decorators": [], "properties": [ { - "$id": "8071", + "$id": "8082", "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": "8072", + "$id": "8083", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106626,12 +106779,12 @@ "isHttpMetadata": true }, { - "$id": "8073", + "$id": "8084", "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": "8074", + "$id": "8085", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106647,12 +106800,12 @@ "isHttpMetadata": true }, { - "$id": "8075", + "$id": "8086", "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": "8076", + "$id": "8087", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106668,7 +106821,7 @@ "isHttpMetadata": true }, { - "$id": "8077", + "$id": "8088", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -106687,7 +106840,7 @@ ] }, { - "$id": "8078", + "$id": "8089", "kind": "model", "name": "MessageCollectionOptions", "namespace": "OpenAI", @@ -106697,12 +106850,12 @@ "decorators": [], "properties": [ { - "$id": "8079", + "$id": "8090", "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": "8080", + "$id": "8091", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106718,12 +106871,12 @@ "isHttpMetadata": true }, { - "$id": "8081", + "$id": "8092", "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": "8082", + "$id": "8093", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106739,12 +106892,12 @@ "isHttpMetadata": true }, { - "$id": "8083", + "$id": "8094", "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": "8084", + "$id": "8095", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106760,7 +106913,7 @@ "isHttpMetadata": true }, { - "$id": "8085", + "$id": "8096", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -106779,7 +106932,7 @@ ] }, { - "$id": "8086", + "$id": "8097", "kind": "model", "name": "RunCollectionOptions", "namespace": "OpenAI", @@ -106789,12 +106942,12 @@ "decorators": [], "properties": [ { - "$id": "8087", + "$id": "8098", "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": "8088", + "$id": "8099", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106810,12 +106963,12 @@ "isHttpMetadata": true }, { - "$id": "8089", + "$id": "8100", "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": "8090", + "$id": "8101", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106831,12 +106984,12 @@ "isHttpMetadata": true }, { - "$id": "8091", + "$id": "8102", "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": "8092", + "$id": "8103", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106852,7 +107005,7 @@ "isHttpMetadata": true }, { - "$id": "8093", + "$id": "8104", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -106871,7 +107024,7 @@ ] }, { - "$id": "8094", + "$id": "8105", "kind": "model", "name": "RunStepCollectionOptions", "namespace": "OpenAI", @@ -106881,12 +107034,12 @@ "decorators": [], "properties": [ { - "$id": "8095", + "$id": "8106", "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": "8096", + "$id": "8107", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106902,12 +107055,12 @@ "isHttpMetadata": true }, { - "$id": "8097", + "$id": "8108", "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": "8098", + "$id": "8109", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106923,12 +107076,12 @@ "isHttpMetadata": true }, { - "$id": "8099", + "$id": "8110", "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": "8100", + "$id": "8111", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106944,7 +107097,7 @@ "isHttpMetadata": true }, { - "$id": "8101", + "$id": "8112", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -106963,7 +107116,7 @@ ] }, { - "$id": "8102", + "$id": "8113", "kind": "model", "name": "DotNetChatResponseFormat", "namespace": "OpenAI", @@ -106977,7 +107130,7 @@ } ], "discriminatorProperty": { - "$id": "8103", + "$id": "8114", "kind": "property", "name": "type", "type": { @@ -106994,12 +107147,12 @@ }, "properties": [ { - "$ref": "8103" + "$ref": "8114" } ], "discriminatedSubtypes": { "text": { - "$id": "8104", + "$id": "8115", "kind": "model", "name": "DotNetChatResponseFormatText", "namespace": "OpenAI", @@ -107014,11 +107167,11 @@ } ], "baseModel": { - "$ref": "8102" + "$ref": "8113" }, "properties": [ { - "$id": "8105", + "$id": "8116", "kind": "property", "name": "type", "doc": "The type of response format being defined. Always `text`.", @@ -107037,7 +107190,7 @@ ] }, "json_object": { - "$id": "8106", + "$id": "8117", "kind": "model", "name": "DotNetChatResponseFormatJsonObject", "namespace": "OpenAI", @@ -107052,11 +107205,11 @@ } ], "baseModel": { - "$ref": "8102" + "$ref": "8113" }, "properties": [ { - "$id": "8107", + "$id": "8118", "kind": "property", "name": "type", "doc": "The type of response format being defined. Always `json_object`.", @@ -107075,7 +107228,7 @@ ] }, "json_schema": { - "$id": "8108", + "$id": "8119", "kind": "model", "name": "DotNetChatResponseFormatJsonSchema", "namespace": "OpenAI", @@ -107090,11 +107243,11 @@ } ], "baseModel": { - "$ref": "8102" + "$ref": "8113" }, "properties": [ { - "$id": "8109", + "$id": "8120", "kind": "property", "name": "type", "type": { @@ -107110,11 +107263,11 @@ "isHttpMetadata": false }, { - "$id": "8110", + "$id": "8121", "kind": "property", "name": "json_schema", "type": { - "$id": "8111", + "$id": "8122", "kind": "model", "name": "DotNetChatResponseFormatJsonSchemaJsonSchema", "namespace": "OpenAI", @@ -107123,11 +107276,11 @@ "decorators": [], "properties": [ { - "$id": "8112", + "$id": "8123", "kind": "property", "name": "description", "type": { - "$id": "8113", + "$id": "8124", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107143,11 +107296,11 @@ "isHttpMetadata": false }, { - "$id": "8114", + "$id": "8125", "kind": "property", "name": "name", "type": { - "$id": "8115", + "$id": "8126", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107163,11 +107316,11 @@ "isHttpMetadata": false }, { - "$id": "8116", + "$id": "8127", "kind": "property", "name": "schema", "type": { - "$id": "8117", + "$id": "8128", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -107183,14 +107336,14 @@ "isHttpMetadata": false }, { - "$id": "8118", + "$id": "8129", "kind": "property", "name": "strict", "type": { - "$id": "8119", + "$id": "8130", "kind": "nullable", "type": { - "$id": "8120", + "$id": "8131", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -107223,19 +107376,19 @@ } }, { - "$ref": "8104" + "$ref": "8115" }, { - "$ref": "8106" + "$ref": "8117" }, { - "$ref": "8108" + "$ref": "8119" }, { - "$ref": "8111" + "$ref": "8122" }, { - "$id": "8121", + "$id": "8132", "kind": "model", "name": "DotNetAssistantResponseFormat", "namespace": "OpenAI", @@ -107244,7 +107397,7 @@ "usage": "Input,Output", "decorators": [], "discriminatorProperty": { - "$id": "8122", + "$id": "8133", "kind": "property", "name": "type", "type": { @@ -107261,12 +107414,12 @@ }, "properties": [ { - "$ref": "8122" + "$ref": "8133" } ], "discriminatedSubtypes": { "text": { - "$id": "8123", + "$id": "8134", "kind": "model", "name": "DotNetAssistantResponseFormatText", "namespace": "OpenAI", @@ -107276,11 +107429,11 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "8121" + "$ref": "8132" }, "properties": [ { - "$id": "8124", + "$id": "8135", "kind": "property", "name": "type", "doc": "The type of response format being defined. Always `text`.", @@ -107299,7 +107452,7 @@ ] }, "json_object": { - "$id": "8125", + "$id": "8136", "kind": "model", "name": "DotNetAssistantResponseFormatJsonObject", "namespace": "OpenAI", @@ -107309,11 +107462,11 @@ "discriminatorValue": "json_object", "decorators": [], "baseModel": { - "$ref": "8121" + "$ref": "8132" }, "properties": [ { - "$id": "8126", + "$id": "8137", "kind": "property", "name": "type", "doc": "The type of response format being defined. Always `json_object`.", @@ -107332,7 +107485,7 @@ ] }, "json_schema": { - "$id": "8127", + "$id": "8138", "kind": "model", "name": "DotNetAssistantResponseFormatJsonSchema", "namespace": "OpenAI", @@ -107342,11 +107495,11 @@ "discriminatorValue": "json_schema", "decorators": [], "baseModel": { - "$ref": "8121" + "$ref": "8132" }, "properties": [ { - "$id": "8128", + "$id": "8139", "kind": "property", "name": "type", "type": { @@ -107362,11 +107515,11 @@ "isHttpMetadata": false }, { - "$id": "8129", + "$id": "8140", "kind": "property", "name": "json_schema", "type": { - "$id": "8130", + "$id": "8141", "kind": "model", "name": "DotNetAssistantResponseFormatJsonSchemaJsonSchema", "namespace": "OpenAI", @@ -107375,11 +107528,11 @@ "decorators": [], "properties": [ { - "$id": "8131", + "$id": "8142", "kind": "property", "name": "description", "type": { - "$id": "8132", + "$id": "8143", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107395,11 +107548,11 @@ "isHttpMetadata": false }, { - "$id": "8133", + "$id": "8144", "kind": "property", "name": "name", "type": { - "$id": "8134", + "$id": "8145", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107415,11 +107568,11 @@ "isHttpMetadata": false }, { - "$id": "8135", + "$id": "8146", "kind": "property", "name": "schema", "type": { - "$id": "8136", + "$id": "8147", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -107435,14 +107588,14 @@ "isHttpMetadata": false }, { - "$id": "8137", + "$id": "8148", "kind": "property", "name": "strict", "type": { - "$id": "8138", + "$id": "8149", "kind": "nullable", "type": { - "$id": "8139", + "$id": "8150", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -107475,19 +107628,19 @@ } }, { - "$ref": "8123" + "$ref": "8134" }, { - "$ref": "8125" + "$ref": "8136" }, { - "$ref": "8127" + "$ref": "8138" }, { - "$ref": "8130" + "$ref": "8141" }, { - "$id": "8140", + "$id": "8151", "kind": "model", "name": "DotNetAudioLogProbsProperties", "namespace": "OpenAI", @@ -107497,12 +107650,12 @@ "decorators": [], "properties": [ { - "$id": "8141", + "$id": "8152", "kind": "property", "name": "token", "doc": "The token that was used to generate the log probability.", "type": { - "$id": "8142", + "$id": "8153", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107518,12 +107671,12 @@ "isHttpMetadata": false }, { - "$id": "8143", + "$id": "8154", "kind": "property", "name": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "8144", + "$id": "8155", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -107539,7 +107692,7 @@ "isHttpMetadata": false }, { - "$id": "8145", + "$id": "8156", "kind": "property", "name": "bytes", "doc": "The bytes that were used to generate the log probability.", @@ -107558,7 +107711,7 @@ ] }, { - "$id": "8146", + "$id": "8157", "kind": "model", "name": "DotNetRealtimeLogProbsProperties", "namespace": "OpenAI", @@ -107568,12 +107721,12 @@ "decorators": [], "properties": [ { - "$id": "8147", + "$id": "8158", "kind": "property", "name": "token", "doc": "The token that was used to generate the log probability.", "type": { - "$id": "8148", + "$id": "8159", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107589,12 +107742,12 @@ "isHttpMetadata": false }, { - "$id": "8149", + "$id": "8160", "kind": "property", "name": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "8150", + "$id": "8161", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -107610,7 +107763,7 @@ "isHttpMetadata": false }, { - "$id": "8151", + "$id": "8162", "kind": "property", "name": "bytes", "doc": "The bytes that were used to generate the log probability.", @@ -107629,7 +107782,7 @@ ] }, { - "$id": "8152", + "$id": "8163", "kind": "model", "name": "DotNetCombinedJsonTranscriptionResponse", "namespace": "OpenAI", @@ -107639,7 +107792,7 @@ "decorators": [], "properties": [ { - "$id": "8153", + "$id": "8164", "kind": "property", "name": "task", "doc": "The task label.", @@ -107656,12 +107809,12 @@ "isHttpMetadata": false }, { - "$id": "8154", + "$id": "8165", "kind": "property", "name": "language", "doc": "The language of the input audio.", "type": { - "$id": "8155", + "$id": "8166", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107677,17 +107830,17 @@ "isHttpMetadata": false }, { - "$id": "8156", + "$id": "8167", "kind": "property", "name": "duration", "doc": "The duration of the input audio.", "type": { - "$id": "8157", + "$id": "8168", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "8158", + "$id": "8169", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -107706,12 +107859,12 @@ "isHttpMetadata": false }, { - "$id": "8159", + "$id": "8170", "kind": "property", "name": "text", "doc": "The transcribed text.", "type": { - "$id": "8160", + "$id": "8171", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107727,7 +107880,7 @@ "isHttpMetadata": false }, { - "$id": "8161", + "$id": "8172", "kind": "property", "name": "words", "doc": "Extracted words and their corresponding timestamps.", @@ -107744,7 +107897,7 @@ "isHttpMetadata": false }, { - "$id": "8162", + "$id": "8173", "kind": "property", "name": "segments", "doc": "Segments of the transcribed text and their corresponding details.", @@ -107761,11 +107914,11 @@ "isHttpMetadata": false }, { - "$id": "8163", + "$id": "8174", "kind": "property", "name": "logprobs", "type": { - "$ref": "7413" + "$ref": "7424" }, "optional": true, "readOnly": false, @@ -107779,7 +107932,7 @@ ] }, { - "$id": "8164", + "$id": "8175", "kind": "model", "name": "BatchCollectionOptions", "namespace": "OpenAI", @@ -107789,12 +107942,12 @@ "decorators": [], "properties": [ { - "$id": "8165", + "$id": "8176", "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": "8166", + "$id": "8177", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107810,12 +107963,12 @@ "isHttpMetadata": true }, { - "$id": "8167", + "$id": "8178", "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": "8168", + "$id": "8179", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -107833,7 +107986,7 @@ ] }, { - "$id": "8169", + "$id": "8180", "kind": "model", "name": "ChatCompletionCollectionOptions", "namespace": "OpenAI", @@ -107848,12 +108001,12 @@ ], "properties": [ { - "$id": "8170", + "$id": "8181", "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": "8171", + "$id": "8182", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107869,12 +108022,12 @@ "isHttpMetadata": true }, { - "$id": "8172", + "$id": "8183", "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": "8173", + "$id": "8184", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -107890,7 +108043,7 @@ "isHttpMetadata": true }, { - "$id": "8174", + "$id": "8185", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -107907,7 +108060,7 @@ "isHttpMetadata": true }, { - "$id": "8175", + "$id": "8186", "kind": "property", "name": "metadata", "type": { @@ -107923,11 +108076,11 @@ "isHttpMetadata": true }, { - "$id": "8176", + "$id": "8187", "kind": "property", "name": "model", "type": { - "$id": "8177", + "$id": "8188", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107945,7 +108098,7 @@ ] }, { - "$id": "8178", + "$id": "8189", "kind": "model", "name": "ChatCompletionMessageCollectionOptions", "namespace": "OpenAI", @@ -107960,12 +108113,12 @@ ], "properties": [ { - "$id": "8179", + "$id": "8190", "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": "8180", + "$id": "8191", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107981,12 +108134,12 @@ "isHttpMetadata": true }, { - "$id": "8181", + "$id": "8192", "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": "8182", + "$id": "8193", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -108002,7 +108155,7 @@ "isHttpMetadata": true }, { - "$id": "8183", + "$id": "8194", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -108021,7 +108174,7 @@ ] }, { - "$id": "8184", + "$id": "8195", "kind": "model", "name": "ContainerCollectionOptions", "namespace": "OpenAI", @@ -108031,12 +108184,12 @@ "decorators": [], "properties": [ { - "$id": "8185", + "$id": "8196", "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": "8186", + "$id": "8197", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108052,12 +108205,12 @@ "isHttpMetadata": true }, { - "$id": "8187", + "$id": "8198", "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": "8188", + "$id": "8199", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -108073,7 +108226,7 @@ "isHttpMetadata": true }, { - "$id": "8189", + "$id": "8200", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -108092,7 +108245,7 @@ ] }, { - "$id": "8190", + "$id": "8201", "kind": "model", "name": "ContainerFileCollectionOptions", "namespace": "OpenAI", @@ -108102,12 +108255,12 @@ "decorators": [], "properties": [ { - "$id": "8191", + "$id": "8202", "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": "8192", + "$id": "8203", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108123,12 +108276,12 @@ "isHttpMetadata": true }, { - "$id": "8193", + "$id": "8204", "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": "8194", + "$id": "8205", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -108144,7 +108297,7 @@ "isHttpMetadata": true }, { - "$id": "8195", + "$id": "8206", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -108163,7 +108316,7 @@ ] }, { - "$id": "8196", + "$id": "8207", "kind": "model", "name": "ConversationItemCollectionOptions", "namespace": "OpenAI", @@ -108173,12 +108326,12 @@ "decorators": [], "properties": [ { - "$id": "8197", + "$id": "8208", "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": "8198", + "$id": "8209", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108194,12 +108347,12 @@ "isHttpMetadata": true }, { - "$id": "8199", + "$id": "8210", "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": "8200", + "$id": "8211", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -108215,7 +108368,7 @@ "isHttpMetadata": true }, { - "$id": "8201", + "$id": "8212", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -108234,7 +108387,7 @@ ] }, { - "$id": "8202", + "$id": "8213", "kind": "model", "name": "ResponseItemCollectionOptions", "namespace": "OpenAI", @@ -108249,12 +108402,12 @@ ], "properties": [ { - "$id": "8203", + "$id": "8214", "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": "8204", + "$id": "8215", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108270,12 +108423,12 @@ "isHttpMetadata": true }, { - "$id": "8205", + "$id": "8216", "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": "8206", + "$id": "8217", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108291,12 +108444,12 @@ "isHttpMetadata": true }, { - "$id": "8207", + "$id": "8218", "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": "8208", + "$id": "8219", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -108312,7 +108465,7 @@ "isHttpMetadata": true }, { - "$id": "8209", + "$id": "8220", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -108331,7 +108484,7 @@ ] }, { - "$id": "8210", + "$id": "8221", "kind": "model", "name": "DotNetCustomToolCallApprovalPolicy", "namespace": "OpenAI", @@ -108346,12 +108499,12 @@ ], "properties": [ { - "$id": "8211", + "$id": "8222", "kind": "property", "name": "always", "doc": "A list of tools that always require approval.", "type": { - "$ref": "4537" + "$ref": "4539" }, "optional": true, "readOnly": false, @@ -108363,12 +108516,12 @@ "isHttpMetadata": false }, { - "$id": "8212", + "$id": "8223", "kind": "property", "name": "never", "doc": "A list of tools that never require approval.", "type": { - "$ref": "4537" + "$ref": "4539" }, "optional": true, "readOnly": false, @@ -108382,7 +108535,7 @@ ] }, { - "$id": "8213", + "$id": "8224", "kind": "model", "name": "DotNetToolCallApprovalPolicy", "namespace": "OpenAI", @@ -108397,7 +108550,7 @@ ], "properties": [ { - "$id": "8214", + "$id": "8225", "kind": "property", "name": "global_policy", "type": { @@ -108413,11 +108566,11 @@ "isHttpMetadata": false }, { - "$id": "8215", + "$id": "8226", "kind": "property", "name": "custom_policy", "type": { - "$ref": "8210" + "$ref": "8221" }, "optional": true, "readOnly": false, @@ -108431,7 +108584,7 @@ ] }, { - "$id": "8216", + "$id": "8227", "kind": "model", "name": "DotNetCodeInterpreterToolContainer", "namespace": "OpenAI", @@ -108446,11 +108599,11 @@ ], "properties": [ { - "$id": "8217", + "$id": "8228", "kind": "property", "name": "container_id", "type": { - "$id": "8218", + "$id": "8229", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108466,11 +108619,11 @@ "isHttpMetadata": false }, { - "$id": "8219", + "$id": "8230", "kind": "property", "name": "container", "type": { - "$ref": "4490" + "$ref": "4492" }, "optional": true, "readOnly": false, @@ -108484,7 +108637,7 @@ ] }, { - "$id": "8220", + "$id": "8231", "kind": "model", "name": "DotNetCombinedChunkingStrategyParam", "namespace": "OpenAI", @@ -108492,7 +108645,7 @@ "usage": "Input,Output", "decorators": [], "discriminatorProperty": { - "$id": "8221", + "$id": "8232", "kind": "property", "name": "type", "type": { @@ -108509,12 +108662,12 @@ }, "properties": [ { - "$ref": "8221" + "$ref": "8232" } ], "discriminatedSubtypes": { "auto": { - "$id": "8222", + "$id": "8233", "kind": "model", "name": "DotNetCombinedAutoChunkingStrategyParam", "namespace": "OpenAI", @@ -108524,16 +108677,16 @@ "discriminatorValue": "auto", "decorators": [], "baseModel": { - "$ref": "8220" + "$ref": "8231" }, "properties": [ { - "$id": "8223", + "$id": "8234", "kind": "property", "name": "type", "doc": "Always `auto`.", "type": { - "$id": "8224", + "$id": "8235", "kind": "enumvalue", "name": "auto", "value": "auto", @@ -108541,14 +108694,14 @@ "$ref": "1391" }, "enumType": { - "$id": "8225", + "$id": "8236", "kind": "enum", "decorators": [], "name": "DotNetCombinedChunkingStrategyParamType", "isGeneratedName": true, "namespace": "OpenAI", "valueType": { - "$id": "8226", + "$id": "8237", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -108557,42 +108710,42 @@ }, "values": [ { - "$id": "8227", + "$id": "8238", "kind": "enumvalue", "decorators": [], "name": "auto", "value": "auto", "valueType": { - "$ref": "8226" + "$ref": "8237" }, "enumType": { - "$ref": "8225" + "$ref": "8236" } }, { - "$id": "8228", + "$id": "8239", "kind": "enumvalue", "decorators": [], "name": "static", "value": "static", "valueType": { - "$ref": "8226" + "$ref": "8237" }, "enumType": { - "$ref": "8225" + "$ref": "8236" } }, { - "$id": "8229", + "$id": "8240", "kind": "enumvalue", "decorators": [], "name": "other", "value": "other", "valueType": { - "$ref": "8226" + "$ref": "8237" }, "enumType": { - "$ref": "8225" + "$ref": "8236" } } ], @@ -108619,7 +108772,7 @@ ] }, "static": { - "$id": "8230", + "$id": "8241", "kind": "model", "name": "DotNetCombinedStaticChunkingStrategyParam", "namespace": "OpenAI", @@ -108629,16 +108782,16 @@ "discriminatorValue": "static", "decorators": [], "baseModel": { - "$ref": "8220" + "$ref": "8231" }, "properties": [ { - "$id": "8231", + "$id": "8242", "kind": "property", "name": "type", "doc": "Always `static`.", "type": { - "$id": "8232", + "$id": "8243", "kind": "enumvalue", "name": "static", "value": "static", @@ -108646,7 +108799,7 @@ "$ref": "1391" }, "enumType": { - "$ref": "8225" + "$ref": "8236" }, "decorators": [] }, @@ -108660,7 +108813,7 @@ "isHttpMetadata": false }, { - "$id": "8233", + "$id": "8244", "kind": "property", "name": "static", "type": { @@ -108678,7 +108831,7 @@ ] }, "other": { - "$id": "8234", + "$id": "8245", "kind": "model", "name": "DotNetCombinedOtherChunkingStrategyParam", "namespace": "OpenAI", @@ -108688,16 +108841,16 @@ "discriminatorValue": "other", "decorators": [], "baseModel": { - "$ref": "8220" + "$ref": "8231" }, "properties": [ { - "$id": "8235", + "$id": "8246", "kind": "property", "name": "type", "doc": "Always `other`.", "type": { - "$id": "8236", + "$id": "8247", "kind": "enumvalue", "name": "other", "value": "other", @@ -108705,7 +108858,7 @@ "$ref": "1391" }, "enumType": { - "$ref": "8225" + "$ref": "8236" }, "decorators": [] }, @@ -108723,16 +108876,16 @@ } }, { - "$ref": "8222" + "$ref": "8233" }, { - "$ref": "8230" + "$ref": "8241" }, { - "$ref": "8234" + "$ref": "8245" }, { - "$id": "8237", + "$id": "8248", "kind": "model", "name": "VectorStoreCollectionOptions", "namespace": "OpenAI", @@ -108742,12 +108895,12 @@ "decorators": [], "properties": [ { - "$id": "8238", + "$id": "8249", "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": "8239", + "$id": "8250", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108763,12 +108916,12 @@ "isHttpMetadata": true }, { - "$id": "8240", + "$id": "8251", "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": "8241", + "$id": "8252", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108784,12 +108937,12 @@ "isHttpMetadata": true }, { - "$id": "8242", + "$id": "8253", "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": "8243", + "$id": "8254", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -108805,7 +108958,7 @@ "isHttpMetadata": true }, { - "$id": "8244", + "$id": "8255", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -108824,7 +108977,7 @@ ] }, { - "$id": "8245", + "$id": "8256", "kind": "model", "name": "VectorStoreFileCollectionOptions", "namespace": "OpenAI", @@ -108834,12 +108987,12 @@ "decorators": [], "properties": [ { - "$id": "8246", + "$id": "8257", "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": "8247", + "$id": "8258", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108855,12 +109008,12 @@ "isHttpMetadata": true }, { - "$id": "8248", + "$id": "8259", "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": "8249", + "$id": "8260", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108876,12 +109029,12 @@ "isHttpMetadata": true }, { - "$id": "8250", + "$id": "8261", "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": "8251", + "$id": "8262", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -108897,7 +109050,7 @@ "isHttpMetadata": true }, { - "$id": "8252", + "$id": "8263", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -108914,7 +109067,7 @@ "isHttpMetadata": true }, { - "$id": "8253", + "$id": "8264", "kind": "property", "name": "filter", "type": { @@ -108932,7 +109085,7 @@ ] }, { - "$id": "8254", + "$id": "8265", "kind": "model", "name": "VideoCollectionOptions", "namespace": "OpenAI", @@ -108942,12 +109095,12 @@ "decorators": [], "properties": [ { - "$id": "8255", + "$id": "8266", "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": "8256", + "$id": "8267", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108963,12 +109116,12 @@ "isHttpMetadata": true }, { - "$id": "8257", + "$id": "8268", "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": "8258", + "$id": "8269", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -108984,7 +109137,7 @@ "isHttpMetadata": true }, { - "$id": "8259", + "$id": "8270", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -109005,20 +109158,20 @@ ], "clients": [ { - "$id": "8260", + "$id": "8271", "kind": "client", "name": "OpenAIClient", "namespace": "OpenAI", "methods": [], "parameters": [ { - "$id": "8261", + "$id": "8272", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8262", + "$id": "8273", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -109029,7 +109182,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8263", + "$id": "8274", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -109048,27 +109201,27 @@ "apiVersions": [], "children": [ { - "$id": "8264", + "$id": "8275", "kind": "client", "name": "Assistants", "namespace": "OpenAI", "methods": [ { - "$id": "8265", + "$id": "8276", "kind": "paging", "name": "GetAssistants", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of assistants.", "operation": { - "$id": "8266", + "$id": "8277", "name": "GetAssistants", "resourceName": "Assistants", "summary": "Returns a list of assistants.", "accessibility": "public", "parameters": [ { - "$id": "8267", + "$id": "8278", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -109084,7 +109237,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.listAssistants.accept" }, { - "$id": "8268", + "$id": "8279", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -109100,13 +109253,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.listAssistants.openAIBeta" }, { - "$id": "8269", + "$id": "8280", "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": "8270", + "$id": "8281", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -109121,7 +109274,7 @@ "readOnly": false }, { - "$id": "8271", + "$id": "8282", "kind": "query", "name": "order", "serializedName": "order", @@ -109138,13 +109291,13 @@ "readOnly": false }, { - "$id": "8272", + "$id": "8283", "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": "8273", + "$id": "8284", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109159,13 +109312,13 @@ "readOnly": false }, { - "$id": "8274", + "$id": "8285", "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": "8275", + "$id": "8286", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109206,7 +109359,7 @@ }, "parameters": [ { - "$id": "8276", + "$id": "8287", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -109223,7 +109376,7 @@ "decorators": [] }, { - "$id": "8277", + "$id": "8288", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -109240,13 +109393,13 @@ "decorators": [] }, { - "$id": "8278", + "$id": "8289", "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": "8279", + "$id": "8290", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -109262,7 +109415,7 @@ "decorators": [] }, { - "$id": "8280", + "$id": "8291", "kind": "method", "name": "order", "serializedName": "order", @@ -109280,13 +109433,13 @@ "decorators": [] }, { - "$id": "8281", + "$id": "8292", "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": "8282", + "$id": "8293", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109302,13 +109455,13 @@ "decorators": [] }, { - "$id": "8283", + "$id": "8294", "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": "8284", + "$id": "8295", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109342,7 +109495,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8272" + "$ref": "8283" }, "responseSegments": [ "last_id" @@ -109352,21 +109505,21 @@ } }, { - "$id": "8285", + "$id": "8296", "kind": "basic", "name": "createAssistant", "accessibility": "public", "apiVersions": [], "summary": "Create an assistant with a model and instructions.", "operation": { - "$id": "8286", + "$id": "8297", "name": "createAssistant", "resourceName": "Assistants", "summary": "Create an assistant with a model and instructions.", "accessibility": "public", "parameters": [ { - "$id": "8287", + "$id": "8298", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -109382,7 +109535,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant.accept" }, { - "$id": "8288", + "$id": "8299", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -109398,7 +109551,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant.openAIBeta" }, { - "$id": "8289", + "$id": "8300", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -109415,7 +109568,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant.contentType" }, { - "$id": "8290", + "$id": "8301", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -109463,7 +109616,7 @@ }, "parameters": [ { - "$id": "8291", + "$id": "8302", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -109480,7 +109633,7 @@ "decorators": [] }, { - "$id": "8292", + "$id": "8303", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -109497,7 +109650,7 @@ "decorators": [] }, { - "$id": "8293", + "$id": "8304", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -109514,7 +109667,7 @@ "decorators": [] }, { - "$id": "8294", + "$id": "8305", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -109543,21 +109696,21 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant" }, { - "$id": "8295", + "$id": "8306", "kind": "basic", "name": "getAssistant", "accessibility": "public", "apiVersions": [], "summary": "Retrieves an assistant.", "operation": { - "$id": "8296", + "$id": "8307", "name": "getAssistant", "resourceName": "Assistants", "summary": "Retrieves an assistant.", "accessibility": "public", "parameters": [ { - "$id": "8297", + "$id": "8308", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -109573,7 +109726,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.getAssistant.accept" }, { - "$id": "8298", + "$id": "8309", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -109589,13 +109742,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.getAssistant.openAIBeta" }, { - "$id": "8299", + "$id": "8310", "kind": "path", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to retrieve.", "type": { - "$id": "8300", + "$id": "8311", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109639,7 +109792,7 @@ }, "parameters": [ { - "$id": "8301", + "$id": "8312", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -109656,7 +109809,7 @@ "decorators": [] }, { - "$id": "8302", + "$id": "8313", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -109673,13 +109826,13 @@ "decorators": [] }, { - "$id": "8303", + "$id": "8314", "kind": "method", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to retrieve.", "type": { - "$id": "8304", + "$id": "8315", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109706,21 +109859,21 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.getAssistant" }, { - "$id": "8305", + "$id": "8316", "kind": "basic", "name": "modifyAssistant", "accessibility": "public", "apiVersions": [], "summary": "Modifies an assistant.", "operation": { - "$id": "8306", + "$id": "8317", "name": "modifyAssistant", "resourceName": "Assistants", "summary": "Modifies an assistant.", "accessibility": "public", "parameters": [ { - "$id": "8307", + "$id": "8318", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -109736,7 +109889,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant.accept" }, { - "$id": "8308", + "$id": "8319", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -109752,13 +109905,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant.openAIBeta" }, { - "$id": "8309", + "$id": "8320", "kind": "path", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to modify.", "type": { - "$id": "8310", + "$id": "8321", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109776,7 +109929,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant.assistant_id" }, { - "$id": "8311", + "$id": "8322", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -109793,7 +109946,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant.contentType" }, { - "$id": "8312", + "$id": "8323", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -109841,7 +109994,7 @@ }, "parameters": [ { - "$id": "8313", + "$id": "8324", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -109858,7 +110011,7 @@ "decorators": [] }, { - "$id": "8314", + "$id": "8325", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -109875,13 +110028,13 @@ "decorators": [] }, { - "$id": "8315", + "$id": "8326", "kind": "method", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to modify.", "type": { - "$id": "8316", + "$id": "8327", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109897,7 +110050,7 @@ "decorators": [] }, { - "$id": "8317", + "$id": "8328", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -109914,7 +110067,7 @@ "decorators": [] }, { - "$id": "8318", + "$id": "8329", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -109943,21 +110096,21 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant" }, { - "$id": "8319", + "$id": "8330", "kind": "basic", "name": "deleteAssistant", "accessibility": "public", "apiVersions": [], "summary": "Delete an assistant.", "operation": { - "$id": "8320", + "$id": "8331", "name": "deleteAssistant", "resourceName": "Assistants", "summary": "Delete an assistant.", "accessibility": "public", "parameters": [ { - "$id": "8321", + "$id": "8332", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -109973,7 +110126,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.deleteAssistant.accept" }, { - "$id": "8322", + "$id": "8333", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -109989,13 +110142,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.deleteAssistant.openAIBeta" }, { - "$id": "8323", + "$id": "8334", "kind": "path", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to delete.", "type": { - "$id": "8324", + "$id": "8335", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110039,7 +110192,7 @@ }, "parameters": [ { - "$id": "8325", + "$id": "8336", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -110056,7 +110209,7 @@ "decorators": [] }, { - "$id": "8326", + "$id": "8337", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -110073,13 +110226,13 @@ "decorators": [] }, { - "$id": "8327", + "$id": "8338", "kind": "method", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to delete.", "type": { - "$id": "8328", + "$id": "8339", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110108,13 +110261,13 @@ ], "parameters": [ { - "$id": "8329", + "$id": "8340", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8330", + "$id": "8341", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -110125,7 +110278,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8331", + "$id": "8342", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -110143,31 +110296,31 @@ "crossLanguageDefinitionId": "OpenAI.Assistants", "apiVersions": [], "parent": { - "$ref": "8260" + "$ref": "8271" } }, { - "$id": "8332", + "$id": "8343", "kind": "client", "name": "Audio", "namespace": "OpenAI", "methods": [ { - "$id": "8333", + "$id": "8344", "kind": "basic", "name": "GenerateSpeech", "accessibility": "public", "apiVersions": [], "summary": "Generates audio from the input text.", "operation": { - "$id": "8334", + "$id": "8345", "name": "GenerateSpeech", "resourceName": "Audio", "summary": "Generates audio from the input text.", "accessibility": "public", "parameters": [ { - "$id": "8335", + "$id": "8346", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -110183,7 +110336,7 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createSpeech.accept" }, { - "$id": "8336", + "$id": "8347", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -110200,7 +110353,7 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createSpeech.contentType" }, { - "$id": "8337", + "$id": "8348", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -110225,7 +110378,7 @@ 200 ], "bodyType": { - "$id": "8338", + "$id": "8349", "kind": "bytes", "name": "bytes", "crossLanguageDefinitionId": "TypeSpec.bytes", @@ -110237,7 +110390,7 @@ "nameInResponse": "Transfer-Encoding", "doc": "chunked", "type": { - "$id": "8339", + "$id": "8350", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110272,7 +110425,7 @@ }, "parameters": [ { - "$id": "8340", + "$id": "8351", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -110289,7 +110442,7 @@ "decorators": [] }, { - "$id": "8341", + "$id": "8352", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -110306,7 +110459,7 @@ "decorators": [] }, { - "$id": "8342", + "$id": "8353", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -110326,7 +110479,7 @@ ], "response": { "type": { - "$ref": "8338" + "$ref": "8349" } }, "isOverride": false, @@ -110335,21 +110488,21 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createSpeech" }, { - "$id": "8343", + "$id": "8354", "kind": "basic", "name": "TranscribeAudio", "accessibility": "public", "apiVersions": [], "summary": "Transcribes audio into the input language.", "operation": { - "$id": "8344", + "$id": "8355", "name": "TranscribeAudio", "resourceName": "Audio", "summary": "Transcribes audio into the input language.", "accessibility": "public", "parameters": [ { - "$id": "8345", + "$id": "8356", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -110365,7 +110518,7 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranscription.accept" }, { - "$id": "8346", + "$id": "8357", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -110381,7 +110534,7 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranscription.contentType" }, { - "$id": "8347", + "$id": "8358", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -110406,12 +110559,12 @@ 200 ], "bodyType": { - "$id": "8348", + "$id": "8359", "kind": "union", "name": "", "variantTypes": [ { - "$id": "8349", + "$id": "8360", "kind": "union", "name": "", "variantTypes": [ @@ -110463,7 +110616,7 @@ }, "parameters": [ { - "$id": "8350", + "$id": "8361", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -110480,7 +110633,7 @@ "decorators": [] }, { - "$id": "8351", + "$id": "8362", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -110497,7 +110650,7 @@ "decorators": [] }, { - "$id": "8352", + "$id": "8363", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -110516,7 +110669,7 @@ ], "response": { "type": { - "$ref": "8348" + "$ref": "8359" } }, "isOverride": false, @@ -110525,21 +110678,21 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranscription" }, { - "$id": "8353", + "$id": "8364", "kind": "basic", "name": "TranslateAudio", "accessibility": "public", "apiVersions": [], "summary": "Translates audio into English..", "operation": { - "$id": "8354", + "$id": "8365", "name": "TranslateAudio", "resourceName": "Audio", "summary": "Translates audio into English..", "accessibility": "public", "parameters": [ { - "$id": "8355", + "$id": "8366", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -110555,7 +110708,7 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranslation.accept" }, { - "$id": "8356", + "$id": "8367", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -110571,7 +110724,7 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranslation.contentType" }, { - "$id": "8357", + "$id": "8368", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -110596,12 +110749,12 @@ 200 ], "bodyType": { - "$id": "8358", + "$id": "8369", "kind": "union", "name": "", "variantTypes": [ { - "$id": "8359", + "$id": "8370", "kind": "union", "name": "", "variantTypes": [ @@ -110616,7 +110769,7 @@ "decorators": [] }, { - "$id": "8360", + "$id": "8371", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110657,7 +110810,7 @@ }, "parameters": [ { - "$id": "8361", + "$id": "8372", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -110674,7 +110827,7 @@ "decorators": [] }, { - "$id": "8362", + "$id": "8373", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -110691,7 +110844,7 @@ "decorators": [] }, { - "$id": "8363", + "$id": "8374", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -110710,7 +110863,7 @@ ], "response": { "type": { - "$ref": "8358" + "$ref": "8369" } }, "isOverride": false, @@ -110721,13 +110874,13 @@ ], "parameters": [ { - "$id": "8364", + "$id": "8375", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8365", + "$id": "8376", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -110738,7 +110891,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8366", + "$id": "8377", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -110756,31 +110909,31 @@ "crossLanguageDefinitionId": "OpenAI.Audio", "apiVersions": [], "parent": { - "$ref": "8260" + "$ref": "8271" } }, { - "$id": "8367", + "$id": "8378", "kind": "client", "name": "Batches", "namespace": "OpenAI", "methods": [ { - "$id": "8368", + "$id": "8379", "kind": "basic", "name": "createBatch", "accessibility": "public", "apiVersions": [], "summary": "Creates and executes a batch from an uploaded file of requests", "operation": { - "$id": "8369", + "$id": "8380", "name": "createBatch", "resourceName": "Batches", "summary": "Creates and executes a batch from an uploaded file of requests", "accessibility": "public", "parameters": [ { - "$id": "8370", + "$id": "8381", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -110796,7 +110949,7 @@ "crossLanguageDefinitionId": "OpenAI.Batches.createBatch.accept" }, { - "$id": "8371", + "$id": "8382", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -110813,7 +110966,7 @@ "crossLanguageDefinitionId": "OpenAI.Batches.createBatch.contentType" }, { - "$id": "8372", + "$id": "8383", "kind": "body", "name": "createBatchRequest", "serializedName": "createBatchRequest", @@ -110861,7 +111014,7 @@ }, "parameters": [ { - "$id": "8373", + "$id": "8384", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -110878,13 +111031,13 @@ "decorators": [] }, { - "$id": "8374", + "$id": "8385", "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": "8375", + "$id": "8386", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110900,7 +111053,7 @@ "decorators": [] }, { - "$id": "8376", + "$id": "8387", "kind": "method", "name": "endpoint", "serializedName": "endpoint", @@ -110918,7 +111071,7 @@ "decorators": [] }, { - "$id": "8377", + "$id": "8388", "kind": "method", "name": "completion_window", "serializedName": "completion_window", @@ -110936,7 +111089,7 @@ "decorators": [] }, { - "$id": "8378", + "$id": "8389", "kind": "method", "name": "metadata", "serializedName": "metadata", @@ -110954,7 +111107,7 @@ "decorators": [] }, { - "$id": "8379", + "$id": "8390", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -110983,21 +111136,21 @@ "crossLanguageDefinitionId": "OpenAI.Batches.createBatch" }, { - "$id": "8380", + "$id": "8391", "kind": "paging", "name": "GetBatches", "accessibility": "public", "apiVersions": [], "summary": "List your organization's batches.", "operation": { - "$id": "8381", + "$id": "8392", "name": "GetBatches", "resourceName": "Batches", "summary": "List your organization's batches.", "accessibility": "public", "parameters": [ { - "$id": "8382", + "$id": "8393", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -111013,13 +111166,13 @@ "crossLanguageDefinitionId": "OpenAI.Batches.listBatches.accept" }, { - "$id": "8383", + "$id": "8394", "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": "8384", + "$id": "8395", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111034,13 +111187,13 @@ "readOnly": false }, { - "$id": "8385", + "$id": "8396", "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": "8386", + "$id": "8397", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -111081,7 +111234,7 @@ }, "parameters": [ { - "$id": "8387", + "$id": "8398", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -111098,13 +111251,13 @@ "decorators": [] }, { - "$id": "8388", + "$id": "8399", "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": "8389", + "$id": "8400", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111120,13 +111273,13 @@ "decorators": [] }, { - "$id": "8390", + "$id": "8401", "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": "8391", + "$id": "8402", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -111160,7 +111313,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8383" + "$ref": "8394" }, "responseSegments": [ "last_id" @@ -111170,21 +111323,21 @@ } }, { - "$id": "8392", + "$id": "8403", "kind": "basic", "name": "GetBatch", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a batch.", "operation": { - "$id": "8393", + "$id": "8404", "name": "GetBatch", "resourceName": "Batches", "summary": "Retrieves a batch.", "accessibility": "public", "parameters": [ { - "$id": "8394", + "$id": "8405", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -111200,13 +111353,13 @@ "crossLanguageDefinitionId": "OpenAI.Batches.retrieveBatch.accept" }, { - "$id": "8395", + "$id": "8406", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the batch to retrieve.", "type": { - "$id": "8396", + "$id": "8407", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111250,7 +111403,7 @@ }, "parameters": [ { - "$id": "8397", + "$id": "8408", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -111267,13 +111420,13 @@ "decorators": [] }, { - "$id": "8398", + "$id": "8409", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the batch to retrieve.", "type": { - "$id": "8399", + "$id": "8410", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111300,21 +111453,21 @@ "crossLanguageDefinitionId": "OpenAI.Batches.retrieveBatch" }, { - "$id": "8400", + "$id": "8411", "kind": "basic", "name": "cancelBatch", "accessibility": "public", "apiVersions": [], "summary": "Cancels an in-progress batch.", "operation": { - "$id": "8401", + "$id": "8412", "name": "cancelBatch", "resourceName": "Batches", "summary": "Cancels an in-progress batch.", "accessibility": "public", "parameters": [ { - "$id": "8402", + "$id": "8413", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -111330,13 +111483,13 @@ "crossLanguageDefinitionId": "OpenAI.Batches.cancelBatch.accept" }, { - "$id": "8403", + "$id": "8414", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the batch to cancel.", "type": { - "$id": "8404", + "$id": "8415", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111380,7 +111533,7 @@ }, "parameters": [ { - "$id": "8405", + "$id": "8416", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -111397,13 +111550,13 @@ "decorators": [] }, { - "$id": "8406", + "$id": "8417", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the batch to cancel.", "type": { - "$id": "8407", + "$id": "8418", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111432,13 +111585,13 @@ ], "parameters": [ { - "$id": "8408", + "$id": "8419", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8409", + "$id": "8420", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -111449,7 +111602,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8410", + "$id": "8421", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -111467,37 +111620,37 @@ "crossLanguageDefinitionId": "OpenAI.Batches", "apiVersions": [], "parent": { - "$ref": "8260" + "$ref": "8271" } }, { - "$id": "8411", + "$id": "8422", "kind": "client", "name": "Chat", "namespace": "OpenAI", "methods": [ { - "$id": "8412", + "$id": "8423", "kind": "paging", "name": "listChatCompletions", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of chat completions.", "operation": { - "$id": "8413", + "$id": "8424", "name": "listChatCompletions", "resourceName": "Chat", "summary": "Returns a list of chat completions.", "accessibility": "public", "parameters": [ { - "$id": "8414", + "$id": "8425", "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": "8415", + "$id": "8426", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111512,13 +111665,13 @@ "readOnly": false }, { - "$id": "8416", + "$id": "8427", "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": "8417", + "$id": "8428", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -111533,7 +111686,7 @@ "readOnly": false }, { - "$id": "8418", + "$id": "8429", "kind": "query", "name": "order", "serializedName": "order", @@ -111550,7 +111703,7 @@ "readOnly": false }, { - "$id": "8419", + "$id": "8430", "kind": "query", "name": "metadata", "serializedName": "metadata", @@ -111566,12 +111719,12 @@ "readOnly": false }, { - "$id": "8420", + "$id": "8431", "kind": "query", "name": "model", "serializedName": "model", "type": { - "$id": "8421", + "$id": "8432", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111586,7 +111739,7 @@ "readOnly": false }, { - "$id": "8422", + "$id": "8433", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -111628,13 +111781,13 @@ }, "parameters": [ { - "$id": "8423", + "$id": "8434", "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": "8424", + "$id": "8435", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111650,13 +111803,13 @@ "decorators": [] }, { - "$id": "8425", + "$id": "8436", "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": "8426", + "$id": "8437", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -111672,7 +111825,7 @@ "decorators": [] }, { - "$id": "8427", + "$id": "8438", "kind": "method", "name": "order", "serializedName": "order", @@ -111690,7 +111843,7 @@ "decorators": [] }, { - "$id": "8428", + "$id": "8439", "kind": "method", "name": "metadata", "serializedName": "metadata", @@ -111707,12 +111860,12 @@ "decorators": [] }, { - "$id": "8429", + "$id": "8440", "kind": "method", "name": "model", "serializedName": "model", "type": { - "$id": "8430", + "$id": "8441", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111728,7 +111881,7 @@ "decorators": [] }, { - "$id": "8431", + "$id": "8442", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -111763,7 +111916,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8414" + "$ref": "8425" }, "responseSegments": [ "last_id" @@ -111773,21 +111926,21 @@ } }, { - "$id": "8432", + "$id": "8443", "kind": "basic", "name": "CompleteChat", "accessibility": "public", "apiVersions": [], "summary": "Creates a model response for the given chat conversation.", "operation": { - "$id": "8433", + "$id": "8444", "name": "CompleteChat", "resourceName": "Chat", "summary": "Creates a model response for the given chat conversation.", "accessibility": "public", "parameters": [ { - "$id": "8434", + "$id": "8445", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -111803,7 +111956,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.createChatCompletion.accept" }, { - "$id": "8435", + "$id": "8446", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -111820,7 +111973,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.createChatCompletion.contentType" }, { - "$id": "8436", + "$id": "8447", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -111845,7 +111998,7 @@ 200 ], "bodyType": { - "$id": "8437", + "$id": "8448", "kind": "union", "name": "", "variantTypes": [ @@ -111853,7 +112006,7 @@ "$ref": "2836" }, { - "$ref": "3234" + "$ref": "3236" } ], "namespace": "", @@ -111889,7 +112042,7 @@ }, "parameters": [ { - "$id": "8438", + "$id": "8449", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -111906,7 +112059,7 @@ "decorators": [] }, { - "$id": "8439", + "$id": "8450", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -111923,7 +112076,7 @@ "decorators": [] }, { - "$id": "8440", + "$id": "8451", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -111943,7 +112096,7 @@ ], "response": { "type": { - "$ref": "8437" + "$ref": "8448" } }, "isOverride": false, @@ -111952,27 +112105,27 @@ "crossLanguageDefinitionId": "OpenAI.Chat.createChatCompletion" }, { - "$id": "8441", + "$id": "8452", "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": "8442", + "$id": "8453", "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": "8443", + "$id": "8454", "kind": "path", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to retrieve.", "type": { - "$id": "8444", + "$id": "8455", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111990,7 +112143,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.getChatCompletion.completion_id" }, { - "$id": "8445", + "$id": "8456", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -112032,13 +112185,13 @@ }, "parameters": [ { - "$id": "8446", + "$id": "8457", "kind": "method", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to retrieve.", "type": { - "$id": "8447", + "$id": "8458", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112054,7 +112207,7 @@ "decorators": [] }, { - "$id": "8448", + "$id": "8459", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -112082,27 +112235,27 @@ "crossLanguageDefinitionId": "OpenAI.Chat.getChatCompletion" }, { - "$id": "8449", + "$id": "8460", "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": "8450", + "$id": "8461", "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": "8451", + "$id": "8462", "kind": "path", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to update.", "type": { - "$id": "8452", + "$id": "8463", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112120,7 +112273,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion.completion_id" }, { - "$id": "8453", + "$id": "8464", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -112137,7 +112290,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion.contentType" }, { - "$id": "8454", + "$id": "8465", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -112153,12 +112306,12 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion.accept" }, { - "$id": "8455", + "$id": "8466", "kind": "body", "name": "updateChatCompletionRequest", "serializedName": "updateChatCompletionRequest", "type": { - "$ref": "3302" + "$ref": "3304" }, "isApiVersion": false, "contentTypes": [ @@ -112201,13 +112354,13 @@ }, "parameters": [ { - "$id": "8456", + "$id": "8467", "kind": "method", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to update.", "type": { - "$id": "8457", + "$id": "8468", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112223,7 +112376,7 @@ "decorators": [] }, { - "$id": "8458", + "$id": "8469", "kind": "method", "name": "metadata", "serializedName": "metadata", @@ -112241,7 +112394,7 @@ "decorators": [] }, { - "$id": "8459", + "$id": "8470", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -112259,7 +112412,7 @@ "decorators": [] }, { - "$id": "8460", + "$id": "8471", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -112287,27 +112440,27 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion" }, { - "$id": "8461", + "$id": "8472", "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": "8462", + "$id": "8473", "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": "8463", + "$id": "8474", "kind": "path", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to delete.", "type": { - "$id": "8464", + "$id": "8475", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112325,7 +112478,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.deleteChatCompletion.completion_id" }, { - "$id": "8465", + "$id": "8476", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -112347,7 +112500,7 @@ 200 ], "bodyType": { - "$ref": "3304" + "$ref": "3306" }, "headers": [], "isErrorResponse": false, @@ -112367,13 +112520,13 @@ }, "parameters": [ { - "$id": "8466", + "$id": "8477", "kind": "method", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to delete.", "type": { - "$id": "8467", + "$id": "8478", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112389,7 +112542,7 @@ "decorators": [] }, { - "$id": "8468", + "$id": "8479", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -112408,7 +112561,7 @@ ], "response": { "type": { - "$ref": "3304" + "$ref": "3306" } }, "isOverride": false, @@ -112417,27 +112570,27 @@ "crossLanguageDefinitionId": "OpenAI.Chat.deleteChatCompletion" }, { - "$id": "8469", + "$id": "8480", "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": "8470", + "$id": "8481", "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": "8471", + "$id": "8482", "kind": "path", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to retrieve messages for.", "type": { - "$id": "8472", + "$id": "8483", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112455,13 +112608,13 @@ "crossLanguageDefinitionId": "OpenAI.Chat.getChatCompletionMessages.completion_id" }, { - "$id": "8473", + "$id": "8484", "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": "8474", + "$id": "8485", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112476,13 +112629,13 @@ "readOnly": false }, { - "$id": "8475", + "$id": "8486", "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": "8476", + "$id": "8487", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -112497,7 +112650,7 @@ "readOnly": false }, { - "$id": "8477", + "$id": "8488", "kind": "query", "name": "order", "serializedName": "order", @@ -112514,7 +112667,7 @@ "readOnly": false }, { - "$id": "8478", + "$id": "8489", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -112536,7 +112689,7 @@ 200 ], "bodyType": { - "$ref": "3310" + "$ref": "3312" }, "headers": [], "isErrorResponse": false, @@ -112556,13 +112709,13 @@ }, "parameters": [ { - "$id": "8479", + "$id": "8490", "kind": "method", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to retrieve messages for.", "type": { - "$id": "8480", + "$id": "8491", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112578,13 +112731,13 @@ "decorators": [] }, { - "$id": "8481", + "$id": "8492", "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": "8482", + "$id": "8493", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112600,13 +112753,13 @@ "decorators": [] }, { - "$id": "8483", + "$id": "8494", "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": "8484", + "$id": "8495", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -112622,7 +112775,7 @@ "decorators": [] }, { - "$id": "8485", + "$id": "8496", "kind": "method", "name": "order", "serializedName": "order", @@ -112640,7 +112793,7 @@ "decorators": [] }, { - "$id": "8486", + "$id": "8497", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -112659,7 +112812,7 @@ ], "response": { "type": { - "$ref": "3313" + "$ref": "3315" }, "resultSegments": [ "data" @@ -112675,7 +112828,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8473" + "$ref": "8484" }, "responseSegments": [ "last_id" @@ -112687,13 +112840,13 @@ ], "parameters": [ { - "$id": "8487", + "$id": "8498", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8488", + "$id": "8499", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -112704,7 +112857,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8489", + "$id": "8500", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -112722,35 +112875,35 @@ "crossLanguageDefinitionId": "OpenAI.Chat", "apiVersions": [], "parent": { - "$ref": "8260" + "$ref": "8271" } }, { - "$id": "8490", + "$id": "8501", "kind": "client", "name": "Containers", "namespace": "OpenAI", "methods": [ { - "$id": "8491", + "$id": "8502", "kind": "paging", "name": "listContainers", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8492", + "$id": "8503", "name": "listContainers", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8493", + "$id": "8504", "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": "8494", + "$id": "8505", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -112765,7 +112918,7 @@ "readOnly": false }, { - "$id": "8495", + "$id": "8506", "kind": "query", "name": "order", "serializedName": "order", @@ -112782,13 +112935,13 @@ "readOnly": false }, { - "$id": "8496", + "$id": "8507", "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": "8497", + "$id": "8508", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112803,7 +112956,7 @@ "readOnly": false }, { - "$id": "8498", + "$id": "8509", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -112825,7 +112978,7 @@ 200 ], "bodyType": { - "$ref": "3333" + "$ref": "3335" }, "headers": [], "isErrorResponse": false, @@ -112845,13 +112998,13 @@ }, "parameters": [ { - "$id": "8499", + "$id": "8510", "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": "8500", + "$id": "8511", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -112867,7 +113020,7 @@ "decorators": [] }, { - "$id": "8501", + "$id": "8512", "kind": "method", "name": "order", "serializedName": "order", @@ -112885,13 +113038,13 @@ "decorators": [] }, { - "$id": "8502", + "$id": "8513", "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": "8503", + "$id": "8514", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112907,7 +113060,7 @@ "decorators": [] }, { - "$id": "8504", + "$id": "8515", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -112926,7 +113079,7 @@ ], "response": { "type": { - "$ref": "3336" + "$ref": "3338" }, "resultSegments": [ "data" @@ -112942,7 +113095,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8496" + "$ref": "8507" }, "responseSegments": [ "last_id" @@ -112952,19 +113105,19 @@ } }, { - "$id": "8505", + "$id": "8516", "kind": "basic", "name": "createContainer", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8506", + "$id": "8517", "name": "createContainer", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8507", + "$id": "8518", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -112981,7 +113134,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainer.contentType" }, { - "$id": "8508", + "$id": "8519", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -112997,12 +113150,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainer.accept" }, { - "$id": "8509", + "$id": "8520", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$ref": "3360" + "$ref": "3362" }, "isApiVersion": false, "contentTypes": [ @@ -113022,7 +113175,7 @@ 200 ], "bodyType": { - "$ref": "3337" + "$ref": "3339" }, "headers": [], "isErrorResponse": false, @@ -113045,12 +113198,12 @@ }, "parameters": [ { - "$id": "8510", + "$id": "8521", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "3360" + "$ref": "3362" }, "location": "Body", "isApiVersion": false, @@ -113062,7 +113215,7 @@ "decorators": [] }, { - "$id": "8511", + "$id": "8522", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -113080,7 +113233,7 @@ "decorators": [] }, { - "$id": "8512", + "$id": "8523", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -113099,7 +113252,7 @@ ], "response": { "type": { - "$ref": "3337" + "$ref": "3339" } }, "isOverride": false, @@ -113108,24 +113261,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainer" }, { - "$id": "8513", + "$id": "8524", "kind": "basic", "name": "GetContainer", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8514", + "$id": "8525", "name": "GetContainer", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8515", + "$id": "8526", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8516", + "$id": "8527", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113143,7 +113296,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainer.container_id" }, { - "$id": "8517", + "$id": "8528", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -113165,7 +113318,7 @@ 200 ], "bodyType": { - "$ref": "3337" + "$ref": "3339" }, "headers": [], "isErrorResponse": false, @@ -113185,12 +113338,12 @@ }, "parameters": [ { - "$id": "8518", + "$id": "8529", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8519", + "$id": "8530", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113206,7 +113359,7 @@ "decorators": [] }, { - "$id": "8520", + "$id": "8531", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -113225,7 +113378,7 @@ ], "response": { "type": { - "$ref": "3337" + "$ref": "3339" } }, "isOverride": false, @@ -113234,24 +113387,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainer" }, { - "$id": "8521", + "$id": "8532", "kind": "basic", "name": "deleteContainer", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8522", + "$id": "8533", "name": "deleteContainer", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8523", + "$id": "8534", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8524", + "$id": "8535", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113269,7 +113422,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainer.container_id" }, { - "$id": "8525", + "$id": "8536", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -113291,7 +113444,7 @@ 200 ], "bodyType": { - "$ref": "3369" + "$ref": "3371" }, "headers": [], "isErrorResponse": false, @@ -113311,12 +113464,12 @@ }, "parameters": [ { - "$id": "8526", + "$id": "8537", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8527", + "$id": "8538", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113332,7 +113485,7 @@ "decorators": [] }, { - "$id": "8528", + "$id": "8539", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -113351,7 +113504,7 @@ ], "response": { "type": { - "$ref": "3369" + "$ref": "3371" } }, "isOverride": false, @@ -113360,24 +113513,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainer" }, { - "$id": "8529", + "$id": "8540", "kind": "basic", "name": "createContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8530", + "$id": "8541", "name": "createContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8531", + "$id": "8542", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8532", + "$id": "8543", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113395,7 +113548,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile.container_id" }, { - "$id": "8533", + "$id": "8544", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -113411,7 +113564,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile.contentType" }, { - "$id": "8534", + "$id": "8545", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -113427,12 +113580,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile.accept" }, { - "$id": "8535", + "$id": "8546", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$ref": "3374" + "$ref": "3376" }, "isApiVersion": false, "contentTypes": [ @@ -113452,7 +113605,7 @@ 200 ], "bodyType": { - "$ref": "3379" + "$ref": "3381" }, "headers": [], "isErrorResponse": false, @@ -113475,12 +113628,12 @@ }, "parameters": [ { - "$id": "8536", + "$id": "8547", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8537", + "$id": "8548", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113496,7 +113649,7 @@ "decorators": [] }, { - "$id": "8538", + "$id": "8549", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -113513,12 +113666,12 @@ "decorators": [] }, { - "$id": "8539", + "$id": "8550", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "3374" + "$ref": "3376" }, "location": "Body", "isApiVersion": false, @@ -113530,7 +113683,7 @@ "decorators": [] }, { - "$id": "8540", + "$id": "8551", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -113549,7 +113702,7 @@ ], "response": { "type": { - "$ref": "3379" + "$ref": "3381" } }, "isOverride": false, @@ -113558,24 +113711,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile" }, { - "$id": "8541", + "$id": "8552", "kind": "paging", "name": "listContainerFiles", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8542", + "$id": "8553", "name": "listContainerFiles", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8543", + "$id": "8554", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8544", + "$id": "8555", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113593,13 +113746,13 @@ "crossLanguageDefinitionId": "OpenAI.Containers.listContainerFiles.container_id" }, { - "$id": "8545", + "$id": "8556", "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": "8546", + "$id": "8557", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -113614,7 +113767,7 @@ "readOnly": false }, { - "$id": "8547", + "$id": "8558", "kind": "query", "name": "order", "serializedName": "order", @@ -113631,13 +113784,13 @@ "readOnly": false }, { - "$id": "8548", + "$id": "8559", "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": "8549", + "$id": "8560", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113652,7 +113805,7 @@ "readOnly": false }, { - "$id": "8550", + "$id": "8561", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -113674,7 +113827,7 @@ 200 ], "bodyType": { - "$ref": "3395" + "$ref": "3397" }, "headers": [], "isErrorResponse": false, @@ -113694,12 +113847,12 @@ }, "parameters": [ { - "$id": "8551", + "$id": "8562", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8552", + "$id": "8563", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113715,13 +113868,13 @@ "decorators": [] }, { - "$id": "8553", + "$id": "8564", "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": "8554", + "$id": "8565", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -113737,7 +113890,7 @@ "decorators": [] }, { - "$id": "8555", + "$id": "8566", "kind": "method", "name": "order", "serializedName": "order", @@ -113755,13 +113908,13 @@ "decorators": [] }, { - "$id": "8556", + "$id": "8567", "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": "8557", + "$id": "8568", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113777,7 +113930,7 @@ "decorators": [] }, { - "$id": "8558", + "$id": "8569", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -113796,7 +113949,7 @@ ], "response": { "type": { - "$ref": "3398" + "$ref": "3400" }, "resultSegments": [ "data" @@ -113812,7 +113965,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8548" + "$ref": "8559" }, "responseSegments": [ "last_id" @@ -113822,24 +113975,24 @@ } }, { - "$id": "8559", + "$id": "8570", "kind": "basic", "name": "GetContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8560", + "$id": "8571", "name": "GetContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8561", + "$id": "8572", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8562", + "$id": "8573", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113857,12 +114010,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFile.container_id" }, { - "$id": "8563", + "$id": "8574", "kind": "path", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8564", + "$id": "8575", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113880,7 +114033,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFile.file_id" }, { - "$id": "8565", + "$id": "8576", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -113902,7 +114055,7 @@ 200 ], "bodyType": { - "$ref": "3379" + "$ref": "3381" }, "headers": [], "isErrorResponse": false, @@ -113922,12 +114075,12 @@ }, "parameters": [ { - "$id": "8566", + "$id": "8577", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8567", + "$id": "8578", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113943,12 +114096,12 @@ "decorators": [] }, { - "$id": "8568", + "$id": "8579", "kind": "method", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8569", + "$id": "8580", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113964,7 +114117,7 @@ "decorators": [] }, { - "$id": "8570", + "$id": "8581", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -113983,7 +114136,7 @@ ], "response": { "type": { - "$ref": "3379" + "$ref": "3381" } }, "isOverride": false, @@ -113992,24 +114145,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFile" }, { - "$id": "8571", + "$id": "8582", "kind": "basic", "name": "deleteContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8572", + "$id": "8583", "name": "deleteContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8573", + "$id": "8584", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8574", + "$id": "8585", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114027,12 +114180,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainerFile.container_id" }, { - "$id": "8575", + "$id": "8586", "kind": "path", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8576", + "$id": "8587", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114050,7 +114203,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainerFile.file_id" }, { - "$id": "8577", + "$id": "8588", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -114072,7 +114225,7 @@ 200 ], "bodyType": { - "$ref": "3405" + "$ref": "3407" }, "headers": [], "isErrorResponse": false, @@ -114092,12 +114245,12 @@ }, "parameters": [ { - "$id": "8578", + "$id": "8589", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8579", + "$id": "8590", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114113,12 +114266,12 @@ "decorators": [] }, { - "$id": "8580", + "$id": "8591", "kind": "method", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8581", + "$id": "8592", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114134,7 +114287,7 @@ "decorators": [] }, { - "$id": "8582", + "$id": "8593", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -114153,7 +114306,7 @@ ], "response": { "type": { - "$ref": "3405" + "$ref": "3407" } }, "isOverride": false, @@ -114162,24 +114315,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainerFile" }, { - "$id": "8583", + "$id": "8594", "kind": "basic", "name": "DownloadContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8584", + "$id": "8595", "name": "DownloadContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8585", + "$id": "8596", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8586", + "$id": "8597", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114197,12 +114350,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFileContent.container_id" }, { - "$id": "8587", + "$id": "8598", "kind": "path", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8588", + "$id": "8599", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114220,7 +114373,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFileContent.file_id" }, { - "$id": "8589", + "$id": "8600", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -114242,7 +114395,7 @@ 200 ], "bodyType": { - "$id": "8590", + "$id": "8601", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -114267,12 +114420,12 @@ }, "parameters": [ { - "$id": "8591", + "$id": "8602", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8592", + "$id": "8603", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114288,12 +114441,12 @@ "decorators": [] }, { - "$id": "8593", + "$id": "8604", "kind": "method", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8594", + "$id": "8605", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114309,7 +114462,7 @@ "decorators": [] }, { - "$id": "8595", + "$id": "8606", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -114328,7 +114481,7 @@ ], "response": { "type": { - "$ref": "8590" + "$ref": "8601" } }, "isOverride": false, @@ -114339,13 +114492,13 @@ ], "parameters": [ { - "$id": "8596", + "$id": "8607", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8597", + "$id": "8608", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -114356,7 +114509,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8598", + "$id": "8609", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -114374,31 +114527,31 @@ "crossLanguageDefinitionId": "OpenAI.Containers", "apiVersions": [], "parent": { - "$ref": "8260" + "$ref": "8271" } }, { - "$id": "8599", + "$id": "8610", "kind": "client", "name": "Embeddings", "namespace": "OpenAI", "methods": [ { - "$id": "8600", + "$id": "8611", "kind": "basic", "name": "GenerateEmbeddings", "accessibility": "public", "apiVersions": [], "summary": "Creates an embedding vector representing the input text.", "operation": { - "$id": "8601", + "$id": "8612", "name": "GenerateEmbeddings", "resourceName": "Embeddings", "summary": "Creates an embedding vector representing the input text.", "accessibility": "public", "parameters": [ { - "$id": "8602", + "$id": "8613", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -114414,7 +114567,7 @@ "crossLanguageDefinitionId": "OpenAI.Embeddings.createEmbedding.accept" }, { - "$id": "8603", + "$id": "8614", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -114431,12 +114584,12 @@ "crossLanguageDefinitionId": "OpenAI.Embeddings.createEmbedding.contentType" }, { - "$id": "8604", + "$id": "8615", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "3410" + "$ref": "3412" }, "isApiVersion": false, "contentTypes": [ @@ -114456,7 +114609,7 @@ 200 ], "bodyType": { - "$ref": "3421" + "$ref": "3423" }, "headers": [], "isErrorResponse": false, @@ -114479,7 +114632,7 @@ }, "parameters": [ { - "$id": "8605", + "$id": "8616", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -114496,12 +114649,12 @@ "decorators": [] }, { - "$id": "8606", + "$id": "8617", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "3410" + "$ref": "3412" }, "location": "Body", "isApiVersion": false, @@ -114513,7 +114666,7 @@ "decorators": [] }, { - "$id": "8607", + "$id": "8618", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -114533,7 +114686,7 @@ ], "response": { "type": { - "$ref": "3421" + "$ref": "3423" } }, "isOverride": false, @@ -114544,13 +114697,13 @@ ], "parameters": [ { - "$id": "8608", + "$id": "8619", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8609", + "$id": "8620", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -114561,7 +114714,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8610", + "$id": "8621", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -114579,31 +114732,31 @@ "crossLanguageDefinitionId": "OpenAI.Embeddings", "apiVersions": [], "parent": { - "$ref": "8260" + "$ref": "8271" } }, { - "$id": "8611", + "$id": "8622", "kind": "client", "name": "Files", "namespace": "OpenAI", "methods": [ { - "$id": "8612", + "$id": "8623", "kind": "basic", "name": "GetFiles", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of files that belong to the user's organization.", "operation": { - "$id": "8613", + "$id": "8624", "name": "GetFiles", "resourceName": "Files", "summary": "Returns a list of files that belong to the user's organization.", "accessibility": "public", "parameters": [ { - "$id": "8614", + "$id": "8625", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -114619,13 +114772,13 @@ "crossLanguageDefinitionId": "OpenAI.Files.listFiles.accept" }, { - "$id": "8615", + "$id": "8626", "kind": "query", "name": "purpose", "serializedName": "purpose", "doc": "Only return files with the given purpose.", "type": { - "$id": "8616", + "$id": "8627", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114646,7 +114799,7 @@ 200 ], "bodyType": { - "$ref": "3442" + "$ref": "3444" }, "headers": [], "isErrorResponse": false, @@ -114666,7 +114819,7 @@ }, "parameters": [ { - "$id": "8617", + "$id": "8628", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -114683,13 +114836,13 @@ "decorators": [] }, { - "$id": "8618", + "$id": "8629", "kind": "method", "name": "purpose", "serializedName": "purpose", "doc": "Only return files with the given purpose.", "type": { - "$id": "8619", + "$id": "8630", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114707,7 +114860,7 @@ ], "response": { "type": { - "$ref": "3442" + "$ref": "3444" } }, "isOverride": false, @@ -114716,21 +114869,21 @@ "crossLanguageDefinitionId": "OpenAI.Files.listFiles" }, { - "$id": "8620", + "$id": "8631", "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": "8621", + "$id": "8632", "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": "8622", + "$id": "8633", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -114746,7 +114899,7 @@ "crossLanguageDefinitionId": "OpenAI.Files.createFile.accept" }, { - "$id": "8623", + "$id": "8634", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -114762,12 +114915,12 @@ "crossLanguageDefinitionId": "OpenAI.Files.createFile.contentType" }, { - "$id": "8624", + "$id": "8635", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "3471" + "$ref": "3473" }, "isApiVersion": false, "contentTypes": [ @@ -114787,7 +114940,7 @@ 200 ], "bodyType": { - "$ref": "3446" + "$ref": "3448" }, "headers": [], "isErrorResponse": false, @@ -114810,7 +114963,7 @@ }, "parameters": [ { - "$id": "8625", + "$id": "8636", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -114827,7 +114980,7 @@ "decorators": [] }, { - "$id": "8626", + "$id": "8637", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -114844,12 +114997,12 @@ "decorators": [] }, { - "$id": "8627", + "$id": "8638", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "3471" + "$ref": "3473" }, "location": "Body", "isApiVersion": false, @@ -114863,7 +115016,7 @@ ], "response": { "type": { - "$ref": "3446" + "$ref": "3448" } }, "isOverride": false, @@ -114872,21 +115025,21 @@ "crossLanguageDefinitionId": "OpenAI.Files.createFile" }, { - "$id": "8628", + "$id": "8639", "kind": "basic", "name": "deleteFile", "accessibility": "public", "apiVersions": [], "summary": "Delete a file", "operation": { - "$id": "8629", + "$id": "8640", "name": "deleteFile", "resourceName": "Files", "summary": "Delete a file", "accessibility": "public", "parameters": [ { - "$id": "8630", + "$id": "8641", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -114902,13 +115055,13 @@ "crossLanguageDefinitionId": "OpenAI.Files.deleteFile.accept" }, { - "$id": "8631", + "$id": "8642", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8632", + "$id": "8643", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114932,7 +115085,7 @@ 200 ], "bodyType": { - "$ref": "3475" + "$ref": "3477" }, "headers": [], "isErrorResponse": false, @@ -114952,7 +115105,7 @@ }, "parameters": [ { - "$id": "8633", + "$id": "8644", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -114969,13 +115122,13 @@ "decorators": [] }, { - "$id": "8634", + "$id": "8645", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8635", + "$id": "8646", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114993,7 +115146,7 @@ ], "response": { "type": { - "$ref": "3475" + "$ref": "3477" } }, "isOverride": false, @@ -115002,21 +115155,21 @@ "crossLanguageDefinitionId": "OpenAI.Files.deleteFile" }, { - "$id": "8636", + "$id": "8647", "kind": "basic", "name": "GetFile", "accessibility": "public", "apiVersions": [], "summary": "Returns information about a specific file.", "operation": { - "$id": "8637", + "$id": "8648", "name": "GetFile", "resourceName": "Files", "summary": "Returns information about a specific file.", "accessibility": "public", "parameters": [ { - "$id": "8638", + "$id": "8649", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -115032,13 +115185,13 @@ "crossLanguageDefinitionId": "OpenAI.Files.retrieveFile.accept" }, { - "$id": "8639", + "$id": "8650", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8640", + "$id": "8651", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115062,7 +115215,7 @@ 200 ], "bodyType": { - "$ref": "3446" + "$ref": "3448" }, "headers": [], "isErrorResponse": false, @@ -115082,7 +115235,7 @@ }, "parameters": [ { - "$id": "8641", + "$id": "8652", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -115099,13 +115252,13 @@ "decorators": [] }, { - "$id": "8642", + "$id": "8653", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8643", + "$id": "8654", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115123,7 +115276,7 @@ ], "response": { "type": { - "$ref": "3446" + "$ref": "3448" } }, "isOverride": false, @@ -115132,21 +115285,21 @@ "crossLanguageDefinitionId": "OpenAI.Files.retrieveFile" }, { - "$id": "8644", + "$id": "8655", "kind": "basic", "name": "downloadFile", "accessibility": "public", "apiVersions": [], "summary": "Returns the contents of the specified file.", "operation": { - "$id": "8645", + "$id": "8656", "name": "downloadFile", "resourceName": "Files", "summary": "Returns the contents of the specified file.", "accessibility": "public", "parameters": [ { - "$id": "8646", + "$id": "8657", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -115162,13 +115315,13 @@ "crossLanguageDefinitionId": "OpenAI.Files.downloadFile.accept" }, { - "$id": "8647", + "$id": "8658", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8648", + "$id": "8659", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115192,7 +115345,7 @@ 200 ], "bodyType": { - "$id": "8649", + "$id": "8660", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -115217,7 +115370,7 @@ }, "parameters": [ { - "$id": "8650", + "$id": "8661", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -115234,13 +115387,13 @@ "decorators": [] }, { - "$id": "8651", + "$id": "8662", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8652", + "$id": "8663", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115258,7 +115411,7 @@ ], "response": { "type": { - "$ref": "8649" + "$ref": "8660" } }, "isOverride": false, @@ -115269,13 +115422,13 @@ ], "parameters": [ { - "$id": "8653", + "$id": "8664", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8654", + "$id": "8665", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -115286,7 +115439,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8655", + "$id": "8666", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -115304,37 +115457,37 @@ "crossLanguageDefinitionId": "OpenAI.Files", "apiVersions": [], "parent": { - "$ref": "8260" + "$ref": "8271" } }, { - "$id": "8656", + "$id": "8667", "kind": "client", "name": "FineTuning", "namespace": "OpenAI", "methods": [ { - "$id": "8657", + "$id": "8668", "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": "8658", + "$id": "8669", "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": "8659", + "$id": "8670", "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": "8660", + "$id": "8671", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115352,13 +115505,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningCheckpointPermissions.fine_tuned_model_checkpoint" }, { - "$id": "8661", + "$id": "8672", "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": "8662", + "$id": "8673", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115373,13 +115526,13 @@ "readOnly": false }, { - "$id": "8663", + "$id": "8674", "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": "8664", + "$id": "8675", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -115394,7 +115547,7 @@ "readOnly": false }, { - "$id": "8665", + "$id": "8676", "kind": "query", "name": "order", "serializedName": "order", @@ -115411,13 +115564,13 @@ "readOnly": false }, { - "$id": "8666", + "$id": "8677", "kind": "query", "name": "project_id", "serializedName": "project_id", "doc": "The ID of the project to get permissions for.", "type": { - "$id": "8667", + "$id": "8678", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115432,7 +115585,7 @@ "readOnly": false }, { - "$id": "8668", + "$id": "8679", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -115454,7 +115607,7 @@ 200 ], "bodyType": { - "$ref": "3481" + "$ref": "3483" }, "headers": [], "isErrorResponse": false, @@ -115474,13 +115627,13 @@ }, "parameters": [ { - "$id": "8669", + "$id": "8680", "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": "8670", + "$id": "8681", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115496,13 +115649,13 @@ "decorators": [] }, { - "$id": "8671", + "$id": "8682", "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": "8672", + "$id": "8683", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115518,13 +115671,13 @@ "decorators": [] }, { - "$id": "8673", + "$id": "8684", "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": "8674", + "$id": "8685", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -115540,7 +115693,7 @@ "decorators": [] }, { - "$id": "8675", + "$id": "8686", "kind": "method", "name": "order", "serializedName": "order", @@ -115558,13 +115711,13 @@ "decorators": [] }, { - "$id": "8676", + "$id": "8687", "kind": "method", "name": "project_id", "serializedName": "project_id", "doc": "The ID of the project to get permissions for.", "type": { - "$id": "8677", + "$id": "8688", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115580,7 +115733,7 @@ "decorators": [] }, { - "$id": "8678", + "$id": "8689", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -115599,7 +115752,7 @@ ], "response": { "type": { - "$ref": "3481" + "$ref": "3483" } }, "isOverride": false, @@ -115608,27 +115761,27 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningCheckpointPermissions" }, { - "$id": "8679", + "$id": "8690", "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": "8680", + "$id": "8691", "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": "8681", + "$id": "8692", "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": "8682", + "$id": "8693", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115646,7 +115799,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission.fine_tuned_model_checkpoint" }, { - "$id": "8683", + "$id": "8694", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -115663,7 +115816,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission.contentType" }, { - "$id": "8684", + "$id": "8695", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -115679,12 +115832,12 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission.accept" }, { - "$id": "8685", + "$id": "8696", "kind": "body", "name": "createFineTuningCheckpointPermissionRequest", "serializedName": "createFineTuningCheckpointPermissionRequest", "type": { - "$ref": "3502" + "$ref": "3504" }, "isApiVersion": false, "contentTypes": [ @@ -115704,7 +115857,7 @@ 200 ], "bodyType": { - "$ref": "3481" + "$ref": "3483" }, "headers": [], "isErrorResponse": false, @@ -115727,13 +115880,13 @@ }, "parameters": [ { - "$id": "8686", + "$id": "8697", "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": "8687", + "$id": "8698", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115749,7 +115902,7 @@ "decorators": [] }, { - "$id": "8688", + "$id": "8699", "kind": "method", "name": "project_ids", "serializedName": "project_ids", @@ -115767,7 +115920,7 @@ "decorators": [] }, { - "$id": "8689", + "$id": "8700", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -115785,7 +115938,7 @@ "decorators": [] }, { - "$id": "8690", + "$id": "8701", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -115804,7 +115957,7 @@ ], "response": { "type": { - "$ref": "3481" + "$ref": "3483" } }, "isOverride": false, @@ -115813,27 +115966,27 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission" }, { - "$id": "8691", + "$id": "8702", "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": "8692", + "$id": "8703", "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": "8693", + "$id": "8704", "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": "8694", + "$id": "8705", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115851,13 +116004,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.deleteFineTuningCheckpointPermission.fine_tuned_model_checkpoint" }, { - "$id": "8695", + "$id": "8706", "kind": "path", "name": "permission_id", "serializedName": "permission_id", "doc": "The ID of the permission to delete.", "type": { - "$id": "8696", + "$id": "8707", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115875,7 +116028,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.deleteFineTuningCheckpointPermission.permission_id" }, { - "$id": "8697", + "$id": "8708", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -115897,7 +116050,7 @@ 200 ], "bodyType": { - "$ref": "3504" + "$ref": "3506" }, "headers": [], "isErrorResponse": false, @@ -115917,13 +116070,13 @@ }, "parameters": [ { - "$id": "8698", + "$id": "8709", "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": "8699", + "$id": "8710", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115939,13 +116092,13 @@ "decorators": [] }, { - "$id": "8700", + "$id": "8711", "kind": "method", "name": "permission_id", "serializedName": "permission_id", "doc": "The ID of the permission to delete.", "type": { - "$id": "8701", + "$id": "8712", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115961,7 +116114,7 @@ "decorators": [] }, { - "$id": "8702", + "$id": "8713", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -115980,7 +116133,7 @@ ], "response": { "type": { - "$ref": "3504" + "$ref": "3506" } }, "isOverride": false, @@ -115989,21 +116142,21 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.deleteFineTuningCheckpointPermission" }, { - "$id": "8703", + "$id": "8714", "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": "8704", + "$id": "8715", "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": "8705", + "$id": "8716", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -116019,7 +116172,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningJob.accept" }, { - "$id": "8706", + "$id": "8717", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -116036,12 +116189,12 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningJob.contentType" }, { - "$id": "8707", + "$id": "8718", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "3510" + "$ref": "3512" }, "isApiVersion": false, "contentTypes": [ @@ -116061,7 +116214,7 @@ 200 ], "bodyType": { - "$ref": "3706" + "$ref": "3708" }, "headers": [], "isErrorResponse": false, @@ -116084,7 +116237,7 @@ }, "parameters": [ { - "$id": "8708", + "$id": "8719", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -116101,12 +116254,12 @@ "decorators": [] }, { - "$id": "8709", + "$id": "8720", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "3510" + "$ref": "3512" }, "location": "Body", "isApiVersion": false, @@ -116118,7 +116271,7 @@ "decorators": [] }, { - "$id": "8710", + "$id": "8721", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -116138,7 +116291,7 @@ ], "response": { "type": { - "$ref": "3706" + "$ref": "3708" } }, "isOverride": false, @@ -116147,21 +116300,21 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningJob" }, { - "$id": "8711", + "$id": "8722", "kind": "basic", "name": "listPaginatedFineTuningJobs", "accessibility": "public", "apiVersions": [], "summary": "List your organization's fine-tuning jobs", "operation": { - "$id": "8712", + "$id": "8723", "name": "listPaginatedFineTuningJobs", "resourceName": "FineTuning", "summary": "List your organization's fine-tuning jobs", "accessibility": "public", "parameters": [ { - "$id": "8713", + "$id": "8724", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -116177,13 +116330,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listPaginatedFineTuningJobs.accept" }, { - "$id": "8714", + "$id": "8725", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last job from the previous pagination request.", "type": { - "$id": "8715", + "$id": "8726", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116198,13 +116351,13 @@ "readOnly": false }, { - "$id": "8716", + "$id": "8727", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "Number of fine-tuning jobs to retrieve.", "type": { - "$id": "8717", + "$id": "8728", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -116225,7 +116378,7 @@ 200 ], "bodyType": { - "$ref": "3789" + "$ref": "3791" }, "headers": [], "isErrorResponse": false, @@ -116245,7 +116398,7 @@ }, "parameters": [ { - "$id": "8718", + "$id": "8729", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -116262,13 +116415,13 @@ "decorators": [] }, { - "$id": "8719", + "$id": "8730", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last job from the previous pagination request.", "type": { - "$id": "8720", + "$id": "8731", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116284,13 +116437,13 @@ "decorators": [] }, { - "$id": "8721", + "$id": "8732", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "Number of fine-tuning jobs to retrieve.", "type": { - "$id": "8722", + "$id": "8733", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -116308,7 +116461,7 @@ ], "response": { "type": { - "$ref": "3789" + "$ref": "3791" } }, "isOverride": false, @@ -116317,21 +116470,21 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listPaginatedFineTuningJobs" }, { - "$id": "8723", + "$id": "8734", "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": "8724", + "$id": "8735", "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": "8725", + "$id": "8736", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -116347,13 +116500,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.retrieveFineTuningJob.accept" }, { - "$id": "8726", + "$id": "8737", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job.", "type": { - "$id": "8727", + "$id": "8738", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116377,7 +116530,7 @@ 200 ], "bodyType": { - "$ref": "3706" + "$ref": "3708" }, "headers": [], "isErrorResponse": false, @@ -116397,7 +116550,7 @@ }, "parameters": [ { - "$id": "8728", + "$id": "8739", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -116414,13 +116567,13 @@ "decorators": [] }, { - "$id": "8729", + "$id": "8740", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job.", "type": { - "$id": "8730", + "$id": "8741", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116438,7 +116591,7 @@ ], "response": { "type": { - "$ref": "3706" + "$ref": "3708" } }, "isOverride": false, @@ -116447,21 +116600,21 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.retrieveFineTuningJob" }, { - "$id": "8731", + "$id": "8742", "kind": "basic", "name": "cancelFineTuningJob", "accessibility": "public", "apiVersions": [], "summary": "Immediately cancel a fine-tune job.", "operation": { - "$id": "8732", + "$id": "8743", "name": "cancelFineTuningJob", "resourceName": "FineTuning", "summary": "Immediately cancel a fine-tune job.", "accessibility": "public", "parameters": [ { - "$id": "8733", + "$id": "8744", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -116477,13 +116630,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.cancelFineTuningJob.accept" }, { - "$id": "8734", + "$id": "8745", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to cancel.", "type": { - "$id": "8735", + "$id": "8746", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116507,7 +116660,7 @@ 200 ], "bodyType": { - "$ref": "3706" + "$ref": "3708" }, "headers": [], "isErrorResponse": false, @@ -116527,7 +116680,7 @@ }, "parameters": [ { - "$id": "8736", + "$id": "8747", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -116544,13 +116697,13 @@ "decorators": [] }, { - "$id": "8737", + "$id": "8748", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to cancel.", "type": { - "$id": "8738", + "$id": "8749", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116568,7 +116721,7 @@ ], "response": { "type": { - "$ref": "3706" + "$ref": "3708" } }, "isOverride": false, @@ -116577,21 +116730,21 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.cancelFineTuningJob" }, { - "$id": "8739", + "$id": "8750", "kind": "basic", "name": "listFineTuningJobCheckpoints", "accessibility": "public", "apiVersions": [], "summary": "List the checkpoints for a fine-tuning job.", "operation": { - "$id": "8740", + "$id": "8751", "name": "listFineTuningJobCheckpoints", "resourceName": "FineTuning", "summary": "List the checkpoints for a fine-tuning job.", "accessibility": "public", "parameters": [ { - "$id": "8741", + "$id": "8752", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -116607,13 +116760,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningJobCheckpoints.accept" }, { - "$id": "8742", + "$id": "8753", "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": "8743", + "$id": "8754", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116631,13 +116784,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningJobCheckpoints.fine_tuning_job_id" }, { - "$id": "8744", + "$id": "8755", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last checkpoint ID from the previous pagination request.", "type": { - "$id": "8745", + "$id": "8756", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116652,13 +116805,13 @@ "readOnly": false }, { - "$id": "8746", + "$id": "8757", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "Number of checkpoints to retrieve.", "type": { - "$id": "8747", + "$id": "8758", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -116679,7 +116832,7 @@ 200 ], "bodyType": { - "$ref": "3795" + "$ref": "3797" }, "headers": [], "isErrorResponse": false, @@ -116699,7 +116852,7 @@ }, "parameters": [ { - "$id": "8748", + "$id": "8759", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -116716,13 +116869,13 @@ "decorators": [] }, { - "$id": "8749", + "$id": "8760", "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": "8750", + "$id": "8761", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116738,13 +116891,13 @@ "decorators": [] }, { - "$id": "8751", + "$id": "8762", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last checkpoint ID from the previous pagination request.", "type": { - "$id": "8752", + "$id": "8763", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116760,13 +116913,13 @@ "decorators": [] }, { - "$id": "8753", + "$id": "8764", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "Number of checkpoints to retrieve.", "type": { - "$id": "8754", + "$id": "8765", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -116784,7 +116937,7 @@ ], "response": { "type": { - "$ref": "3795" + "$ref": "3797" } }, "isOverride": false, @@ -116793,21 +116946,21 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningJobCheckpoints" }, { - "$id": "8755", + "$id": "8766", "kind": "basic", "name": "listFineTuningEvents", "accessibility": "public", "apiVersions": [], "summary": "Get status updates for a fine-tuning job.", "operation": { - "$id": "8756", + "$id": "8767", "name": "listFineTuningEvents", "resourceName": "FineTuning", "summary": "Get status updates for a fine-tuning job.", "accessibility": "public", "parameters": [ { - "$id": "8757", + "$id": "8768", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -116823,13 +116976,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningEvents.accept" }, { - "$id": "8758", + "$id": "8769", "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": "8759", + "$id": "8770", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116847,13 +117000,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningEvents.fine_tuning_job_id" }, { - "$id": "8760", + "$id": "8771", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last event from the previous pagination request.", "type": { - "$id": "8761", + "$id": "8772", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116868,13 +117021,13 @@ "readOnly": false }, { - "$id": "8762", + "$id": "8773", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "Number of events to retrieve.", "type": { - "$id": "8763", + "$id": "8774", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -116895,7 +117048,7 @@ 200 ], "bodyType": { - "$ref": "3836" + "$ref": "3838" }, "headers": [], "isErrorResponse": false, @@ -116915,7 +117068,7 @@ }, "parameters": [ { - "$id": "8764", + "$id": "8775", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -116932,13 +117085,13 @@ "decorators": [] }, { - "$id": "8765", + "$id": "8776", "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": "8766", + "$id": "8777", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116954,13 +117107,13 @@ "decorators": [] }, { - "$id": "8767", + "$id": "8778", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last event from the previous pagination request.", "type": { - "$id": "8768", + "$id": "8779", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116976,13 +117129,13 @@ "decorators": [] }, { - "$id": "8769", + "$id": "8780", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "Number of events to retrieve.", "type": { - "$id": "8770", + "$id": "8781", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -117000,7 +117153,7 @@ ], "response": { "type": { - "$ref": "3836" + "$ref": "3838" } }, "isOverride": false, @@ -117009,27 +117162,27 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningEvents" }, { - "$id": "8771", + "$id": "8782", "kind": "basic", "name": "pauseFineTuningJob", "accessibility": "public", "apiVersions": [], "summary": "Pause a fine-tune job.", "operation": { - "$id": "8772", + "$id": "8783", "name": "pauseFineTuningJob", "resourceName": "FineTuning", "summary": "Pause a fine-tune job.", "accessibility": "public", "parameters": [ { - "$id": "8773", + "$id": "8784", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to pause.", "type": { - "$id": "8774", + "$id": "8785", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117047,7 +117200,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.pauseFineTuningJob.fine_tuning_job_id" }, { - "$id": "8775", + "$id": "8786", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -117069,7 +117222,7 @@ 200 ], "bodyType": { - "$ref": "3706" + "$ref": "3708" }, "headers": [], "isErrorResponse": false, @@ -117089,13 +117242,13 @@ }, "parameters": [ { - "$id": "8776", + "$id": "8787", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to pause.", "type": { - "$id": "8777", + "$id": "8788", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117111,7 +117264,7 @@ "decorators": [] }, { - "$id": "8778", + "$id": "8789", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -117130,7 +117283,7 @@ ], "response": { "type": { - "$ref": "3706" + "$ref": "3708" } }, "isOverride": false, @@ -117139,27 +117292,27 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.pauseFineTuningJob" }, { - "$id": "8779", + "$id": "8790", "kind": "basic", "name": "resumeFineTuningJob", "accessibility": "public", "apiVersions": [], "summary": "Resume a paused fine-tune job.", "operation": { - "$id": "8780", + "$id": "8791", "name": "resumeFineTuningJob", "resourceName": "FineTuning", "summary": "Resume a paused fine-tune job.", "accessibility": "public", "parameters": [ { - "$id": "8781", + "$id": "8792", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to resume.", "type": { - "$id": "8782", + "$id": "8793", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117177,7 +117330,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.resumeFineTuningJob.fine_tuning_job_id" }, { - "$id": "8783", + "$id": "8794", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -117199,7 +117352,7 @@ 200 ], "bodyType": { - "$ref": "3706" + "$ref": "3708" }, "headers": [], "isErrorResponse": false, @@ -117219,13 +117372,13 @@ }, "parameters": [ { - "$id": "8784", + "$id": "8795", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to resume.", "type": { - "$id": "8785", + "$id": "8796", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117241,7 +117394,7 @@ "decorators": [] }, { - "$id": "8786", + "$id": "8797", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -117260,7 +117413,7 @@ ], "response": { "type": { - "$ref": "3706" + "$ref": "3708" } }, "isOverride": false, @@ -117271,13 +117424,13 @@ ], "parameters": [ { - "$id": "8787", + "$id": "8798", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8788", + "$id": "8799", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -117288,7 +117441,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8789", + "$id": "8800", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -117306,31 +117459,31 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning", "apiVersions": [], "parent": { - "$ref": "8260" + "$ref": "8271" } }, { - "$id": "8790", + "$id": "8801", "kind": "client", "name": "Graders", "namespace": "OpenAI", "methods": [ { - "$id": "8791", + "$id": "8802", "kind": "basic", "name": "runGrader", "accessibility": "public", "apiVersions": [], "summary": "Run a grader.", "operation": { - "$id": "8792", + "$id": "8803", "name": "runGrader", "resourceName": "Graders", "summary": "Run a grader.", "accessibility": "public", "parameters": [ { - "$id": "8793", + "$id": "8804", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -117347,7 +117500,7 @@ "crossLanguageDefinitionId": "OpenAI.Graders.runGrader.contentType" }, { - "$id": "8794", + "$id": "8805", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -117363,12 +117516,12 @@ "crossLanguageDefinitionId": "OpenAI.Graders.runGrader.accept" }, { - "$id": "8795", + "$id": "8806", "kind": "body", "name": "request", "serializedName": "request", "type": { - "$ref": "3855" + "$ref": "3857" }, "isApiVersion": false, "contentTypes": [ @@ -117388,7 +117541,7 @@ 200 ], "bodyType": { - "$ref": "3862" + "$ref": "3864" }, "headers": [], "isErrorResponse": false, @@ -117411,12 +117564,12 @@ }, "parameters": [ { - "$id": "8796", + "$id": "8807", "kind": "method", "name": "request", "serializedName": "request", "type": { - "$ref": "3855" + "$ref": "3857" }, "location": "Body", "isApiVersion": false, @@ -117428,7 +117581,7 @@ "decorators": [] }, { - "$id": "8797", + "$id": "8808", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -117446,7 +117599,7 @@ "decorators": [] }, { - "$id": "8798", + "$id": "8809", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -117465,7 +117618,7 @@ ], "response": { "type": { - "$ref": "3862" + "$ref": "3864" } }, "isOverride": false, @@ -117474,21 +117627,21 @@ "crossLanguageDefinitionId": "OpenAI.Graders.runGrader" }, { - "$id": "8799", + "$id": "8810", "kind": "basic", "name": "validateGrader", "accessibility": "public", "apiVersions": [], "summary": "Validate a grader.", "operation": { - "$id": "8800", + "$id": "8811", "name": "validateGrader", "resourceName": "Graders", "summary": "Validate a grader.", "accessibility": "public", "parameters": [ { - "$id": "8801", + "$id": "8812", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -117505,7 +117658,7 @@ "crossLanguageDefinitionId": "OpenAI.Graders.validateGrader.contentType" }, { - "$id": "8802", + "$id": "8813", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -117521,12 +117674,12 @@ "crossLanguageDefinitionId": "OpenAI.Graders.validateGrader.accept" }, { - "$id": "8803", + "$id": "8814", "kind": "body", "name": "request", "serializedName": "request", "type": { - "$ref": "3918" + "$ref": "3920" }, "isApiVersion": false, "contentTypes": [ @@ -117546,7 +117699,7 @@ 200 ], "bodyType": { - "$ref": "3921" + "$ref": "3923" }, "headers": [], "isErrorResponse": false, @@ -117569,12 +117722,12 @@ }, "parameters": [ { - "$id": "8804", + "$id": "8815", "kind": "method", "name": "request", "serializedName": "request", "type": { - "$ref": "3918" + "$ref": "3920" }, "location": "Body", "isApiVersion": false, @@ -117586,7 +117739,7 @@ "decorators": [] }, { - "$id": "8805", + "$id": "8816", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -117604,7 +117757,7 @@ "decorators": [] }, { - "$id": "8806", + "$id": "8817", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -117623,7 +117776,7 @@ ], "response": { "type": { - "$ref": "3921" + "$ref": "3923" } }, "isOverride": false, @@ -117634,13 +117787,13 @@ ], "parameters": [ { - "$id": "8807", + "$id": "8818", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8808", + "$id": "8819", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -117651,7 +117804,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8809", + "$id": "8820", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -117669,37 +117822,37 @@ "crossLanguageDefinitionId": "OpenAI.Graders", "apiVersions": [], "parent": { - "$ref": "8260" + "$ref": "8271" } }, { - "$id": "8810", + "$id": "8821", "kind": "client", "name": "Evals", "namespace": "OpenAI", "methods": [ { - "$id": "8811", + "$id": "8822", "kind": "basic", "name": "listEvals", "accessibility": "public", "apiVersions": [], "summary": "List evaluations for a project.", "operation": { - "$id": "8812", + "$id": "8823", "name": "listEvals", "resourceName": "Evals", "summary": "List evaluations for a project.", "accessibility": "public", "parameters": [ { - "$id": "8813", + "$id": "8824", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last eval from the previous pagination request.", "type": { - "$id": "8814", + "$id": "8825", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117714,13 +117867,13 @@ "readOnly": false }, { - "$id": "8815", + "$id": "8826", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of evals to be returned in a single pagination response.", "type": { - "$id": "8816", + "$id": "8827", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -117735,7 +117888,7 @@ "readOnly": false }, { - "$id": "8817", + "$id": "8828", "kind": "query", "name": "order", "serializedName": "order", @@ -117752,7 +117905,7 @@ "readOnly": false }, { - "$id": "8818", + "$id": "8829", "kind": "query", "name": "order_by", "serializedName": "order_by", @@ -117769,7 +117922,7 @@ "readOnly": false }, { - "$id": "8819", + "$id": "8830", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -117791,7 +117944,7 @@ 200 ], "bodyType": { - "$ref": "3924" + "$ref": "3926" }, "headers": [], "isErrorResponse": false, @@ -117811,13 +117964,13 @@ }, "parameters": [ { - "$id": "8820", + "$id": "8831", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last eval from the previous pagination request.", "type": { - "$id": "8821", + "$id": "8832", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117833,13 +117986,13 @@ "decorators": [] }, { - "$id": "8822", + "$id": "8833", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of evals to be returned in a single pagination response.", "type": { - "$id": "8823", + "$id": "8834", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -117855,7 +118008,7 @@ "decorators": [] }, { - "$id": "8824", + "$id": "8835", "kind": "method", "name": "order", "serializedName": "order", @@ -117873,7 +118026,7 @@ "decorators": [] }, { - "$id": "8825", + "$id": "8836", "kind": "method", "name": "order_by", "serializedName": "order_by", @@ -117891,7 +118044,7 @@ "decorators": [] }, { - "$id": "8826", + "$id": "8837", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -117910,7 +118063,7 @@ ], "response": { "type": { - "$ref": "3924" + "$ref": "3926" } }, "isOverride": false, @@ -117919,21 +118072,21 @@ "crossLanguageDefinitionId": "OpenAI.Evals.listEvals" }, { - "$id": "8827", + "$id": "8838", "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": "8828", + "$id": "8839", "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": "8829", + "$id": "8840", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -117950,7 +118103,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEval.contentType" }, { - "$id": "8830", + "$id": "8841", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -117966,12 +118119,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEval.accept" }, { - "$id": "8831", + "$id": "8842", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$ref": "4016" + "$ref": "4018" }, "isApiVersion": false, "contentTypes": [ @@ -117991,7 +118144,7 @@ 201 ], "bodyType": { - "$ref": "3928" + "$ref": "3930" }, "headers": [], "isErrorResponse": false, @@ -118014,12 +118167,12 @@ }, "parameters": [ { - "$id": "8832", + "$id": "8843", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "4016" + "$ref": "4018" }, "location": "Body", "isApiVersion": false, @@ -118031,7 +118184,7 @@ "decorators": [] }, { - "$id": "8833", + "$id": "8844", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -118049,7 +118202,7 @@ "decorators": [] }, { - "$id": "8834", + "$id": "8845", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -118068,7 +118221,7 @@ ], "response": { "type": { - "$ref": "3928" + "$ref": "3930" } }, "isOverride": false, @@ -118077,26 +118230,26 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEval" }, { - "$id": "8835", + "$id": "8846", "kind": "basic", "name": "getEval", "accessibility": "public", "apiVersions": [], "summary": "Retrieve an evaluation by its ID.", "operation": { - "$id": "8836", + "$id": "8847", "name": "getEval", "resourceName": "Evals", "summary": "Retrieve an evaluation by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8837", + "$id": "8848", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "type": { - "$id": "8838", + "$id": "8849", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118114,7 +118267,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEval.eval_id" }, { - "$id": "8839", + "$id": "8850", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -118136,7 +118289,7 @@ 200 ], "bodyType": { - "$ref": "3928" + "$ref": "3930" }, "headers": [], "isErrorResponse": false, @@ -118156,12 +118309,12 @@ }, "parameters": [ { - "$id": "8840", + "$id": "8851", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "type": { - "$id": "8841", + "$id": "8852", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118177,7 +118330,7 @@ "decorators": [] }, { - "$id": "8842", + "$id": "8853", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -118196,7 +118349,7 @@ ], "response": { "type": { - "$ref": "3928" + "$ref": "3930" } }, "isOverride": false, @@ -118205,27 +118358,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEval" }, { - "$id": "8843", + "$id": "8854", "kind": "basic", "name": "updateEval", "accessibility": "public", "apiVersions": [], "doc": "Update select, mutable properties of a specified evaluation.", "operation": { - "$id": "8844", + "$id": "8855", "name": "updateEval", "resourceName": "Evals", "doc": "Update select, mutable properties of a specified evaluation.", "accessibility": "public", "parameters": [ { - "$id": "8845", + "$id": "8856", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to update.", "type": { - "$id": "8846", + "$id": "8857", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118243,7 +118396,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.updateEval.eval_id" }, { - "$id": "8847", + "$id": "8858", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -118260,7 +118413,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.updateEval.contentType" }, { - "$id": "8848", + "$id": "8859", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -118276,12 +118429,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.updateEval.accept" }, { - "$id": "8849", + "$id": "8860", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$ref": "4096" + "$ref": "4098" }, "isApiVersion": false, "contentTypes": [ @@ -118301,7 +118454,7 @@ 200 ], "bodyType": { - "$ref": "3928" + "$ref": "3930" }, "headers": [], "isErrorResponse": false, @@ -118324,13 +118477,13 @@ }, "parameters": [ { - "$id": "8850", + "$id": "8861", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to update.", "type": { - "$id": "8851", + "$id": "8862", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118346,12 +118499,12 @@ "decorators": [] }, { - "$id": "8852", + "$id": "8863", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "4096" + "$ref": "4098" }, "location": "Body", "isApiVersion": false, @@ -118363,7 +118516,7 @@ "decorators": [] }, { - "$id": "8853", + "$id": "8864", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -118381,7 +118534,7 @@ "decorators": [] }, { - "$id": "8854", + "$id": "8865", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -118400,7 +118553,7 @@ ], "response": { "type": { - "$ref": "3928" + "$ref": "3930" } }, "isOverride": false, @@ -118409,27 +118562,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.updateEval" }, { - "$id": "8855", + "$id": "8866", "kind": "basic", "name": "deleteEval", "accessibility": "public", "apiVersions": [], "doc": "Delete a specified evaluation.", "operation": { - "$id": "8856", + "$id": "8867", "name": "deleteEval", "resourceName": "Evals", "doc": "Delete a specified evaluation.", "accessibility": "public", "parameters": [ { - "$id": "8857", + "$id": "8868", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to delete.", "type": { - "$id": "8858", + "$id": "8869", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118447,7 +118600,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEval.eval_id" }, { - "$id": "8859", + "$id": "8870", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -118469,7 +118622,7 @@ 200 ], "bodyType": { - "$ref": "4102" + "$ref": "4104" }, "headers": [], "isErrorResponse": false, @@ -118489,13 +118642,13 @@ }, "parameters": [ { - "$id": "8860", + "$id": "8871", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to delete.", "type": { - "$id": "8861", + "$id": "8872", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118511,7 +118664,7 @@ "decorators": [] }, { - "$id": "8862", + "$id": "8873", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -118530,7 +118683,7 @@ ], "response": { "type": { - "$ref": "4102" + "$ref": "4104" } }, "isOverride": false, @@ -118539,7 +118692,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEval" }, { - "$id": "8863", + "$id": "8874", "kind": "basic", "name": "getEvalRuns", "accessibility": "public", @@ -118547,7 +118700,7 @@ "doc": "Retrieve a list of runs for a specified evaluation.", "summary": "", "operation": { - "$id": "8864", + "$id": "8875", "name": "getEvalRuns", "resourceName": "Evals", "summary": "", @@ -118555,13 +118708,13 @@ "accessibility": "public", "parameters": [ { - "$id": "8865", + "$id": "8876", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to retrieve runs for.", "type": { - "$id": "8866", + "$id": "8877", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118579,13 +118732,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRuns.eval_id" }, { - "$id": "8867", + "$id": "8878", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last run from the previous pagination request.", "type": { - "$id": "8868", + "$id": "8879", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118600,13 +118753,13 @@ "readOnly": false }, { - "$id": "8869", + "$id": "8880", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of runs to be returned in a single pagination response.", "type": { - "$id": "8870", + "$id": "8881", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -118621,7 +118774,7 @@ "readOnly": false }, { - "$id": "8871", + "$id": "8882", "kind": "query", "name": "order", "serializedName": "order", @@ -118638,7 +118791,7 @@ "readOnly": false }, { - "$id": "8872", + "$id": "8883", "kind": "query", "name": "status", "serializedName": "status", @@ -118655,7 +118808,7 @@ "readOnly": false }, { - "$id": "8873", + "$id": "8884", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -118677,7 +118830,7 @@ 200 ], "bodyType": { - "$ref": "4108" + "$ref": "4110" }, "headers": [], "isErrorResponse": false, @@ -118697,13 +118850,13 @@ }, "parameters": [ { - "$id": "8874", + "$id": "8885", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to retrieve runs for.", "type": { - "$id": "8875", + "$id": "8886", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118719,13 +118872,13 @@ "decorators": [] }, { - "$id": "8876", + "$id": "8887", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last run from the previous pagination request.", "type": { - "$id": "8877", + "$id": "8888", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118741,13 +118894,13 @@ "decorators": [] }, { - "$id": "8878", + "$id": "8889", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of runs to be returned in a single pagination response.", "type": { - "$id": "8879", + "$id": "8890", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -118763,7 +118916,7 @@ "decorators": [] }, { - "$id": "8880", + "$id": "8891", "kind": "method", "name": "order", "serializedName": "order", @@ -118781,7 +118934,7 @@ "decorators": [] }, { - "$id": "8881", + "$id": "8892", "kind": "method", "name": "status", "serializedName": "status", @@ -118799,7 +118952,7 @@ "decorators": [] }, { - "$id": "8882", + "$id": "8893", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -118818,7 +118971,7 @@ ], "response": { "type": { - "$ref": "4108" + "$ref": "4110" } }, "isOverride": false, @@ -118827,27 +118980,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRuns" }, { - "$id": "8883", + "$id": "8894", "kind": "basic", "name": "createEvalRun", "accessibility": "public", "apiVersions": [], "doc": "Create a new evaluation run, beginning the grading process.", "operation": { - "$id": "8884", + "$id": "8895", "name": "createEvalRun", "resourceName": "Evals", "doc": "Create a new evaluation run, beginning the grading process.", "accessibility": "public", "parameters": [ { - "$id": "8885", + "$id": "8896", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to run.", "type": { - "$id": "8886", + "$id": "8897", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118865,7 +119018,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEvalRun.eval_id" }, { - "$id": "8887", + "$id": "8898", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -118882,7 +119035,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEvalRun.contentType" }, { - "$id": "8888", + "$id": "8899", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -118898,12 +119051,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEvalRun.accept" }, { - "$id": "8889", + "$id": "8900", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$ref": "4179" + "$ref": "4181" }, "isApiVersion": false, "contentTypes": [ @@ -118923,7 +119076,7 @@ 201 ], "bodyType": { - "$ref": "4112" + "$ref": "4114" }, "headers": [], "isErrorResponse": false, @@ -118946,13 +119099,13 @@ }, "parameters": [ { - "$id": "8890", + "$id": "8901", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to run.", "type": { - "$id": "8891", + "$id": "8902", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118968,12 +119121,12 @@ "decorators": [] }, { - "$id": "8892", + "$id": "8903", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "4179" + "$ref": "4181" }, "location": "Body", "isApiVersion": false, @@ -118985,7 +119138,7 @@ "decorators": [] }, { - "$id": "8893", + "$id": "8904", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -119003,7 +119156,7 @@ "decorators": [] }, { - "$id": "8894", + "$id": "8905", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -119022,7 +119175,7 @@ ], "response": { "type": { - "$ref": "4112" + "$ref": "4114" } }, "isOverride": false, @@ -119031,27 +119184,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEvalRun" }, { - "$id": "8895", + "$id": "8906", "kind": "basic", "name": "getEvalRun", "accessibility": "public", "apiVersions": [], "doc": "Retrieve a specific evaluation run by its ID.", "operation": { - "$id": "8896", + "$id": "8907", "name": "getEvalRun", "resourceName": "Evals", "doc": "Retrieve a specific evaluation run by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8897", + "$id": "8908", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8898", + "$id": "8909", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119069,13 +119222,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRun.eval_id" }, { - "$id": "8899", + "$id": "8910", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to retrieve.", "type": { - "$id": "8900", + "$id": "8911", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119093,7 +119246,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRun.run_id" }, { - "$id": "8901", + "$id": "8912", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -119115,7 +119268,7 @@ 200 ], "bodyType": { - "$ref": "4112" + "$ref": "4114" }, "headers": [], "isErrorResponse": false, @@ -119135,13 +119288,13 @@ }, "parameters": [ { - "$id": "8902", + "$id": "8913", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8903", + "$id": "8914", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119157,13 +119310,13 @@ "decorators": [] }, { - "$id": "8904", + "$id": "8915", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to retrieve.", "type": { - "$id": "8905", + "$id": "8916", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119179,7 +119332,7 @@ "decorators": [] }, { - "$id": "8906", + "$id": "8917", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -119198,7 +119351,7 @@ ], "response": { "type": { - "$ref": "4112" + "$ref": "4114" } }, "isOverride": false, @@ -119207,27 +119360,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRun" }, { - "$id": "8907", + "$id": "8918", "kind": "basic", "name": "cancelEvalRun", "accessibility": "public", "apiVersions": [], "doc": "Cancel a specific evaluation run by its ID.", "operation": { - "$id": "8908", + "$id": "8919", "name": "cancelEvalRun", "resourceName": "Evals", "doc": "Cancel a specific evaluation run by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8909", + "$id": "8920", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8910", + "$id": "8921", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119245,13 +119398,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.cancelEvalRun.eval_id" }, { - "$id": "8911", + "$id": "8922", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to cancel.", "type": { - "$id": "8912", + "$id": "8923", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119269,7 +119422,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.cancelEvalRun.run_id" }, { - "$id": "8913", + "$id": "8924", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -119291,7 +119444,7 @@ 200 ], "bodyType": { - "$ref": "4112" + "$ref": "4114" }, "headers": [], "isErrorResponse": false, @@ -119311,13 +119464,13 @@ }, "parameters": [ { - "$id": "8914", + "$id": "8925", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8915", + "$id": "8926", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119333,13 +119486,13 @@ "decorators": [] }, { - "$id": "8916", + "$id": "8927", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to cancel.", "type": { - "$id": "8917", + "$id": "8928", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119355,7 +119508,7 @@ "decorators": [] }, { - "$id": "8918", + "$id": "8929", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -119374,7 +119527,7 @@ ], "response": { "type": { - "$ref": "4112" + "$ref": "4114" } }, "isOverride": false, @@ -119383,27 +119536,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.cancelEvalRun" }, { - "$id": "8919", + "$id": "8930", "kind": "basic", "name": "deleteEvalRun", "accessibility": "public", "apiVersions": [], "doc": "Delete a specific evaluation run by its ID.", "operation": { - "$id": "8920", + "$id": "8931", "name": "deleteEvalRun", "resourceName": "Evals", "doc": "Delete a specific evaluation run by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8921", + "$id": "8932", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8922", + "$id": "8933", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119421,13 +119574,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEvalRun.eval_id" }, { - "$id": "8923", + "$id": "8934", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to delete.", "type": { - "$id": "8924", + "$id": "8935", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119445,7 +119598,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEvalRun.run_id" }, { - "$id": "8925", + "$id": "8936", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -119467,7 +119620,7 @@ 200 ], "bodyType": { - "$ref": "4554" + "$ref": "4556" }, "headers": [], "isErrorResponse": false, @@ -119487,13 +119640,13 @@ }, "parameters": [ { - "$id": "8926", + "$id": "8937", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8927", + "$id": "8938", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119509,13 +119662,13 @@ "decorators": [] }, { - "$id": "8928", + "$id": "8939", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to delete.", "type": { - "$id": "8929", + "$id": "8940", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119531,7 +119684,7 @@ "decorators": [] }, { - "$id": "8930", + "$id": "8941", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -119550,7 +119703,7 @@ ], "response": { "type": { - "$ref": "4554" + "$ref": "4556" } }, "isOverride": false, @@ -119559,27 +119712,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEvalRun" }, { - "$id": "8931", + "$id": "8942", "kind": "basic", "name": "getEvalRunOutputItems", "accessibility": "public", "apiVersions": [], "doc": "Get a list of output items for a specified evaluation run.", "operation": { - "$id": "8932", + "$id": "8943", "name": "getEvalRunOutputItems", "resourceName": "Evals", "doc": "Get a list of output items for a specified evaluation run.", "accessibility": "public", "parameters": [ { - "$id": "8933", + "$id": "8944", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8934", + "$id": "8945", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119597,13 +119750,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItems.eval_id" }, { - "$id": "8935", + "$id": "8946", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to retrieve output items for.", "type": { - "$id": "8936", + "$id": "8947", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119621,13 +119774,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItems.run_id" }, { - "$id": "8937", + "$id": "8948", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last output item from the previous pagination request.", "type": { - "$id": "8938", + "$id": "8949", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119642,13 +119795,13 @@ "readOnly": false }, { - "$id": "8939", + "$id": "8950", "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": "8940", + "$id": "8951", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -119663,7 +119816,7 @@ "readOnly": false }, { - "$id": "8941", + "$id": "8952", "kind": "query", "name": "status", "serializedName": "status", @@ -119680,7 +119833,7 @@ "readOnly": false }, { - "$id": "8942", + "$id": "8953", "kind": "query", "name": "order", "serializedName": "order", @@ -119697,7 +119850,7 @@ "readOnly": false }, { - "$id": "8943", + "$id": "8954", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -119719,7 +119872,7 @@ 200 ], "bodyType": { - "$ref": "4560" + "$ref": "4562" }, "headers": [], "isErrorResponse": false, @@ -119739,13 +119892,13 @@ }, "parameters": [ { - "$id": "8944", + "$id": "8955", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8945", + "$id": "8956", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119761,13 +119914,13 @@ "decorators": [] }, { - "$id": "8946", + "$id": "8957", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to retrieve output items for.", "type": { - "$id": "8947", + "$id": "8958", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119783,13 +119936,13 @@ "decorators": [] }, { - "$id": "8948", + "$id": "8959", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last output item from the previous pagination request.", "type": { - "$id": "8949", + "$id": "8960", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119805,13 +119958,13 @@ "decorators": [] }, { - "$id": "8950", + "$id": "8961", "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": "8951", + "$id": "8962", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -119827,7 +119980,7 @@ "decorators": [] }, { - "$id": "8952", + "$id": "8963", "kind": "method", "name": "status", "serializedName": "status", @@ -119845,7 +119998,7 @@ "decorators": [] }, { - "$id": "8953", + "$id": "8964", "kind": "method", "name": "order", "serializedName": "order", @@ -119863,7 +120016,7 @@ "decorators": [] }, { - "$id": "8954", + "$id": "8965", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -119882,7 +120035,7 @@ ], "response": { "type": { - "$ref": "4560" + "$ref": "4562" } }, "isOverride": false, @@ -119891,27 +120044,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItems" }, { - "$id": "8955", + "$id": "8966", "kind": "basic", "name": "getEvalRunOutputItem", "accessibility": "public", "apiVersions": [], "doc": "Retrieve a specific output item from an evaluation run by its ID.", "operation": { - "$id": "8956", + "$id": "8967", "name": "getEvalRunOutputItem", "resourceName": "Evals", "doc": "Retrieve a specific output item from an evaluation run by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8957", + "$id": "8968", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8958", + "$id": "8969", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119929,13 +120082,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItem.eval_id" }, { - "$id": "8959", + "$id": "8970", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run the output item belongs to.", "type": { - "$id": "8960", + "$id": "8971", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119953,13 +120106,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItem.run_id" }, { - "$id": "8961", + "$id": "8972", "kind": "path", "name": "output_item_id", "serializedName": "output_item_id", "doc": "The ID of the output item to retrieve.", "type": { - "$id": "8962", + "$id": "8973", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119977,7 +120130,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItem.output_item_id" }, { - "$id": "8963", + "$id": "8974", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -119999,7 +120152,7 @@ 200 ], "bodyType": { - "$ref": "4564" + "$ref": "4566" }, "headers": [], "isErrorResponse": false, @@ -120019,13 +120172,13 @@ }, "parameters": [ { - "$id": "8964", + "$id": "8975", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8965", + "$id": "8976", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120041,13 +120194,13 @@ "decorators": [] }, { - "$id": "8966", + "$id": "8977", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run the output item belongs to.", "type": { - "$id": "8967", + "$id": "8978", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120063,13 +120216,13 @@ "decorators": [] }, { - "$id": "8968", + "$id": "8979", "kind": "method", "name": "output_item_id", "serializedName": "output_item_id", "doc": "The ID of the output item to retrieve.", "type": { - "$id": "8969", + "$id": "8980", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120085,7 +120238,7 @@ "decorators": [] }, { - "$id": "8970", + "$id": "8981", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -120104,7 +120257,7 @@ ], "response": { "type": { - "$ref": "4564" + "$ref": "4566" } }, "isOverride": false, @@ -120115,13 +120268,13 @@ ], "parameters": [ { - "$id": "8971", + "$id": "8982", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8972", + "$id": "8983", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -120132,7 +120285,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8973", + "$id": "8984", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -120150,31 +120303,31 @@ "crossLanguageDefinitionId": "OpenAI.Evals", "apiVersions": [], "parent": { - "$ref": "8260" + "$ref": "8271" } }, { - "$id": "8974", + "$id": "8985", "kind": "client", "name": "Responses", "namespace": "OpenAI", "methods": [ { - "$id": "8975", + "$id": "8986", "kind": "basic", "name": "createResponse", "accessibility": "public", "apiVersions": [], "doc": "Creates a model response.", "operation": { - "$id": "8976", + "$id": "8987", "name": "createResponse", "resourceName": "Responses", "doc": "Creates a model response.", "accessibility": "public", "parameters": [ { - "$id": "8977", + "$id": "8988", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -120190,7 +120343,7 @@ "crossLanguageDefinitionId": "OpenAI.Responses.createResponse.accept" }, { - "$id": "8978", + "$id": "8989", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -120207,12 +120360,12 @@ "crossLanguageDefinitionId": "OpenAI.Responses.createResponse.contentType" }, { - "$id": "8979", + "$id": "8990", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "4627" + "$ref": "4629" }, "isApiVersion": false, "contentTypes": [ @@ -120232,15 +120385,15 @@ 200 ], "bodyType": { - "$id": "8980", + "$id": "8991", "kind": "union", "name": "", "variantTypes": [ { - "$ref": "5166" + "$ref": "5176" }, { - "$ref": "5351" + "$ref": "5362" } ], "namespace": "", @@ -120276,7 +120429,7 @@ }, "parameters": [ { - "$id": "8981", + "$id": "8992", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -120293,12 +120446,12 @@ "decorators": [] }, { - "$id": "8982", + "$id": "8993", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "4627" + "$ref": "4629" }, "location": "Body", "isApiVersion": false, @@ -120310,7 +120463,7 @@ "decorators": [] }, { - "$id": "8983", + "$id": "8994", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -120330,7 +120483,7 @@ ], "response": { "type": { - "$ref": "8980" + "$ref": "8991" } }, "isOverride": false, @@ -120339,27 +120492,27 @@ "crossLanguageDefinitionId": "OpenAI.Responses.createResponse" }, { - "$id": "8984", + "$id": "8995", "kind": "basic", "name": "getResponse", "accessibility": "public", "apiVersions": [], "doc": "Retrieves a model response with the given ID.", "operation": { - "$id": "8985", + "$id": "8996", "name": "getResponse", "resourceName": "Responses", "doc": "Retrieves a model response with the given ID.", "accessibility": "public", "parameters": [ { - "$id": "8986", + "$id": "8997", "kind": "path", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to retrieve.", "type": { - "$id": "8987", + "$id": "8998", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120377,13 +120530,13 @@ "crossLanguageDefinitionId": "OpenAI.Responses.getResponse.response_id" }, { - "$id": "8988", + "$id": "8999", "kind": "query", "name": "include", "serializedName": "include[]", "doc": "Specifies additional output data to include in the model response.", "type": { - "$ref": "5156" + "$ref": "5164" }, "isApiVersion": false, "explode": true, @@ -120394,13 +120547,13 @@ "readOnly": false }, { - "$id": "8989", + "$id": "9000", "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": "8990", + "$id": "9001", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -120415,13 +120568,13 @@ "readOnly": false }, { - "$id": "8991", + "$id": "9002", "kind": "query", "name": "starting_after", "serializedName": "starting_after", "doc": "The sequence number of the event after which to start streaming.", "type": { - "$id": "8992", + "$id": "9003", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -120436,12 +120589,12 @@ "readOnly": false }, { - "$id": "8993", + "$id": "9004", "kind": "query", "name": "include_obfuscation", "serializedName": "include_obfuscation", "type": { - "$id": "8994", + "$id": "9005", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -120456,12 +120609,12 @@ "readOnly": false }, { - "$id": "8995", + "$id": "9006", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$id": "8996", + "$id": "9007", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120482,15 +120635,15 @@ 200 ], "bodyType": { - "$id": "8997", + "$id": "9008", "kind": "union", "name": "", "variantTypes": [ { - "$ref": "5166" + "$ref": "5176" }, { - "$ref": "5351" + "$ref": "5362" } ], "namespace": "", @@ -120523,13 +120676,13 @@ }, "parameters": [ { - "$id": "8998", + "$id": "9009", "kind": "method", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to retrieve.", "type": { - "$id": "8999", + "$id": "9010", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120545,13 +120698,13 @@ "decorators": [] }, { - "$id": "9000", + "$id": "9011", "kind": "method", "name": "include", "serializedName": "include[]", "doc": "Specifies additional output data to include in the model response.", "type": { - "$ref": "5156" + "$ref": "5164" }, "location": "Query", "isApiVersion": false, @@ -120563,13 +120716,13 @@ "decorators": [] }, { - "$id": "9001", + "$id": "9012", "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": "9002", + "$id": "9013", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -120585,13 +120738,13 @@ "decorators": [] }, { - "$id": "9003", + "$id": "9014", "kind": "method", "name": "starting_after", "serializedName": "starting_after", "doc": "The sequence number of the event after which to start streaming.", "type": { - "$id": "9004", + "$id": "9015", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -120607,12 +120760,12 @@ "decorators": [] }, { - "$id": "9005", + "$id": "9016", "kind": "method", "name": "include_obfuscation", "serializedName": "include_obfuscation", "type": { - "$id": "9006", + "$id": "9017", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -120628,12 +120781,12 @@ "decorators": [] }, { - "$id": "9007", + "$id": "9018", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "8996" + "$ref": "9007" }, "location": "Header", "isApiVersion": false, @@ -120647,7 +120800,7 @@ ], "response": { "type": { - "$ref": "8997" + "$ref": "9008" } }, "isOverride": false, @@ -120656,25 +120809,25 @@ "crossLanguageDefinitionId": "OpenAI.Responses.getResponse" }, { - "$id": "9008", + "$id": "9019", "kind": "basic", "name": "deleteResponse", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "9009", + "$id": "9020", "name": "deleteResponse", "resourceName": "Responses", "accessibility": "public", "parameters": [ { - "$id": "9010", + "$id": "9021", "kind": "path", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to delete.", "type": { - "$id": "9011", + "$id": "9022", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120692,7 +120845,7 @@ "crossLanguageDefinitionId": "OpenAI.Responses.deleteResponse.response_id" }, { - "$id": "9012", + "$id": "9023", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -120714,7 +120867,7 @@ 200 ], "bodyType": { - "$ref": "5837" + "$ref": "5848" }, "headers": [], "isErrorResponse": false, @@ -120734,13 +120887,13 @@ }, "parameters": [ { - "$id": "9013", + "$id": "9024", "kind": "method", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to delete.", "type": { - "$id": "9014", + "$id": "9025", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120756,7 +120909,7 @@ "decorators": [] }, { - "$id": "9015", + "$id": "9026", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -120775,7 +120928,7 @@ ], "response": { "type": { - "$ref": "5837" + "$ref": "5848" } }, "isOverride": false, @@ -120784,25 +120937,25 @@ "crossLanguageDefinitionId": "OpenAI.Responses.deleteResponse" }, { - "$id": "9016", + "$id": "9027", "kind": "basic", "name": "cancelResponse", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "9017", + "$id": "9028", "name": "cancelResponse", "resourceName": "Responses", "accessibility": "public", "parameters": [ { - "$id": "9018", + "$id": "9029", "kind": "path", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to cancel.", "type": { - "$id": "9019", + "$id": "9030", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120820,7 +120973,7 @@ "crossLanguageDefinitionId": "OpenAI.Responses.cancelResponse.response_id" }, { - "$id": "9020", + "$id": "9031", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -120842,7 +120995,7 @@ 200 ], "bodyType": { - "$ref": "5166" + "$ref": "5176" }, "headers": [], "isErrorResponse": false, @@ -120862,13 +121015,13 @@ }, "parameters": [ { - "$id": "9021", + "$id": "9032", "kind": "method", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to cancel.", "type": { - "$id": "9022", + "$id": "9033", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120884,7 +121037,7 @@ "decorators": [] }, { - "$id": "9023", + "$id": "9034", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -120903,7 +121056,7 @@ ], "response": { "type": { - "$ref": "5166" + "$ref": "5176" } }, "isOverride": false, @@ -120912,27 +121065,27 @@ "crossLanguageDefinitionId": "OpenAI.Responses.cancelResponse" }, { - "$id": "9024", + "$id": "9035", "kind": "paging", "name": "GetResponseInputItems", "accessibility": "public", "apiVersions": [], "doc": "Returns a list of input items for a given response.", "operation": { - "$id": "9025", + "$id": "9036", "name": "GetResponseInputItems", "resourceName": "Responses", "doc": "Returns a list of input items for a given response.", "accessibility": "public", "parameters": [ { - "$id": "9026", + "$id": "9037", "kind": "path", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to retrieve.", "type": { - "$id": "9027", + "$id": "9038", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120950,13 +121103,13 @@ "crossLanguageDefinitionId": "OpenAI.Responses.listInputItems.response_id" }, { - "$id": "9028", + "$id": "9039", "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": "9029", + "$id": "9040", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -120971,7 +121124,7 @@ "readOnly": false }, { - "$id": "9030", + "$id": "9041", "kind": "query", "name": "order", "serializedName": "order", @@ -120988,13 +121141,13 @@ "readOnly": false }, { - "$id": "9031", + "$id": "9042", "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": "9032", + "$id": "9043", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121009,13 +121162,13 @@ "readOnly": false }, { - "$id": "9033", + "$id": "9044", "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": "9034", + "$id": "9045", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121030,7 +121183,7 @@ "readOnly": false }, { - "$id": "9035", + "$id": "9046", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -121052,7 +121205,7 @@ 200 ], "bodyType": { - "$ref": "5842" + "$ref": "5853" }, "headers": [], "isErrorResponse": false, @@ -121072,13 +121225,13 @@ }, "parameters": [ { - "$id": "9036", + "$id": "9047", "kind": "method", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to retrieve.", "type": { - "$id": "9037", + "$id": "9048", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121094,13 +121247,13 @@ "decorators": [] }, { - "$id": "9038", + "$id": "9049", "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": "9039", + "$id": "9050", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -121116,7 +121269,7 @@ "decorators": [] }, { - "$id": "9040", + "$id": "9051", "kind": "method", "name": "order", "serializedName": "order", @@ -121134,13 +121287,13 @@ "decorators": [] }, { - "$id": "9041", + "$id": "9052", "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": "9042", + "$id": "9053", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121156,13 +121309,13 @@ "decorators": [] }, { - "$id": "9043", + "$id": "9054", "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": "9044", + "$id": "9055", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121178,7 +121331,7 @@ "decorators": [] }, { - "$id": "9045", + "$id": "9056", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -121197,7 +121350,7 @@ ], "response": { "type": { - "$ref": "5206" + "$ref": "5217" }, "resultSegments": [ "data" @@ -121213,7 +121366,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9031" + "$ref": "9042" }, "responseSegments": [ "last_id" @@ -121225,13 +121378,13 @@ ], "parameters": [ { - "$id": "9046", + "$id": "9057", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9047", + "$id": "9058", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -121242,7 +121395,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9048", + "$id": "9059", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -121260,31 +121413,31 @@ "crossLanguageDefinitionId": "OpenAI.Responses", "apiVersions": [], "parent": { - "$ref": "8260" + "$ref": "8271" } }, { - "$id": "9049", + "$id": "9060", "kind": "client", "name": "Images", "namespace": "OpenAI", "methods": [ { - "$id": "9050", + "$id": "9061", "kind": "basic", "name": "GenerateImages", "accessibility": "public", "apiVersions": [], "summary": "Creates an image given a prompt", "operation": { - "$id": "9051", + "$id": "9062", "name": "GenerateImages", "resourceName": "Images", "summary": "Creates an image given a prompt", "accessibility": "public", "parameters": [ { - "$id": "9052", + "$id": "9063", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -121300,7 +121453,7 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImage.accept" }, { - "$id": "9053", + "$id": "9064", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -121317,12 +121470,12 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImage.contentType" }, { - "$id": "9054", + "$id": "9065", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5851" + "$ref": "5862" }, "isApiVersion": false, "contentTypes": [ @@ -121342,7 +121495,7 @@ 200 ], "bodyType": { - "$ref": "5878" + "$ref": "5889" }, "headers": [], "isErrorResponse": false, @@ -121365,7 +121518,7 @@ }, "parameters": [ { - "$id": "9055", + "$id": "9066", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -121382,12 +121535,12 @@ "decorators": [] }, { - "$id": "9056", + "$id": "9067", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5851" + "$ref": "5862" }, "location": "Body", "isApiVersion": false, @@ -121399,7 +121552,7 @@ "decorators": [] }, { - "$id": "9057", + "$id": "9068", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -121419,7 +121572,7 @@ ], "response": { "type": { - "$ref": "5878" + "$ref": "5889" } }, "isOverride": false, @@ -121428,21 +121581,21 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImage" }, { - "$id": "9058", + "$id": "9069", "kind": "basic", "name": "GenerateImageEdits", "accessibility": "public", "apiVersions": [], "summary": "Creates an edited or extended image given an original image and a prompt.", "operation": { - "$id": "9059", + "$id": "9070", "name": "GenerateImageEdits", "resourceName": "Images", "summary": "Creates an edited or extended image given an original image and a prompt.", "accessibility": "public", "parameters": [ { - "$id": "9060", + "$id": "9071", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -121458,7 +121611,7 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageEdit.accept" }, { - "$id": "9061", + "$id": "9072", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -121474,12 +121627,12 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageEdit.contentType" }, { - "$id": "9062", + "$id": "9073", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5905" + "$ref": "5916" }, "isApiVersion": false, "contentTypes": [ @@ -121499,7 +121652,7 @@ 200 ], "bodyType": { - "$ref": "5878" + "$ref": "5889" }, "headers": [], "isErrorResponse": false, @@ -121522,7 +121675,7 @@ }, "parameters": [ { - "$id": "9063", + "$id": "9074", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -121539,7 +121692,7 @@ "decorators": [] }, { - "$id": "9064", + "$id": "9075", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -121556,12 +121709,12 @@ "decorators": [] }, { - "$id": "9065", + "$id": "9076", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5905" + "$ref": "5916" }, "location": "Body", "isApiVersion": false, @@ -121575,7 +121728,7 @@ ], "response": { "type": { - "$ref": "5878" + "$ref": "5889" } }, "isOverride": false, @@ -121584,21 +121737,21 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageEdit" }, { - "$id": "9066", + "$id": "9077", "kind": "basic", "name": "GenerateImageVariations", "accessibility": "public", "apiVersions": [], "summary": "Creates an edited or extended image given an original image and a prompt.", "operation": { - "$id": "9067", + "$id": "9078", "name": "GenerateImageVariations", "resourceName": "Images", "summary": "Creates an edited or extended image given an original image and a prompt.", "accessibility": "public", "parameters": [ { - "$id": "9068", + "$id": "9079", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -121614,7 +121767,7 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageVariation.accept" }, { - "$id": "9069", + "$id": "9080", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -121630,12 +121783,12 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageVariation.contentType" }, { - "$id": "9070", + "$id": "9081", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5931" + "$ref": "5942" }, "isApiVersion": false, "contentTypes": [ @@ -121655,7 +121808,7 @@ 200 ], "bodyType": { - "$ref": "5878" + "$ref": "5889" }, "headers": [], "isErrorResponse": false, @@ -121678,7 +121831,7 @@ }, "parameters": [ { - "$id": "9071", + "$id": "9082", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -121695,7 +121848,7 @@ "decorators": [] }, { - "$id": "9072", + "$id": "9083", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -121712,12 +121865,12 @@ "decorators": [] }, { - "$id": "9073", + "$id": "9084", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5931" + "$ref": "5942" }, "location": "Body", "isApiVersion": false, @@ -121731,7 +121884,7 @@ ], "response": { "type": { - "$ref": "5878" + "$ref": "5889" } }, "isOverride": false, @@ -121742,13 +121895,13 @@ ], "parameters": [ { - "$id": "9074", + "$id": "9085", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9075", + "$id": "9086", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -121759,7 +121912,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9076", + "$id": "9087", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -121777,31 +121930,31 @@ "crossLanguageDefinitionId": "OpenAI.Images", "apiVersions": [], "parent": { - "$ref": "8260" + "$ref": "8271" } }, { - "$id": "9077", + "$id": "9088", "kind": "client", "name": "Messages", "namespace": "OpenAI", "methods": [ { - "$id": "9078", + "$id": "9089", "kind": "basic", "name": "createMessage", "accessibility": "public", "apiVersions": [], "summary": "Create a message.", "operation": { - "$id": "9079", + "$id": "9090", "name": "createMessage", "resourceName": "Messages", "summary": "Create a message.", "accessibility": "public", "parameters": [ { - "$id": "9080", + "$id": "9091", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -121817,7 +121970,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage.accept" }, { - "$id": "9081", + "$id": "9092", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -121833,13 +121986,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage.openAIBeta" }, { - "$id": "9082", + "$id": "9093", "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": "9083", + "$id": "9094", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121857,7 +122010,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage.thread_id" }, { - "$id": "9084", + "$id": "9095", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -121874,12 +122027,12 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage.contentType" }, { - "$id": "9085", + "$id": "9096", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5946" + "$ref": "5957" }, "isApiVersion": false, "contentTypes": [ @@ -121899,7 +122052,7 @@ 200 ], "bodyType": { - "$ref": "6034" + "$ref": "6045" }, "headers": [], "isErrorResponse": false, @@ -121922,7 +122075,7 @@ }, "parameters": [ { - "$id": "9086", + "$id": "9097", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -121939,7 +122092,7 @@ "decorators": [] }, { - "$id": "9087", + "$id": "9098", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -121956,13 +122109,13 @@ "decorators": [] }, { - "$id": "9088", + "$id": "9099", "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": "9089", + "$id": "9100", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121978,12 +122131,12 @@ "decorators": [] }, { - "$id": "9090", + "$id": "9101", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5946" + "$ref": "5957" }, "location": "Body", "isApiVersion": false, @@ -121995,7 +122148,7 @@ "decorators": [] }, { - "$id": "9091", + "$id": "9102", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -122015,7 +122168,7 @@ ], "response": { "type": { - "$ref": "6034" + "$ref": "6045" } }, "isOverride": false, @@ -122024,21 +122177,21 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage" }, { - "$id": "9092", + "$id": "9103", "kind": "paging", "name": "listMessages", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of messages for a given thread.", "operation": { - "$id": "9093", + "$id": "9104", "name": "listMessages", "resourceName": "Messages", "summary": "Returns a list of messages for a given thread.", "accessibility": "public", "parameters": [ { - "$id": "9094", + "$id": "9105", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -122054,7 +122207,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.listMessages.accept" }, { - "$id": "9095", + "$id": "9106", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122070,13 +122223,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.listMessages.openAIBeta" }, { - "$id": "9096", + "$id": "9107", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) the messages belong to.", "type": { - "$id": "9097", + "$id": "9108", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122094,13 +122247,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.listMessages.thread_id" }, { - "$id": "9098", + "$id": "9109", "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": "9099", + "$id": "9110", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -122115,7 +122268,7 @@ "readOnly": false }, { - "$id": "9100", + "$id": "9111", "kind": "query", "name": "order", "serializedName": "order", @@ -122132,13 +122285,13 @@ "readOnly": false }, { - "$id": "9101", + "$id": "9112", "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": "9102", + "$id": "9113", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122153,13 +122306,13 @@ "readOnly": false }, { - "$id": "9103", + "$id": "9114", "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": "9104", + "$id": "9115", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122180,7 +122333,7 @@ 200 ], "bodyType": { - "$ref": "6074" + "$ref": "6085" }, "headers": [], "isErrorResponse": false, @@ -122200,7 +122353,7 @@ }, "parameters": [ { - "$id": "9105", + "$id": "9116", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -122217,7 +122370,7 @@ "decorators": [] }, { - "$id": "9106", + "$id": "9117", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122234,13 +122387,13 @@ "decorators": [] }, { - "$id": "9107", + "$id": "9118", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) the messages belong to.", "type": { - "$id": "9108", + "$id": "9119", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122256,13 +122409,13 @@ "decorators": [] }, { - "$id": "9109", + "$id": "9120", "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": "9110", + "$id": "9121", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -122278,7 +122431,7 @@ "decorators": [] }, { - "$id": "9111", + "$id": "9122", "kind": "method", "name": "order", "serializedName": "order", @@ -122296,13 +122449,13 @@ "decorators": [] }, { - "$id": "9112", + "$id": "9123", "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": "9113", + "$id": "9124", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122318,13 +122471,13 @@ "decorators": [] }, { - "$id": "9114", + "$id": "9125", "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": "9115", + "$id": "9126", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122342,7 +122495,7 @@ ], "response": { "type": { - "$ref": "6077" + "$ref": "6088" }, "resultSegments": [ "data" @@ -122358,7 +122511,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9101" + "$ref": "9112" }, "responseSegments": [ "last_id" @@ -122368,21 +122521,21 @@ } }, { - "$id": "9116", + "$id": "9127", "kind": "basic", "name": "getMessage", "accessibility": "public", "apiVersions": [], "summary": "Retrieve a message.", "operation": { - "$id": "9117", + "$id": "9128", "name": "getMessage", "resourceName": "Messages", "summary": "Retrieve a message.", "accessibility": "public", "parameters": [ { - "$id": "9118", + "$id": "9129", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -122398,7 +122551,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.getMessage.accept" }, { - "$id": "9119", + "$id": "9130", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122414,13 +122567,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.getMessage.openAIBeta" }, { - "$id": "9120", + "$id": "9131", "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": "9121", + "$id": "9132", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122438,13 +122591,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.getMessage.thread_id" }, { - "$id": "9122", + "$id": "9133", "kind": "path", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to retrieve.", "type": { - "$id": "9123", + "$id": "9134", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122468,7 +122621,7 @@ 200 ], "bodyType": { - "$ref": "6034" + "$ref": "6045" }, "headers": [], "isErrorResponse": false, @@ -122488,7 +122641,7 @@ }, "parameters": [ { - "$id": "9124", + "$id": "9135", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -122505,7 +122658,7 @@ "decorators": [] }, { - "$id": "9125", + "$id": "9136", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122522,13 +122675,13 @@ "decorators": [] }, { - "$id": "9126", + "$id": "9137", "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": "9127", + "$id": "9138", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122544,13 +122697,13 @@ "decorators": [] }, { - "$id": "9128", + "$id": "9139", "kind": "method", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to retrieve.", "type": { - "$id": "9129", + "$id": "9140", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122568,7 +122721,7 @@ ], "response": { "type": { - "$ref": "6034" + "$ref": "6045" } }, "isOverride": false, @@ -122577,21 +122730,21 @@ "crossLanguageDefinitionId": "OpenAI.Messages.getMessage" }, { - "$id": "9130", + "$id": "9141", "kind": "basic", "name": "modifyMessage", "accessibility": "public", "apiVersions": [], "summary": "Modifies a message.", "operation": { - "$id": "9131", + "$id": "9142", "name": "modifyMessage", "resourceName": "Messages", "summary": "Modifies a message.", "accessibility": "public", "parameters": [ { - "$id": "9132", + "$id": "9143", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -122607,7 +122760,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.accept" }, { - "$id": "9133", + "$id": "9144", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122623,13 +122776,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.openAIBeta" }, { - "$id": "9134", + "$id": "9145", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this message belongs.", "type": { - "$id": "9135", + "$id": "9146", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122647,13 +122800,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.thread_id" }, { - "$id": "9136", + "$id": "9147", "kind": "path", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to modify.", "type": { - "$id": "9137", + "$id": "9148", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122671,7 +122824,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.message_id" }, { - "$id": "9138", + "$id": "9149", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -122688,12 +122841,12 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.contentType" }, { - "$id": "9139", + "$id": "9150", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6084" + "$ref": "6095" }, "isApiVersion": false, "contentTypes": [ @@ -122713,7 +122866,7 @@ 200 ], "bodyType": { - "$ref": "6034" + "$ref": "6045" }, "headers": [], "isErrorResponse": false, @@ -122736,7 +122889,7 @@ }, "parameters": [ { - "$id": "9140", + "$id": "9151", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -122753,7 +122906,7 @@ "decorators": [] }, { - "$id": "9141", + "$id": "9152", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122770,13 +122923,13 @@ "decorators": [] }, { - "$id": "9142", + "$id": "9153", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this message belongs.", "type": { - "$id": "9143", + "$id": "9154", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122792,13 +122945,13 @@ "decorators": [] }, { - "$id": "9144", + "$id": "9155", "kind": "method", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to modify.", "type": { - "$id": "9145", + "$id": "9156", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122814,12 +122967,12 @@ "decorators": [] }, { - "$id": "9146", + "$id": "9157", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6084" + "$ref": "6095" }, "location": "Body", "isApiVersion": false, @@ -122831,7 +122984,7 @@ "decorators": [] }, { - "$id": "9147", + "$id": "9158", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -122851,7 +123004,7 @@ ], "response": { "type": { - "$ref": "6034" + "$ref": "6045" } }, "isOverride": false, @@ -122860,21 +123013,21 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage" }, { - "$id": "9148", + "$id": "9159", "kind": "basic", "name": "deleteMessage", "accessibility": "public", "apiVersions": [], "summary": "Deletes a message.", "operation": { - "$id": "9149", + "$id": "9160", "name": "deleteMessage", "resourceName": "Messages", "summary": "Deletes a message.", "accessibility": "public", "parameters": [ { - "$id": "9150", + "$id": "9161", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -122890,7 +123043,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.deleteMessage.accept" }, { - "$id": "9151", + "$id": "9162", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122906,13 +123059,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.deleteMessage.openAIBeta" }, { - "$id": "9152", + "$id": "9163", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this message belongs.", "type": { - "$id": "9153", + "$id": "9164", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122930,13 +123083,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.deleteMessage.thread_id" }, { - "$id": "9154", + "$id": "9165", "kind": "path", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to delete.", "type": { - "$id": "9155", + "$id": "9166", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122960,7 +123113,7 @@ 200 ], "bodyType": { - "$ref": "6086" + "$ref": "6097" }, "headers": [], "isErrorResponse": false, @@ -122980,7 +123133,7 @@ }, "parameters": [ { - "$id": "9156", + "$id": "9167", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -122997,7 +123150,7 @@ "decorators": [] }, { - "$id": "9157", + "$id": "9168", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123014,13 +123167,13 @@ "decorators": [] }, { - "$id": "9158", + "$id": "9169", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this message belongs.", "type": { - "$id": "9159", + "$id": "9170", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123036,13 +123189,13 @@ "decorators": [] }, { - "$id": "9160", + "$id": "9171", "kind": "method", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to delete.", "type": { - "$id": "9161", + "$id": "9172", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123060,7 +123213,7 @@ ], "response": { "type": { - "$ref": "6086" + "$ref": "6097" } }, "isOverride": false, @@ -123071,13 +123224,13 @@ ], "parameters": [ { - "$id": "9162", + "$id": "9173", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9163", + "$id": "9174", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -123088,7 +123241,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9164", + "$id": "9175", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -123106,31 +123259,31 @@ "crossLanguageDefinitionId": "OpenAI.Messages", "apiVersions": [], "parent": { - "$ref": "8260" + "$ref": "8271" } }, { - "$id": "9165", + "$id": "9176", "kind": "client", "name": "Moderations", "namespace": "OpenAI", "methods": [ { - "$id": "9166", + "$id": "9177", "kind": "basic", "name": "ClassifyText", "accessibility": "public", "apiVersions": [], "summary": "Classifies if text is potentially harmful.", "operation": { - "$id": "9167", + "$id": "9178", "name": "ClassifyText", "resourceName": "Moderations", "summary": "Classifies if text is potentially harmful.", "accessibility": "public", "parameters": [ { - "$id": "9168", + "$id": "9179", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -123146,7 +123299,7 @@ "crossLanguageDefinitionId": "OpenAI.Moderations.createModeration.accept" }, { - "$id": "9169", + "$id": "9180", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -123163,12 +123316,12 @@ "crossLanguageDefinitionId": "OpenAI.Moderations.createModeration.contentType" }, { - "$id": "9170", + "$id": "9181", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6092" + "$ref": "6103" }, "isApiVersion": false, "contentTypes": [ @@ -123188,7 +123341,7 @@ 200 ], "bodyType": { - "$ref": "6109" + "$ref": "6120" }, "headers": [], "isErrorResponse": false, @@ -123211,7 +123364,7 @@ }, "parameters": [ { - "$id": "9171", + "$id": "9182", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -123228,12 +123381,12 @@ "decorators": [] }, { - "$id": "9172", + "$id": "9183", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6092" + "$ref": "6103" }, "location": "Body", "isApiVersion": false, @@ -123245,7 +123398,7 @@ "decorators": [] }, { - "$id": "9173", + "$id": "9184", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -123265,7 +123418,7 @@ ], "response": { "type": { - "$ref": "6109" + "$ref": "6120" } }, "isOverride": false, @@ -123276,13 +123429,13 @@ ], "parameters": [ { - "$id": "9174", + "$id": "9185", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9175", + "$id": "9186", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -123293,7 +123446,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9176", + "$id": "9187", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -123311,31 +123464,31 @@ "crossLanguageDefinitionId": "OpenAI.Moderations", "apiVersions": [], "parent": { - "$ref": "8260" + "$ref": "8271" } }, { - "$id": "9177", + "$id": "9188", "kind": "client", "name": "Runs", "namespace": "OpenAI", "methods": [ { - "$id": "9178", + "$id": "9189", "kind": "basic", "name": "createThreadAndRun", "accessibility": "public", "apiVersions": [], "summary": "Create a thread and run it in one request.", "operation": { - "$id": "9179", + "$id": "9190", "name": "createThreadAndRun", "resourceName": "Runs", "summary": "Create a thread and run it in one request.", "accessibility": "public", "parameters": [ { - "$id": "9180", + "$id": "9191", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -123351,7 +123504,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createThreadAndRun.accept" }, { - "$id": "9181", + "$id": "9192", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123367,7 +123520,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createThreadAndRun.openAIBeta" }, { - "$id": "9182", + "$id": "9193", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -123384,12 +123537,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createThreadAndRun.contentType" }, { - "$id": "9183", + "$id": "9194", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6209" + "$ref": "6220" }, "isApiVersion": false, "contentTypes": [ @@ -123409,7 +123562,7 @@ 200 ], "bodyType": { - "$ref": "6275" + "$ref": "6286" }, "headers": [], "isErrorResponse": false, @@ -123432,7 +123585,7 @@ }, "parameters": [ { - "$id": "9184", + "$id": "9195", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -123449,7 +123602,7 @@ "decorators": [] }, { - "$id": "9185", + "$id": "9196", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123466,12 +123619,12 @@ "decorators": [] }, { - "$id": "9186", + "$id": "9197", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6209" + "$ref": "6220" }, "location": "Body", "isApiVersion": false, @@ -123483,7 +123636,7 @@ "decorators": [] }, { - "$id": "9187", + "$id": "9198", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -123503,7 +123656,7 @@ ], "response": { "type": { - "$ref": "6275" + "$ref": "6286" } }, "isOverride": false, @@ -123512,21 +123665,21 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createThreadAndRun" }, { - "$id": "9188", + "$id": "9199", "kind": "basic", "name": "createRun", "accessibility": "public", "apiVersions": [], "summary": "Create a run.", "operation": { - "$id": "9189", + "$id": "9200", "name": "createRun", "resourceName": "Runs", "summary": "Create a run.", "accessibility": "public", "parameters": [ { - "$id": "9190", + "$id": "9201", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -123542,7 +123695,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun.accept" }, { - "$id": "9191", + "$id": "9202", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123558,13 +123711,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun.openAIBeta" }, { - "$id": "9192", + "$id": "9203", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to run.", "type": { - "$id": "9193", + "$id": "9204", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123582,13 +123735,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun.thread_id" }, { - "$id": "9194", + "$id": "9205", "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": "9195", + "$id": "9206", "kind": "array", "name": "ArrayIncludedRunStepProperty", "valueType": { @@ -123607,7 +123760,7 @@ "readOnly": false }, { - "$id": "9196", + "$id": "9207", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -123624,12 +123777,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun.contentType" }, { - "$id": "9197", + "$id": "9208", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6371" + "$ref": "6382" }, "isApiVersion": false, "contentTypes": [ @@ -123649,7 +123802,7 @@ 200 ], "bodyType": { - "$ref": "6275" + "$ref": "6286" }, "headers": [], "isErrorResponse": false, @@ -123672,7 +123825,7 @@ }, "parameters": [ { - "$id": "9198", + "$id": "9209", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -123689,7 +123842,7 @@ "decorators": [] }, { - "$id": "9199", + "$id": "9210", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123706,13 +123859,13 @@ "decorators": [] }, { - "$id": "9200", + "$id": "9211", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to run.", "type": { - "$id": "9201", + "$id": "9212", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123728,13 +123881,13 @@ "decorators": [] }, { - "$id": "9202", + "$id": "9213", "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": "9195" + "$ref": "9206" }, "location": "Query", "isApiVersion": false, @@ -123746,12 +123899,12 @@ "decorators": [] }, { - "$id": "9203", + "$id": "9214", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6371" + "$ref": "6382" }, "location": "Body", "isApiVersion": false, @@ -123763,7 +123916,7 @@ "decorators": [] }, { - "$id": "9204", + "$id": "9215", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -123783,7 +123936,7 @@ ], "response": { "type": { - "$ref": "6275" + "$ref": "6286" } }, "isOverride": false, @@ -123792,21 +123945,21 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun" }, { - "$id": "9205", + "$id": "9216", "kind": "paging", "name": "listRuns", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of runs belonging to a thread.", "operation": { - "$id": "9206", + "$id": "9217", "name": "listRuns", "resourceName": "Runs", "summary": "Returns a list of runs belonging to a thread.", "accessibility": "public", "parameters": [ { - "$id": "9207", + "$id": "9218", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -123822,7 +123975,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRuns.accept" }, { - "$id": "9208", + "$id": "9219", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123838,13 +123991,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRuns.openAIBeta" }, { - "$id": "9209", + "$id": "9220", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread the run belongs to.", "type": { - "$id": "9210", + "$id": "9221", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123862,13 +124015,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRuns.thread_id" }, { - "$id": "9211", + "$id": "9222", "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": "9212", + "$id": "9223", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -123883,7 +124036,7 @@ "readOnly": false }, { - "$id": "9213", + "$id": "9224", "kind": "query", "name": "order", "serializedName": "order", @@ -123900,13 +124053,13 @@ "readOnly": false }, { - "$id": "9214", + "$id": "9225", "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": "9215", + "$id": "9226", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123921,13 +124074,13 @@ "readOnly": false }, { - "$id": "9216", + "$id": "9227", "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": "9217", + "$id": "9228", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123948,7 +124101,7 @@ 200 ], "bodyType": { - "$ref": "6413" + "$ref": "6424" }, "headers": [], "isErrorResponse": false, @@ -123968,7 +124121,7 @@ }, "parameters": [ { - "$id": "9218", + "$id": "9229", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -123985,7 +124138,7 @@ "decorators": [] }, { - "$id": "9219", + "$id": "9230", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -124002,13 +124155,13 @@ "decorators": [] }, { - "$id": "9220", + "$id": "9231", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread the run belongs to.", "type": { - "$id": "9221", + "$id": "9232", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124024,13 +124177,13 @@ "decorators": [] }, { - "$id": "9222", + "$id": "9233", "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": "9223", + "$id": "9234", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -124046,7 +124199,7 @@ "decorators": [] }, { - "$id": "9224", + "$id": "9235", "kind": "method", "name": "order", "serializedName": "order", @@ -124064,13 +124217,13 @@ "decorators": [] }, { - "$id": "9225", + "$id": "9236", "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": "9226", + "$id": "9237", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124086,13 +124239,13 @@ "decorators": [] }, { - "$id": "9227", + "$id": "9238", "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": "9228", + "$id": "9239", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124110,7 +124263,7 @@ ], "response": { "type": { - "$ref": "6416" + "$ref": "6427" }, "resultSegments": [ "data" @@ -124126,7 +124279,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9214" + "$ref": "9225" }, "responseSegments": [ "last_id" @@ -124136,21 +124289,21 @@ } }, { - "$id": "9229", + "$id": "9240", "kind": "basic", "name": "getRun", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a run.", "operation": { - "$id": "9230", + "$id": "9241", "name": "getRun", "resourceName": "Runs", "summary": "Retrieves a run.", "accessibility": "public", "parameters": [ { - "$id": "9231", + "$id": "9242", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -124166,7 +124319,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRun.accept" }, { - "$id": "9232", + "$id": "9243", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -124182,13 +124335,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRun.openAIBeta" }, { - "$id": "9233", + "$id": "9244", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "9234", + "$id": "9245", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124206,13 +124359,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRun.thread_id" }, { - "$id": "9235", + "$id": "9246", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to retrieve.", "type": { - "$id": "9236", + "$id": "9247", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124236,7 +124389,7 @@ 200 ], "bodyType": { - "$ref": "6275" + "$ref": "6286" }, "headers": [], "isErrorResponse": false, @@ -124256,7 +124409,7 @@ }, "parameters": [ { - "$id": "9237", + "$id": "9248", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -124273,7 +124426,7 @@ "decorators": [] }, { - "$id": "9238", + "$id": "9249", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -124290,13 +124443,13 @@ "decorators": [] }, { - "$id": "9239", + "$id": "9250", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "9240", + "$id": "9251", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124312,13 +124465,13 @@ "decorators": [] }, { - "$id": "9241", + "$id": "9252", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to retrieve.", "type": { - "$id": "9242", + "$id": "9253", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124336,7 +124489,7 @@ ], "response": { "type": { - "$ref": "6275" + "$ref": "6286" } }, "isOverride": false, @@ -124345,21 +124498,21 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRun" }, { - "$id": "9243", + "$id": "9254", "kind": "basic", "name": "modifyRun", "accessibility": "public", "apiVersions": [], "summary": "Modifies a run.", "operation": { - "$id": "9244", + "$id": "9255", "name": "modifyRun", "resourceName": "Runs", "summary": "Modifies a run.", "accessibility": "public", "parameters": [ { - "$id": "9245", + "$id": "9256", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -124375,7 +124528,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.accept" }, { - "$id": "9246", + "$id": "9257", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -124391,13 +124544,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.openAIBeta" }, { - "$id": "9247", + "$id": "9258", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "9248", + "$id": "9259", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124415,13 +124568,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.thread_id" }, { - "$id": "9249", + "$id": "9260", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to modify.", "type": { - "$id": "9250", + "$id": "9261", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124439,7 +124592,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.run_id" }, { - "$id": "9251", + "$id": "9262", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -124456,12 +124609,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.contentType" }, { - "$id": "9252", + "$id": "9263", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6423" + "$ref": "6434" }, "isApiVersion": false, "contentTypes": [ @@ -124481,7 +124634,7 @@ 200 ], "bodyType": { - "$ref": "6275" + "$ref": "6286" }, "headers": [], "isErrorResponse": false, @@ -124504,7 +124657,7 @@ }, "parameters": [ { - "$id": "9253", + "$id": "9264", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -124521,7 +124674,7 @@ "decorators": [] }, { - "$id": "9254", + "$id": "9265", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -124538,13 +124691,13 @@ "decorators": [] }, { - "$id": "9255", + "$id": "9266", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "9256", + "$id": "9267", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124560,13 +124713,13 @@ "decorators": [] }, { - "$id": "9257", + "$id": "9268", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to modify.", "type": { - "$id": "9258", + "$id": "9269", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124582,12 +124735,12 @@ "decorators": [] }, { - "$id": "9259", + "$id": "9270", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6423" + "$ref": "6434" }, "location": "Body", "isApiVersion": false, @@ -124599,7 +124752,7 @@ "decorators": [] }, { - "$id": "9260", + "$id": "9271", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -124619,7 +124772,7 @@ ], "response": { "type": { - "$ref": "6275" + "$ref": "6286" } }, "isOverride": false, @@ -124628,21 +124781,21 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun" }, { - "$id": "9261", + "$id": "9272", "kind": "basic", "name": "cancelRun", "accessibility": "public", "apiVersions": [], "summary": "Cancels a run that is `in_progress`.", "operation": { - "$id": "9262", + "$id": "9273", "name": "cancelRun", "resourceName": "Runs", "summary": "Cancels a run that is `in_progress`.", "accessibility": "public", "parameters": [ { - "$id": "9263", + "$id": "9274", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -124658,7 +124811,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.cancelRun.accept" }, { - "$id": "9264", + "$id": "9275", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -124674,13 +124827,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.cancelRun.openAIBeta" }, { - "$id": "9265", + "$id": "9276", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this run belongs.", "type": { - "$id": "9266", + "$id": "9277", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124698,13 +124851,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.cancelRun.thread_id" }, { - "$id": "9267", + "$id": "9278", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to cancel.", "type": { - "$id": "9268", + "$id": "9279", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124728,7 +124881,7 @@ 200 ], "bodyType": { - "$ref": "6275" + "$ref": "6286" }, "headers": [], "isErrorResponse": false, @@ -124748,7 +124901,7 @@ }, "parameters": [ { - "$id": "9269", + "$id": "9280", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -124765,7 +124918,7 @@ "decorators": [] }, { - "$id": "9270", + "$id": "9281", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -124782,13 +124935,13 @@ "decorators": [] }, { - "$id": "9271", + "$id": "9282", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this run belongs.", "type": { - "$id": "9272", + "$id": "9283", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124804,13 +124957,13 @@ "decorators": [] }, { - "$id": "9273", + "$id": "9284", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to cancel.", "type": { - "$id": "9274", + "$id": "9285", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124828,7 +124981,7 @@ ], "response": { "type": { - "$ref": "6275" + "$ref": "6286" } }, "isOverride": false, @@ -124837,21 +124990,21 @@ "crossLanguageDefinitionId": "OpenAI.Runs.cancelRun" }, { - "$id": "9275", + "$id": "9286", "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": "9276", + "$id": "9287", "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": "9277", + "$id": "9288", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -124867,7 +125020,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.accept" }, { - "$id": "9278", + "$id": "9289", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -124883,13 +125036,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.openAIBeta" }, { - "$id": "9279", + "$id": "9290", "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": "9280", + "$id": "9291", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124907,13 +125060,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.thread_id" }, { - "$id": "9281", + "$id": "9292", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run that requires the tool output submission.", "type": { - "$id": "9282", + "$id": "9293", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124931,7 +125084,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.run_id" }, { - "$id": "9283", + "$id": "9294", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -124948,12 +125101,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.contentType" }, { - "$id": "9284", + "$id": "9295", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6425" + "$ref": "6436" }, "isApiVersion": false, "contentTypes": [ @@ -124973,7 +125126,7 @@ 200 ], "bodyType": { - "$ref": "6275" + "$ref": "6286" }, "headers": [], "isErrorResponse": false, @@ -124996,7 +125149,7 @@ }, "parameters": [ { - "$id": "9285", + "$id": "9296", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -125013,7 +125166,7 @@ "decorators": [] }, { - "$id": "9286", + "$id": "9297", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -125030,13 +125183,13 @@ "decorators": [] }, { - "$id": "9287", + "$id": "9298", "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": "9288", + "$id": "9299", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125052,13 +125205,13 @@ "decorators": [] }, { - "$id": "9289", + "$id": "9300", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run that requires the tool output submission.", "type": { - "$id": "9290", + "$id": "9301", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125074,12 +125227,12 @@ "decorators": [] }, { - "$id": "9291", + "$id": "9302", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6425" + "$ref": "6436" }, "location": "Body", "isApiVersion": false, @@ -125091,7 +125244,7 @@ "decorators": [] }, { - "$id": "9292", + "$id": "9303", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -125111,7 +125264,7 @@ ], "response": { "type": { - "$ref": "6275" + "$ref": "6286" } }, "isOverride": false, @@ -125120,21 +125273,21 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun" }, { - "$id": "9293", + "$id": "9304", "kind": "paging", "name": "listRunSteps", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of run steps belonging to a run.", "operation": { - "$id": "9294", + "$id": "9305", "name": "listRunSteps", "resourceName": "Runs", "summary": "Returns a list of run steps belonging to a run.", "accessibility": "public", "parameters": [ { - "$id": "9295", + "$id": "9306", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -125150,7 +125303,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRunSteps.accept" }, { - "$id": "9296", + "$id": "9307", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -125166,13 +125319,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRunSteps.openAIBeta" }, { - "$id": "9297", + "$id": "9308", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread the run and run steps belong to.", "type": { - "$id": "9298", + "$id": "9309", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125190,13 +125343,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRunSteps.thread_id" }, { - "$id": "9299", + "$id": "9310", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run the run steps belong to.", "type": { - "$id": "9300", + "$id": "9311", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125214,13 +125367,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRunSteps.run_id" }, { - "$id": "9301", + "$id": "9312", "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": "9302", + "$id": "9313", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -125235,7 +125388,7 @@ "readOnly": false }, { - "$id": "9303", + "$id": "9314", "kind": "query", "name": "order", "serializedName": "order", @@ -125252,13 +125405,13 @@ "readOnly": false }, { - "$id": "9304", + "$id": "9315", "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": "9305", + "$id": "9316", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125273,13 +125426,13 @@ "readOnly": false }, { - "$id": "9306", + "$id": "9317", "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": "9307", + "$id": "9318", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125294,13 +125447,13 @@ "readOnly": false }, { - "$id": "9308", + "$id": "9319", "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": "9195" + "$ref": "9206" }, "isApiVersion": false, "explode": false, @@ -125318,7 +125471,7 @@ 200 ], "bodyType": { - "$ref": "6436" + "$ref": "6447" }, "headers": [], "isErrorResponse": false, @@ -125338,7 +125491,7 @@ }, "parameters": [ { - "$id": "9309", + "$id": "9320", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -125355,7 +125508,7 @@ "decorators": [] }, { - "$id": "9310", + "$id": "9321", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -125372,13 +125525,13 @@ "decorators": [] }, { - "$id": "9311", + "$id": "9322", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread the run and run steps belong to.", "type": { - "$id": "9312", + "$id": "9323", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125394,13 +125547,13 @@ "decorators": [] }, { - "$id": "9313", + "$id": "9324", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run the run steps belong to.", "type": { - "$id": "9314", + "$id": "9325", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125416,13 +125569,13 @@ "decorators": [] }, { - "$id": "9315", + "$id": "9326", "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": "9316", + "$id": "9327", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -125438,7 +125591,7 @@ "decorators": [] }, { - "$id": "9317", + "$id": "9328", "kind": "method", "name": "order", "serializedName": "order", @@ -125456,13 +125609,13 @@ "decorators": [] }, { - "$id": "9318", + "$id": "9329", "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": "9319", + "$id": "9330", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125478,13 +125631,13 @@ "decorators": [] }, { - "$id": "9320", + "$id": "9331", "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": "9321", + "$id": "9332", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125500,13 +125653,13 @@ "decorators": [] }, { - "$id": "9322", + "$id": "9333", "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": "9195" + "$ref": "9206" }, "location": "Query", "isApiVersion": false, @@ -125520,7 +125673,7 @@ ], "response": { "type": { - "$ref": "6439" + "$ref": "6450" }, "resultSegments": [ "data" @@ -125536,7 +125689,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9304" + "$ref": "9315" }, "responseSegments": [ "last_id" @@ -125546,21 +125699,21 @@ } }, { - "$id": "9323", + "$id": "9334", "kind": "basic", "name": "getRunStep", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a run step.", "operation": { - "$id": "9324", + "$id": "9335", "name": "getRunStep", "resourceName": "Runs", "summary": "Retrieves a run step.", "accessibility": "public", "parameters": [ { - "$id": "9325", + "$id": "9336", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -125576,7 +125729,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.accept" }, { - "$id": "9326", + "$id": "9337", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -125592,13 +125745,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.openAIBeta" }, { - "$id": "9327", + "$id": "9338", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which the run and run step belongs.", "type": { - "$id": "9328", + "$id": "9339", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125616,13 +125769,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.thread_id" }, { - "$id": "9329", + "$id": "9340", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to which the run step belongs.", "type": { - "$id": "9330", + "$id": "9341", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125640,13 +125793,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.run_id" }, { - "$id": "9331", + "$id": "9342", "kind": "path", "name": "step_id", "serializedName": "step_id", "doc": "The ID of the run step to retrieve.", "type": { - "$id": "9332", + "$id": "9343", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125664,13 +125817,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.step_id" }, { - "$id": "9333", + "$id": "9344", "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": "9195" + "$ref": "9206" }, "isApiVersion": false, "explode": false, @@ -125688,7 +125841,7 @@ 200 ], "bodyType": { - "$ref": "6440" + "$ref": "6451" }, "headers": [], "isErrorResponse": false, @@ -125708,7 +125861,7 @@ }, "parameters": [ { - "$id": "9334", + "$id": "9345", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -125725,7 +125878,7 @@ "decorators": [] }, { - "$id": "9335", + "$id": "9346", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -125742,13 +125895,13 @@ "decorators": [] }, { - "$id": "9336", + "$id": "9347", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which the run and run step belongs.", "type": { - "$id": "9337", + "$id": "9348", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125764,13 +125917,13 @@ "decorators": [] }, { - "$id": "9338", + "$id": "9349", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to which the run step belongs.", "type": { - "$id": "9339", + "$id": "9350", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125786,13 +125939,13 @@ "decorators": [] }, { - "$id": "9340", + "$id": "9351", "kind": "method", "name": "step_id", "serializedName": "step_id", "doc": "The ID of the run step to retrieve.", "type": { - "$id": "9341", + "$id": "9352", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125808,13 +125961,13 @@ "decorators": [] }, { - "$id": "9342", + "$id": "9353", "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": "9195" + "$ref": "9206" }, "location": "Query", "isApiVersion": false, @@ -125828,7 +125981,7 @@ ], "response": { "type": { - "$ref": "6440" + "$ref": "6451" } }, "isOverride": false, @@ -125839,13 +125992,13 @@ ], "parameters": [ { - "$id": "9343", + "$id": "9354", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9344", + "$id": "9355", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -125856,7 +126009,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9345", + "$id": "9356", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -125874,31 +126027,31 @@ "crossLanguageDefinitionId": "OpenAI.Runs", "apiVersions": [], "parent": { - "$ref": "8260" + "$ref": "8271" } }, { - "$id": "9346", + "$id": "9357", "kind": "client", "name": "Threads", "namespace": "OpenAI", "methods": [ { - "$id": "9347", + "$id": "9358", "kind": "basic", "name": "createThread", "accessibility": "public", "apiVersions": [], "summary": "Create a thread.", "operation": { - "$id": "9348", + "$id": "9359", "name": "createThread", "resourceName": "Threads", "summary": "Create a thread.", "accessibility": "public", "parameters": [ { - "$id": "9349", + "$id": "9360", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -125914,7 +126067,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads.createThread.accept" }, { - "$id": "9350", + "$id": "9361", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -125930,7 +126083,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads.createThread.openAIBeta" }, { - "$id": "9351", + "$id": "9362", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -125947,12 +126100,12 @@ "crossLanguageDefinitionId": "OpenAI.Threads.createThread.contentType" }, { - "$id": "9352", + "$id": "9363", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6213" + "$ref": "6224" }, "isApiVersion": false, "contentTypes": [ @@ -125972,7 +126125,7 @@ 200 ], "bodyType": { - "$ref": "6589" + "$ref": "6600" }, "headers": [], "isErrorResponse": false, @@ -125995,7 +126148,7 @@ }, "parameters": [ { - "$id": "9353", + "$id": "9364", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -126012,7 +126165,7 @@ "decorators": [] }, { - "$id": "9354", + "$id": "9365", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -126029,12 +126182,12 @@ "decorators": [] }, { - "$id": "9355", + "$id": "9366", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6213" + "$ref": "6224" }, "location": "Body", "isApiVersion": false, @@ -126046,7 +126199,7 @@ "decorators": [] }, { - "$id": "9356", + "$id": "9367", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -126066,7 +126219,7 @@ ], "response": { "type": { - "$ref": "6589" + "$ref": "6600" } }, "isOverride": false, @@ -126075,21 +126228,21 @@ "crossLanguageDefinitionId": "OpenAI.Threads.createThread" }, { - "$id": "9357", + "$id": "9368", "kind": "basic", "name": "getThread", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a thread.", "operation": { - "$id": "9358", + "$id": "9369", "name": "getThread", "resourceName": "Threads", "summary": "Retrieves a thread.", "accessibility": "public", "parameters": [ { - "$id": "9359", + "$id": "9370", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -126105,7 +126258,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads.getThread.accept" }, { - "$id": "9360", + "$id": "9371", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -126121,13 +126274,13 @@ "crossLanguageDefinitionId": "OpenAI.Threads.getThread.openAIBeta" }, { - "$id": "9361", + "$id": "9372", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to retrieve.", "type": { - "$id": "9362", + "$id": "9373", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126151,7 +126304,7 @@ 200 ], "bodyType": { - "$ref": "6589" + "$ref": "6600" }, "headers": [], "isErrorResponse": false, @@ -126171,7 +126324,7 @@ }, "parameters": [ { - "$id": "9363", + "$id": "9374", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -126188,7 +126341,7 @@ "decorators": [] }, { - "$id": "9364", + "$id": "9375", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -126205,13 +126358,13 @@ "decorators": [] }, { - "$id": "9365", + "$id": "9376", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to retrieve.", "type": { - "$id": "9366", + "$id": "9377", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126229,7 +126382,7 @@ ], "response": { "type": { - "$ref": "6589" + "$ref": "6600" } }, "isOverride": false, @@ -126238,21 +126391,21 @@ "crossLanguageDefinitionId": "OpenAI.Threads.getThread" }, { - "$id": "9367", + "$id": "9378", "kind": "basic", "name": "modifyThread", "accessibility": "public", "apiVersions": [], "summary": "Modifies a thread.", "operation": { - "$id": "9368", + "$id": "9379", "name": "modifyThread", "resourceName": "Threads", "summary": "Modifies a thread.", "accessibility": "public", "parameters": [ { - "$id": "9369", + "$id": "9380", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -126268,7 +126421,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread.accept" }, { - "$id": "9370", + "$id": "9381", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -126284,13 +126437,13 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread.openAIBeta" }, { - "$id": "9371", + "$id": "9382", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to modify. Only the `metadata` can be modified.", "type": { - "$id": "9372", + "$id": "9383", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126308,7 +126461,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread.thread_id" }, { - "$id": "9373", + "$id": "9384", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -126325,12 +126478,12 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread.contentType" }, { - "$id": "9374", + "$id": "9385", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6606" + "$ref": "6617" }, "isApiVersion": false, "contentTypes": [ @@ -126350,7 +126503,7 @@ 200 ], "bodyType": { - "$ref": "6589" + "$ref": "6600" }, "headers": [], "isErrorResponse": false, @@ -126373,7 +126526,7 @@ }, "parameters": [ { - "$id": "9375", + "$id": "9386", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -126390,7 +126543,7 @@ "decorators": [] }, { - "$id": "9376", + "$id": "9387", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -126407,13 +126560,13 @@ "decorators": [] }, { - "$id": "9377", + "$id": "9388", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to modify. Only the `metadata` can be modified.", "type": { - "$id": "9378", + "$id": "9389", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126429,12 +126582,12 @@ "decorators": [] }, { - "$id": "9379", + "$id": "9390", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6606" + "$ref": "6617" }, "location": "Body", "isApiVersion": false, @@ -126446,7 +126599,7 @@ "decorators": [] }, { - "$id": "9380", + "$id": "9391", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -126466,7 +126619,7 @@ ], "response": { "type": { - "$ref": "6589" + "$ref": "6600" } }, "isOverride": false, @@ -126475,21 +126628,21 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread" }, { - "$id": "9381", + "$id": "9392", "kind": "basic", "name": "deleteThread", "accessibility": "public", "apiVersions": [], "summary": "Delete a thread.", "operation": { - "$id": "9382", + "$id": "9393", "name": "deleteThread", "resourceName": "Threads", "summary": "Delete a thread.", "accessibility": "public", "parameters": [ { - "$id": "9383", + "$id": "9394", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -126505,7 +126658,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads.deleteThread.accept" }, { - "$id": "9384", + "$id": "9395", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -126521,13 +126674,13 @@ "crossLanguageDefinitionId": "OpenAI.Threads.deleteThread.openAIBeta" }, { - "$id": "9385", + "$id": "9396", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to delete.", "type": { - "$id": "9386", + "$id": "9397", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126551,7 +126704,7 @@ 200 ], "bodyType": { - "$ref": "6615" + "$ref": "6626" }, "headers": [], "isErrorResponse": false, @@ -126571,7 +126724,7 @@ }, "parameters": [ { - "$id": "9387", + "$id": "9398", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -126588,7 +126741,7 @@ "decorators": [] }, { - "$id": "9388", + "$id": "9399", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -126605,13 +126758,13 @@ "decorators": [] }, { - "$id": "9389", + "$id": "9400", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to delete.", "type": { - "$id": "9390", + "$id": "9401", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126629,7 +126782,7 @@ ], "response": { "type": { - "$ref": "6615" + "$ref": "6626" } }, "isOverride": false, @@ -126640,13 +126793,13 @@ ], "parameters": [ { - "$id": "9391", + "$id": "9402", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9392", + "$id": "9403", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -126657,7 +126810,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9393", + "$id": "9404", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -126675,31 +126828,31 @@ "crossLanguageDefinitionId": "OpenAI.Threads", "apiVersions": [], "parent": { - "$ref": "8260" + "$ref": "8271" } }, { - "$id": "9394", + "$id": "9405", "kind": "client", "name": "VectorStores", "namespace": "OpenAI", "methods": [ { - "$id": "9395", + "$id": "9406", "kind": "paging", "name": "GetVectorStores", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of vector stores.", "operation": { - "$id": "9396", + "$id": "9407", "name": "GetVectorStores", "resourceName": "VectorStores", "summary": "Returns a list of vector stores.", "accessibility": "public", "parameters": [ { - "$id": "9397", + "$id": "9408", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -126715,13 +126868,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listVectorStores.accept" }, { - "$id": "9398", + "$id": "9409", "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": "9399", + "$id": "9410", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -126736,7 +126889,7 @@ "readOnly": false }, { - "$id": "9400", + "$id": "9411", "kind": "query", "name": "order", "serializedName": "order", @@ -126753,13 +126906,13 @@ "readOnly": false }, { - "$id": "9401", + "$id": "9412", "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": "9402", + "$id": "9413", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126774,13 +126927,13 @@ "readOnly": false }, { - "$id": "9403", + "$id": "9414", "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": "9404", + "$id": "9415", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126801,7 +126954,7 @@ 200 ], "bodyType": { - "$ref": "6621" + "$ref": "6632" }, "headers": [], "isErrorResponse": false, @@ -126821,7 +126974,7 @@ }, "parameters": [ { - "$id": "9405", + "$id": "9416", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -126838,13 +126991,13 @@ "decorators": [] }, { - "$id": "9406", + "$id": "9417", "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": "9407", + "$id": "9418", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -126860,7 +127013,7 @@ "decorators": [] }, { - "$id": "9408", + "$id": "9419", "kind": "method", "name": "order", "serializedName": "order", @@ -126878,13 +127031,13 @@ "decorators": [] }, { - "$id": "9409", + "$id": "9420", "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": "9410", + "$id": "9421", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126900,13 +127053,13 @@ "decorators": [] }, { - "$id": "9411", + "$id": "9422", "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": "9412", + "$id": "9423", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126924,7 +127077,7 @@ ], "response": { "type": { - "$ref": "6624" + "$ref": "6635" }, "resultSegments": [ "data" @@ -126940,7 +127093,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9401" + "$ref": "9412" }, "responseSegments": [ "last_id" @@ -126950,21 +127103,21 @@ } }, { - "$id": "9413", + "$id": "9424", "kind": "basic", "name": "createVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Creates a vector store.", "operation": { - "$id": "9414", + "$id": "9425", "name": "createVectorStore", "resourceName": "VectorStores", "summary": "Creates a vector store.", "accessibility": "public", "parameters": [ { - "$id": "9415", + "$id": "9426", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -126980,7 +127133,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStore.accept" }, { - "$id": "9416", + "$id": "9427", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -126997,12 +127150,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStore.contentType" }, { - "$id": "9417", + "$id": "9428", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6673" + "$ref": "6684" }, "isApiVersion": false, "contentTypes": [ @@ -127022,7 +127175,7 @@ 200 ], "bodyType": { - "$ref": "6625" + "$ref": "6636" }, "headers": [], "isErrorResponse": false, @@ -127045,7 +127198,7 @@ }, "parameters": [ { - "$id": "9418", + "$id": "9429", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -127062,12 +127215,12 @@ "decorators": [] }, { - "$id": "9419", + "$id": "9430", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6673" + "$ref": "6684" }, "location": "Body", "isApiVersion": false, @@ -127079,7 +127232,7 @@ "decorators": [] }, { - "$id": "9420", + "$id": "9431", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -127099,7 +127252,7 @@ ], "response": { "type": { - "$ref": "6625" + "$ref": "6636" } }, "isOverride": false, @@ -127108,21 +127261,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStore" }, { - "$id": "9421", + "$id": "9432", "kind": "basic", "name": "getVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a vector store.", "operation": { - "$id": "9422", + "$id": "9433", "name": "getVectorStore", "resourceName": "VectorStores", "summary": "Retrieves a vector store.", "accessibility": "public", "parameters": [ { - "$id": "9423", + "$id": "9434", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -127138,13 +127291,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStore.accept" }, { - "$id": "9424", + "$id": "9435", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to retrieve.", "type": { - "$id": "9425", + "$id": "9436", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127168,7 +127321,7 @@ 200 ], "bodyType": { - "$ref": "6625" + "$ref": "6636" }, "headers": [], "isErrorResponse": false, @@ -127188,7 +127341,7 @@ }, "parameters": [ { - "$id": "9426", + "$id": "9437", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -127205,13 +127358,13 @@ "decorators": [] }, { - "$id": "9427", + "$id": "9438", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to retrieve.", "type": { - "$id": "9428", + "$id": "9439", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127229,7 +127382,7 @@ ], "response": { "type": { - "$ref": "6625" + "$ref": "6636" } }, "isOverride": false, @@ -127238,21 +127391,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStore" }, { - "$id": "9429", + "$id": "9440", "kind": "basic", "name": "modifyVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Modifies a vector store.", "operation": { - "$id": "9430", + "$id": "9441", "name": "modifyVectorStore", "resourceName": "VectorStores", "summary": "Modifies a vector store.", "accessibility": "public", "parameters": [ { - "$id": "9431", + "$id": "9442", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -127268,13 +127421,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.modifyVectorStore.accept" }, { - "$id": "9432", + "$id": "9443", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to modify.", "type": { - "$id": "9433", + "$id": "9444", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127292,7 +127445,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.modifyVectorStore.vector_store_id" }, { - "$id": "9434", + "$id": "9445", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -127309,12 +127462,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.modifyVectorStore.contentType" }, { - "$id": "9435", + "$id": "9446", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6681" + "$ref": "6692" }, "isApiVersion": false, "contentTypes": [ @@ -127334,7 +127487,7 @@ 200 ], "bodyType": { - "$ref": "6625" + "$ref": "6636" }, "headers": [], "isErrorResponse": false, @@ -127357,7 +127510,7 @@ }, "parameters": [ { - "$id": "9436", + "$id": "9447", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -127374,13 +127527,13 @@ "decorators": [] }, { - "$id": "9437", + "$id": "9448", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to modify.", "type": { - "$id": "9438", + "$id": "9449", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127396,12 +127549,12 @@ "decorators": [] }, { - "$id": "9439", + "$id": "9450", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6681" + "$ref": "6692" }, "location": "Body", "isApiVersion": false, @@ -127413,7 +127566,7 @@ "decorators": [] }, { - "$id": "9440", + "$id": "9451", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -127433,7 +127586,7 @@ ], "response": { "type": { - "$ref": "6625" + "$ref": "6636" } }, "isOverride": false, @@ -127442,21 +127595,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.modifyVectorStore" }, { - "$id": "9441", + "$id": "9452", "kind": "basic", "name": "deleteVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Delete a vector store.", "operation": { - "$id": "9442", + "$id": "9453", "name": "deleteVectorStore", "resourceName": "VectorStores", "summary": "Delete a vector store.", "accessibility": "public", "parameters": [ { - "$id": "9443", + "$id": "9454", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -127472,13 +127625,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStore.accept" }, { - "$id": "9444", + "$id": "9455", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to delete.", "type": { - "$id": "9445", + "$id": "9456", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127502,7 +127655,7 @@ 200 ], "bodyType": { - "$ref": "6688" + "$ref": "6699" }, "headers": [], "isErrorResponse": false, @@ -127522,7 +127675,7 @@ }, "parameters": [ { - "$id": "9446", + "$id": "9457", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -127539,13 +127692,13 @@ "decorators": [] }, { - "$id": "9447", + "$id": "9458", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to delete.", "type": { - "$id": "9448", + "$id": "9459", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127563,7 +127716,7 @@ ], "response": { "type": { - "$ref": "6688" + "$ref": "6699" } }, "isOverride": false, @@ -127572,21 +127725,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStore" }, { - "$id": "9449", + "$id": "9460", "kind": "basic", "name": "AddFileBatchToVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Create a vector store file batch.", "operation": { - "$id": "9450", + "$id": "9461", "name": "AddFileBatchToVectorStore", "resourceName": "VectorStores", "summary": "Create a vector store file batch.", "accessibility": "public", "parameters": [ { - "$id": "9451", + "$id": "9462", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -127602,13 +127755,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFileBatch.accept" }, { - "$id": "9452", + "$id": "9463", "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": "9453", + "$id": "9464", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127626,7 +127779,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFileBatch.vector_store_id" }, { - "$id": "9454", + "$id": "9465", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -127643,12 +127796,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFileBatch.contentType" }, { - "$id": "9455", + "$id": "9466", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6694" + "$ref": "6705" }, "isApiVersion": false, "contentTypes": [ @@ -127668,7 +127821,7 @@ 200 ], "bodyType": { - "$ref": "6699" + "$ref": "6710" }, "headers": [], "isErrorResponse": false, @@ -127691,7 +127844,7 @@ }, "parameters": [ { - "$id": "9456", + "$id": "9467", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -127708,13 +127861,13 @@ "decorators": [] }, { - "$id": "9457", + "$id": "9468", "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": "9458", + "$id": "9469", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127730,12 +127883,12 @@ "decorators": [] }, { - "$id": "9459", + "$id": "9470", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6694" + "$ref": "6705" }, "location": "Body", "isApiVersion": false, @@ -127747,7 +127900,7 @@ "decorators": [] }, { - "$id": "9460", + "$id": "9471", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -127767,7 +127920,7 @@ ], "response": { "type": { - "$ref": "6699" + "$ref": "6710" } }, "isOverride": false, @@ -127776,21 +127929,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFileBatch" }, { - "$id": "9461", + "$id": "9472", "kind": "basic", "name": "getVectorStoreFileBatch", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a vector store file batch.", "operation": { - "$id": "9462", + "$id": "9473", "name": "getVectorStoreFileBatch", "resourceName": "VectorStores", "summary": "Retrieves a vector store file batch.", "accessibility": "public", "parameters": [ { - "$id": "9463", + "$id": "9474", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -127806,13 +127959,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFileBatch.accept" }, { - "$id": "9464", + "$id": "9475", "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": "9465", + "$id": "9476", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127830,13 +127983,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFileBatch.vector_store_id" }, { - "$id": "9466", + "$id": "9477", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch being retrieved.", "type": { - "$id": "9467", + "$id": "9478", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127860,7 +128013,7 @@ 200 ], "bodyType": { - "$ref": "6699" + "$ref": "6710" }, "headers": [], "isErrorResponse": false, @@ -127880,7 +128033,7 @@ }, "parameters": [ { - "$id": "9468", + "$id": "9479", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -127897,13 +128050,13 @@ "decorators": [] }, { - "$id": "9469", + "$id": "9480", "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": "9470", + "$id": "9481", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127919,13 +128072,13 @@ "decorators": [] }, { - "$id": "9471", + "$id": "9482", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch being retrieved.", "type": { - "$id": "9472", + "$id": "9483", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127943,7 +128096,7 @@ ], "response": { "type": { - "$ref": "6699" + "$ref": "6710" } }, "isOverride": false, @@ -127952,21 +128105,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFileBatch" }, { - "$id": "9473", + "$id": "9484", "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": "9474", + "$id": "9485", "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": "9475", + "$id": "9486", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -127982,13 +128135,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.cancelVectorStoreFileBatch.accept" }, { - "$id": "9476", + "$id": "9487", "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": "9477", + "$id": "9488", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128006,13 +128159,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.cancelVectorStoreFileBatch.vector_store_id" }, { - "$id": "9478", + "$id": "9489", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch to cancel.", "type": { - "$id": "9479", + "$id": "9490", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128036,7 +128189,7 @@ 200 ], "bodyType": { - "$ref": "6699" + "$ref": "6710" }, "headers": [], "isErrorResponse": false, @@ -128056,7 +128209,7 @@ }, "parameters": [ { - "$id": "9480", + "$id": "9491", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -128073,13 +128226,13 @@ "decorators": [] }, { - "$id": "9481", + "$id": "9492", "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": "9482", + "$id": "9493", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128095,13 +128248,13 @@ "decorators": [] }, { - "$id": "9483", + "$id": "9494", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch to cancel.", "type": { - "$id": "9484", + "$id": "9495", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128119,7 +128272,7 @@ ], "response": { "type": { - "$ref": "6699" + "$ref": "6710" } }, "isOverride": false, @@ -128128,21 +128281,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.cancelVectorStoreFileBatch" }, { - "$id": "9485", + "$id": "9496", "kind": "paging", "name": "GetVectorStoreFilesInBatch", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of vector store files in a batch.", "operation": { - "$id": "9486", + "$id": "9497", "name": "GetVectorStoreFilesInBatch", "resourceName": "VectorStores", "summary": "Returns a list of vector store files in a batch.", "accessibility": "public", "parameters": [ { - "$id": "9487", + "$id": "9498", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -128158,13 +128311,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listFilesInVectorStoreBatch.accept" }, { - "$id": "9488", + "$id": "9499", "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": "9489", + "$id": "9500", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128182,13 +128335,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listFilesInVectorStoreBatch.vector_store_id" }, { - "$id": "9490", + "$id": "9501", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch that the files belong to.", "type": { - "$id": "9491", + "$id": "9502", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128206,13 +128359,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listFilesInVectorStoreBatch.batch_id" }, { - "$id": "9492", + "$id": "9503", "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": "9493", + "$id": "9504", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -128227,7 +128380,7 @@ "readOnly": false }, { - "$id": "9494", + "$id": "9505", "kind": "query", "name": "order", "serializedName": "order", @@ -128244,13 +128397,13 @@ "readOnly": false }, { - "$id": "9495", + "$id": "9506", "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": "9496", + "$id": "9507", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128265,13 +128418,13 @@ "readOnly": false }, { - "$id": "9497", + "$id": "9508", "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": "9498", + "$id": "9509", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128286,7 +128439,7 @@ "readOnly": false }, { - "$id": "9499", + "$id": "9510", "kind": "query", "name": "filter", "serializedName": "filter", @@ -128309,7 +128462,7 @@ 200 ], "bodyType": { - "$ref": "6721" + "$ref": "6732" }, "headers": [], "isErrorResponse": false, @@ -128329,7 +128482,7 @@ }, "parameters": [ { - "$id": "9500", + "$id": "9511", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -128346,13 +128499,13 @@ "decorators": [] }, { - "$id": "9501", + "$id": "9512", "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": "9502", + "$id": "9513", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128368,13 +128521,13 @@ "decorators": [] }, { - "$id": "9503", + "$id": "9514", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch that the files belong to.", "type": { - "$id": "9504", + "$id": "9515", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128390,13 +128543,13 @@ "decorators": [] }, { - "$id": "9505", + "$id": "9516", "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": "9506", + "$id": "9517", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -128412,7 +128565,7 @@ "decorators": [] }, { - "$id": "9507", + "$id": "9518", "kind": "method", "name": "order", "serializedName": "order", @@ -128430,13 +128583,13 @@ "decorators": [] }, { - "$id": "9508", + "$id": "9519", "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": "9509", + "$id": "9520", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128452,13 +128605,13 @@ "decorators": [] }, { - "$id": "9510", + "$id": "9521", "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": "9511", + "$id": "9522", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128474,7 +128627,7 @@ "decorators": [] }, { - "$id": "9512", + "$id": "9523", "kind": "method", "name": "filter", "serializedName": "filter", @@ -128494,7 +128647,7 @@ ], "response": { "type": { - "$ref": "6724" + "$ref": "6735" }, "resultSegments": [ "data" @@ -128510,7 +128663,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9495" + "$ref": "9506" }, "responseSegments": [ "last_id" @@ -128520,21 +128673,21 @@ } }, { - "$id": "9513", + "$id": "9524", "kind": "paging", "name": "listVectorStoreFiles", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of vector store files.", "operation": { - "$id": "9514", + "$id": "9525", "name": "listVectorStoreFiles", "resourceName": "VectorStores", "summary": "Returns a list of vector store files.", "accessibility": "public", "parameters": [ { - "$id": "9515", + "$id": "9526", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -128550,13 +128703,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listVectorStoreFiles.accept" }, { - "$id": "9516", + "$id": "9527", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the files belong to.", "type": { - "$id": "9517", + "$id": "9528", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128574,13 +128727,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listVectorStoreFiles.vector_store_id" }, { - "$id": "9518", + "$id": "9529", "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": "9519", + "$id": "9530", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -128595,7 +128748,7 @@ "readOnly": false }, { - "$id": "9520", + "$id": "9531", "kind": "query", "name": "order", "serializedName": "order", @@ -128612,13 +128765,13 @@ "readOnly": false }, { - "$id": "9521", + "$id": "9532", "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": "9522", + "$id": "9533", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128633,13 +128786,13 @@ "readOnly": false }, { - "$id": "9523", + "$id": "9534", "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": "9524", + "$id": "9535", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128654,7 +128807,7 @@ "readOnly": false }, { - "$id": "9525", + "$id": "9536", "kind": "query", "name": "filter", "serializedName": "filter", @@ -128677,7 +128830,7 @@ 200 ], "bodyType": { - "$ref": "6721" + "$ref": "6732" }, "headers": [], "isErrorResponse": false, @@ -128697,7 +128850,7 @@ }, "parameters": [ { - "$id": "9526", + "$id": "9537", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -128714,13 +128867,13 @@ "decorators": [] }, { - "$id": "9527", + "$id": "9538", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the files belong to.", "type": { - "$id": "9528", + "$id": "9539", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128736,13 +128889,13 @@ "decorators": [] }, { - "$id": "9529", + "$id": "9540", "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": "9530", + "$id": "9541", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -128758,7 +128911,7 @@ "decorators": [] }, { - "$id": "9531", + "$id": "9542", "kind": "method", "name": "order", "serializedName": "order", @@ -128776,13 +128929,13 @@ "decorators": [] }, { - "$id": "9532", + "$id": "9543", "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": "9533", + "$id": "9544", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128798,13 +128951,13 @@ "decorators": [] }, { - "$id": "9534", + "$id": "9545", "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": "9535", + "$id": "9546", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128820,7 +128973,7 @@ "decorators": [] }, { - "$id": "9536", + "$id": "9547", "kind": "method", "name": "filter", "serializedName": "filter", @@ -128840,7 +128993,7 @@ ], "response": { "type": { - "$ref": "6724" + "$ref": "6735" }, "resultSegments": [ "data" @@ -128856,7 +129009,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9521" + "$ref": "9532" }, "responseSegments": [ "last_id" @@ -128866,21 +129019,21 @@ } }, { - "$id": "9537", + "$id": "9548", "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": "9538", + "$id": "9549", "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": "9539", + "$id": "9550", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -128896,13 +129049,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFile.accept" }, { - "$id": "9540", + "$id": "9551", "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": "9541", + "$id": "9552", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128920,7 +129073,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFile.vector_store_id" }, { - "$id": "9542", + "$id": "9553", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -128937,12 +129090,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFile.contentType" }, { - "$id": "9543", + "$id": "9554", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6765" + "$ref": "6776" }, "isApiVersion": false, "contentTypes": [ @@ -128962,7 +129115,7 @@ 200 ], "bodyType": { - "$ref": "6725" + "$ref": "6736" }, "headers": [], "isErrorResponse": false, @@ -128985,7 +129138,7 @@ }, "parameters": [ { - "$id": "9544", + "$id": "9555", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -129002,13 +129155,13 @@ "decorators": [] }, { - "$id": "9545", + "$id": "9556", "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": "9546", + "$id": "9557", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129024,12 +129177,12 @@ "decorators": [] }, { - "$id": "9547", + "$id": "9558", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6765" + "$ref": "6776" }, "location": "Body", "isApiVersion": false, @@ -129041,7 +129194,7 @@ "decorators": [] }, { - "$id": "9548", + "$id": "9559", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -129061,7 +129214,7 @@ ], "response": { "type": { - "$ref": "6725" + "$ref": "6736" } }, "isOverride": false, @@ -129070,21 +129223,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFile" }, { - "$id": "9549", + "$id": "9560", "kind": "basic", "name": "getVectorStoreFile", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a vector store file.", "operation": { - "$id": "9550", + "$id": "9561", "name": "getVectorStoreFile", "resourceName": "VectorStores", "summary": "Retrieves a vector store file.", "accessibility": "public", "parameters": [ { - "$id": "9551", + "$id": "9562", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -129100,13 +129253,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFile.accept" }, { - "$id": "9552", + "$id": "9563", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9553", + "$id": "9564", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129124,13 +129277,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFile.vector_store_id" }, { - "$id": "9554", + "$id": "9565", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file being retrieved.", "type": { - "$id": "9555", + "$id": "9566", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129154,7 +129307,7 @@ 200 ], "bodyType": { - "$ref": "6725" + "$ref": "6736" }, "headers": [], "isErrorResponse": false, @@ -129174,7 +129327,7 @@ }, "parameters": [ { - "$id": "9556", + "$id": "9567", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -129191,13 +129344,13 @@ "decorators": [] }, { - "$id": "9557", + "$id": "9568", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9558", + "$id": "9569", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129213,13 +129366,13 @@ "decorators": [] }, { - "$id": "9559", + "$id": "9570", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file being retrieved.", "type": { - "$id": "9560", + "$id": "9571", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129237,7 +129390,7 @@ ], "response": { "type": { - "$ref": "6725" + "$ref": "6736" } }, "isOverride": false, @@ -129246,21 +129399,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFile" }, { - "$id": "9561", + "$id": "9572", "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": "9562", + "$id": "9573", "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": "9563", + "$id": "9574", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -129276,13 +129429,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStoreFile.accept" }, { - "$id": "9564", + "$id": "9575", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9565", + "$id": "9576", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129300,13 +129453,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStoreFile.vector_store_id" }, { - "$id": "9566", + "$id": "9577", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to delete.", "type": { - "$id": "9567", + "$id": "9578", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129330,7 +129483,7 @@ 200 ], "bodyType": { - "$ref": "6771" + "$ref": "6782" }, "headers": [], "isErrorResponse": false, @@ -129350,7 +129503,7 @@ }, "parameters": [ { - "$id": "9568", + "$id": "9579", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -129367,13 +129520,13 @@ "decorators": [] }, { - "$id": "9569", + "$id": "9580", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9570", + "$id": "9581", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129389,13 +129542,13 @@ "decorators": [] }, { - "$id": "9571", + "$id": "9582", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to delete.", "type": { - "$id": "9572", + "$id": "9583", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129413,7 +129566,7 @@ ], "response": { "type": { - "$ref": "6771" + "$ref": "6782" } }, "isOverride": false, @@ -129422,27 +129575,27 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStoreFile" }, { - "$id": "9573", + "$id": "9584", "kind": "basic", "name": "updateVectorStoreFileAttributes", "accessibility": "public", "apiVersions": [], "summary": "Update the attributes of a vector store file.", "operation": { - "$id": "9574", + "$id": "9585", "name": "updateVectorStoreFileAttributes", "resourceName": "VectorStores", "summary": "Update the attributes of a vector store file.", "accessibility": "public", "parameters": [ { - "$id": "9575", + "$id": "9586", "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": "9576", + "$id": "9587", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129460,13 +129613,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes.vector_store_id" }, { - "$id": "9577", + "$id": "9588", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to update attributes for.", "type": { - "$id": "9578", + "$id": "9589", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129484,7 +129637,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes.file_id" }, { - "$id": "9579", + "$id": "9590", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -129501,7 +129654,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes.contentType" }, { - "$id": "9580", + "$id": "9591", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -129517,12 +129670,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes.accept" }, { - "$id": "9581", + "$id": "9592", "kind": "body", "name": "updateVectorStoreFileAttributesRequest", "serializedName": "updateVectorStoreFileAttributesRequest", "type": { - "$ref": "6777" + "$ref": "6788" }, "isApiVersion": false, "contentTypes": [ @@ -129542,7 +129695,7 @@ 200 ], "bodyType": { - "$ref": "6725" + "$ref": "6736" }, "headers": [], "isErrorResponse": false, @@ -129565,13 +129718,13 @@ }, "parameters": [ { - "$id": "9582", + "$id": "9593", "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": "9583", + "$id": "9594", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129587,13 +129740,13 @@ "decorators": [] }, { - "$id": "9584", + "$id": "9595", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to update attributes for.", "type": { - "$id": "9585", + "$id": "9596", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129609,12 +129762,12 @@ "decorators": [] }, { - "$id": "9586", + "$id": "9597", "kind": "method", "name": "attributes", "serializedName": "attributes", "type": { - "$ref": "6779" + "$ref": "6790" }, "location": "Body", "isApiVersion": false, @@ -129626,7 +129779,7 @@ "decorators": [] }, { - "$id": "9587", + "$id": "9598", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -129644,7 +129797,7 @@ "decorators": [] }, { - "$id": "9588", + "$id": "9599", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -129663,7 +129816,7 @@ ], "response": { "type": { - "$ref": "6725" + "$ref": "6736" } }, "isOverride": false, @@ -129672,27 +129825,27 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes" }, { - "$id": "9589", + "$id": "9600", "kind": "basic", "name": "retrieveVectorStoreFileContent", "accessibility": "public", "apiVersions": [], "summary": "Retrieves the content of a vector store file.", "operation": { - "$id": "9590", + "$id": "9601", "name": "retrieveVectorStoreFileContent", "resourceName": "VectorStores", "summary": "Retrieves the content of a vector store file.", "accessibility": "public", "parameters": [ { - "$id": "9591", + "$id": "9602", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9592", + "$id": "9603", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129710,13 +129863,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.retrieveVectorStoreFileContent.vector_store_id" }, { - "$id": "9593", + "$id": "9604", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file with content being retrieved.", "type": { - "$id": "9594", + "$id": "9605", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129734,7 +129887,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.retrieveVectorStoreFileContent.file_id" }, { - "$id": "9595", + "$id": "9606", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -129756,7 +129909,7 @@ 200 ], "bodyType": { - "$ref": "6780" + "$ref": "6791" }, "headers": [], "isErrorResponse": false, @@ -129776,13 +129929,13 @@ }, "parameters": [ { - "$id": "9596", + "$id": "9607", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9597", + "$id": "9608", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129798,13 +129951,13 @@ "decorators": [] }, { - "$id": "9598", + "$id": "9609", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file with content being retrieved.", "type": { - "$id": "9599", + "$id": "9610", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129820,7 +129973,7 @@ "decorators": [] }, { - "$id": "9600", + "$id": "9611", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -129839,7 +129992,7 @@ ], "response": { "type": { - "$ref": "6780" + "$ref": "6791" } }, "isOverride": false, @@ -129848,27 +130001,27 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.retrieveVectorStoreFileContent" }, { - "$id": "9601", + "$id": "9612", "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": "9602", + "$id": "9613", "name": "searchVectorStore", "resourceName": "VectorStores", "summary": "Searches a vector store for relevant chunks based on a query and file attributes filter.", "accessibility": "public", "parameters": [ { - "$id": "9603", + "$id": "9614", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to search.", "type": { - "$id": "9604", + "$id": "9615", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129886,7 +130039,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.searchVectorStore.vector_store_id" }, { - "$id": "9605", + "$id": "9616", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -129903,7 +130056,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.searchVectorStore.contentType" }, { - "$id": "9606", + "$id": "9617", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -129919,12 +130072,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.searchVectorStore.accept" }, { - "$id": "9607", + "$id": "9618", "kind": "body", "name": "vectorStoreSearchRequest", "serializedName": "vectorStoreSearchRequest", "type": { - "$ref": "6798" + "$ref": "6809" }, "isApiVersion": false, "contentTypes": [ @@ -129944,7 +130097,7 @@ 200 ], "bodyType": { - "$ref": "6809" + "$ref": "6820" }, "headers": [], "isErrorResponse": false, @@ -129967,13 +130120,13 @@ }, "parameters": [ { - "$id": "9608", + "$id": "9619", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to search.", "type": { - "$id": "9609", + "$id": "9620", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129989,13 +130142,13 @@ "decorators": [] }, { - "$id": "9610", + "$id": "9621", "kind": "method", "name": "query", "serializedName": "query", "doc": "A query string for a search", "type": { - "$ref": "6800" + "$ref": "6811" }, "location": "Body", "isApiVersion": false, @@ -130007,13 +130160,13 @@ "decorators": [] }, { - "$id": "9611", + "$id": "9622", "kind": "method", "name": "rewrite_query", "serializedName": "rewrite_query", "doc": "Whether to rewrite the natural language query for vector search.", "type": { - "$id": "9612", + "$id": "9623", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -130029,13 +130182,13 @@ "decorators": [] }, { - "$id": "9613", + "$id": "9624", "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": "9614", + "$id": "9625", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -130051,13 +130204,13 @@ "decorators": [] }, { - "$id": "9615", + "$id": "9626", "kind": "method", "name": "filters", "serializedName": "filters", "doc": "A filter to apply based on file attributes.", "type": { - "$ref": "6807" + "$ref": "6818" }, "location": "Body", "isApiVersion": false, @@ -130069,13 +130222,13 @@ "decorators": [] }, { - "$id": "9616", + "$id": "9627", "kind": "method", "name": "ranking_options", "serializedName": "ranking_options", "doc": "Ranking options for search.", "type": { - "$ref": "6794" + "$ref": "6805" }, "location": "Body", "isApiVersion": false, @@ -130087,7 +130240,7 @@ "decorators": [] }, { - "$id": "9617", + "$id": "9628", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -130105,7 +130258,7 @@ "decorators": [] }, { - "$id": "9618", + "$id": "9629", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -130124,7 +130277,7 @@ ], "response": { "type": { - "$ref": "6809" + "$ref": "6820" } }, "isOverride": false, @@ -130135,13 +130288,13 @@ ], "parameters": [ { - "$id": "9619", + "$id": "9630", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9620", + "$id": "9631", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -130152,7 +130305,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9621", + "$id": "9632", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -130170,31 +130323,31 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores", "apiVersions": [], "parent": { - "$ref": "8260" + "$ref": "8271" } }, { - "$id": "9622", + "$id": "9633", "kind": "client", "name": "Completions", "namespace": "OpenAI", "methods": [ { - "$id": "9623", + "$id": "9634", "kind": "basic", "name": "createCompletion", "accessibility": "public", "apiVersions": [], "summary": "Creates a completion for the provided prompt and parameters.", "operation": { - "$id": "9624", + "$id": "9635", "name": "createCompletion", "resourceName": "Completions", "summary": "Creates a completion for the provided prompt and parameters.", "accessibility": "public", "parameters": [ { - "$id": "9625", + "$id": "9636", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -130210,7 +130363,7 @@ "crossLanguageDefinitionId": "OpenAI.Completions.createCompletion.accept" }, { - "$id": "9626", + "$id": "9637", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -130227,12 +130380,12 @@ "crossLanguageDefinitionId": "OpenAI.Completions.createCompletion.contentType" }, { - "$id": "9627", + "$id": "9638", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6834" + "$ref": "6845" }, "isApiVersion": false, "contentTypes": [ @@ -130252,7 +130405,7 @@ 200 ], "bodyType": { - "$ref": "6884" + "$ref": "6895" }, "headers": [], "isErrorResponse": false, @@ -130275,7 +130428,7 @@ }, "parameters": [ { - "$id": "9628", + "$id": "9639", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -130292,12 +130445,12 @@ "decorators": [] }, { - "$id": "9629", + "$id": "9640", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6834" + "$ref": "6845" }, "location": "Body", "isApiVersion": false, @@ -130309,7 +130462,7 @@ "decorators": [] }, { - "$id": "9630", + "$id": "9641", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -130329,7 +130482,7 @@ ], "response": { "type": { - "$ref": "6884" + "$ref": "6895" } }, "isOverride": false, @@ -130340,13 +130493,13 @@ ], "parameters": [ { - "$id": "9631", + "$id": "9642", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9632", + "$id": "9643", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -130357,7 +130510,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9633", + "$id": "9644", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -130375,31 +130528,31 @@ "crossLanguageDefinitionId": "OpenAI.Completions", "apiVersions": [], "parent": { - "$ref": "8260" + "$ref": "8271" } }, { - "$id": "9634", + "$id": "9645", "kind": "client", "name": "Models", "namespace": "OpenAI", "methods": [ { - "$id": "9635", + "$id": "9646", "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": "9636", + "$id": "9647", "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": "9637", + "$id": "9648", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -130421,7 +130574,7 @@ 200 ], "bodyType": { - "$ref": "6915" + "$ref": "6926" }, "headers": [], "isErrorResponse": false, @@ -130441,7 +130594,7 @@ }, "parameters": [ { - "$id": "9638", + "$id": "9649", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -130460,7 +130613,7 @@ ], "response": { "type": { - "$ref": "6915" + "$ref": "6926" } }, "isOverride": false, @@ -130469,21 +130622,21 @@ "crossLanguageDefinitionId": "OpenAI.Models.listModels" }, { - "$id": "9639", + "$id": "9650", "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": "9640", + "$id": "9651", "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": "9641", + "$id": "9652", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -130499,13 +130652,13 @@ "crossLanguageDefinitionId": "OpenAI.Models.retrieveModel.accept" }, { - "$id": "9642", + "$id": "9653", "kind": "path", "name": "model", "serializedName": "model", "doc": "The ID of the model to use for this request.", "type": { - "$id": "9643", + "$id": "9654", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130529,7 +130682,7 @@ 200 ], "bodyType": { - "$ref": "6919" + "$ref": "6930" }, "headers": [], "isErrorResponse": false, @@ -130549,7 +130702,7 @@ }, "parameters": [ { - "$id": "9644", + "$id": "9655", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -130566,13 +130719,13 @@ "decorators": [] }, { - "$id": "9645", + "$id": "9656", "kind": "method", "name": "model", "serializedName": "model", "doc": "The ID of the model to use for this request.", "type": { - "$id": "9646", + "$id": "9657", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130590,7 +130743,7 @@ ], "response": { "type": { - "$ref": "6919" + "$ref": "6930" } }, "isOverride": false, @@ -130599,21 +130752,21 @@ "crossLanguageDefinitionId": "OpenAI.Models.retrieveModel" }, { - "$id": "9647", + "$id": "9658", "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": "9648", + "$id": "9659", "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": "9649", + "$id": "9660", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -130629,13 +130782,13 @@ "crossLanguageDefinitionId": "OpenAI.Models.deleteModel.accept" }, { - "$id": "9650", + "$id": "9661", "kind": "path", "name": "model", "serializedName": "model", "doc": "The model to delete", "type": { - "$id": "9651", + "$id": "9662", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130659,7 +130812,7 @@ 200 ], "bodyType": { - "$ref": "6928" + "$ref": "6939" }, "headers": [], "isErrorResponse": false, @@ -130679,7 +130832,7 @@ }, "parameters": [ { - "$id": "9652", + "$id": "9663", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -130696,13 +130849,13 @@ "decorators": [] }, { - "$id": "9653", + "$id": "9664", "kind": "method", "name": "model", "serializedName": "model", "doc": "The model to delete", "type": { - "$id": "9654", + "$id": "9665", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130720,7 +130873,7 @@ ], "response": { "type": { - "$ref": "6928" + "$ref": "6939" } }, "isOverride": false, @@ -130731,13 +130884,13 @@ ], "parameters": [ { - "$id": "9655", + "$id": "9666", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9656", + "$id": "9667", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -130748,7 +130901,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9657", + "$id": "9668", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -130766,31 +130919,31 @@ "crossLanguageDefinitionId": "OpenAI.Models", "apiVersions": [], "parent": { - "$ref": "8260" + "$ref": "8271" } }, { - "$id": "9658", + "$id": "9669", "kind": "client", "name": "Realtime", "namespace": "OpenAI", "methods": [ { - "$id": "9659", + "$id": "9670", "kind": "basic", "name": "startRealtimeSession", "accessibility": "public", "apiVersions": [], "summary": "Starts a real-time session for conversation or transcription.", "operation": { - "$id": "9660", + "$id": "9671", "name": "startRealtimeSession", "resourceName": "Realtime", "summary": "Starts a real-time session for conversation or transcription.", "accessibility": "public", "parameters": [ { - "$id": "9661", + "$id": "9672", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -130806,7 +130959,7 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.startRealtimeSession.openAIBeta" }, { - "$id": "9662", + "$id": "9673", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -130823,7 +130976,7 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.startRealtimeSession.contentType" }, { - "$id": "9663", + "$id": "9674", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -130839,16 +130992,16 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.startRealtimeSession.accept" }, { - "$id": "9664", + "$id": "9675", "kind": "body", "name": "requestMessages", "serializedName": "requestMessages", "type": { - "$id": "9665", + "$id": "9676", "kind": "array", "name": "ArrayRealtimeClientEvent", "valueType": { - "$ref": "6934" + "$ref": "6945" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -130871,11 +131024,11 @@ 200 ], "bodyType": { - "$id": "9666", + "$id": "9677", "kind": "array", "name": "ArrayRealtimeServerEvent", "valueType": { - "$ref": "7231" + "$ref": "7242" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -130901,7 +131054,7 @@ }, "parameters": [ { - "$id": "9667", + "$id": "9678", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -130918,12 +131071,12 @@ "decorators": [] }, { - "$id": "9668", + "$id": "9679", "kind": "method", "name": "requestMessages", "serializedName": "requestMessages", "type": { - "$ref": "9665" + "$ref": "9676" }, "location": "Body", "isApiVersion": false, @@ -130935,7 +131088,7 @@ "decorators": [] }, { - "$id": "9669", + "$id": "9680", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -130953,7 +131106,7 @@ "decorators": [] }, { - "$id": "9670", + "$id": "9681", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -130972,7 +131125,7 @@ ], "response": { "type": { - "$ref": "9666" + "$ref": "9677" } }, "isOverride": false, @@ -130981,21 +131134,21 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.startRealtimeSession" }, { - "$id": "9671", + "$id": "9682", "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": "9672", + "$id": "9683", "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": "9673", + "$id": "9684", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -131012,7 +131165,7 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralToken.contentType" }, { - "$id": "9674", + "$id": "9685", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -131028,12 +131181,12 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralToken.accept" }, { - "$id": "9675", + "$id": "9686", "kind": "body", "name": "request", "serializedName": "request", "type": { - "$ref": "7715" + "$ref": "7726" }, "isApiVersion": false, "contentTypes": [ @@ -131053,7 +131206,7 @@ 200 ], "bodyType": { - "$ref": "7775" + "$ref": "7786" }, "headers": [], "isErrorResponse": false, @@ -131076,12 +131229,12 @@ }, "parameters": [ { - "$id": "9676", + "$id": "9687", "kind": "method", "name": "request", "serializedName": "request", "type": { - "$ref": "7715" + "$ref": "7726" }, "location": "Body", "isApiVersion": false, @@ -131093,7 +131246,7 @@ "decorators": [] }, { - "$id": "9677", + "$id": "9688", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -131111,7 +131264,7 @@ "decorators": [] }, { - "$id": "9678", + "$id": "9689", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -131130,7 +131283,7 @@ ], "response": { "type": { - "$ref": "7775" + "$ref": "7786" } }, "isOverride": false, @@ -131139,21 +131292,21 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralToken" }, { - "$id": "9679", + "$id": "9690", "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": "9680", + "$id": "9691", "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": "9681", + "$id": "9692", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -131170,7 +131323,7 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralTranscriptionToken.contentType" }, { - "$id": "9682", + "$id": "9693", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -131186,12 +131339,12 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralTranscriptionToken.accept" }, { - "$id": "9683", + "$id": "9694", "kind": "body", "name": "request", "serializedName": "request", "type": { - "$ref": "7194" + "$ref": "7205" }, "isApiVersion": false, "contentTypes": [ @@ -131211,7 +131364,7 @@ 200 ], "bodyType": { - "$ref": "7686" + "$ref": "7697" }, "headers": [], "isErrorResponse": false, @@ -131234,12 +131387,12 @@ }, "parameters": [ { - "$id": "9684", + "$id": "9695", "kind": "method", "name": "request", "serializedName": "request", "type": { - "$ref": "7194" + "$ref": "7205" }, "location": "Body", "isApiVersion": false, @@ -131251,7 +131404,7 @@ "decorators": [] }, { - "$id": "9685", + "$id": "9696", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -131269,7 +131422,7 @@ "decorators": [] }, { - "$id": "9686", + "$id": "9697", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -131288,7 +131441,7 @@ ], "response": { "type": { - "$ref": "7686" + "$ref": "7697" } }, "isOverride": false, @@ -131299,13 +131452,13 @@ ], "parameters": [ { - "$id": "9687", + "$id": "9698", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9688", + "$id": "9699", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -131316,7 +131469,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9689", + "$id": "9700", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -131334,31 +131487,31 @@ "crossLanguageDefinitionId": "OpenAI.Realtime", "apiVersions": [], "parent": { - "$ref": "8260" + "$ref": "8271" } }, { - "$id": "9690", + "$id": "9701", "kind": "client", "name": "Uploads", "namespace": "OpenAI", "methods": [ { - "$id": "9691", + "$id": "9702", "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": "9692", + "$id": "9703", "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": "9693", + "$id": "9704", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -131374,7 +131527,7 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.createUpload.accept" }, { - "$id": "9694", + "$id": "9705", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -131391,12 +131544,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.createUpload.contentType" }, { - "$id": "9695", + "$id": "9706", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7822" + "$ref": "7833" }, "isApiVersion": false, "contentTypes": [ @@ -131416,7 +131569,7 @@ 200 ], "bodyType": { - "$ref": "7830" + "$ref": "7841" }, "headers": [], "isErrorResponse": false, @@ -131439,7 +131592,7 @@ }, "parameters": [ { - "$id": "9696", + "$id": "9707", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -131456,12 +131609,12 @@ "decorators": [] }, { - "$id": "9697", + "$id": "9708", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7822" + "$ref": "7833" }, "location": "Body", "isApiVersion": false, @@ -131473,7 +131626,7 @@ "decorators": [] }, { - "$id": "9698", + "$id": "9709", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -131493,7 +131646,7 @@ ], "response": { "type": { - "$ref": "7830" + "$ref": "7841" } }, "isOverride": false, @@ -131502,21 +131655,21 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.createUpload" }, { - "$id": "9699", + "$id": "9710", "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": "9700", + "$id": "9711", "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": "9701", + "$id": "9712", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -131532,7 +131685,7 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.addUploadPart.accept" }, { - "$id": "9702", + "$id": "9713", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -131548,12 +131701,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.addUploadPart.contentType" }, { - "$id": "9703", + "$id": "9714", "kind": "path", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9704", + "$id": "9715", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131571,12 +131724,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.addUploadPart.upload_id" }, { - "$id": "9705", + "$id": "9716", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7849" + "$ref": "7860" }, "isApiVersion": false, "contentTypes": [ @@ -131596,7 +131749,7 @@ 200 ], "bodyType": { - "$ref": "7852" + "$ref": "7863" }, "headers": [], "isErrorResponse": false, @@ -131619,7 +131772,7 @@ }, "parameters": [ { - "$id": "9706", + "$id": "9717", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -131636,7 +131789,7 @@ "decorators": [] }, { - "$id": "9707", + "$id": "9718", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -131653,12 +131806,12 @@ "decorators": [] }, { - "$id": "9708", + "$id": "9719", "kind": "method", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9709", + "$id": "9720", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131674,12 +131827,12 @@ "decorators": [] }, { - "$id": "9710", + "$id": "9721", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7849" + "$ref": "7860" }, "location": "Body", "isApiVersion": false, @@ -131693,7 +131846,7 @@ ], "response": { "type": { - "$ref": "7852" + "$ref": "7863" } }, "isOverride": false, @@ -131702,21 +131855,21 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.addUploadPart" }, { - "$id": "9711", + "$id": "9722", "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": "9712", + "$id": "9723", "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": "9713", + "$id": "9724", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -131732,12 +131885,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.completeUpload.accept" }, { - "$id": "9714", + "$id": "9725", "kind": "path", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9715", + "$id": "9726", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131755,7 +131908,7 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.completeUpload.upload_id" }, { - "$id": "9716", + "$id": "9727", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -131772,12 +131925,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.completeUpload.contentType" }, { - "$id": "9717", + "$id": "9728", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7861" + "$ref": "7872" }, "isApiVersion": false, "contentTypes": [ @@ -131797,7 +131950,7 @@ 200 ], "bodyType": { - "$ref": "7830" + "$ref": "7841" }, "headers": [], "isErrorResponse": false, @@ -131820,7 +131973,7 @@ }, "parameters": [ { - "$id": "9718", + "$id": "9729", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -131837,12 +131990,12 @@ "decorators": [] }, { - "$id": "9719", + "$id": "9730", "kind": "method", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9720", + "$id": "9731", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131858,12 +132011,12 @@ "decorators": [] }, { - "$id": "9721", + "$id": "9732", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7861" + "$ref": "7872" }, "location": "Body", "isApiVersion": false, @@ -131875,7 +132028,7 @@ "decorators": [] }, { - "$id": "9722", + "$id": "9733", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -131895,7 +132048,7 @@ ], "response": { "type": { - "$ref": "7830" + "$ref": "7841" } }, "isOverride": false, @@ -131904,21 +132057,21 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.completeUpload" }, { - "$id": "9723", + "$id": "9734", "kind": "basic", "name": "cancelUpload", "accessibility": "public", "apiVersions": [], "summary": "Cancels the Upload. No Parts may be added after an Upload is cancelled.", "operation": { - "$id": "9724", + "$id": "9735", "name": "cancelUpload", "resourceName": "Uploads", "summary": "Cancels the Upload. No Parts may be added after an Upload is cancelled.", "accessibility": "public", "parameters": [ { - "$id": "9725", + "$id": "9736", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -131934,12 +132087,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.cancelUpload.accept" }, { - "$id": "9726", + "$id": "9737", "kind": "path", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9727", + "$id": "9738", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131963,7 +132116,7 @@ 200 ], "bodyType": { - "$ref": "7830" + "$ref": "7841" }, "headers": [], "isErrorResponse": false, @@ -131983,7 +132136,7 @@ }, "parameters": [ { - "$id": "9728", + "$id": "9739", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -132000,12 +132153,12 @@ "decorators": [] }, { - "$id": "9729", + "$id": "9740", "kind": "method", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9730", + "$id": "9741", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132023,7 +132176,7 @@ ], "response": { "type": { - "$ref": "7830" + "$ref": "7841" } }, "isOverride": false, @@ -132034,13 +132187,13 @@ ], "parameters": [ { - "$id": "9731", + "$id": "9742", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9732", + "$id": "9743", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -132051,7 +132204,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9733", + "$id": "9744", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -132069,17 +132222,17 @@ "crossLanguageDefinitionId": "OpenAI.Uploads", "apiVersions": [], "parent": { - "$ref": "8260" + "$ref": "8271" } }, { - "$id": "9734", + "$id": "9745", "kind": "client", "name": "Conversations", "namespace": "OpenAI", "methods": [ { - "$id": "9735", + "$id": "9746", "kind": "paging", "name": "GetConversationItems", "accessibility": "public", @@ -132087,7 +132240,7 @@ "doc": "List all items for a conversation with the given ID.", "summary": "List items", "operation": { - "$id": "9736", + "$id": "9747", "name": "GetConversationItems", "resourceName": "OpenAI", "summary": "List items", @@ -132095,13 +132248,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9737", + "$id": "9748", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to list items for.", "type": { - "$id": "9738", + "$id": "9749", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132119,13 +132272,13 @@ "crossLanguageDefinitionId": "OpenAI.listConversationItems.conversation_id" }, { - "$id": "9739", + "$id": "9750", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of objects to be returned. Limit can range between\n1 and 100, and the default is 20.", "type": { - "$id": "9740", + "$id": "9751", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -132140,18 +132293,18 @@ "readOnly": false }, { - "$id": "9741", + "$id": "9752", "kind": "query", "name": "order", "serializedName": "order", "doc": "The order to return the input items in. Default is `desc`.\n- `asc`: Return the input items in ascending order.\n- `desc`: Return the input items in descending order.", "type": { - "$id": "9742", + "$id": "9753", "kind": "enum", "name": "ListConversationItemsRequestOrder", "crossLanguageDefinitionId": "OpenAI.listConversationItems.RequestOrder.anonymous", "valueType": { - "$id": "9743", + "$id": "9754", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132159,28 +132312,28 @@ }, "values": [ { - "$id": "9744", + "$id": "9755", "kind": "enumvalue", "name": "asc", "value": "asc", "valueType": { - "$ref": "9743" + "$ref": "9754" }, "enumType": { - "$ref": "9742" + "$ref": "9753" }, "decorators": [] }, { - "$id": "9745", + "$id": "9756", "kind": "enumvalue", "name": "desc", "value": "desc", "valueType": { - "$ref": "9743" + "$ref": "9754" }, "enumType": { - "$ref": "9742" + "$ref": "9753" }, "decorators": [] } @@ -132200,13 +132353,13 @@ "readOnly": false }, { - "$id": "9746", + "$id": "9757", "kind": "query", "name": "after", "serializedName": "after", "doc": "An item ID to list items after, used in pagination.", "type": { - "$id": "9747", + "$id": "9758", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132221,22 +132374,22 @@ "readOnly": false }, { - "$id": "9748", + "$id": "9759", "kind": "query", "name": "include", "serializedName": "include", "doc": "Specify additional output data to include in the model response. Currently supported values are:\n- `web_search_call.action.sources`: Include the sources of the web search tool call.\n- `code_interpreter_call.outputs`: Includes the outputs of python code execution in code interpreter tool call items.\n- `computer_call_output.output.image_url`: Include image urls from the computer call output.\n- `file_search_call.results`: Include the search results of the file search tool call.\n- `message.input_image.image_url`: Include image urls from the input message.\n- `message.output_text.logprobs`: Include logprobs with assistant messages.\n- `reasoning.encrypted_content`: Includes an encrypted version of reasoning tokens in reasoning item outputs. This enables reasoning items to be used in multi-turn conversations when using the Responses API statelessly (like when the `store` parameter is set to `false`, or when an organization is enrolled in the zero data retention program).", "type": { - "$id": "9749", + "$id": "9760", "kind": "array", "name": "ArrayIncludeEnum", "valueType": { - "$id": "9750", + "$id": "9761", "kind": "enum", "name": "IncludeEnum", "crossLanguageDefinitionId": "OpenAI.IncludeEnum", "valueType": { - "$id": "9751", + "$id": "9762", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132244,106 +132397,106 @@ }, "values": [ { - "$id": "9752", + "$id": "9763", "kind": "enumvalue", "name": "file_search_call.results", "value": "file_search_call.results", "valueType": { - "$ref": "9751" + "$ref": "9762" }, "enumType": { - "$ref": "9750" + "$ref": "9761" }, "decorators": [] }, { - "$id": "9753", + "$id": "9764", "kind": "enumvalue", "name": "web_search_call.results", "value": "web_search_call.results", "valueType": { - "$ref": "9751" + "$ref": "9762" }, "enumType": { - "$ref": "9750" + "$ref": "9761" }, "decorators": [] }, { - "$id": "9754", + "$id": "9765", "kind": "enumvalue", "name": "web_search_call.action.sources", "value": "web_search_call.action.sources", "valueType": { - "$ref": "9751" + "$ref": "9762" }, "enumType": { - "$ref": "9750" + "$ref": "9761" }, "decorators": [] }, { - "$id": "9755", + "$id": "9766", "kind": "enumvalue", "name": "message.input_image.image_url", "value": "message.input_image.image_url", "valueType": { - "$ref": "9751" + "$ref": "9762" }, "enumType": { - "$ref": "9750" + "$ref": "9761" }, "decorators": [] }, { - "$id": "9756", + "$id": "9767", "kind": "enumvalue", "name": "computer_call_output.output.image_url", "value": "computer_call_output.output.image_url", "valueType": { - "$ref": "9751" + "$ref": "9762" }, "enumType": { - "$ref": "9750" + "$ref": "9761" }, "decorators": [] }, { - "$id": "9757", + "$id": "9768", "kind": "enumvalue", "name": "code_interpreter_call.outputs", "value": "code_interpreter_call.outputs", "valueType": { - "$ref": "9751" + "$ref": "9762" }, "enumType": { - "$ref": "9750" + "$ref": "9761" }, "decorators": [] }, { - "$id": "9758", + "$id": "9769", "kind": "enumvalue", "name": "reasoning.encrypted_content", "value": "reasoning.encrypted_content", "valueType": { - "$ref": "9751" + "$ref": "9762" }, "enumType": { - "$ref": "9750" + "$ref": "9761" }, "decorators": [] }, { - "$id": "9759", + "$id": "9770", "kind": "enumvalue", "name": "message.output_text.logprobs", "value": "message.output_text.logprobs", "valueType": { - "$ref": "9751" + "$ref": "9762" }, "enumType": { - "$ref": "9750" + "$ref": "9761" }, "decorators": [] } @@ -132367,7 +132520,7 @@ "readOnly": false }, { - "$id": "9760", + "$id": "9771", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -132389,7 +132542,7 @@ 200 ], "bodyType": { - "$id": "9761", + "$id": "9772", "kind": "model", "name": "ConversationItemList", "namespace": "OpenAI", @@ -132400,7 +132553,7 @@ "decorators": [], "properties": [ { - "$id": "9762", + "$id": "9773", "kind": "property", "name": "object", "doc": "The type of object returned, must be `list`.", @@ -132417,12 +132570,12 @@ "isHttpMetadata": false }, { - "$id": "9763", + "$id": "9774", "kind": "property", "name": "data", "doc": "A list of conversation items.", "type": { - "$ref": "5206" + "$ref": "5217" }, "optional": false, "readOnly": false, @@ -132434,12 +132587,12 @@ "isHttpMetadata": false }, { - "$id": "9764", + "$id": "9775", "kind": "property", "name": "has_more", "doc": "Whether there are more items available.", "type": { - "$id": "9765", + "$id": "9776", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -132455,12 +132608,12 @@ "isHttpMetadata": false }, { - "$id": "9766", + "$id": "9777", "kind": "property", "name": "first_id", "doc": "The ID of the first item in the list.", "type": { - "$id": "9767", + "$id": "9778", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132476,12 +132629,12 @@ "isHttpMetadata": false }, { - "$id": "9768", + "$id": "9779", "kind": "property", "name": "last_id", "doc": "The ID of the last item in the list.", "type": { - "$id": "9769", + "$id": "9780", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132516,13 +132669,13 @@ }, "parameters": [ { - "$id": "9770", + "$id": "9781", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to list items for.", "type": { - "$id": "9771", + "$id": "9782", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132538,13 +132691,13 @@ "decorators": [] }, { - "$id": "9772", + "$id": "9783", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of objects to be returned. Limit can range between\n1 and 100, and the default is 20.", "type": { - "$id": "9773", + "$id": "9784", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -132560,13 +132713,13 @@ "decorators": [] }, { - "$id": "9774", + "$id": "9785", "kind": "method", "name": "order", "serializedName": "order", "doc": "The order to return the input items in. Default is `desc`.\n- `asc`: Return the input items in ascending order.\n- `desc`: Return the input items in descending order.", "type": { - "$ref": "9742" + "$ref": "9753" }, "location": "Query", "isApiVersion": false, @@ -132578,13 +132731,13 @@ "decorators": [] }, { - "$id": "9775", + "$id": "9786", "kind": "method", "name": "after", "serializedName": "after", "doc": "An item ID to list items after, used in pagination.", "type": { - "$id": "9776", + "$id": "9787", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132600,13 +132753,13 @@ "decorators": [] }, { - "$id": "9777", + "$id": "9788", "kind": "method", "name": "include", "serializedName": "include", "doc": "Specify additional output data to include in the model response. Currently supported values are:\n- `web_search_call.action.sources`: Include the sources of the web search tool call.\n- `code_interpreter_call.outputs`: Includes the outputs of python code execution in code interpreter tool call items.\n- `computer_call_output.output.image_url`: Include image urls from the computer call output.\n- `file_search_call.results`: Include the search results of the file search tool call.\n- `message.input_image.image_url`: Include image urls from the input message.\n- `message.output_text.logprobs`: Include logprobs with assistant messages.\n- `reasoning.encrypted_content`: Includes an encrypted version of reasoning tokens in reasoning item outputs. This enables reasoning items to be used in multi-turn conversations when using the Responses API statelessly (like when the `store` parameter is set to `false`, or when an organization is enrolled in the zero data retention program).", "type": { - "$ref": "9749" + "$ref": "9760" }, "location": "Query", "isApiVersion": false, @@ -132618,7 +132771,7 @@ "decorators": [] }, { - "$id": "9778", + "$id": "9789", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -132637,7 +132790,7 @@ ], "response": { "type": { - "$ref": "5206" + "$ref": "5217" }, "resultSegments": [ "data" @@ -132654,7 +132807,7 @@ } }, { - "$id": "9779", + "$id": "9790", "kind": "basic", "name": "createConversationItems", "accessibility": "public", @@ -132662,7 +132815,7 @@ "doc": "Create items in a conversation with the given ID.", "summary": "Create items", "operation": { - "$id": "9780", + "$id": "9791", "name": "createConversationItems", "resourceName": "OpenAI", "summary": "Create items", @@ -132670,13 +132823,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9781", + "$id": "9792", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to add the item to.", "type": { - "$id": "9782", + "$id": "9793", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132694,13 +132847,13 @@ "crossLanguageDefinitionId": "OpenAI.createConversationItems.conversation_id" }, { - "$id": "9783", + "$id": "9794", "kind": "query", "name": "include", "serializedName": "include", "doc": "Additional fields to include in the response. See the `include`\nparameter for [listing Conversation items above](https://platform.openai.com/docs/api-reference/conversations/list-items#conversations_list_items-include) for more information.", "type": { - "$ref": "9749" + "$ref": "9760" }, "isApiVersion": false, "explode": true, @@ -132711,7 +132864,7 @@ "readOnly": false }, { - "$id": "9784", + "$id": "9795", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -132728,7 +132881,7 @@ "crossLanguageDefinitionId": "OpenAI.createConversationItems.contentType" }, { - "$id": "9785", + "$id": "9796", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -132744,12 +132897,12 @@ "crossLanguageDefinitionId": "OpenAI.createConversationItems.accept" }, { - "$id": "9786", + "$id": "9797", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$id": "9787", + "$id": "9798", "kind": "model", "name": "CreateConversationItemsParametersBody", "namespace": "OpenAI", @@ -132758,11 +132911,11 @@ "decorators": [], "properties": [ { - "$id": "9788", + "$id": "9799", "kind": "property", "name": "items", "type": { - "$ref": "5206" + "$ref": "5217" }, "optional": false, "readOnly": false, @@ -132793,7 +132946,7 @@ 200 ], "bodyType": { - "$ref": "9761" + "$ref": "9772" }, "headers": [], "isErrorResponse": false, @@ -132816,13 +132969,13 @@ }, "parameters": [ { - "$id": "9789", + "$id": "9800", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to add the item to.", "type": { - "$id": "9790", + "$id": "9801", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132838,13 +132991,13 @@ "decorators": [] }, { - "$id": "9791", + "$id": "9802", "kind": "method", "name": "include", "serializedName": "include", "doc": "Additional fields to include in the response. See the `include`\nparameter for [listing Conversation items above](https://platform.openai.com/docs/api-reference/conversations/list-items#conversations_list_items-include) for more information.", "type": { - "$ref": "9749" + "$ref": "9760" }, "location": "Query", "isApiVersion": false, @@ -132856,12 +133009,12 @@ "decorators": [] }, { - "$id": "9792", + "$id": "9803", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "9787" + "$ref": "9798" }, "location": "Body", "isApiVersion": false, @@ -132873,7 +133026,7 @@ "decorators": [] }, { - "$id": "9793", + "$id": "9804", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -132891,7 +133044,7 @@ "decorators": [] }, { - "$id": "9794", + "$id": "9805", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -132910,7 +133063,7 @@ ], "response": { "type": { - "$ref": "9761" + "$ref": "9772" } }, "isOverride": false, @@ -132919,7 +133072,7 @@ "crossLanguageDefinitionId": "OpenAI.createConversationItems" }, { - "$id": "9795", + "$id": "9806", "kind": "basic", "name": "deleteConversationItem", "accessibility": "public", @@ -132927,7 +133080,7 @@ "doc": "Delete an item from a conversation with the given IDs.", "summary": "Delete an item", "operation": { - "$id": "9796", + "$id": "9807", "name": "deleteConversationItem", "resourceName": "OpenAI", "summary": "Delete an item", @@ -132935,13 +133088,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9797", + "$id": "9808", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation that contains the item.", "type": { - "$id": "9798", + "$id": "9809", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132959,13 +133112,13 @@ "crossLanguageDefinitionId": "OpenAI.deleteConversationItem.conversation_id" }, { - "$id": "9799", + "$id": "9810", "kind": "path", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to delete.", "type": { - "$id": "9800", + "$id": "9811", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132983,7 +133136,7 @@ "crossLanguageDefinitionId": "OpenAI.deleteConversationItem.item_id" }, { - "$id": "9801", + "$id": "9812", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -133005,7 +133158,7 @@ 200 ], "bodyType": { - "$id": "9802", + "$id": "9813", "kind": "model", "name": "ConversationResource", "namespace": "OpenAI", @@ -133014,12 +133167,12 @@ "decorators": [], "properties": [ { - "$id": "9803", + "$id": "9814", "kind": "property", "name": "id", "doc": "The unique ID of the conversation.", "type": { - "$id": "9804", + "$id": "9815", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133035,7 +133188,7 @@ "isHttpMetadata": false }, { - "$id": "9805", + "$id": "9816", "kind": "property", "name": "object", "doc": "The object type, which is always `conversation`.", @@ -133052,12 +133205,12 @@ "isHttpMetadata": false }, { - "$id": "9806", + "$id": "9817", "kind": "property", "name": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format, and querying for objects via API or the dashboard.\n Keys are strings with a maximum length of 64 characters. Values are strings with a maximum length of 512 characters.", "type": { - "$id": "9807", + "$id": "9818", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -133073,12 +133226,12 @@ "isHttpMetadata": false }, { - "$id": "9808", + "$id": "9819", "kind": "property", "name": "created_at", "doc": "The time at which the conversation was created, measured in seconds since the Unix epoch.", "type": { - "$id": "9809", + "$id": "9820", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -133113,13 +133266,13 @@ }, "parameters": [ { - "$id": "9810", + "$id": "9821", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation that contains the item.", "type": { - "$id": "9811", + "$id": "9822", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133135,13 +133288,13 @@ "decorators": [] }, { - "$id": "9812", + "$id": "9823", "kind": "method", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to delete.", "type": { - "$id": "9813", + "$id": "9824", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133157,7 +133310,7 @@ "decorators": [] }, { - "$id": "9814", + "$id": "9825", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -133176,7 +133329,7 @@ ], "response": { "type": { - "$ref": "9802" + "$ref": "9813" } }, "isOverride": false, @@ -133185,7 +133338,7 @@ "crossLanguageDefinitionId": "OpenAI.deleteConversationItem" }, { - "$id": "9815", + "$id": "9826", "kind": "basic", "name": "getConversationItem", "accessibility": "public", @@ -133193,7 +133346,7 @@ "doc": "Get a single item from a conversation with the given IDs.", "summary": "Retrieve an item", "operation": { - "$id": "9816", + "$id": "9827", "name": "getConversationItem", "resourceName": "OpenAI", "summary": "Retrieve an item", @@ -133201,13 +133354,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9817", + "$id": "9828", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation that contains the item.", "type": { - "$id": "9818", + "$id": "9829", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133225,13 +133378,13 @@ "crossLanguageDefinitionId": "OpenAI.getConversationItem.conversation_id" }, { - "$id": "9819", + "$id": "9830", "kind": "path", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to retrieve.", "type": { - "$id": "9820", + "$id": "9831", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133249,13 +133402,13 @@ "crossLanguageDefinitionId": "OpenAI.getConversationItem.item_id" }, { - "$id": "9821", + "$id": "9832", "kind": "query", "name": "include", "serializedName": "include", "doc": "Additional fields to include in the response. See the `include`\nparameter for [listing Conversation items above](https://platform.openai.com/docs/api-reference/conversations/list-items#conversations_list_items-include) for more information.", "type": { - "$ref": "9749" + "$ref": "9760" }, "isApiVersion": false, "explode": true, @@ -133266,7 +133419,7 @@ "readOnly": false }, { - "$id": "9822", + "$id": "9833", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -133288,7 +133441,7 @@ 200 ], "bodyType": { - "$ref": "5207" + "$ref": "5218" }, "headers": [], "isErrorResponse": false, @@ -133308,13 +133461,13 @@ }, "parameters": [ { - "$id": "9823", + "$id": "9834", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation that contains the item.", "type": { - "$id": "9824", + "$id": "9835", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133330,13 +133483,13 @@ "decorators": [] }, { - "$id": "9825", + "$id": "9836", "kind": "method", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to retrieve.", "type": { - "$id": "9826", + "$id": "9837", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133352,13 +133505,13 @@ "decorators": [] }, { - "$id": "9827", + "$id": "9838", "kind": "method", "name": "include", "serializedName": "include", "doc": "Additional fields to include in the response. See the `include`\nparameter for [listing Conversation items above](https://platform.openai.com/docs/api-reference/conversations/list-items#conversations_list_items-include) for more information.", "type": { - "$ref": "9749" + "$ref": "9760" }, "location": "Query", "isApiVersion": false, @@ -133370,7 +133523,7 @@ "decorators": [] }, { - "$id": "9828", + "$id": "9839", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -133389,7 +133542,7 @@ ], "response": { "type": { - "$ref": "5207" + "$ref": "5218" } }, "isOverride": false, @@ -133398,7 +133551,7 @@ "crossLanguageDefinitionId": "OpenAI.getConversationItem" }, { - "$id": "9829", + "$id": "9840", "kind": "basic", "name": "createConversation", "accessibility": "public", @@ -133406,7 +133559,7 @@ "doc": "Create a conversation.", "summary": "Create a conversation", "operation": { - "$id": "9830", + "$id": "9841", "name": "createConversation", "resourceName": "OpenAI", "summary": "Create a conversation", @@ -133414,7 +133567,7 @@ "accessibility": "public", "parameters": [ { - "$id": "9831", + "$id": "9842", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -133431,7 +133584,7 @@ "crossLanguageDefinitionId": "OpenAI.createConversation.contentType" }, { - "$id": "9832", + "$id": "9843", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -133447,12 +133600,12 @@ "crossLanguageDefinitionId": "OpenAI.createConversation.accept" }, { - "$id": "9833", + "$id": "9844", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$id": "9834", + "$id": "9845", "kind": "model", "name": "CreateConversationBody", "namespace": "OpenAI", @@ -133461,14 +133614,14 @@ "decorators": [], "properties": [ { - "$id": "9835", + "$id": "9846", "kind": "property", "name": "metadata", "type": { - "$id": "9836", + "$id": "9847", "kind": "nullable", "type": { - "$id": "9837", + "$id": "9848", "kind": "model", "name": "Metadata", "namespace": "OpenAI", @@ -133490,14 +133643,14 @@ "isHttpMetadata": false }, { - "$id": "9838", + "$id": "9849", "kind": "property", "name": "items", "type": { - "$id": "9839", + "$id": "9850", "kind": "nullable", "type": { - "$ref": "5206" + "$ref": "5217" }, "namespace": "OpenAI" }, @@ -133530,7 +133683,7 @@ 200 ], "bodyType": { - "$ref": "9802" + "$ref": "9813" }, "headers": [], "isErrorResponse": false, @@ -133553,12 +133706,12 @@ }, "parameters": [ { - "$id": "9840", + "$id": "9851", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "9834" + "$ref": "9845" }, "location": "Body", "isApiVersion": false, @@ -133570,7 +133723,7 @@ "decorators": [] }, { - "$id": "9841", + "$id": "9852", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -133588,7 +133741,7 @@ "decorators": [] }, { - "$id": "9842", + "$id": "9853", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -133607,7 +133760,7 @@ ], "response": { "type": { - "$ref": "9802" + "$ref": "9813" } }, "isOverride": false, @@ -133616,7 +133769,7 @@ "crossLanguageDefinitionId": "OpenAI.createConversation" }, { - "$id": "9843", + "$id": "9854", "kind": "basic", "name": "deleteConversation", "accessibility": "public", @@ -133624,7 +133777,7 @@ "doc": "Delete a conversation. Items in the conversation will not be deleted.", "summary": "Delete a conversation", "operation": { - "$id": "9844", + "$id": "9855", "name": "deleteConversation", "resourceName": "OpenAI", "summary": "Delete a conversation", @@ -133632,13 +133785,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9845", + "$id": "9856", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to delete.", "type": { - "$id": "9846", + "$id": "9857", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133656,7 +133809,7 @@ "crossLanguageDefinitionId": "OpenAI.deleteConversation.conversation_id" }, { - "$id": "9847", + "$id": "9858", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -133678,7 +133831,7 @@ 200 ], "bodyType": { - "$id": "9848", + "$id": "9859", "kind": "model", "name": "DeletedConversationResource", "namespace": "OpenAI", @@ -133687,7 +133840,7 @@ "decorators": [], "properties": [ { - "$id": "9849", + "$id": "9860", "kind": "property", "name": "object", "type": { @@ -133703,11 +133856,11 @@ "isHttpMetadata": false }, { - "$id": "9850", + "$id": "9861", "kind": "property", "name": "deleted", "type": { - "$id": "9851", + "$id": "9862", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -133723,11 +133876,11 @@ "isHttpMetadata": false }, { - "$id": "9852", + "$id": "9863", "kind": "property", "name": "id", "type": { - "$id": "9853", + "$id": "9864", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133762,13 +133915,13 @@ }, "parameters": [ { - "$id": "9854", + "$id": "9865", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to delete.", "type": { - "$id": "9855", + "$id": "9866", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133784,7 +133937,7 @@ "decorators": [] }, { - "$id": "9856", + "$id": "9867", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -133803,7 +133956,7 @@ ], "response": { "type": { - "$ref": "9848" + "$ref": "9859" } }, "isOverride": false, @@ -133812,7 +133965,7 @@ "crossLanguageDefinitionId": "OpenAI.deleteConversation" }, { - "$id": "9857", + "$id": "9868", "kind": "basic", "name": "getConversation", "accessibility": "public", @@ -133820,7 +133973,7 @@ "doc": "Get a conversation", "summary": "Retrieve a conversation", "operation": { - "$id": "9858", + "$id": "9869", "name": "getConversation", "resourceName": "OpenAI", "summary": "Retrieve a conversation", @@ -133828,13 +133981,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9859", + "$id": "9870", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to retrieve.", "type": { - "$id": "9860", + "$id": "9871", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133852,7 +134005,7 @@ "crossLanguageDefinitionId": "OpenAI.getConversation.conversation_id" }, { - "$id": "9861", + "$id": "9872", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -133874,7 +134027,7 @@ 200 ], "bodyType": { - "$ref": "9802" + "$ref": "9813" }, "headers": [], "isErrorResponse": false, @@ -133894,13 +134047,13 @@ }, "parameters": [ { - "$id": "9862", + "$id": "9873", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to retrieve.", "type": { - "$id": "9863", + "$id": "9874", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133916,7 +134069,7 @@ "decorators": [] }, { - "$id": "9864", + "$id": "9875", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -133935,7 +134088,7 @@ ], "response": { "type": { - "$ref": "9802" + "$ref": "9813" } }, "isOverride": false, @@ -133944,7 +134097,7 @@ "crossLanguageDefinitionId": "OpenAI.getConversation" }, { - "$id": "9865", + "$id": "9876", "kind": "basic", "name": "updateConversation", "accessibility": "public", @@ -133952,7 +134105,7 @@ "doc": "Update a conversation", "summary": "Update a conversation", "operation": { - "$id": "9866", + "$id": "9877", "name": "updateConversation", "resourceName": "OpenAI", "summary": "Update a conversation", @@ -133960,13 +134113,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9867", + "$id": "9878", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to update.", "type": { - "$id": "9868", + "$id": "9879", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133984,7 +134137,7 @@ "crossLanguageDefinitionId": "OpenAI.updateConversation.conversation_id" }, { - "$id": "9869", + "$id": "9880", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -134001,7 +134154,7 @@ "crossLanguageDefinitionId": "OpenAI.updateConversation.contentType" }, { - "$id": "9870", + "$id": "9881", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -134017,12 +134170,12 @@ "crossLanguageDefinitionId": "OpenAI.updateConversation.accept" }, { - "$id": "9871", + "$id": "9882", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$id": "9872", + "$id": "9883", "kind": "model", "name": "UpdateConversationBody", "namespace": "OpenAI", @@ -134031,15 +134184,15 @@ "decorators": [], "properties": [ { - "$id": "9873", + "$id": "9884", "kind": "property", "name": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format, and querying for objects via API or the dashboard.\n Keys are strings with a maximum length of 64 characters. Values are strings with a maximum length of 512 characters.", "type": { - "$id": "9874", + "$id": "9885", "kind": "nullable", "type": { - "$ref": "9837" + "$ref": "9848" }, "namespace": "OpenAI" }, @@ -134072,7 +134225,7 @@ 200 ], "bodyType": { - "$ref": "9802" + "$ref": "9813" }, "headers": [], "isErrorResponse": false, @@ -134095,13 +134248,13 @@ }, "parameters": [ { - "$id": "9875", + "$id": "9886", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to update.", "type": { - "$id": "9876", + "$id": "9887", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134117,12 +134270,12 @@ "decorators": [] }, { - "$id": "9877", + "$id": "9888", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "9872" + "$ref": "9883" }, "location": "Body", "isApiVersion": false, @@ -134134,7 +134287,7 @@ "decorators": [] }, { - "$id": "9878", + "$id": "9889", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -134152,7 +134305,7 @@ "decorators": [] }, { - "$id": "9879", + "$id": "9890", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -134171,7 +134324,7 @@ ], "response": { "type": { - "$ref": "9802" + "$ref": "9813" } }, "isOverride": false, @@ -134182,13 +134335,13 @@ ], "parameters": [ { - "$id": "9880", + "$id": "9891", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9881", + "$id": "9892", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -134199,7 +134352,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9882", + "$id": "9893", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -134217,17 +134370,17 @@ "crossLanguageDefinitionId": "OpenAI", "apiVersions": [], "parent": { - "$ref": "8260" + "$ref": "8271" } }, { - "$id": "9883", + "$id": "9894", "kind": "client", "name": "Videos", "namespace": "OpenAI", "methods": [ { - "$id": "9884", + "$id": "9895", "kind": "paging", "name": "ListVideos", "accessibility": "public", @@ -134235,7 +134388,7 @@ "doc": "List videos", "summary": "List videos", "operation": { - "$id": "9885", + "$id": "9896", "name": "ListVideos", "resourceName": "OpenAI", "summary": "List videos", @@ -134243,13 +134396,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9886", + "$id": "9897", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "Number of items to retrieve", "type": { - "$id": "9887", + "$id": "9898", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -134264,18 +134417,18 @@ "readOnly": false }, { - "$id": "9888", + "$id": "9899", "kind": "query", "name": "order", "serializedName": "order", "doc": "Sort order of results by timestamp. Use `asc` for ascending order or `desc` for descending order.", "type": { - "$id": "9889", + "$id": "9900", "kind": "enum", "name": "OrderEnum", "crossLanguageDefinitionId": "OpenAI.OrderEnum", "valueType": { - "$id": "9890", + "$id": "9901", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134283,28 +134436,28 @@ }, "values": [ { - "$id": "9891", + "$id": "9902", "kind": "enumvalue", "name": "asc", "value": "asc", "valueType": { - "$ref": "9890" + "$ref": "9901" }, "enumType": { - "$ref": "9889" + "$ref": "9900" }, "decorators": [] }, { - "$id": "9892", + "$id": "9903", "kind": "enumvalue", "name": "desc", "value": "desc", "valueType": { - "$ref": "9890" + "$ref": "9901" }, "enumType": { - "$ref": "9889" + "$ref": "9900" }, "decorators": [] } @@ -134324,13 +134477,13 @@ "readOnly": false }, { - "$id": "9893", + "$id": "9904", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last item from the previous pagination request", "type": { - "$id": "9894", + "$id": "9905", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134345,7 +134498,7 @@ "readOnly": false }, { - "$id": "9895", + "$id": "9906", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -134367,7 +134520,7 @@ 200 ], "bodyType": { - "$id": "9896", + "$id": "9907", "kind": "model", "name": "VideoListResource", "namespace": "OpenAI", @@ -134376,7 +134529,7 @@ "decorators": [], "properties": [ { - "$id": "9897", + "$id": "9908", "kind": "property", "name": "object", "doc": "The type of object returned, must be `list`.", @@ -134393,16 +134546,16 @@ "isHttpMetadata": false }, { - "$id": "9898", + "$id": "9909", "kind": "property", "name": "data", "doc": "A list of items", "type": { - "$id": "9899", + "$id": "9910", "kind": "array", "name": "ArrayVideoResource", "valueType": { - "$id": "9900", + "$id": "9911", "kind": "model", "name": "VideoResource", "namespace": "OpenAI", @@ -134413,12 +134566,12 @@ "decorators": [], "properties": [ { - "$id": "9901", + "$id": "9912", "kind": "property", "name": "id", "doc": "Unique identifier for the video job.", "type": { - "$id": "9902", + "$id": "9913", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134434,7 +134587,7 @@ "isHttpMetadata": false }, { - "$id": "9903", + "$id": "9914", "kind": "property", "name": "object", "doc": "The object type, which is always `video`.", @@ -134451,17 +134604,17 @@ "isHttpMetadata": false }, { - "$id": "9904", + "$id": "9915", "kind": "property", "name": "model", "doc": "The video generation model that produced the job.", "type": { - "$id": "9905", + "$id": "9916", "kind": "enum", "name": "VideoModel", "crossLanguageDefinitionId": "OpenAI.VideoModel", "valueType": { - "$id": "9906", + "$id": "9917", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134469,28 +134622,28 @@ }, "values": [ { - "$id": "9907", + "$id": "9918", "kind": "enumvalue", "name": "sora-2", "value": "sora-2", "valueType": { - "$ref": "9906" + "$ref": "9917" }, "enumType": { - "$ref": "9905" + "$ref": "9916" }, "decorators": [] }, { - "$id": "9908", + "$id": "9919", "kind": "enumvalue", "name": "sora-2-pro", "value": "sora-2-pro", "valueType": { - "$ref": "9906" + "$ref": "9917" }, "enumType": { - "$ref": "9905" + "$ref": "9916" }, "decorators": [] } @@ -134511,17 +134664,17 @@ "isHttpMetadata": false }, { - "$id": "9909", + "$id": "9920", "kind": "property", "name": "status", "doc": "Current lifecycle status of the video job.", "type": { - "$id": "9910", + "$id": "9921", "kind": "enum", "name": "VideoStatus", "crossLanguageDefinitionId": "OpenAI.VideoStatus", "valueType": { - "$id": "9911", + "$id": "9922", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134529,54 +134682,54 @@ }, "values": [ { - "$id": "9912", + "$id": "9923", "kind": "enumvalue", "name": "queued", "value": "queued", "valueType": { - "$ref": "9911" + "$ref": "9922" }, "enumType": { - "$ref": "9910" + "$ref": "9921" }, "decorators": [] }, { - "$id": "9913", + "$id": "9924", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "9911" + "$ref": "9922" }, "enumType": { - "$ref": "9910" + "$ref": "9921" }, "decorators": [] }, { - "$id": "9914", + "$id": "9925", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "9911" + "$ref": "9922" }, "enumType": { - "$ref": "9910" + "$ref": "9921" }, "decorators": [] }, { - "$id": "9915", + "$id": "9926", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "9911" + "$ref": "9922" }, "enumType": { - "$ref": "9910" + "$ref": "9921" }, "decorators": [] } @@ -134597,12 +134750,12 @@ "isHttpMetadata": false }, { - "$id": "9916", + "$id": "9927", "kind": "property", "name": "progress", "doc": "Approximate completion percentage for the generation task.", "type": { - "$id": "9917", + "$id": "9928", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -134618,12 +134771,12 @@ "isHttpMetadata": false }, { - "$id": "9918", + "$id": "9929", "kind": "property", "name": "created_at", "doc": "Unix timestamp (seconds) for when the job was created.", "type": { - "$id": "9919", + "$id": "9930", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -134639,14 +134792,14 @@ "isHttpMetadata": false }, { - "$id": "9920", + "$id": "9931", "kind": "property", "name": "completed_at", "type": { - "$id": "9921", + "$id": "9932", "kind": "nullable", "type": { - "$id": "9922", + "$id": "9933", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -134664,14 +134817,14 @@ "isHttpMetadata": false }, { - "$id": "9923", + "$id": "9934", "kind": "property", "name": "expires_at", "type": { - "$id": "9924", + "$id": "9935", "kind": "nullable", "type": { - "$id": "9925", + "$id": "9936", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -134689,17 +134842,17 @@ "isHttpMetadata": false }, { - "$id": "9926", + "$id": "9937", "kind": "property", "name": "size", "doc": "The resolution of the generated video.", "type": { - "$id": "9927", + "$id": "9938", "kind": "enum", "name": "VideoSize", "crossLanguageDefinitionId": "OpenAI.VideoSize", "valueType": { - "$id": "9928", + "$id": "9939", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134707,54 +134860,54 @@ }, "values": [ { - "$id": "9929", + "$id": "9940", "kind": "enumvalue", "name": "720x1280", "value": "720x1280", "valueType": { - "$ref": "9928" + "$ref": "9939" }, "enumType": { - "$ref": "9927" + "$ref": "9938" }, "decorators": [] }, { - "$id": "9930", + "$id": "9941", "kind": "enumvalue", "name": "1280x720", "value": "1280x720", "valueType": { - "$ref": "9928" + "$ref": "9939" }, "enumType": { - "$ref": "9927" + "$ref": "9938" }, "decorators": [] }, { - "$id": "9931", + "$id": "9942", "kind": "enumvalue", "name": "1024x1792", "value": "1024x1792", "valueType": { - "$ref": "9928" + "$ref": "9939" }, "enumType": { - "$ref": "9927" + "$ref": "9938" }, "decorators": [] }, { - "$id": "9932", + "$id": "9943", "kind": "enumvalue", "name": "1792x1024", "value": "1792x1024", "valueType": { - "$ref": "9928" + "$ref": "9939" }, "enumType": { - "$ref": "9927" + "$ref": "9938" }, "decorators": [] } @@ -134775,17 +134928,17 @@ "isHttpMetadata": false }, { - "$id": "9933", + "$id": "9944", "kind": "property", "name": "seconds", "doc": "Duration of the generated clip in seconds.", "type": { - "$id": "9934", + "$id": "9945", "kind": "enum", "name": "VideoSeconds", "crossLanguageDefinitionId": "OpenAI.VideoSeconds", "valueType": { - "$id": "9935", + "$id": "9946", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134793,41 +134946,41 @@ }, "values": [ { - "$id": "9936", + "$id": "9947", "kind": "enumvalue", "name": "4", "value": "4", "valueType": { - "$ref": "9935" + "$ref": "9946" }, "enumType": { - "$ref": "9934" + "$ref": "9945" }, "decorators": [] }, { - "$id": "9937", + "$id": "9948", "kind": "enumvalue", "name": "8", "value": "8", "valueType": { - "$ref": "9935" + "$ref": "9946" }, "enumType": { - "$ref": "9934" + "$ref": "9945" }, "decorators": [] }, { - "$id": "9938", + "$id": "9949", "kind": "enumvalue", "name": "12", "value": "12", "valueType": { - "$ref": "9935" + "$ref": "9946" }, "enumType": { - "$ref": "9934" + "$ref": "9945" }, "decorators": [] } @@ -134848,14 +135001,14 @@ "isHttpMetadata": false }, { - "$id": "9939", + "$id": "9950", "kind": "property", "name": "remixed_from_video_id", "type": { - "$id": "9940", + "$id": "9951", "kind": "nullable", "type": { - "$id": "9941", + "$id": "9952", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134873,14 +135026,14 @@ "isHttpMetadata": false }, { - "$id": "9942", + "$id": "9953", "kind": "property", "name": "error", "type": { - "$id": "9943", + "$id": "9954", "kind": "nullable", "type": { - "$id": "9944", + "$id": "9955", "kind": "model", "name": "Error-2", "namespace": "OpenAI", @@ -134889,11 +135042,11 @@ "decorators": [], "properties": [ { - "$id": "9945", + "$id": "9956", "kind": "property", "name": "code", "type": { - "$id": "9946", + "$id": "9957", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134909,11 +135062,11 @@ "isHttpMetadata": false }, { - "$id": "9947", + "$id": "9958", "kind": "property", "name": "message", "type": { - "$id": "9948", + "$id": "9959", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134956,11 +135109,11 @@ "isHttpMetadata": false }, { - "$id": "9949", + "$id": "9960", "kind": "property", "name": "first_id", "type": { - "$id": "9950", + "$id": "9961", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134976,11 +135129,11 @@ "isHttpMetadata": false }, { - "$id": "9951", + "$id": "9962", "kind": "property", "name": "last_id", "type": { - "$id": "9952", + "$id": "9963", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134996,12 +135149,12 @@ "isHttpMetadata": false }, { - "$id": "9953", + "$id": "9964", "kind": "property", "name": "has_more", "doc": "Whether there are more items available.", "type": { - "$id": "9954", + "$id": "9965", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -135036,13 +135189,13 @@ }, "parameters": [ { - "$id": "9955", + "$id": "9966", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "Number of items to retrieve", "type": { - "$id": "9956", + "$id": "9967", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -135058,13 +135211,13 @@ "decorators": [] }, { - "$id": "9957", + "$id": "9968", "kind": "method", "name": "order", "serializedName": "order", "doc": "Sort order of results by timestamp. Use `asc` for ascending order or `desc` for descending order.", "type": { - "$ref": "9889" + "$ref": "9900" }, "location": "Query", "isApiVersion": false, @@ -135076,13 +135229,13 @@ "decorators": [] }, { - "$id": "9958", + "$id": "9969", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last item from the previous pagination request", "type": { - "$id": "9959", + "$id": "9970", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135098,7 +135251,7 @@ "decorators": [] }, { - "$id": "9960", + "$id": "9971", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -135117,7 +135270,7 @@ ], "response": { "type": { - "$ref": "9899" + "$ref": "9910" }, "resultSegments": [ "data" @@ -135134,7 +135287,7 @@ } }, { - "$id": "9961", + "$id": "9972", "kind": "basic", "name": "createVideo", "accessibility": "public", @@ -135142,7 +135295,7 @@ "doc": "Create a video", "summary": "Create video", "operation": { - "$id": "9962", + "$id": "9973", "name": "createVideo", "resourceName": "OpenAI", "summary": "Create video", @@ -135150,7 +135303,7 @@ "accessibility": "public", "parameters": [ { - "$id": "9963", + "$id": "9974", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -135166,7 +135319,7 @@ "crossLanguageDefinitionId": "OpenAI.createVideo.contentType" }, { - "$id": "9964", + "$id": "9975", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -135182,12 +135335,12 @@ "crossLanguageDefinitionId": "OpenAI.createVideo.accept" }, { - "$id": "9965", + "$id": "9976", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$id": "9966", + "$id": "9977", "kind": "model", "name": "CreateVideoBody", "namespace": "OpenAI", @@ -135198,13 +135351,13 @@ "decorators": [], "properties": [ { - "$id": "9967", + "$id": "9978", "kind": "property", "name": "model", "serializedName": "model", "doc": "The video generation model to use. Defaults to `sora-2`.", "type": { - "$ref": "9905" + "$ref": "9916" }, "optional": true, "readOnly": false, @@ -135226,18 +135379,18 @@ "isHttpMetadata": false }, { - "$id": "9968", + "$id": "9979", "kind": "property", "name": "prompt", "serializedName": "prompt", "doc": "Text prompt that describes the video to generate.", "type": { - "$id": "9969", + "$id": "9980", "kind": "string", "name": "VideoPrompt", "crossLanguageDefinitionId": "OpenAI.VideoPrompt", "baseType": { - "$id": "9970", + "$id": "9981", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135265,13 +135418,13 @@ "isHttpMetadata": false }, { - "$id": "9971", + "$id": "9982", "kind": "property", "name": "input_reference", "serializedName": "input_reference", "doc": "Optional image reference that guides generation.", "type": { - "$id": "9972", + "$id": "9983", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -135298,13 +135451,13 @@ "isHttpMetadata": false }, { - "$id": "9973", + "$id": "9984", "kind": "property", "name": "seconds", "serializedName": "seconds", "doc": "Clip duration in seconds. Defaults to 4 seconds.", "type": { - "$ref": "9934" + "$ref": "9945" }, "optional": true, "readOnly": false, @@ -135326,13 +135479,13 @@ "isHttpMetadata": false }, { - "$id": "9974", + "$id": "9985", "kind": "property", "name": "size", "serializedName": "size", "doc": "Output resolution formatted as width x height. Defaults to 720x1280.", "type": { - "$ref": "9927" + "$ref": "9938" }, "optional": true, "readOnly": false, @@ -135373,7 +135526,7 @@ 200 ], "bodyType": { - "$ref": "9900" + "$ref": "9911" }, "headers": [], "isErrorResponse": false, @@ -135396,7 +135549,7 @@ }, "parameters": [ { - "$id": "9975", + "$id": "9986", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -135413,12 +135566,12 @@ "decorators": [] }, { - "$id": "9976", + "$id": "9987", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "9966" + "$ref": "9977" }, "location": "Body", "isApiVersion": false, @@ -135430,7 +135583,7 @@ "decorators": [] }, { - "$id": "9977", + "$id": "9988", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -135449,7 +135602,7 @@ ], "response": { "type": { - "$ref": "9900" + "$ref": "9911" } }, "isOverride": false, @@ -135458,7 +135611,7 @@ "crossLanguageDefinitionId": "OpenAI.createVideo" }, { - "$id": "9978", + "$id": "9989", "kind": "basic", "name": "DeleteVideo", "accessibility": "public", @@ -135466,7 +135619,7 @@ "doc": "Delete a video", "summary": "Delete video", "operation": { - "$id": "9979", + "$id": "9990", "name": "DeleteVideo", "resourceName": "OpenAI", "summary": "Delete video", @@ -135474,13 +135627,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9980", + "$id": "9991", "kind": "path", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the video to delete.", "type": { - "$id": "9981", + "$id": "9992", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135498,7 +135651,7 @@ "crossLanguageDefinitionId": "OpenAI.DeleteVideo.video_id" }, { - "$id": "9982", + "$id": "9993", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -135520,7 +135673,7 @@ 200 ], "bodyType": { - "$id": "9983", + "$id": "9994", "kind": "model", "name": "DeletedVideoResource", "namespace": "OpenAI", @@ -135531,7 +135684,7 @@ "decorators": [], "properties": [ { - "$id": "9984", + "$id": "9995", "kind": "property", "name": "object", "doc": "The object type that signals the deletion response.", @@ -135548,12 +135701,12 @@ "isHttpMetadata": false }, { - "$id": "9985", + "$id": "9996", "kind": "property", "name": "deleted", "doc": "Indicates that the video resource was deleted.", "type": { - "$id": "9986", + "$id": "9997", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -135569,12 +135722,12 @@ "isHttpMetadata": false }, { - "$id": "9987", + "$id": "9998", "kind": "property", "name": "id", "doc": "Identifier of the deleted video.", "type": { - "$id": "9988", + "$id": "9999", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135609,13 +135762,13 @@ }, "parameters": [ { - "$id": "9989", + "$id": "10000", "kind": "method", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the video to delete.", "type": { - "$id": "9990", + "$id": "10001", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135631,7 +135784,7 @@ "decorators": [] }, { - "$id": "9991", + "$id": "10002", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -135650,7 +135803,7 @@ ], "response": { "type": { - "$ref": "9983" + "$ref": "9994" } }, "isOverride": false, @@ -135659,7 +135812,7 @@ "crossLanguageDefinitionId": "OpenAI.DeleteVideo" }, { - "$id": "9992", + "$id": "10003", "kind": "basic", "name": "GetVideo", "accessibility": "public", @@ -135667,7 +135820,7 @@ "doc": "Retrieve a video", "summary": "Retrieve video", "operation": { - "$id": "9993", + "$id": "10004", "name": "GetVideo", "resourceName": "OpenAI", "summary": "Retrieve video", @@ -135675,13 +135828,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9994", + "$id": "10005", "kind": "path", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the video to retrieve.", "type": { - "$id": "9995", + "$id": "10006", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135699,7 +135852,7 @@ "crossLanguageDefinitionId": "OpenAI.GetVideo.video_id" }, { - "$id": "9996", + "$id": "10007", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -135721,7 +135874,7 @@ 200 ], "bodyType": { - "$ref": "9900" + "$ref": "9911" }, "headers": [], "isErrorResponse": false, @@ -135741,13 +135894,13 @@ }, "parameters": [ { - "$id": "9997", + "$id": "10008", "kind": "method", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the video to retrieve.", "type": { - "$id": "9998", + "$id": "10009", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135763,7 +135916,7 @@ "decorators": [] }, { - "$id": "9999", + "$id": "10010", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -135782,7 +135935,7 @@ ], "response": { "type": { - "$ref": "9900" + "$ref": "9911" } }, "isOverride": false, @@ -135791,7 +135944,7 @@ "crossLanguageDefinitionId": "OpenAI.GetVideo" }, { - "$id": "10000", + "$id": "10011", "kind": "basic", "name": "DownloadVideo", "accessibility": "public", @@ -135799,7 +135952,7 @@ "doc": "Download video content", "summary": "Retrieve video content", "operation": { - "$id": "10001", + "$id": "10012", "name": "DownloadVideo", "resourceName": "OpenAI", "summary": "Retrieve video content", @@ -135807,13 +135960,13 @@ "accessibility": "public", "parameters": [ { - "$id": "10002", + "$id": "10013", "kind": "path", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the video whose media to download.", "type": { - "$id": "10003", + "$id": "10014", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135831,18 +135984,18 @@ "crossLanguageDefinitionId": "OpenAI.RetrieveVideoContent.video_id" }, { - "$id": "10004", + "$id": "10015", "kind": "query", "name": "variant", "serializedName": "variant", "doc": "Which downloadable asset to return. Defaults to the MP4 video.", "type": { - "$id": "10005", + "$id": "10016", "kind": "enum", "name": "VideoContentVariant", "crossLanguageDefinitionId": "OpenAI.VideoContentVariant", "valueType": { - "$id": "10006", + "$id": "10017", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135850,41 +136003,41 @@ }, "values": [ { - "$id": "10007", + "$id": "10018", "kind": "enumvalue", "name": "video", "value": "video", "valueType": { - "$ref": "10006" + "$ref": "10017" }, "enumType": { - "$ref": "10005" + "$ref": "10016" }, "decorators": [] }, { - "$id": "10008", + "$id": "10019", "kind": "enumvalue", "name": "thumbnail", "value": "thumbnail", "valueType": { - "$ref": "10006" + "$ref": "10017" }, "enumType": { - "$ref": "10005" + "$ref": "10016" }, "decorators": [] }, { - "$id": "10009", + "$id": "10020", "kind": "enumvalue", "name": "spritesheet", "value": "spritesheet", "valueType": { - "$ref": "10006" + "$ref": "10017" }, "enumType": { - "$ref": "10005" + "$ref": "10016" }, "decorators": [] } @@ -135904,12 +136057,12 @@ "readOnly": false }, { - "$id": "10010", + "$id": "10021", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$id": "10011", + "$id": "10022", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135930,12 +136083,12 @@ 200 ], "bodyType": { - "$id": "10012", + "$id": "10023", "kind": "union", "name": "", "variantTypes": [ { - "$id": "10013", + "$id": "10024", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -135943,7 +136096,7 @@ "decorators": [] }, { - "$id": "10014", + "$id": "10025", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135988,13 +136141,13 @@ }, "parameters": [ { - "$id": "10015", + "$id": "10026", "kind": "method", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the video whose media to download.", "type": { - "$id": "10016", + "$id": "10027", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -136010,13 +136163,13 @@ "decorators": [] }, { - "$id": "10017", + "$id": "10028", "kind": "method", "name": "variant", "serializedName": "variant", "doc": "Which downloadable asset to return. Defaults to the MP4 video.", "type": { - "$ref": "10005" + "$ref": "10016" }, "location": "Query", "isApiVersion": false, @@ -136028,12 +136181,12 @@ "decorators": [] }, { - "$id": "10018", + "$id": "10029", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "10011" + "$ref": "10022" }, "location": "Header", "isApiVersion": false, @@ -136047,7 +136200,7 @@ ], "response": { "type": { - "$ref": "10012" + "$ref": "10023" } }, "isOverride": false, @@ -136056,7 +136209,7 @@ "crossLanguageDefinitionId": "OpenAI.RetrieveVideoContent" }, { - "$id": "10019", + "$id": "10030", "kind": "basic", "name": "CreateVideoRemix", "accessibility": "public", @@ -136064,7 +136217,7 @@ "doc": "Create a video remix", "summary": "Remix video", "operation": { - "$id": "10020", + "$id": "10031", "name": "CreateVideoRemix", "resourceName": "OpenAI", "summary": "Remix video", @@ -136072,13 +136225,13 @@ "accessibility": "public", "parameters": [ { - "$id": "10021", + "$id": "10032", "kind": "path", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the completed video to remix.", "type": { - "$id": "10022", + "$id": "10033", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -136096,7 +136249,7 @@ "crossLanguageDefinitionId": "OpenAI.CreateVideoRemix.video_id" }, { - "$id": "10023", + "$id": "10034", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -136112,7 +136265,7 @@ "crossLanguageDefinitionId": "OpenAI.CreateVideoRemix.contentType" }, { - "$id": "10024", + "$id": "10035", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -136128,12 +136281,12 @@ "crossLanguageDefinitionId": "OpenAI.CreateVideoRemix.accept" }, { - "$id": "10025", + "$id": "10036", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$id": "10026", + "$id": "10037", "kind": "model", "name": "CreateVideoRemixBody", "namespace": "OpenAI", @@ -136144,18 +136297,18 @@ "decorators": [], "properties": [ { - "$id": "10027", + "$id": "10038", "kind": "property", "name": "prompt", "serializedName": "prompt", "doc": "Updated text prompt that directs the remix generation.", "type": { - "$id": "10028", + "$id": "10039", "kind": "string", "name": "VideoPrompt", "crossLanguageDefinitionId": "OpenAI.VideoPrompt", "baseType": { - "$id": "10029", + "$id": "10040", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -136202,7 +136355,7 @@ 200 ], "bodyType": { - "$ref": "9900" + "$ref": "9911" }, "headers": [], "isErrorResponse": false, @@ -136225,13 +136378,13 @@ }, "parameters": [ { - "$id": "10030", + "$id": "10041", "kind": "method", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the completed video to remix.", "type": { - "$id": "10031", + "$id": "10042", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -136247,7 +136400,7 @@ "decorators": [] }, { - "$id": "10032", + "$id": "10043", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -136264,12 +136417,12 @@ "decorators": [] }, { - "$id": "10033", + "$id": "10044", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "10026" + "$ref": "10037" }, "location": "Body", "isApiVersion": false, @@ -136281,7 +136434,7 @@ "decorators": [] }, { - "$id": "10034", + "$id": "10045", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -136300,7 +136453,7 @@ ], "response": { "type": { - "$ref": "9900" + "$ref": "9911" } }, "isOverride": false, @@ -136311,13 +136464,13 @@ ], "parameters": [ { - "$id": "10035", + "$id": "10046", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "10036", + "$id": "10047", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -136328,7 +136481,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "10037", + "$id": "10048", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -136346,7 +136499,7 @@ "crossLanguageDefinitionId": "OpenAI", "apiVersions": [], "parent": { - "$ref": "8260" + "$ref": "8271" } } ] From 21f041613a9bb9adb434e351f8b47eb1a279b1fb Mon Sep 17 00:00:00 2001 From: ShivangiReja <45216704+ShivangiReja@users.noreply.github.com> Date: Mon, 24 Nov 2025 13:56:52 -0800 Subject: [PATCH 2/3] fb --- api/OpenAI.net8.0.cs | 5 +- api/OpenAI.netstandard2.0.cs | 5 +- specification/base/typespec/common/models.tsp | 7 + .../base/typespec/responses/models.tsp | 3 + .../Responses/Internal/GeneratorStubs.cs | 3 +- src/Custom/Responses/OpenAIResponse.cs | 6 + .../Responses/OpenAIResponsesModelFactory.cs | 8 +- src/Generated/Models/OpenAIContext.cs | 1 + .../InternalConversation.Serialization.cs | 120 + .../Models/Responses/InternalConversation.cs | 37 + .../Responses/OpenAIResponse.Serialization.cs | 57 +- .../Models/Responses/OpenAIResponse.cs | 9 +- src/Generated/OpenAIModelFactory.cs | 35 - tests/Responses/ResponsesTests.cs | 36 + .../ResponseUsingConversations.json | 185 + .../ResponseUsingConversationsAsync.json | 181 + tests/Utility/TestHelpers.cs | 6 + tspCodeModel.json | 12427 ++++++++-------- 18 files changed, 6938 insertions(+), 6193 deletions(-) create mode 100644 src/Generated/Models/Responses/InternalConversation.Serialization.cs create mode 100644 src/Generated/Models/Responses/InternalConversation.cs create mode 100644 tests/SessionRecords/ResponsesTests/ResponseUsingConversations.json create mode 100644 tests/SessionRecords/ResponsesTests/ResponseUsingConversationsAsync.json diff --git a/api/OpenAI.net8.0.cs b/api/OpenAI.net8.0.cs index 449bb3a6d..6ed26983a 100644 --- a/api/OpenAI.net8.0.cs +++ b/api/OpenAI.net8.0.cs @@ -5593,6 +5593,7 @@ public enum MessageStatus { [Experimental("OPENAI001")] public class OpenAIResponse : IJsonModel, IPersistableModel { public bool? BackgroundModeEnabled { get; } + public string ConversationId { get; } public DateTimeOffset CreatedAt { get; } public string EndUserId { get; } public ResponseError Error { get; } @@ -5611,12 +5612,14 @@ public class OpenAIResponse : IJsonModel, IPersistableModel Tools { get; } + public int? TopLogProbabilityCount { get; } public float? TopP { get; } public ResponseTruncationMode? TruncationMode { get; } public ResponseTokenUsage Usage { get; } @@ -5673,7 +5676,7 @@ public class OpenAIResponseClient { [Experimental("OPENAI001")] public static class OpenAIResponsesModelFactory { public static MessageResponseItem MessageResponseItem(string id = null, MessageRole role = MessageRole.Assistant, MessageStatus? status = null); - public static OpenAIResponse OpenAIResponse(string id = null, DateTimeOffset createdAt = default, ResponseStatus? status = null, ResponseError error = null, ResponseTokenUsage usage = null, string endUserId = null, ResponseReasoningOptions reasoningOptions = null, int? maxOutputTokenCount = null, int? maxToolCallCount = null, ResponseTextOptions textOptions = null, ResponseTruncationMode? truncationMode = null, ResponseIncompleteStatusDetails incompleteStatusDetails = null, IEnumerable outputItems = null, bool parallelToolCallsEnabled = false, ResponseToolChoice toolChoice = null, string model = null, IDictionary metadata = null, float? temperature = null, float? topP = null, ResponseServiceTier? serviceTier = null, string previousResponseId = null, bool? backgroundModeEnabled = null, string instructions = null, IEnumerable tools = null); + public static OpenAIResponse OpenAIResponse(string id = null, DateTimeOffset createdAt = default, ResponseStatus? status = null, ResponseError error = null, ResponseTokenUsage usage = null, string endUserId = null, string safetyIdentifier = null, ResponseReasoningOptions reasoningOptions = null, int? maxOutputTokenCount = null, int? maxToolCallCount = null, ResponseTextOptions textOptions = null, ResponseTruncationMode? truncationMode = null, ResponseIncompleteStatusDetails incompleteStatusDetails = null, IEnumerable outputItems = null, bool parallelToolCallsEnabled = false, ResponseToolChoice toolChoice = null, string model = null, IDictionary metadata = null, float? temperature = null, int? topLogProbabilityCount = null, float? topP = null, ResponseServiceTier? serviceTier = null, string previousResponseId = null, bool? backgroundModeEnabled = null, string instructions = null, IEnumerable tools = null, string conversationId = null); public static ReasoningResponseItem ReasoningResponseItem(string id = null, string encryptedContent = null, ReasoningStatus? status = null, IEnumerable summaryParts = null); public static ReasoningResponseItem ReasoningResponseItem(string id = null, string encryptedContent = null, ReasoningStatus? status = null, string summaryText = null); public static ReferenceResponseItem ReferenceResponseItem(string id = null); diff --git a/api/OpenAI.netstandard2.0.cs b/api/OpenAI.netstandard2.0.cs index 3d9a8eb33..9b22f4541 100644 --- a/api/OpenAI.netstandard2.0.cs +++ b/api/OpenAI.netstandard2.0.cs @@ -4908,6 +4908,7 @@ public enum MessageStatus { } public class OpenAIResponse : IJsonModel, IPersistableModel { public bool? BackgroundModeEnabled { get; } + public string ConversationId { get; } public DateTimeOffset CreatedAt { get; } public string EndUserId { get; } public ResponseError Error { get; } @@ -4925,12 +4926,14 @@ public class OpenAIResponse : IJsonModel, IPersistableModel Tools { get; } + public int? TopLogProbabilityCount { get; } public float? TopP { get; } public ResponseTruncationMode? TruncationMode { get; } public ResponseTokenUsage Usage { get; } @@ -4983,7 +4986,7 @@ public class OpenAIResponseClient { } public static class OpenAIResponsesModelFactory { public static MessageResponseItem MessageResponseItem(string id = null, MessageRole role = MessageRole.Assistant, MessageStatus? status = null); - public static OpenAIResponse OpenAIResponse(string id = null, DateTimeOffset createdAt = default, ResponseStatus? status = null, ResponseError error = null, ResponseTokenUsage usage = null, string endUserId = null, ResponseReasoningOptions reasoningOptions = null, int? maxOutputTokenCount = null, int? maxToolCallCount = null, ResponseTextOptions textOptions = null, ResponseTruncationMode? truncationMode = null, ResponseIncompleteStatusDetails incompleteStatusDetails = null, IEnumerable outputItems = null, bool parallelToolCallsEnabled = false, ResponseToolChoice toolChoice = null, string model = null, IDictionary metadata = null, float? temperature = null, float? topP = null, ResponseServiceTier? serviceTier = null, string previousResponseId = null, bool? backgroundModeEnabled = null, string instructions = null, IEnumerable tools = null); + public static OpenAIResponse OpenAIResponse(string id = null, DateTimeOffset createdAt = default, ResponseStatus? status = null, ResponseError error = null, ResponseTokenUsage usage = null, string endUserId = null, string safetyIdentifier = null, ResponseReasoningOptions reasoningOptions = null, int? maxOutputTokenCount = null, int? maxToolCallCount = null, ResponseTextOptions textOptions = null, ResponseTruncationMode? truncationMode = null, ResponseIncompleteStatusDetails incompleteStatusDetails = null, IEnumerable outputItems = null, bool parallelToolCallsEnabled = false, ResponseToolChoice toolChoice = null, string model = null, IDictionary metadata = null, float? temperature = null, int? topLogProbabilityCount = null, float? topP = null, ResponseServiceTier? serviceTier = null, string previousResponseId = null, bool? backgroundModeEnabled = null, string instructions = null, IEnumerable tools = null, string conversationId = null); public static ReasoningResponseItem ReasoningResponseItem(string id = null, string encryptedContent = null, ReasoningStatus? status = null, IEnumerable summaryParts = null); public static ReasoningResponseItem ReasoningResponseItem(string id = null, string encryptedContent = null, ReasoningStatus? status = null, string summaryText = null); public static ReferenceResponseItem ReferenceResponseItem(string id = null); diff --git a/specification/base/typespec/common/models.tsp b/specification/base/typespec/common/models.tsp index 2a98a7d7c..043bef5ee 100644 --- a/specification/base/typespec/common/models.tsp +++ b/specification/base/typespec/common/models.tsp @@ -285,6 +285,9 @@ model ModelResponsePropertiesForResponse { @maxValue(2) temperature: float32 | null; + /** An integer between 0 and 20 specifying the number of most likely tokens to return at each token position, each with an associated log probability. */ + top_logprobs?: int32 | null; + @doc(""" An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability @@ -300,6 +303,10 @@ model ModelResponsePropertiesForResponse { /** 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). */ user: string | null; + /**A stable identifier used to help detect users of your application that may be violating OpenAI's usage policies. + The IDs should be a string that uniquely identifies each user. We recommend hashing their username or email address, in order to avoid sending us any identifying information. [Learn more](https://platform.openai.com/docs/guides/safety-best-practices#safety-identifiers).*/ + safety_identifier?: string; + service_tier?: ServiceTier; } diff --git a/specification/base/typespec/responses/models.tsp b/specification/base/typespec/responses/models.tsp index 7ae2a6114..9d147d63f 100644 --- a/specification/base/typespec/responses/models.tsp +++ b/specification/base/typespec/responses/models.tsp @@ -168,6 +168,9 @@ model Response { /** Whether to allow the model to run tool calls in parallel. */ parallel_tool_calls: boolean = true; + + /** The conversation that this response belongs to. Input items and output items from this response are automatically added to this conversation. */ + conversation?: `ConversationParam-2` | null; } model ResponseProperties { diff --git a/src/Custom/Responses/Internal/GeneratorStubs.cs b/src/Custom/Responses/Internal/GeneratorStubs.cs index 8d660e417..c67247eec 100644 --- a/src/Custom/Responses/Internal/GeneratorStubs.cs +++ b/src/Custom/Responses/Internal/GeneratorStubs.cs @@ -121,4 +121,5 @@ namespace OpenAI.Responses; [CodeGenType("DotNetCustomToolCallApprovalPolicyAlways")] internal partial class InternalDotNetCustomToolCallApprovalPolicyAlways { } [CodeGenType("DotNetCustomToolCallApprovalPolicyNever")] internal partial class InternalDotNetCustomToolCallApprovalPolicyNever { } [CodeGenType("UnknownCodeInterpreterToolOutput")] internal partial class InternalUnknownCodeInterpreterToolOutput {} -[CodeGenType("UnknownCodeInterpreterContainerConfiguration")] internal partial class InternalUnknownCodeInterpreterContainerConfiguration {} \ No newline at end of file +[CodeGenType("UnknownCodeInterpreterContainerConfiguration")] internal partial class InternalUnknownCodeInterpreterContainerConfiguration {} +[CodeGenType("ConversationParam2")] internal partial class InternalConversation {} \ No newline at end of file diff --git a/src/Custom/Responses/OpenAIResponse.cs b/src/Custom/Responses/OpenAIResponse.cs index 7f672306f..38cc940d1 100644 --- a/src/Custom/Responses/OpenAIResponse.cs +++ b/src/Custom/Responses/OpenAIResponse.cs @@ -62,6 +62,12 @@ public partial class OpenAIResponse [CodeGenMember("Model")] public string Model { get; } + public string ConversationId => Conversation.Id; + + // CUSTOM: Renamed. + [CodeGenMember("TopLogprobs")] + public int? TopLogProbabilityCount { get; } + // CUSTOM: Made internal internal string Object { get; } = "response"; diff --git a/src/Custom/Responses/OpenAIResponsesModelFactory.cs b/src/Custom/Responses/OpenAIResponsesModelFactory.cs index 4be348242..c46a398e9 100644 --- a/src/Custom/Responses/OpenAIResponsesModelFactory.cs +++ b/src/Custom/Responses/OpenAIResponsesModelFactory.cs @@ -18,6 +18,7 @@ public static OpenAIResponse OpenAIResponse( ResponseError error = null, ResponseTokenUsage usage = null, string endUserId = null, + string safetyIdentifier = null, ResponseReasoningOptions reasoningOptions = null, int? maxOutputTokenCount = null, int? maxToolCallCount = null, @@ -30,12 +31,14 @@ public static OpenAIResponse OpenAIResponse( string model = null, IDictionary metadata = null, float? temperature = null, + int? topLogProbabilityCount = null, float? topP = null, ResponseServiceTier? serviceTier = null, string previousResponseId = null, bool? backgroundModeEnabled = null, string instructions = null, - IEnumerable tools = null) + IEnumerable tools = null, + string conversationId = null) { outputItems ??= new List(); tools ??= new List(); @@ -44,6 +47,7 @@ public static OpenAIResponse OpenAIResponse( return new OpenAIResponse( metadata: metadata, temperature: temperature, + topLogProbabilityCount: topLogProbabilityCount, topP: topP, serviceTier: serviceTier, previousResponseId: previousResponseId, @@ -56,6 +60,7 @@ public static OpenAIResponse OpenAIResponse( error: error, usage: usage, endUserId: endUserId, + safetyIdentifier: safetyIdentifier, reasoningOptions: reasoningOptions, maxOutputTokenCount: maxOutputTokenCount, maxToolCallCount: maxToolCallCount, @@ -67,6 +72,7 @@ public static OpenAIResponse OpenAIResponse( toolChoice: toolChoice, model: model, @object: "response", + conversation: new(conversationId), patch: default); } diff --git a/src/Generated/Models/OpenAIContext.cs b/src/Generated/Models/OpenAIContext.cs index 5d1b262c2..1ff5421e4 100644 --- a/src/Generated/Models/OpenAIContext.cs +++ b/src/Generated/Models/OpenAIContext.cs @@ -227,6 +227,7 @@ namespace OpenAI [ModelReaderWriterBuildable(typeof(InternalComputerUsePreviewToolCallOutputItemParam))] [ModelReaderWriterBuildable(typeof(InternalContainerFileListResource))] [ModelReaderWriterBuildable(typeof(InternalContainerListResource))] + [ModelReaderWriterBuildable(typeof(InternalConversation))] [ModelReaderWriterBuildable(typeof(InternalConversationItemCollectionOptions))] [ModelReaderWriterBuildable(typeof(InternalCoordinate))] [ModelReaderWriterBuildable(typeof(InternalCreateAssistantRequestToolResources))] diff --git a/src/Generated/Models/Responses/InternalConversation.Serialization.cs b/src/Generated/Models/Responses/InternalConversation.Serialization.cs new file mode 100644 index 000000000..f4e835d2d --- /dev/null +++ b/src/Generated/Models/Responses/InternalConversation.Serialization.cs @@ -0,0 +1,120 @@ +// + +#nullable disable + +using System; +using System.ClientModel.Primitives; +using System.Text; +using System.Text.Json; +using OpenAI; + +namespace OpenAI.Responses +{ + internal partial class InternalConversation : IJsonModel + { + internal InternalConversation() + { + } + + void IJsonModel.Write(Utf8JsonWriter writer, ModelReaderWriterOptions options) + { +#pragma warning disable SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. + if (Patch.Contains("$"u8)) + { + writer.WriteRawValue(Patch.GetJson("$"u8)); + return; + } +#pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. + + writer.WriteStartObject(); + JsonModelWriteCore(writer, options); + writer.WriteEndObject(); + } + + protected virtual void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options) + { + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + if (format != "J") + { + throw new FormatException($"The model {nameof(InternalConversation)} does not support writing '{format}' format."); + } +#pragma warning disable SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. + if (!Patch.Contains("$.id"u8)) + { + writer.WritePropertyName("id"u8); + writer.WriteStringValue(Id); + } + + Patch.WriteTo(writer); +#pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. + } + + InternalConversation IJsonModel.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options) => JsonModelCreateCore(ref reader, options); + + protected virtual InternalConversation JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options) + { + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + if (format != "J") + { + throw new FormatException($"The model {nameof(InternalConversation)} does not support reading '{format}' format."); + } + using JsonDocument document = JsonDocument.ParseValue(ref reader); + return DeserializeInternalConversation(document.RootElement, null, options); + } + + internal static InternalConversation DeserializeInternalConversation(JsonElement element, BinaryData data, ModelReaderWriterOptions options) + { + if (element.ValueKind == JsonValueKind.Null) + { + return null; + } + 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()); +#pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. + foreach (var prop in element.EnumerateObject()) + { + if (prop.NameEquals("id"u8)) + { + id = prop.Value.GetString(); + continue; + } + patch.Set([.. "$."u8, .. Encoding.UTF8.GetBytes(prop.Name)], prop.Value.GetUtf8Bytes()); + } + return new InternalConversation(id, patch); + } + + BinaryData IPersistableModel.Write(ModelReaderWriterOptions options) => PersistableModelWriteCore(options); + + protected virtual BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options) + { + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + switch (format) + { + case "J": + return ModelReaderWriter.Write(this, options, OpenAIContext.Default); + default: + throw new FormatException($"The model {nameof(InternalConversation)} does not support writing '{options.Format}' format."); + } + } + + InternalConversation IPersistableModel.Create(BinaryData data, ModelReaderWriterOptions options) => PersistableModelCreateCore(data, options); + + protected virtual InternalConversation PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options) + { + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + switch (format) + { + case "J": + using (JsonDocument document = JsonDocument.Parse(data, ModelSerializationExtensions.JsonDocumentOptions)) + { + return DeserializeInternalConversation(document.RootElement, data, options); + } + default: + throw new FormatException($"The model {nameof(InternalConversation)} does not support reading '{options.Format}' format."); + } + } + + string IPersistableModel.GetFormatFromOptions(ModelReaderWriterOptions options) => "J"; + } +} diff --git a/src/Generated/Models/Responses/InternalConversation.cs b/src/Generated/Models/Responses/InternalConversation.cs new file mode 100644 index 000000000..3a231e8f0 --- /dev/null +++ b/src/Generated/Models/Responses/InternalConversation.cs @@ -0,0 +1,37 @@ +// + +#nullable disable + +using System.ClientModel.Primitives; +using System.ComponentModel; +using System.Diagnostics.CodeAnalysis; +using System.Text.Json.Serialization; + +namespace OpenAI.Responses +{ + internal partial class InternalConversation + { + [Experimental("SCME0001")] + private JsonPatch _patch; + + internal InternalConversation(string id) + { + Id = id; + } + +#pragma warning disable SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. + internal InternalConversation(string id, in JsonPatch patch) + { + Id = id; + _patch = patch; + } +#pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. + + [JsonIgnore] + [EditorBrowsable(EditorBrowsableState.Never)] + [Experimental("SCME0001")] + public ref JsonPatch Patch => ref _patch; + + public string Id { get; } + } +} diff --git a/src/Generated/Models/Responses/OpenAIResponse.Serialization.cs b/src/Generated/Models/Responses/OpenAIResponse.Serialization.cs index 2a988d158..3be4f7d28 100644 --- a/src/Generated/Models/Responses/OpenAIResponse.Serialization.cs +++ b/src/Generated/Models/Responses/OpenAIResponse.Serialization.cs @@ -14,7 +14,7 @@ namespace OpenAI.Responses { public partial class OpenAIResponse : IJsonModel { - internal OpenAIResponse() : this(null, default, default, null, default, null, null, null, default, default, default, null, null, null, null, default, null, null, default, default, null, null, null, null, default, default) + internal OpenAIResponse() : this(null, default, default, default, null, null, default, null, null, null, default, default, default, null, null, null, null, default, null, null, default, default, null, null, null, null, default, null, default) { } @@ -84,6 +84,11 @@ protected virtual void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWrit { writer.WriteNull("temperature"u8); } + if (Optional.IsDefined(TopLogProbabilityCount) && !Patch.Contains("$.top_logprobs"u8)) + { + writer.WritePropertyName("top_logprobs"u8); + writer.WriteNumberValue(TopLogProbabilityCount.Value); + } if (Optional.IsDefined(TopP) && !Patch.Contains("$.top_p"u8)) { writer.WritePropertyName("top_p"u8); @@ -102,6 +107,11 @@ protected virtual void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWrit { writer.WriteNull("user"u8); } + if (Optional.IsDefined(SafetyIdentifier) && !Patch.Contains("$.safety_identifier"u8)) + { + writer.WritePropertyName("safety_identifier"u8); + writer.WriteStringValue(SafetyIdentifier); + } if (Optional.IsDefined(ServiceTier) && !Patch.Contains("$.service_tier"u8)) { writer.WritePropertyName("service_tier"u8); @@ -251,6 +261,11 @@ protected virtual void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWrit writer.WritePropertyName("parallel_tool_calls"u8); writer.WriteBooleanValue(ParallelToolCallsEnabled); } + if (Optional.IsDefined(Conversation) && !Patch.Contains("$.conversation"u8)) + { + writer.WritePropertyName("conversation"u8); + writer.WriteObjectValue(Conversation, options); + } Patch.WriteTo(writer); #pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. @@ -277,8 +292,10 @@ internal static OpenAIResponse DeserializeOpenAIResponse(JsonElement element, Bi } IDictionary metadata = default; float? temperature = default; + int? topLogProbabilityCount = default; float? topP = default; string endUserId = default; + string safetyIdentifier = default; ResponseServiceTier? serviceTier = default; string previousResponseId = default; string model = default; @@ -300,6 +317,7 @@ internal static OpenAIResponse DeserializeOpenAIResponse(JsonElement element, Bi IList outputItems = default; ResponseTokenUsage usage = default; bool parallelToolCallsEnabled = default; + InternalConversation conversation = 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()); #pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. @@ -337,6 +355,16 @@ internal static OpenAIResponse DeserializeOpenAIResponse(JsonElement element, Bi temperature = prop.Value.GetSingle(); continue; } + if (prop.NameEquals("top_logprobs"u8)) + { + if (prop.Value.ValueKind == JsonValueKind.Null) + { + topLogProbabilityCount = null; + continue; + } + topLogProbabilityCount = prop.Value.GetInt32(); + continue; + } if (prop.NameEquals("top_p"u8)) { if (prop.Value.ValueKind == JsonValueKind.Null) @@ -357,6 +385,11 @@ internal static OpenAIResponse DeserializeOpenAIResponse(JsonElement element, Bi endUserId = prop.Value.GetString(); continue; } + if (prop.NameEquals("safety_identifier"u8)) + { + safetyIdentifier = prop.Value.GetString(); + continue; + } if (prop.NameEquals("service_tier"u8)) { if (prop.Value.ValueKind == JsonValueKind.Null) @@ -541,13 +574,25 @@ internal static OpenAIResponse DeserializeOpenAIResponse(JsonElement element, Bi parallelToolCallsEnabled = prop.Value.GetBoolean(); continue; } + if (prop.NameEquals("conversation"u8)) + { + if (prop.Value.ValueKind == JsonValueKind.Null) + { + conversation = null; + continue; + } + conversation = InternalConversation.DeserializeInternalConversation(prop.Value, prop.Value.GetUtf8Bytes(), options); + continue; + } patch.Set([.. "$."u8, .. Encoding.UTF8.GetBytes(prop.Name)], prop.Value.GetUtf8Bytes()); } return new OpenAIResponse( metadata, temperature, + topLogProbabilityCount, topP, endUserId, + safetyIdentifier, serviceTier, previousResponseId, model, @@ -569,6 +614,7 @@ internal static OpenAIResponse DeserializeOpenAIResponse(JsonElement element, Bi outputItems, usage, parallelToolCallsEnabled, + conversation, patch); } @@ -639,6 +685,10 @@ private bool PropagateGet(ReadOnlySpan jsonPath, out JsonPatch.EncodedValu { return Usage.Patch.TryGetEncodedValue([.. "$"u8, .. local.Slice("usage"u8.Length)], out value); } + if (local.StartsWith("conversation"u8)) + { + return Conversation.Patch.TryGetEncodedValue([.. "$"u8, .. local.Slice("conversation"u8.Length)], out value); + } if (local.StartsWith("tools"u8)) { int propertyLength = "tools"u8.Length; @@ -693,6 +743,11 @@ private bool PropagateSet(ReadOnlySpan jsonPath, JsonPatch.EncodedValue va Usage.Patch.Set([.. "$"u8, .. local.Slice("usage"u8.Length)], value); return true; } + if (local.StartsWith("conversation"u8)) + { + Conversation.Patch.Set([.. "$"u8, .. local.Slice("conversation"u8.Length)], value); + return true; + } if (local.StartsWith("tools"u8)) { int propertyLength = "tools"u8.Length; diff --git a/src/Generated/Models/Responses/OpenAIResponse.cs b/src/Generated/Models/Responses/OpenAIResponse.cs index 096c01dc8..fb65884bf 100644 --- a/src/Generated/Models/Responses/OpenAIResponse.cs +++ b/src/Generated/Models/Responses/OpenAIResponse.cs @@ -36,13 +36,15 @@ internal OpenAIResponse(IDictionary metadata, float? temperature } #pragma warning disable SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. - internal OpenAIResponse(IDictionary metadata, float? temperature, float? topP, string endUserId, ResponseServiceTier? serviceTier, string previousResponseId, string model, ResponseReasoningOptions reasoningOptions, bool? backgroundModeEnabled, int? maxOutputTokenCount, int? maxToolCallCount, string instructions, ResponseTextOptions textOptions, IList tools, ResponseToolChoice toolChoice, ResponseTruncationMode? truncationMode, string id, string @object, ResponseStatus? status, DateTimeOffset createdAt, ResponseError error, ResponseIncompleteStatusDetails incompleteStatusDetails, IList outputItems, ResponseTokenUsage usage, bool parallelToolCallsEnabled, in JsonPatch patch) + internal OpenAIResponse(IDictionary metadata, float? temperature, int? topLogProbabilityCount, float? topP, string endUserId, string safetyIdentifier, ResponseServiceTier? serviceTier, string previousResponseId, string model, ResponseReasoningOptions reasoningOptions, bool? backgroundModeEnabled, int? maxOutputTokenCount, int? maxToolCallCount, string instructions, ResponseTextOptions textOptions, IList tools, ResponseToolChoice toolChoice, ResponseTruncationMode? truncationMode, string id, string @object, ResponseStatus? status, DateTimeOffset createdAt, ResponseError error, ResponseIncompleteStatusDetails incompleteStatusDetails, IList outputItems, ResponseTokenUsage usage, bool parallelToolCallsEnabled, InternalConversation conversation, in JsonPatch patch) { // Plugin customization: ensure initialization of collections Metadata = metadata ?? new ChangeTrackingDictionary(); Temperature = temperature; + TopLogProbabilityCount = topLogProbabilityCount; TopP = topP; EndUserId = endUserId; + SafetyIdentifier = safetyIdentifier; ServiceTier = serviceTier; PreviousResponseId = previousResponseId; Model = model; @@ -64,6 +66,7 @@ internal OpenAIResponse(IDictionary metadata, float? temperature OutputItems = outputItems ?? new ChangeTrackingList(); Usage = usage; ParallelToolCallsEnabled = parallelToolCallsEnabled; + Conversation = conversation; _patch = patch; _patch.SetPropagators(PropagateSet, PropagateGet); } @@ -80,6 +83,8 @@ internal OpenAIResponse(IDictionary metadata, float? temperature public float? TopP { get; } + public string SafetyIdentifier { get; } + public ResponseServiceTier? ServiceTier { get; } public string PreviousResponseId { get; } @@ -97,5 +102,7 @@ internal OpenAIResponse(IDictionary metadata, float? temperature public ResponseError Error { get; } public ResponseTokenUsage Usage { get; } + + internal InternalConversation Conversation { get; } } } diff --git a/src/Generated/OpenAIModelFactory.cs b/src/Generated/OpenAIModelFactory.cs index 238fad204..b488bc03b 100644 --- a/src/Generated/OpenAIModelFactory.cs +++ b/src/Generated/OpenAIModelFactory.cs @@ -687,41 +687,6 @@ public static McpToolDefinition McpToolDefinition(string name = default, string return new McpToolDefinition(name, description, inputSchema, annotations, default); } - public static OpenAIResponse OpenAIResponse(IDictionary metadata = default, float? temperature = default, float? topP = default, string endUserId = default, ResponseServiceTier? serviceTier = default, string previousResponseId = default, string model = default, ResponseReasoningOptions reasoningOptions = default, bool? backgroundModeEnabled = default, int? maxOutputTokenCount = default, int? maxToolCallCount = default, string instructions = default, ResponseTextOptions textOptions = default, IEnumerable tools = default, ResponseToolChoice toolChoice = default, ResponseTruncationMode? truncationMode = default, string id = default, ResponseStatus? status = default, DateTimeOffset createdAt = default, ResponseError error = default, ResponseIncompleteStatusDetails incompleteStatusDetails = default, IEnumerable outputItems = default, ResponseTokenUsage usage = default, bool parallelToolCallsEnabled = default) - { - metadata ??= new ChangeTrackingDictionary(); - tools ??= new ChangeTrackingList(); - outputItems ??= new ChangeTrackingList(); - - return new OpenAIResponse( - metadata, - temperature, - topP, - endUserId, - serviceTier, - previousResponseId, - model, - reasoningOptions, - backgroundModeEnabled, - maxOutputTokenCount, - maxToolCallCount, - instructions, - textOptions, - tools.ToList(), - toolChoice, - truncationMode, - id, - "response", - status, - createdAt, - error, - incompleteStatusDetails, - outputItems.ToList(), - usage, - parallelToolCallsEnabled, - default); - } - public static ResponseError ResponseError(ResponseErrorCode code = default, string message = default) { return new ResponseError(code, message, default); diff --git a/tests/Responses/ResponsesTests.cs b/tests/Responses/ResponsesTests.cs index 6a284af8e..14680d93e 100644 --- a/tests/Responses/ResponsesTests.cs +++ b/tests/Responses/ResponsesTests.cs @@ -1,6 +1,7 @@ using Microsoft.ClientModel.TestFramework; using Microsoft.VisualStudio.TestPlatform.ObjectModel; using NUnit.Framework; +using OpenAI.Conversations; using OpenAI.Files; using OpenAI.Responses; using OpenAI.Tests.Utility; @@ -522,6 +523,41 @@ public async Task CanOptOutOfStorage() Assert.That(expectedException.Message, Does.Contain("not found")); } + [RecordedTest] + public async Task ResponseUsingConversations() + { + ConversationClient conversationClient = GetProxiedOpenAIClient(TestScenario.Conversations); + + BinaryData createConversationParameters = BinaryData.FromBytes(""" + { + "metadata": { "topic": "test" }, + "items": [ + { + "type": "message", + "role": "user", + "content": "Say 'this is a test.'" + } + ] + } + """u8.ToArray()); + + using BinaryContent requestContent = BinaryContent.Create(createConversationParameters); + ClientResult conversationResult = await conversationClient.CreateConversationAsync(requestContent); + using JsonDocument conversationResultAsJson = JsonDocument.Parse(conversationResult.GetRawResponse().Content.ToString()); + string conversationId = conversationResultAsJson.RootElement.GetProperty("id"u8).GetString(); + + OpenAIResponseClient client = GetTestClient("gpt-4.1"); + OpenAIResponse response = await client.CreateResponseAsync( + [ResponseItem.CreateUserMessageItem("Hello, model!")], + new ResponseCreationOptions() + { + ConversationId = conversationId, + }); + + Assert.That(response, Is.Not.Null); + Assert.That(response.ConversationId, Is.EqualTo(conversationId)); + } + [RecordedTest] public async Task ResponseServiceTierWorks() { diff --git a/tests/SessionRecords/ResponsesTests/ResponseUsingConversations.json b/tests/SessionRecords/ResponsesTests/ResponseUsingConversations.json new file mode 100644 index 000000000..e3ce18c55 --- /dev/null +++ b/tests/SessionRecords/ResponsesTests/ResponseUsingConversations.json @@ -0,0 +1,185 @@ +{ + "Entries": [ + { + "RequestUri": "https://api.openai.com/v1/conversations", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "179", + "Content-Type": "application/json", + "User-Agent": "OpenAI/2.7.0 (.NET 9.0.11; Microsoft Windows 10.0.26200)" + }, + "RequestBody": { + "metadata": { + "topic": "test" + }, + "items": [ + { + "type": "message", + "role": "user", + "content": "Say 'this is a test.'" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "Alt-Svc": "h3=\":443\"", + "cf-cache-status": "DYNAMIC", + "CF-RAY": "9a3bfbbe89668a1a-BOM", + "Connection": "keep-alive", + "Content-Length": "164", + "Content-Type": "application/json", + "Date": "Sanitized", + "openai-organization": "Sanitized", + "openai-processing-ms": "Sanitized", + "openai-project": "Sanitized", + "openai-version": "2020-10-01", + "Server": "cloudflare", + "Set-Cookie": [ + "Sanitized", + "Sanitized" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "432", + "x-openai-proxy-wasm": "v0.1", + "X-Request-ID": "Sanitized" + }, + "ResponseBody": { + "id": "conv_6924cd7745508196a24913721af0bb5e08b043bebee1496b", + "object": "conversation", + "created_at": 1764019575, + "metadata": { + "topic": "test" + } + } + }, + { + "RequestUri": "https://api.openai.com/v1/responses", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/event-stream", + "Authorization": "Sanitized", + "Content-Length": "190", + "Content-Type": "application/json", + "User-Agent": "OpenAI/2.7.0 (.NET 9.0.11; Microsoft Windows 10.0.26200)" + }, + "RequestBody": { + "model": "gpt-4.1", + "input": [ + { + "type": "message", + "role": "user", + "content": [ + { + "type": "input_text", + "text": "Hello, model!" + } + ] + } + ], + "conversation": "conv_6924cd7745508196a24913721af0bb5e08b043bebee1496b" + }, + "StatusCode": 200, + "ResponseHeaders": { + "Alt-Svc": "h3=\":443\"", + "cf-cache-status": "DYNAMIC", + "CF-RAY": "9a3bfbcbc9c98a1a-BOM", + "Connection": "keep-alive", + "Content-Length": "1578", + "Content-Type": "application/json", + "Date": "Sanitized", + "openai-organization": "Sanitized", + "openai-processing-ms": "Sanitized", + "openai-project": "Sanitized", + "openai-version": "2020-10-01", + "Server": "cloudflare", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "2399", + "x-ratelimit-limit-requests": "10000", + "x-ratelimit-limit-tokens": "30000000", + "x-ratelimit-remaining-requests": "9999", + "x-ratelimit-remaining-tokens": "29999959", + "x-ratelimit-reset-requests": "6ms", + "x-ratelimit-reset-tokens": "0s", + "X-Request-ID": "Sanitized" + }, + "ResponseBody": { + "id": "resp_08b043bebee1496b006924cd7a195881969c78b7eaa7678cbe", + "object": "response", + "created_at": 1764019578, + "status": "completed", + "background": false, + "billing": { + "payer": "developer" + }, + "conversation": { + "id": "conv_6924cd7745508196a24913721af0bb5e08b043bebee1496b" + }, + "error": null, + "incomplete_details": null, + "instructions": null, + "max_output_tokens": null, + "max_tool_calls": null, + "model": "gpt-4.1-2025-04-14", + "output": [ + { + "id": "msg_08b043bebee1496b006924cd7afd648196b3654061f11bcc6a", + "type": "message", + "status": "completed", + "content": [ + { + "type": "output_text", + "annotations": [], + "logprobs": [], + "text": "Hello! This is a test. How can I help you today?" + } + ], + "role": "assistant" + } + ], + "parallel_tool_calls": true, + "previous_response_id": null, + "prompt_cache_key": null, + "prompt_cache_retention": null, + "reasoning": { + "effort": null, + "summary": null + }, + "safety_identifier": null, + "service_tier": "default", + "store": true, + "temperature": 1.0, + "text": { + "format": { + "type": "text" + }, + "verbosity": "medium" + }, + "tool_choice": "auto", + "tools": [], + "top_logprobs": 0, + "top_p": 1.0, + "truncation": "disabled", + "usage": { + "input_tokens": 22, + "input_tokens_details": { + "cached_tokens": 0 + }, + "output_tokens": 15, + "output_tokens_details": { + "reasoning_tokens": 0 + }, + "total_tokens": 37 + }, + "user": null, + "metadata": {} + } + } + ], + "Variables": { + "OPEN-API-KEY": "api-key" + } +} diff --git a/tests/SessionRecords/ResponsesTests/ResponseUsingConversationsAsync.json b/tests/SessionRecords/ResponsesTests/ResponseUsingConversationsAsync.json new file mode 100644 index 000000000..9d16c7a47 --- /dev/null +++ b/tests/SessionRecords/ResponsesTests/ResponseUsingConversationsAsync.json @@ -0,0 +1,181 @@ +{ + "Entries": [ + { + "RequestUri": "https://api.openai.com/v1/conversations", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "179", + "Content-Type": "application/json", + "User-Agent": "OpenAI/2.7.0 (.NET 9.0.11; Microsoft Windows 10.0.26200)" + }, + "RequestBody": { + "metadata": { + "topic": "test" + }, + "items": [ + { + "type": "message", + "role": "user", + "content": "Say 'this is a test.'" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "Alt-Svc": "h3=\":443\"", + "cf-cache-status": "DYNAMIC", + "CF-RAY": "9a3bfbee688e8a1a-BOM", + "Connection": "keep-alive", + "Content-Length": "164", + "Content-Type": "application/json", + "Date": "Sanitized", + "openai-organization": "Sanitized", + "openai-processing-ms": "Sanitized", + "openai-project": "Sanitized", + "openai-version": "2020-10-01", + "Server": "cloudflare", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "150", + "x-openai-proxy-wasm": "v0.1", + "X-Request-ID": "Sanitized" + }, + "ResponseBody": { + "id": "conv_6924cd7e1d4881979082cfaf6b644b630a01ba2bba6d673c", + "object": "conversation", + "created_at": 1764019582, + "metadata": { + "topic": "test" + } + } + }, + { + "RequestUri": "https://api.openai.com/v1/responses", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/event-stream", + "Authorization": "Sanitized", + "Content-Length": "190", + "Content-Type": "application/json", + "User-Agent": "OpenAI/2.7.0 (.NET 9.0.11; Microsoft Windows 10.0.26200)" + }, + "RequestBody": { + "model": "gpt-4.1", + "input": [ + { + "type": "message", + "role": "user", + "content": [ + { + "type": "input_text", + "text": "Hello, model!" + } + ] + } + ], + "conversation": "conv_6924cd7e1d4881979082cfaf6b644b630a01ba2bba6d673c" + }, + "StatusCode": 200, + "ResponseHeaders": { + "Alt-Svc": "h3=\":443\"", + "cf-cache-status": "DYNAMIC", + "CF-RAY": "9a3bfbf66e658a1a-BOM", + "Connection": "keep-alive", + "Content-Length": "1578", + "Content-Type": "application/json", + "Date": "Sanitized", + "openai-organization": "Sanitized", + "openai-processing-ms": "Sanitized", + "openai-project": "Sanitized", + "openai-version": "2020-10-01", + "Server": "cloudflare", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "2415", + "x-ratelimit-limit-requests": "10000", + "x-ratelimit-limit-tokens": "30000000", + "x-ratelimit-remaining-requests": "9999", + "x-ratelimit-remaining-tokens": "29999959", + "x-ratelimit-reset-requests": "6ms", + "x-ratelimit-reset-tokens": "0s", + "X-Request-ID": "Sanitized" + }, + "ResponseBody": { + "id": "resp_0a01ba2bba6d673c006924cd7f1f0c8197aa9fe22701896c9a", + "object": "response", + "created_at": 1764019583, + "status": "completed", + "background": false, + "billing": { + "payer": "developer" + }, + "conversation": { + "id": "conv_6924cd7e1d4881979082cfaf6b644b630a01ba2bba6d673c" + }, + "error": null, + "incomplete_details": null, + "instructions": null, + "max_output_tokens": null, + "max_tool_calls": null, + "model": "gpt-4.1-2025-04-14", + "output": [ + { + "id": "msg_0a01ba2bba6d673c006924cd7f98fc8197b6fecf0e216eb4c3", + "type": "message", + "status": "completed", + "content": [ + { + "type": "output_text", + "annotations": [], + "logprobs": [], + "text": "Hello! This is a test. How can I help you today?" + } + ], + "role": "assistant" + } + ], + "parallel_tool_calls": true, + "previous_response_id": null, + "prompt_cache_key": null, + "prompt_cache_retention": null, + "reasoning": { + "effort": null, + "summary": null + }, + "safety_identifier": null, + "service_tier": "default", + "store": true, + "temperature": 1.0, + "text": { + "format": { + "type": "text" + }, + "verbosity": "medium" + }, + "tool_choice": "auto", + "tools": [], + "top_logprobs": 0, + "top_p": 1.0, + "truncation": "disabled", + "usage": { + "input_tokens": 22, + "input_tokens_details": { + "cached_tokens": 0 + }, + "output_tokens": 15, + "output_tokens_details": { + "reasoning_tokens": 0 + }, + "total_tokens": 37 + }, + "user": null, + "metadata": {} + } + } + ], + "Variables": { + "OPEN-API-KEY": "api-key" + } +} diff --git a/tests/Utility/TestHelpers.cs b/tests/Utility/TestHelpers.cs index 01ac3b7f1..76472b777 100644 --- a/tests/Utility/TestHelpers.cs +++ b/tests/Utility/TestHelpers.cs @@ -4,6 +4,7 @@ using OpenAI.Batch; using OpenAI.Chat; using OpenAI.Containers; +using OpenAI.Conversations; using OpenAI.Embeddings; using OpenAI.Files; using OpenAI.FineTuning; @@ -38,6 +39,7 @@ public enum TestScenario Batch, Chat, Containers, + Conversations, Embeddings, Files, FineTuning, @@ -70,6 +72,7 @@ public enum TestScenario TestScenario.Realtime => "gpt-4o-realtime-preview-2024-10-01", TestScenario.Responses => "gpt-4o-mini", TestScenario.Containers => "gpt-4o-mini", + TestScenario.Conversations => "gpt-4o-mini", _ => throw new NotImplementedException(), }; @@ -106,6 +109,9 @@ public static T GetTestClient( TestScenario.Chat => new ChatClient(model, credential, options), #pragma warning disable OPENAI001 TestScenario.Containers => new ContainerClient(credential, options), +#pragma warning restore OPENAI001 +#pragma warning disable OPENAI001 + TestScenario.Conversations => new ConversationClient(credential, options), #pragma warning restore OPENAI001 TestScenario.Embeddings => new EmbeddingClient(model, credential, options), TestScenario.Files => new OpenAIFileClient(credential, options), diff --git a/tspCodeModel.json b/tspCodeModel.json index 0e60469f2..3d26227f3 100644 --- a/tspCodeModel.json +++ b/tspCodeModel.json @@ -64945,14 +64945,45 @@ { "$id": "5181", "kind": "property", + "name": "top_logprobs", + "serializedName": "top_logprobs", + "doc": "An integer between 0 and 20 specifying the number of most likely tokens to return at each token position, each with an associated log probability.", + "type": { + "$id": "5182", + "kind": "nullable", + "type": { + "$id": "5183", + "kind": "int32", + "name": "int32", + "crossLanguageDefinitionId": "TypeSpec.int32", + "decorators": [] + }, + "namespace": "OpenAI" + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.Response.top_logprobs", + "serializationOptions": { + "json": { + "name": "top_logprobs" + } + }, + "isHttpMetadata": false + }, + { + "$id": "5184", + "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": "5182", + "$id": "5185", "kind": "nullable", "type": { - "$id": "5183", + "$id": "5186", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -64974,16 +65005,16 @@ "isHttpMetadata": false }, { - "$id": "5184", + "$id": "5187", "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": "5185", + "$id": "5188", "kind": "nullable", "type": { - "$id": "5186", + "$id": "5189", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65005,7 +65036,33 @@ "isHttpMetadata": false }, { - "$id": "5187", + "$id": "5190", + "kind": "property", + "name": "safety_identifier", + "serializedName": "safety_identifier", + "doc": "A stable identifier used to help detect users of your application that may be violating OpenAI's usage policies.\n The IDs should be a string that uniquely identifies each user. We recommend hashing their username or email address, in order to avoid sending us any identifying information. [Learn more](https://platform.openai.com/docs/guides/safety-best-practices#safety-identifiers).", + "type": { + "$id": "5191", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.Response.safety_identifier", + "serializationOptions": { + "json": { + "name": "safety_identifier" + } + }, + "isHttpMetadata": false + }, + { + "$id": "5192", "kind": "property", "name": "service_tier", "serializedName": "service_tier", @@ -65026,7 +65083,7 @@ "isHttpMetadata": false }, { - "$id": "5188", + "$id": "5193", "kind": "property", "name": "previous_response_id", "serializedName": "previous_response_id", @@ -65048,7 +65105,7 @@ "isHttpMetadata": false }, { - "$id": "5189", + "$id": "5194", "kind": "property", "name": "model", "serializedName": "model", @@ -65070,7 +65127,7 @@ "isHttpMetadata": false }, { - "$id": "5190", + "$id": "5195", "kind": "property", "name": "reasoning", "serializedName": "reasoning", @@ -65091,7 +65148,7 @@ "isHttpMetadata": false }, { - "$id": "5191", + "$id": "5196", "kind": "property", "name": "background", "serializedName": "background", @@ -65113,7 +65170,7 @@ "isHttpMetadata": false }, { - "$id": "5192", + "$id": "5197", "kind": "property", "name": "max_output_tokens", "serializedName": "max_output_tokens", @@ -65135,7 +65192,7 @@ "isHttpMetadata": false }, { - "$id": "5193", + "$id": "5198", "kind": "property", "name": "max_tool_calls", "serializedName": "max_tool_calls", @@ -65157,7 +65214,7 @@ "isHttpMetadata": false }, { - "$id": "5194", + "$id": "5199", "kind": "property", "name": "instructions", "serializedName": "instructions", @@ -65179,7 +65236,7 @@ "isHttpMetadata": false }, { - "$id": "5195", + "$id": "5200", "kind": "property", "name": "text", "serializedName": "text", @@ -65201,7 +65258,7 @@ "isHttpMetadata": false }, { - "$id": "5196", + "$id": "5201", "kind": "property", "name": "tools", "serializedName": "tools", @@ -65223,7 +65280,7 @@ "isHttpMetadata": false }, { - "$id": "5197", + "$id": "5202", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", @@ -65245,7 +65302,7 @@ "isHttpMetadata": false }, { - "$id": "5198", + "$id": "5203", "kind": "property", "name": "truncation", "serializedName": "truncation", @@ -65267,13 +65324,13 @@ "isHttpMetadata": false }, { - "$id": "5199", + "$id": "5204", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for this Response.", "type": { - "$id": "5200", + "$id": "5205", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65293,7 +65350,7 @@ "isHttpMetadata": false }, { - "$id": "5201", + "$id": "5206", "kind": "property", "name": "object", "serializedName": "object", @@ -65315,7 +65372,7 @@ "isHttpMetadata": false }, { - "$id": "5202", + "$id": "5207", "kind": "property", "name": "status", "serializedName": "status", @@ -65337,18 +65394,18 @@ "isHttpMetadata": false }, { - "$id": "5203", + "$id": "5208", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) of when this Response was created.", "type": { - "$id": "5204", + "$id": "5209", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5205", + "$id": "5210", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -65371,15 +65428,15 @@ "isHttpMetadata": false }, { - "$id": "5206", + "$id": "5211", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$id": "5207", + "$id": "5212", "kind": "nullable", "type": { - "$id": "5208", + "$id": "5213", "kind": "model", "name": "ResponseError", "namespace": "OpenAI", @@ -65394,7 +65451,7 @@ ], "properties": [ { - "$id": "5209", + "$id": "5214", "kind": "property", "name": "code", "serializedName": "code", @@ -65415,13 +65472,13 @@ "isHttpMetadata": false }, { - "$id": "5210", + "$id": "5215", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "5211", + "$id": "5216", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65458,16 +65515,16 @@ "isHttpMetadata": false }, { - "$id": "5212", + "$id": "5217", "kind": "property", "name": "incomplete_details", "serializedName": "incomplete_details", "doc": "Details about why the response is incomplete.", "type": { - "$id": "5213", + "$id": "5218", "kind": "nullable", "type": { - "$id": "5214", + "$id": "5219", "kind": "model", "name": "ResponseIncompleteDetails1", "namespace": "OpenAI", @@ -65476,7 +65533,7 @@ "decorators": [], "properties": [ { - "$id": "5215", + "$id": "5220", "kind": "property", "name": "reason", "serializedName": "reason", @@ -65515,17 +65572,17 @@ "isHttpMetadata": false }, { - "$id": "5216", + "$id": "5221", "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": "5217", + "$id": "5222", "kind": "array", "name": "ArrayItemResource", "valueType": { - "$id": "5218", + "$id": "5223", "kind": "model", "name": "ItemResource", "namespace": "OpenAI", @@ -65539,7 +65596,7 @@ } ], "discriminatorProperty": { - "$id": "5219", + "$id": "5224", "kind": "property", "name": "type", "serializedName": "type", @@ -65561,15 +65618,15 @@ }, "properties": [ { - "$ref": "5219" + "$ref": "5224" }, { - "$id": "5220", + "$id": "5225", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "5221", + "$id": "5226", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65591,7 +65648,7 @@ ], "discriminatedSubtypes": { "message": { - "$id": "5222", + "$id": "5227", "kind": "model", "name": "ResponsesMessageItemResource", "namespace": "OpenAI", @@ -65606,7 +65663,7 @@ } ], "discriminatorProperty": { - "$id": "5223", + "$id": "5228", "kind": "property", "name": "role", "serializedName": "role", @@ -65628,11 +65685,11 @@ "isHttpMetadata": false }, "baseModel": { - "$ref": "5218" + "$ref": "5223" }, "properties": [ { - "$id": "5224", + "$id": "5229", "kind": "property", "name": "type", "serializedName": "type", @@ -65654,7 +65711,7 @@ "isHttpMetadata": false }, { - "$id": "5225", + "$id": "5230", "kind": "property", "name": "status", "serializedName": "status", @@ -65676,12 +65733,12 @@ "isHttpMetadata": false }, { - "$ref": "5223" + "$ref": "5228" } ], "discriminatedSubtypes": { "user": { - "$id": "5226", + "$id": "5231", "kind": "model", "name": "ResponsesUserMessageItemResource", "namespace": "OpenAI", @@ -65696,11 +65753,11 @@ } ], "baseModel": { - "$ref": "5222" + "$ref": "5227" }, "properties": [ { - "$id": "5227", + "$id": "5232", "kind": "property", "name": "role", "serializedName": "role", @@ -65722,7 +65779,7 @@ "isHttpMetadata": false }, { - "$id": "5228", + "$id": "5233", "kind": "property", "name": "content", "serializedName": "content", @@ -65746,7 +65803,7 @@ ] }, "system": { - "$id": "5229", + "$id": "5234", "kind": "model", "name": "ResponsesSystemMessageItemResource", "namespace": "OpenAI", @@ -65761,11 +65818,11 @@ } ], "baseModel": { - "$ref": "5222" + "$ref": "5227" }, "properties": [ { - "$id": "5230", + "$id": "5235", "kind": "property", "name": "role", "serializedName": "role", @@ -65787,7 +65844,7 @@ "isHttpMetadata": false }, { - "$id": "5231", + "$id": "5236", "kind": "property", "name": "content", "serializedName": "content", @@ -65811,7 +65868,7 @@ ] }, "developer": { - "$id": "5232", + "$id": "5237", "kind": "model", "name": "ResponsesDeveloperMessageItemResource", "namespace": "OpenAI", @@ -65826,11 +65883,11 @@ } ], "baseModel": { - "$ref": "5222" + "$ref": "5227" }, "properties": [ { - "$id": "5233", + "$id": "5238", "kind": "property", "name": "role", "serializedName": "role", @@ -65852,7 +65909,7 @@ "isHttpMetadata": false }, { - "$id": "5234", + "$id": "5239", "kind": "property", "name": "content", "serializedName": "content", @@ -65876,7 +65933,7 @@ ] }, "assistant": { - "$id": "5235", + "$id": "5240", "kind": "model", "name": "ResponsesAssistantMessageItemResource", "namespace": "OpenAI", @@ -65891,11 +65948,11 @@ } ], "baseModel": { - "$ref": "5222" + "$ref": "5227" }, "properties": [ { - "$id": "5236", + "$id": "5241", "kind": "property", "name": "role", "serializedName": "role", @@ -65917,7 +65974,7 @@ "isHttpMetadata": false }, { - "$id": "5237", + "$id": "5242", "kind": "property", "name": "content", "serializedName": "content", @@ -65943,7 +66000,7 @@ } }, "computer_call_output": { - "$id": "5238", + "$id": "5243", "kind": "model", "name": "ComputerToolCallOutputItemResource", "namespace": "OpenAI", @@ -65958,11 +66015,11 @@ } ], "baseModel": { - "$ref": "5218" + "$ref": "5223" }, "properties": [ { - "$id": "5239", + "$id": "5244", "kind": "property", "name": "type", "serializedName": "type", @@ -65983,7 +66040,7 @@ "isHttpMetadata": false }, { - "$id": "5240", + "$id": "5245", "kind": "property", "name": "status", "serializedName": "status", @@ -66005,13 +66062,13 @@ "isHttpMetadata": false }, { - "$id": "5241", + "$id": "5246", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the computer tool call that produced the output.", "type": { - "$id": "5242", + "$id": "5247", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66031,7 +66088,7 @@ "isHttpMetadata": false }, { - "$id": "5243", + "$id": "5248", "kind": "property", "name": "acknowledged_safety_checks", "serializedName": "acknowledged_safety_checks", @@ -66053,7 +66110,7 @@ "isHttpMetadata": false }, { - "$id": "5244", + "$id": "5249", "kind": "property", "name": "output", "serializedName": "output", @@ -66076,7 +66133,7 @@ ] }, "function_call": { - "$id": "5245", + "$id": "5250", "kind": "model", "name": "FunctionToolCallItemResource", "namespace": "OpenAI", @@ -66091,11 +66148,11 @@ } ], "baseModel": { - "$ref": "5218" + "$ref": "5223" }, "properties": [ { - "$id": "5246", + "$id": "5251", "kind": "property", "name": "type", "serializedName": "type", @@ -66116,7 +66173,7 @@ "isHttpMetadata": false }, { - "$id": "5247", + "$id": "5252", "kind": "property", "name": "status", "serializedName": "status", @@ -66138,13 +66195,13 @@ "isHttpMetadata": false }, { - "$id": "5248", + "$id": "5253", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "5249", + "$id": "5254", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66164,13 +66221,13 @@ "isHttpMetadata": false }, { - "$id": "5250", + "$id": "5255", "kind": "property", "name": "FunctionName", "serializedName": "name", "doc": "The name of the function to run.", "type": { - "$id": "5251", + "$id": "5256", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66190,13 +66247,13 @@ "isHttpMetadata": false }, { - "$id": "5252", + "$id": "5257", "kind": "property", "name": "FunctionArguments", "serializedName": "arguments", "doc": "A JSON string of the arguments to pass to the function.", "type": { - "$id": "5253", + "$id": "5258", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -66218,7 +66275,7 @@ ] }, "function_call_output": { - "$id": "5254", + "$id": "5259", "kind": "model", "name": "FunctionToolCallOutputItemResource", "namespace": "OpenAI", @@ -66233,11 +66290,11 @@ } ], "baseModel": { - "$ref": "5218" + "$ref": "5223" }, "properties": [ { - "$id": "5255", + "$id": "5260", "kind": "property", "name": "type", "serializedName": "type", @@ -66258,7 +66315,7 @@ "isHttpMetadata": false }, { - "$id": "5256", + "$id": "5261", "kind": "property", "name": "status", "serializedName": "status", @@ -66280,13 +66337,13 @@ "isHttpMetadata": false }, { - "$id": "5257", + "$id": "5262", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "5258", + "$id": "5263", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66306,13 +66363,13 @@ "isHttpMetadata": false }, { - "$id": "5259", + "$id": "5264", "kind": "property", "name": "FunctionOutput", "serializedName": "output", "doc": "A JSON string of the output of the function tool call.", "type": { - "$id": "5260", + "$id": "5265", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66334,7 +66391,7 @@ ] }, "mcp_approval_response": { - "$id": "5261", + "$id": "5266", "kind": "model", "name": "MCPApprovalResponseItemResource", "namespace": "OpenAI", @@ -66349,11 +66406,11 @@ } ], "baseModel": { - "$ref": "5218" + "$ref": "5223" }, "properties": [ { - "$id": "5262", + "$id": "5267", "kind": "property", "name": "type", "serializedName": "type", @@ -66374,13 +66431,13 @@ "isHttpMetadata": false }, { - "$id": "5263", + "$id": "5268", "kind": "property", "name": "approval_request_id", "serializedName": "approval_request_id", "doc": "The ID of the approval request being answered.", "type": { - "$id": "5264", + "$id": "5269", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66400,13 +66457,13 @@ "isHttpMetadata": false }, { - "$id": "5265", + "$id": "5270", "kind": "property", "name": "Approved", "serializedName": "approve", "doc": "Whether the request was approved.", "type": { - "$id": "5266", + "$id": "5271", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -66426,7 +66483,7 @@ "isHttpMetadata": false }, { - "$id": "5267", + "$id": "5272", "kind": "property", "name": "reason", "serializedName": "reason", @@ -66450,7 +66507,7 @@ ] }, "file_search_call": { - "$id": "5268", + "$id": "5273", "kind": "model", "name": "FileSearchToolCallItemResource", "namespace": "OpenAI", @@ -66465,11 +66522,11 @@ } ], "baseModel": { - "$ref": "5218" + "$ref": "5223" }, "properties": [ { - "$id": "5269", + "$id": "5274", "kind": "property", "name": "type", "serializedName": "type", @@ -66490,7 +66547,7 @@ "isHttpMetadata": false }, { - "$id": "5270", + "$id": "5275", "kind": "property", "name": "status", "serializedName": "status", @@ -66512,7 +66569,7 @@ "isHttpMetadata": false }, { - "$id": "5271", + "$id": "5276", "kind": "property", "name": "queries", "serializedName": "queries", @@ -66534,7 +66591,7 @@ "isHttpMetadata": false }, { - "$id": "5272", + "$id": "5277", "kind": "property", "name": "results", "serializedName": "results", @@ -66558,7 +66615,7 @@ ] }, "computer_call": { - "$id": "5273", + "$id": "5278", "kind": "model", "name": "ComputerToolCallItemResource", "namespace": "OpenAI", @@ -66573,11 +66630,11 @@ } ], "baseModel": { - "$ref": "5218" + "$ref": "5223" }, "properties": [ { - "$id": "5274", + "$id": "5279", "kind": "property", "name": "type", "serializedName": "type", @@ -66598,7 +66655,7 @@ "isHttpMetadata": false }, { - "$id": "5275", + "$id": "5280", "kind": "property", "name": "status", "serializedName": "status", @@ -66620,13 +66677,13 @@ "isHttpMetadata": false }, { - "$id": "5276", + "$id": "5281", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "An identifier used when responding to the tool call with output.", "type": { - "$id": "5277", + "$id": "5282", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66646,7 +66703,7 @@ "isHttpMetadata": false }, { - "$id": "5278", + "$id": "5283", "kind": "property", "name": "action", "serializedName": "action", @@ -66667,7 +66724,7 @@ "isHttpMetadata": false }, { - "$id": "5279", + "$id": "5284", "kind": "property", "name": "pending_safety_checks", "serializedName": "pending_safety_checks", @@ -66691,7 +66748,7 @@ ] }, "web_search_call": { - "$id": "5280", + "$id": "5285", "kind": "model", "name": "WebSearchToolCallItemResource", "namespace": "OpenAI", @@ -66706,11 +66763,11 @@ } ], "baseModel": { - "$ref": "5218" + "$ref": "5223" }, "properties": [ { - "$id": "5281", + "$id": "5286", "kind": "property", "name": "type", "serializedName": "type", @@ -66731,7 +66788,7 @@ "isHttpMetadata": false }, { - "$id": "5282", + "$id": "5287", "kind": "property", "name": "status", "serializedName": "status", @@ -66755,7 +66812,7 @@ ] }, "reasoning": { - "$id": "5283", + "$id": "5288", "kind": "model", "name": "ReasoningItemResource", "namespace": "OpenAI", @@ -66770,11 +66827,11 @@ } ], "baseModel": { - "$ref": "5218" + "$ref": "5223" }, "properties": [ { - "$id": "5284", + "$id": "5289", "kind": "property", "name": "type", "serializedName": "type", @@ -66795,7 +66852,7 @@ "isHttpMetadata": false }, { - "$id": "5285", + "$id": "5290", "kind": "property", "name": "status", "serializedName": "status", @@ -66817,7 +66874,7 @@ "isHttpMetadata": false }, { - "$id": "5286", + "$id": "5291", "kind": "property", "name": "encrypted_content", "serializedName": "encrypted_content", @@ -66839,7 +66896,7 @@ "isHttpMetadata": false }, { - "$id": "5287", + "$id": "5292", "kind": "property", "name": "SummaryParts", "serializedName": "summary", @@ -66863,7 +66920,7 @@ ] }, "image_generation_call": { - "$id": "5288", + "$id": "5293", "kind": "model", "name": "ImageGenToolCallItemResource", "namespace": "OpenAI", @@ -66878,11 +66935,11 @@ } ], "baseModel": { - "$ref": "5218" + "$ref": "5223" }, "properties": [ { - "$id": "5289", + "$id": "5294", "kind": "property", "name": "type", "serializedName": "type", @@ -66903,7 +66960,7 @@ "isHttpMetadata": false }, { - "$id": "5290", + "$id": "5295", "kind": "property", "name": "status", "serializedName": "status", @@ -66924,7 +66981,7 @@ "isHttpMetadata": false }, { - "$id": "5291", + "$id": "5296", "kind": "property", "name": "ImageResultBytes", "serializedName": "result", @@ -66948,7 +67005,7 @@ ] }, "code_interpreter_call": { - "$id": "5292", + "$id": "5297", "kind": "model", "name": "CodeInterpreterToolCallItemResource", "namespace": "OpenAI", @@ -66963,11 +67020,11 @@ } ], "baseModel": { - "$ref": "5218" + "$ref": "5223" }, "properties": [ { - "$id": "5293", + "$id": "5298", "kind": "property", "name": "type", "serializedName": "type", @@ -66988,7 +67045,7 @@ "isHttpMetadata": false }, { - "$id": "5294", + "$id": "5299", "kind": "property", "name": "status", "serializedName": "status", @@ -67009,13 +67066,13 @@ "isHttpMetadata": false }, { - "$id": "5295", + "$id": "5300", "kind": "property", "name": "container_id", "serializedName": "container_id", "doc": "The ID of the container used to run the code.", "type": { - "$id": "5296", + "$id": "5301", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67035,13 +67092,13 @@ "isHttpMetadata": false }, { - "$id": "5297", + "$id": "5302", "kind": "property", "name": "code", "serializedName": "code", "doc": "The code to run.", "type": { - "$id": "5298", + "$id": "5303", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67061,7 +67118,7 @@ "isHttpMetadata": false }, { - "$id": "5299", + "$id": "5304", "kind": "property", "name": "outputs", "serializedName": "outputs", @@ -67085,7 +67142,7 @@ ] }, "local_shell_call": { - "$id": "5300", + "$id": "5305", "kind": "model", "name": "LocalShellToolCallItemResource", "namespace": "OpenAI", @@ -67100,11 +67157,11 @@ } ], "baseModel": { - "$ref": "5218" + "$ref": "5223" }, "properties": [ { - "$id": "5301", + "$id": "5306", "kind": "property", "name": "type", "serializedName": "type", @@ -67125,7 +67182,7 @@ "isHttpMetadata": false }, { - "$id": "5302", + "$id": "5307", "kind": "property", "name": "status", "serializedName": "status", @@ -67146,13 +67203,13 @@ "isHttpMetadata": false }, { - "$id": "5303", + "$id": "5308", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the local shell tool call generated by the model.", "type": { - "$id": "5304", + "$id": "5309", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67172,7 +67229,7 @@ "isHttpMetadata": false }, { - "$id": "5305", + "$id": "5310", "kind": "property", "name": "action", "serializedName": "action", @@ -67195,7 +67252,7 @@ ] }, "local_shell_call_output": { - "$id": "5306", + "$id": "5311", "kind": "model", "name": "LocalShellToolCallOutputItemResource", "namespace": "OpenAI", @@ -67210,11 +67267,11 @@ } ], "baseModel": { - "$ref": "5218" + "$ref": "5223" }, "properties": [ { - "$id": "5307", + "$id": "5312", "kind": "property", "name": "type", "serializedName": "type", @@ -67235,7 +67292,7 @@ "isHttpMetadata": false }, { - "$id": "5308", + "$id": "5313", "kind": "property", "name": "status", "serializedName": "status", @@ -67256,13 +67313,13 @@ "isHttpMetadata": false }, { - "$id": "5309", + "$id": "5314", "kind": "property", "name": "output", "serializedName": "output", "doc": "A JSON string of the output of the local shell tool call.", "type": { - "$id": "5310", + "$id": "5315", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67284,7 +67341,7 @@ ] }, "mcp_list_tools": { - "$id": "5311", + "$id": "5316", "kind": "model", "name": "MCPListToolsItemResource", "namespace": "OpenAI", @@ -67299,11 +67356,11 @@ } ], "baseModel": { - "$ref": "5218" + "$ref": "5223" }, "properties": [ { - "$id": "5312", + "$id": "5317", "kind": "property", "name": "type", "serializedName": "type", @@ -67324,13 +67381,13 @@ "isHttpMetadata": false }, { - "$id": "5313", + "$id": "5318", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server.", "type": { - "$id": "5314", + "$id": "5319", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67350,7 +67407,7 @@ "isHttpMetadata": false }, { - "$id": "5315", + "$id": "5320", "kind": "property", "name": "ToolDefinitions", "serializedName": "tools", @@ -67372,16 +67429,16 @@ "isHttpMetadata": false }, { - "$id": "5316", + "$id": "5321", "kind": "property", "name": "error", "serializedName": "error", "doc": "Error message if the server could not list tools.", "type": { - "$id": "5317", + "$id": "5322", "kind": "nullable", "type": { - "$id": "5318", + "$id": "5323", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -67405,7 +67462,7 @@ ] }, "mcp_approval_request": { - "$id": "5319", + "$id": "5324", "kind": "model", "name": "MCPApprovalRequestItemResource", "namespace": "OpenAI", @@ -67420,11 +67477,11 @@ } ], "baseModel": { - "$ref": "5218" + "$ref": "5223" }, "properties": [ { - "$id": "5320", + "$id": "5325", "kind": "property", "name": "type", "serializedName": "type", @@ -67445,13 +67502,13 @@ "isHttpMetadata": false }, { - "$id": "5321", + "$id": "5326", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server making the request.", "type": { - "$id": "5322", + "$id": "5327", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67471,13 +67528,13 @@ "isHttpMetadata": false }, { - "$id": "5323", + "$id": "5328", "kind": "property", "name": "ToolName", "serializedName": "name", "doc": "The name of the tool to run.", "type": { - "$id": "5324", + "$id": "5329", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67497,13 +67554,13 @@ "isHttpMetadata": false }, { - "$id": "5325", + "$id": "5330", "kind": "property", "name": "ToolArguments", "serializedName": "arguments", "doc": "A JSON string of arguments for the tool.", "type": { - "$id": "5326", + "$id": "5331", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -67525,7 +67582,7 @@ ] }, "mcp_call": { - "$id": "5327", + "$id": "5332", "kind": "model", "name": "MCPCallItemResource", "namespace": "OpenAI", @@ -67540,11 +67597,11 @@ } ], "baseModel": { - "$ref": "5218" + "$ref": "5223" }, "properties": [ { - "$id": "5328", + "$id": "5333", "kind": "property", "name": "type", "serializedName": "type", @@ -67565,13 +67622,13 @@ "isHttpMetadata": false }, { - "$id": "5329", + "$id": "5334", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server running the tool.", "type": { - "$id": "5330", + "$id": "5335", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67591,13 +67648,13 @@ "isHttpMetadata": false }, { - "$id": "5331", + "$id": "5336", "kind": "property", "name": "ToolName", "serializedName": "name", "doc": "The name of the tool that was run.", "type": { - "$id": "5332", + "$id": "5337", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67617,13 +67674,13 @@ "isHttpMetadata": false }, { - "$id": "5333", + "$id": "5338", "kind": "property", "name": "ToolArguments", "serializedName": "arguments", "doc": "A JSON string of the arguments passed to the tool.", "type": { - "$id": "5334", + "$id": "5339", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -67643,7 +67700,7 @@ "isHttpMetadata": false }, { - "$id": "5335", + "$id": "5340", "kind": "property", "name": "ToolOutput", "serializedName": "output", @@ -67665,16 +67722,16 @@ "isHttpMetadata": false }, { - "$id": "5336", + "$id": "5341", "kind": "property", "name": "error", "serializedName": "error", "doc": "The error from the tool call, if any.", "type": { - "$id": "5337", + "$id": "5342", "kind": "nullable", "type": { - "$id": "5338", + "$id": "5343", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -67698,7 +67755,7 @@ ] }, "item_reference": { - "$id": "5339", + "$id": "5344", "kind": "model", "name": "DotNetItemReferenceItemResource", "namespace": "OpenAI", @@ -67713,11 +67770,11 @@ } ], "baseModel": { - "$ref": "5218" + "$ref": "5223" }, "properties": [ { - "$id": "5340", + "$id": "5345", "kind": "property", "name": "type", "serializedName": "type", @@ -67758,16 +67815,16 @@ "isHttpMetadata": false }, { - "$id": "5341", + "$id": "5346", "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": "5342", + "$id": "5347", "kind": "nullable", "type": { - "$id": "5343", + "$id": "5348", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67789,12 +67846,12 @@ "isHttpMetadata": false }, { - "$id": "5344", + "$id": "5349", "kind": "property", "name": "usage", "serializedName": "usage", "type": { - "$id": "5345", + "$id": "5350", "kind": "model", "name": "ResponseUsage", "namespace": "OpenAI", @@ -67809,13 +67866,13 @@ ], "properties": [ { - "$id": "5346", + "$id": "5351", "kind": "property", "name": "input_tokens", "serializedName": "input_tokens", "doc": "The number of input tokens.", "type": { - "$id": "5347", + "$id": "5352", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67835,13 +67892,13 @@ "isHttpMetadata": false }, { - "$id": "5348", + "$id": "5353", "kind": "property", "name": "input_tokens_details", "serializedName": "input_tokens_details", "doc": "A detailed breakdown of the input tokens.", "type": { - "$id": "5349", + "$id": "5354", "kind": "model", "name": "ResponseUsageInputTokensDetails", "namespace": "OpenAI", @@ -67850,13 +67907,13 @@ "decorators": [], "properties": [ { - "$id": "5350", + "$id": "5355", "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": "5351", + "$id": "5356", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67891,13 +67948,13 @@ "isHttpMetadata": false }, { - "$id": "5352", + "$id": "5357", "kind": "property", "name": "output_tokens", "serializedName": "output_tokens", "doc": "The number of output tokens.", "type": { - "$id": "5353", + "$id": "5358", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67917,13 +67974,13 @@ "isHttpMetadata": false }, { - "$id": "5354", + "$id": "5359", "kind": "property", "name": "output_tokens_details", "serializedName": "output_tokens_details", "doc": "A detailed breakdown of the output tokens.", "type": { - "$id": "5355", + "$id": "5360", "kind": "model", "name": "ResponseUsageOutputTokensDetails", "namespace": "OpenAI", @@ -67932,13 +67989,13 @@ "decorators": [], "properties": [ { - "$id": "5356", + "$id": "5361", "kind": "property", "name": "reasoning_tokens", "serializedName": "reasoning_tokens", "doc": "The number of reasoning tokens.", "type": { - "$id": "5357", + "$id": "5362", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67973,13 +68030,13 @@ "isHttpMetadata": false }, { - "$id": "5358", + "$id": "5363", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens used.", "type": { - "$id": "5359", + "$id": "5364", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -68014,13 +68071,13 @@ "isHttpMetadata": false }, { - "$id": "5360", + "$id": "5365", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "doc": "Whether to allow the model to run tool calls in parallel.", "type": { - "$id": "5361", + "$id": "5366", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -68038,92 +68095,158 @@ } }, "isHttpMetadata": false + }, + { + "$id": "5367", + "kind": "property", + "name": "conversation", + "serializedName": "conversation", + "doc": "The conversation that this response belongs to. Input items and output items from this response are automatically added to this conversation.", + "type": { + "$id": "5368", + "kind": "nullable", + "type": { + "$id": "5369", + "kind": "model", + "name": "ConversationParam-2", + "namespace": "OpenAI", + "crossLanguageDefinitionId": "OpenAI.ConversationParam-2", + "usage": "Output,Json", + "doc": "The conversation that this response belongs to.", + "summary": "Conversation object", + "decorators": [], + "properties": [ + { + "$id": "5370", + "kind": "property", + "name": "id", + "serializedName": "id", + "doc": "The unique ID of the conversation.", + "type": { + "$id": "5371", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ConversationParam-2.id", + "serializationOptions": { + "json": { + "name": "id" + } + }, + "isHttpMetadata": false + } + ] + }, + "namespace": "OpenAI" + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.Response.conversation", + "serializationOptions": { + "json": { + "name": "conversation" + } + }, + "isHttpMetadata": false } ] }, { - "$ref": "5208" - }, - { - "$ref": "5214" + "$ref": "5213" }, { - "$ref": "5218" + "$ref": "5219" }, { - "$ref": "5222" + "$ref": "5223" }, { - "$ref": "5226" + "$ref": "5227" }, { - "$ref": "5229" + "$ref": "5231" }, { - "$ref": "5232" + "$ref": "5234" }, { - "$ref": "5235" + "$ref": "5237" }, { - "$ref": "5238" + "$ref": "5240" }, { - "$ref": "5245" + "$ref": "5243" }, { - "$ref": "5254" + "$ref": "5250" }, { - "$ref": "5261" + "$ref": "5259" }, { - "$ref": "5268" + "$ref": "5266" }, { "$ref": "5273" }, { - "$ref": "5280" + "$ref": "5278" }, { - "$ref": "5283" + "$ref": "5285" }, { "$ref": "5288" }, { - "$ref": "5292" + "$ref": "5293" }, { - "$ref": "5300" + "$ref": "5297" }, { - "$ref": "5306" + "$ref": "5305" }, { "$ref": "5311" }, { - "$ref": "5319" + "$ref": "5316" + }, + { + "$ref": "5324" + }, + { + "$ref": "5332" }, { - "$ref": "5327" + "$ref": "5344" }, { - "$ref": "5339" + "$ref": "5350" }, { - "$ref": "5345" + "$ref": "5354" }, { - "$ref": "5349" + "$ref": "5360" }, { - "$ref": "5355" + "$ref": "5369" }, { - "$id": "5362", + "$id": "5372", "kind": "model", "name": "ResponseStreamEvent", "namespace": "OpenAI", @@ -68136,7 +68259,7 @@ } ], "discriminatorProperty": { - "$id": "5363", + "$id": "5373", "kind": "property", "name": "type", "serializedName": "type", @@ -68158,16 +68281,16 @@ }, "properties": [ { - "$ref": "5363" + "$ref": "5373" }, { - "$id": "5364", + "$id": "5374", "kind": "property", "name": "sequence_number", "serializedName": "sequence_number", "doc": "The sequence number for this event.", "type": { - "$id": "5365", + "$id": "5375", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -68189,7 +68312,7 @@ ], "discriminatedSubtypes": { "response.completed": { - "$id": "5366", + "$id": "5376", "kind": "model", "name": "ResponseCompletedEvent", "namespace": "OpenAI", @@ -68204,17 +68327,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5367", + "$id": "5377", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.completed`.", "type": { - "$id": "5368", + "$id": "5378", "kind": "enumvalue", "name": "response_completed", "value": "response.completed", @@ -68222,14 +68345,14 @@ "$ref": "775" }, "enumType": { - "$id": "5369", + "$id": "5379", "kind": "enum", "decorators": [], "name": "ResponseStreamEventType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "5370", + "$id": "5380", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -68238,718 +68361,718 @@ }, "values": [ { - "$id": "5371", + "$id": "5381", "kind": "enumvalue", "decorators": [], "name": "response_audio_delta", "value": "response.audio.delta", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5372", + "$id": "5382", "kind": "enumvalue", "decorators": [], "name": "response_audio_done", "value": "response.audio.done", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5373", + "$id": "5383", "kind": "enumvalue", "decorators": [], "name": "response_audio_transcript_delta", "value": "response.audio_transcript.delta", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5374", + "$id": "5384", "kind": "enumvalue", "decorators": [], "name": "response_audio_transcript_done", "value": "response.audio_transcript.done", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5375", + "$id": "5385", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_code_delta", "value": "response.code_interpreter_call_code.delta", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5376", + "$id": "5386", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_code_done", "value": "response.code_interpreter_call_code.done", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5377", + "$id": "5387", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_completed", "value": "response.code_interpreter_call.completed", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5378", + "$id": "5388", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_in_progress", "value": "response.code_interpreter_call.in_progress", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5379", + "$id": "5389", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_interpreting", "value": "response.code_interpreter_call.interpreting", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5380", + "$id": "5390", "kind": "enumvalue", "decorators": [], "name": "response_completed", "value": "response.completed", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5381", + "$id": "5391", "kind": "enumvalue", "decorators": [], "name": "response_content_part_added", "value": "response.content_part.added", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5382", + "$id": "5392", "kind": "enumvalue", "decorators": [], "name": "response_content_part_done", "value": "response.content_part.done", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5383", + "$id": "5393", "kind": "enumvalue", "decorators": [], "name": "response_created", "value": "response.created", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5384", + "$id": "5394", "kind": "enumvalue", "decorators": [], "name": "error", "value": "error", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5385", + "$id": "5395", "kind": "enumvalue", "decorators": [], "name": "response_file_search_call_completed", "value": "response.file_search_call.completed", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5386", + "$id": "5396", "kind": "enumvalue", "decorators": [], "name": "response_file_search_call_in_progress", "value": "response.file_search_call.in_progress", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5387", + "$id": "5397", "kind": "enumvalue", "decorators": [], "name": "response_file_search_call_searching", "value": "response.file_search_call.searching", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5388", + "$id": "5398", "kind": "enumvalue", "decorators": [], "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5389", + "$id": "5399", "kind": "enumvalue", "decorators": [], "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5390", + "$id": "5400", "kind": "enumvalue", "decorators": [], "name": "response_in_progress", "value": "response.in_progress", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5391", + "$id": "5401", "kind": "enumvalue", "decorators": [], "name": "response_failed", "value": "response.failed", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5392", + "$id": "5402", "kind": "enumvalue", "decorators": [], "name": "response_incomplete", "value": "response.incomplete", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5393", + "$id": "5403", "kind": "enumvalue", "decorators": [], "name": "response_output_item_added", "value": "response.output_item.added", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5394", + "$id": "5404", "kind": "enumvalue", "decorators": [], "name": "response_output_item_done", "value": "response.output_item.done", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5395", + "$id": "5405", "kind": "enumvalue", "decorators": [], "name": "response_refusal_delta", "value": "response.refusal.delta", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5396", + "$id": "5406", "kind": "enumvalue", "decorators": [], "name": "response_refusal_done", "value": "response.refusal.done", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5397", + "$id": "5407", "kind": "enumvalue", "decorators": [], "name": "response_output_text_annotation_added", "value": "response.output_text.annotation.added", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5398", + "$id": "5408", "kind": "enumvalue", "decorators": [], "name": "response_output_text_delta", "value": "response.output_text.delta", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5399", + "$id": "5409", "kind": "enumvalue", "decorators": [], "name": "response_output_text_done", "value": "response.output_text.done", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5400", + "$id": "5410", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_part_added", "value": "response.reasoning_summary_part.added", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5401", + "$id": "5411", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_part_done", "value": "response.reasoning_summary_part.done", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5402", + "$id": "5412", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_text_delta", "value": "response.reasoning_summary_text.delta", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5403", + "$id": "5413", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_text_done", "value": "response.reasoning_summary_text.done", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5404", + "$id": "5414", "kind": "enumvalue", "decorators": [], "name": "response_web_search_call_completed", "value": "response.web_search_call.completed", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5405", + "$id": "5415", "kind": "enumvalue", "decorators": [], "name": "response_web_search_call_in_progress", "value": "response.web_search_call.in_progress", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5406", + "$id": "5416", "kind": "enumvalue", "decorators": [], "name": "response_web_search_call_searching", "value": "response.web_search_call.searching", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5407", + "$id": "5417", "kind": "enumvalue", "decorators": [], "name": "response_image_generation_call_completed", "value": "response.image_generation_call.completed", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5408", + "$id": "5418", "kind": "enumvalue", "decorators": [], "name": "response_image_generation_call_generating", "value": "response.image_generation_call.generating", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5409", + "$id": "5419", "kind": "enumvalue", "decorators": [], "name": "response_image_generation_call_in_progress", "value": "response.image_generation_call.in_progress", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5410", + "$id": "5420", "kind": "enumvalue", "decorators": [], "name": "response_image_generation_call_partial_image", "value": "response.image_generation_call.partial_image", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5411", + "$id": "5421", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_arguments_delta", "value": "response.mcp_call_arguments.delta", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5412", + "$id": "5422", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_arguments_done", "value": "response.mcp_call_arguments.done", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5413", + "$id": "5423", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_completed", "value": "response.mcp_call.completed", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5414", + "$id": "5424", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_failed", "value": "response.mcp_call.failed", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5415", + "$id": "5425", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_in_progress", "value": "response.mcp_call.in_progress", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5416", + "$id": "5426", "kind": "enumvalue", "decorators": [], "name": "response_mcp_list_tools_completed", "value": "response.mcp_list_tools.completed", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5417", + "$id": "5427", "kind": "enumvalue", "decorators": [], "name": "response_mcp_list_tools_failed", "value": "response.mcp_list_tools.failed", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5418", + "$id": "5428", "kind": "enumvalue", "decorators": [], "name": "response_mcp_list_tools_in_progress", "value": "response.mcp_list_tools.in_progress", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5419", + "$id": "5429", "kind": "enumvalue", "decorators": [], "name": "response_queued", "value": "response.queued", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5420", + "$id": "5430", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_delta", "value": "response.reasoning.delta", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5421", + "$id": "5431", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_done", "value": "response.reasoning.done", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5422", + "$id": "5432", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_delta", "value": "response.reasoning_summary.delta", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5423", + "$id": "5433", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_done", "value": "response.reasoning_summary.done", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5424", + "$id": "5434", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_text_delta", "value": "response.reasoning_text.delta", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } }, { - "$id": "5425", + "$id": "5435", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_text_done", "value": "response.reasoning_text.done", "valueType": { - "$ref": "5370" + "$ref": "5380" }, "enumType": { - "$ref": "5369" + "$ref": "5379" } } ], @@ -68978,7 +69101,7 @@ "isHttpMetadata": false }, { - "$id": "5426", + "$id": "5436", "kind": "property", "name": "response", "serializedName": "response", @@ -69002,7 +69125,7 @@ ] }, "response.content_part.added": { - "$id": "5427", + "$id": "5437", "kind": "model", "name": "ResponseContentPartAddedEvent", "namespace": "OpenAI", @@ -69017,17 +69140,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5428", + "$id": "5438", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.content_part.added`.", "type": { - "$id": "5429", + "$id": "5439", "kind": "enumvalue", "name": "response_content_part_added", "value": "response.content_part.added", @@ -69035,7 +69158,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -69053,13 +69176,13 @@ "isHttpMetadata": false }, { - "$id": "5430", + "$id": "5440", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the content part was added to.", "type": { - "$id": "5431", + "$id": "5441", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69079,13 +69202,13 @@ "isHttpMetadata": false }, { - "$id": "5432", + "$id": "5442", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the content part was added to.", "type": { - "$id": "5433", + "$id": "5443", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69105,13 +69228,13 @@ "isHttpMetadata": false }, { - "$id": "5434", + "$id": "5444", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part that was added.", "type": { - "$id": "5435", + "$id": "5445", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69131,7 +69254,7 @@ "isHttpMetadata": false }, { - "$id": "5436", + "$id": "5446", "kind": "property", "name": "part", "serializedName": "part", @@ -69155,7 +69278,7 @@ ] }, "response.content_part.done": { - "$id": "5437", + "$id": "5447", "kind": "model", "name": "ResponseContentPartDoneEvent", "namespace": "OpenAI", @@ -69170,17 +69293,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5438", + "$id": "5448", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.content_part.done`.", "type": { - "$id": "5439", + "$id": "5449", "kind": "enumvalue", "name": "response_content_part_done", "value": "response.content_part.done", @@ -69188,7 +69311,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -69206,13 +69329,13 @@ "isHttpMetadata": false }, { - "$id": "5440", + "$id": "5450", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the content part was added to.", "type": { - "$id": "5441", + "$id": "5451", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69232,13 +69355,13 @@ "isHttpMetadata": false }, { - "$id": "5442", + "$id": "5452", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the content part was added to.", "type": { - "$id": "5443", + "$id": "5453", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69258,13 +69381,13 @@ "isHttpMetadata": false }, { - "$id": "5444", + "$id": "5454", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part that is done.", "type": { - "$id": "5445", + "$id": "5455", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69284,7 +69407,7 @@ "isHttpMetadata": false }, { - "$id": "5446", + "$id": "5456", "kind": "property", "name": "part", "serializedName": "part", @@ -69308,7 +69431,7 @@ ] }, "response.created": { - "$id": "5447", + "$id": "5457", "kind": "model", "name": "ResponseCreatedEvent", "namespace": "OpenAI", @@ -69323,17 +69446,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5448", + "$id": "5458", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.created`.", "type": { - "$id": "5449", + "$id": "5459", "kind": "enumvalue", "name": "response_created", "value": "response.created", @@ -69341,7 +69464,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -69359,7 +69482,7 @@ "isHttpMetadata": false }, { - "$id": "5450", + "$id": "5460", "kind": "property", "name": "response", "serializedName": "response", @@ -69383,7 +69506,7 @@ ] }, "error": { - "$id": "5451", + "$id": "5461", "kind": "model", "name": "ResponseErrorEvent", "namespace": "OpenAI", @@ -69398,17 +69521,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5452", + "$id": "5462", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `error`.", "type": { - "$id": "5453", + "$id": "5463", "kind": "enumvalue", "name": "error", "value": "error", @@ -69416,7 +69539,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -69434,16 +69557,16 @@ "isHttpMetadata": false }, { - "$id": "5454", + "$id": "5464", "kind": "property", "name": "code", "serializedName": "code", "doc": "The error code.", "type": { - "$id": "5455", + "$id": "5465", "kind": "nullable", "type": { - "$id": "5456", + "$id": "5466", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69465,13 +69588,13 @@ "isHttpMetadata": false }, { - "$id": "5457", + "$id": "5467", "kind": "property", "name": "message", "serializedName": "message", "doc": "The error message.", "type": { - "$id": "5458", + "$id": "5468", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69491,16 +69614,16 @@ "isHttpMetadata": false }, { - "$id": "5459", + "$id": "5469", "kind": "property", "name": "param", "serializedName": "param", "doc": "The error parameter.", "type": { - "$id": "5460", + "$id": "5470", "kind": "nullable", "type": { - "$id": "5461", + "$id": "5471", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69524,7 +69647,7 @@ ] }, "response.file_search_call.completed": { - "$id": "5462", + "$id": "5472", "kind": "model", "name": "ResponseFileSearchCallCompletedEvent", "namespace": "OpenAI", @@ -69539,17 +69662,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5463", + "$id": "5473", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.file_search_call.completed`.", "type": { - "$id": "5464", + "$id": "5474", "kind": "enumvalue", "name": "response_file_search_call_completed", "value": "response.file_search_call.completed", @@ -69557,7 +69680,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -69575,13 +69698,13 @@ "isHttpMetadata": false }, { - "$id": "5465", + "$id": "5475", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the file search call is initiated.", "type": { - "$id": "5466", + "$id": "5476", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69601,13 +69724,13 @@ "isHttpMetadata": false }, { - "$id": "5467", + "$id": "5477", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the file search call is initiated.", "type": { - "$id": "5468", + "$id": "5478", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69629,7 +69752,7 @@ ] }, "response.file_search_call.in_progress": { - "$id": "5469", + "$id": "5479", "kind": "model", "name": "ResponseFileSearchCallInProgressEvent", "namespace": "OpenAI", @@ -69644,17 +69767,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5470", + "$id": "5480", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.file_search_call.in_progress`.", "type": { - "$id": "5471", + "$id": "5481", "kind": "enumvalue", "name": "response_file_search_call_in_progress", "value": "response.file_search_call.in_progress", @@ -69662,7 +69785,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -69680,13 +69803,13 @@ "isHttpMetadata": false }, { - "$id": "5472", + "$id": "5482", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the file search call is initiated.", "type": { - "$id": "5473", + "$id": "5483", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69706,13 +69829,13 @@ "isHttpMetadata": false }, { - "$id": "5474", + "$id": "5484", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the file search call is initiated.", "type": { - "$id": "5475", + "$id": "5485", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69734,7 +69857,7 @@ ] }, "response.file_search_call.searching": { - "$id": "5476", + "$id": "5486", "kind": "model", "name": "ResponseFileSearchCallSearchingEvent", "namespace": "OpenAI", @@ -69749,17 +69872,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5477", + "$id": "5487", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.file_search_call.searching`.", "type": { - "$id": "5478", + "$id": "5488", "kind": "enumvalue", "name": "response_file_search_call_searching", "value": "response.file_search_call.searching", @@ -69767,7 +69890,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -69785,13 +69908,13 @@ "isHttpMetadata": false }, { - "$id": "5479", + "$id": "5489", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the file search call is searching.", "type": { - "$id": "5480", + "$id": "5490", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69811,13 +69934,13 @@ "isHttpMetadata": false }, { - "$id": "5481", + "$id": "5491", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the file search call is initiated.", "type": { - "$id": "5482", + "$id": "5492", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69839,7 +69962,7 @@ ] }, "response.function_call_arguments.delta": { - "$id": "5483", + "$id": "5493", "kind": "model", "name": "ResponseFunctionCallArgumentsDeltaEvent", "namespace": "OpenAI", @@ -69854,17 +69977,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5484", + "$id": "5494", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.function_call_arguments.delta`.", "type": { - "$id": "5485", + "$id": "5495", "kind": "enumvalue", "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", @@ -69872,7 +69995,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -69890,13 +70013,13 @@ "isHttpMetadata": false }, { - "$id": "5486", + "$id": "5496", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the function-call arguments delta is added to.", "type": { - "$id": "5487", + "$id": "5497", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69916,13 +70039,13 @@ "isHttpMetadata": false }, { - "$id": "5488", + "$id": "5498", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the function-call arguments delta is added to.", "type": { - "$id": "5489", + "$id": "5499", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69942,13 +70065,13 @@ "isHttpMetadata": false }, { - "$id": "5490", + "$id": "5500", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The function-call arguments delta that is added.", "type": { - "$id": "5491", + "$id": "5501", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -69970,7 +70093,7 @@ ] }, "response.function_call_arguments.done": { - "$id": "5492", + "$id": "5502", "kind": "model", "name": "ResponseFunctionCallArgumentsDoneEvent", "namespace": "OpenAI", @@ -69985,16 +70108,16 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5493", + "$id": "5503", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5494", + "$id": "5504", "kind": "enumvalue", "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", @@ -70002,7 +70125,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -70020,13 +70143,13 @@ "isHttpMetadata": false }, { - "$id": "5495", + "$id": "5505", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "5496", + "$id": "5506", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70046,13 +70169,13 @@ "isHttpMetadata": false }, { - "$id": "5497", + "$id": "5507", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item.", "type": { - "$id": "5498", + "$id": "5508", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70072,13 +70195,13 @@ "isHttpMetadata": false }, { - "$id": "5499", + "$id": "5509", "kind": "property", "name": "FunctionArguments", "serializedName": "arguments", "doc": "The function-call arguments.", "type": { - "$id": "5500", + "$id": "5510", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -70100,7 +70223,7 @@ ] }, "response.in_progress": { - "$id": "5501", + "$id": "5511", "kind": "model", "name": "ResponseInProgressEvent", "namespace": "OpenAI", @@ -70115,17 +70238,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5502", + "$id": "5512", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.in_progress`.", "type": { - "$id": "5503", + "$id": "5513", "kind": "enumvalue", "name": "response_in_progress", "value": "response.in_progress", @@ -70133,7 +70256,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -70151,7 +70274,7 @@ "isHttpMetadata": false }, { - "$id": "5504", + "$id": "5514", "kind": "property", "name": "response", "serializedName": "response", @@ -70175,7 +70298,7 @@ ] }, "response.failed": { - "$id": "5505", + "$id": "5515", "kind": "model", "name": "ResponseFailedEvent", "namespace": "OpenAI", @@ -70190,17 +70313,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5506", + "$id": "5516", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.failed`.", "type": { - "$id": "5507", + "$id": "5517", "kind": "enumvalue", "name": "response_failed", "value": "response.failed", @@ -70208,7 +70331,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -70226,7 +70349,7 @@ "isHttpMetadata": false }, { - "$id": "5508", + "$id": "5518", "kind": "property", "name": "response", "serializedName": "response", @@ -70250,7 +70373,7 @@ ] }, "response.incomplete": { - "$id": "5509", + "$id": "5519", "kind": "model", "name": "ResponseIncompleteEvent", "namespace": "OpenAI", @@ -70265,17 +70388,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5510", + "$id": "5520", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.incomplete`.", "type": { - "$id": "5511", + "$id": "5521", "kind": "enumvalue", "name": "response_incomplete", "value": "response.incomplete", @@ -70283,7 +70406,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -70301,7 +70424,7 @@ "isHttpMetadata": false }, { - "$id": "5512", + "$id": "5522", "kind": "property", "name": "response", "serializedName": "response", @@ -70325,7 +70448,7 @@ ] }, "response.output_item.added": { - "$id": "5513", + "$id": "5523", "kind": "model", "name": "ResponseOutputItemAddedEvent", "namespace": "OpenAI", @@ -70340,17 +70463,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5514", + "$id": "5524", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.output_item.added`.", "type": { - "$id": "5515", + "$id": "5525", "kind": "enumvalue", "name": "response_output_item_added", "value": "response.output_item.added", @@ -70358,7 +70481,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -70376,13 +70499,13 @@ "isHttpMetadata": false }, { - "$id": "5516", + "$id": "5526", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that was added.", "type": { - "$id": "5517", + "$id": "5527", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70402,13 +70525,13 @@ "isHttpMetadata": false }, { - "$id": "5518", + "$id": "5528", "kind": "property", "name": "item", "serializedName": "item", "doc": "The output item that was added.", "type": { - "$ref": "5218" + "$ref": "5223" }, "optional": false, "readOnly": false, @@ -70426,7 +70549,7 @@ ] }, "response.output_item.done": { - "$id": "5519", + "$id": "5529", "kind": "model", "name": "ResponseOutputItemDoneEvent", "namespace": "OpenAI", @@ -70441,17 +70564,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5520", + "$id": "5530", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.output_item.done`.", "type": { - "$id": "5521", + "$id": "5531", "kind": "enumvalue", "name": "response_output_item_done", "value": "response.output_item.done", @@ -70459,7 +70582,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -70477,13 +70600,13 @@ "isHttpMetadata": false }, { - "$id": "5522", + "$id": "5532", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that was marked done.", "type": { - "$id": "5523", + "$id": "5533", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70503,13 +70626,13 @@ "isHttpMetadata": false }, { - "$id": "5524", + "$id": "5534", "kind": "property", "name": "item", "serializedName": "item", "doc": "The output item that was marked done.", "type": { - "$ref": "5218" + "$ref": "5223" }, "optional": false, "readOnly": false, @@ -70527,7 +70650,7 @@ ] }, "response.refusal.delta": { - "$id": "5525", + "$id": "5535", "kind": "model", "name": "ResponseRefusalDeltaEvent", "namespace": "OpenAI", @@ -70542,17 +70665,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5526", + "$id": "5536", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.refusal.delta`.", "type": { - "$id": "5527", + "$id": "5537", "kind": "enumvalue", "name": "response_refusal_delta", "value": "response.refusal.delta", @@ -70560,7 +70683,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -70578,13 +70701,13 @@ "isHttpMetadata": false }, { - "$id": "5528", + "$id": "5538", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the refusal text is added to.", "type": { - "$id": "5529", + "$id": "5539", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70604,13 +70727,13 @@ "isHttpMetadata": false }, { - "$id": "5530", + "$id": "5540", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the refusal text is added to.", "type": { - "$id": "5531", + "$id": "5541", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70630,13 +70753,13 @@ "isHttpMetadata": false }, { - "$id": "5532", + "$id": "5542", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part that the refusal text is added to.", "type": { - "$id": "5533", + "$id": "5543", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70656,13 +70779,13 @@ "isHttpMetadata": false }, { - "$id": "5534", + "$id": "5544", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The refusal text that is added.", "type": { - "$id": "5535", + "$id": "5545", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70684,7 +70807,7 @@ ] }, "response.refusal.done": { - "$id": "5536", + "$id": "5546", "kind": "model", "name": "ResponseRefusalDoneEvent", "namespace": "OpenAI", @@ -70699,17 +70822,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5537", + "$id": "5547", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.refusal.done`.", "type": { - "$id": "5538", + "$id": "5548", "kind": "enumvalue", "name": "response_refusal_done", "value": "response.refusal.done", @@ -70717,7 +70840,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -70735,13 +70858,13 @@ "isHttpMetadata": false }, { - "$id": "5539", + "$id": "5549", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the refusal text is finalized.", "type": { - "$id": "5540", + "$id": "5550", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70761,13 +70884,13 @@ "isHttpMetadata": false }, { - "$id": "5541", + "$id": "5551", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the refusal text is finalized.", "type": { - "$id": "5542", + "$id": "5552", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70787,13 +70910,13 @@ "isHttpMetadata": false }, { - "$id": "5543", + "$id": "5553", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part that the refusal text is finalized.", "type": { - "$id": "5544", + "$id": "5554", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70813,13 +70936,13 @@ "isHttpMetadata": false }, { - "$id": "5545", + "$id": "5555", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "The refusal text that is finalized.", "type": { - "$id": "5546", + "$id": "5556", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70841,7 +70964,7 @@ ] }, "response.output_text.delta": { - "$id": "5547", + "$id": "5557", "kind": "model", "name": "ResponseTextDeltaEvent", "namespace": "OpenAI", @@ -70856,17 +70979,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5548", + "$id": "5558", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.output_text.delta`.", "type": { - "$id": "5549", + "$id": "5559", "kind": "enumvalue", "name": "response_output_text_delta", "value": "response.output_text.delta", @@ -70874,7 +70997,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -70892,13 +71015,13 @@ "isHttpMetadata": false }, { - "$id": "5550", + "$id": "5560", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the text delta was added to.", "type": { - "$id": "5551", + "$id": "5561", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70918,13 +71041,13 @@ "isHttpMetadata": false }, { - "$id": "5552", + "$id": "5562", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the text delta was added to.", "type": { - "$id": "5553", + "$id": "5563", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70944,13 +71067,13 @@ "isHttpMetadata": false }, { - "$id": "5554", + "$id": "5564", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part that the text delta was added to.", "type": { - "$id": "5555", + "$id": "5565", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70970,13 +71093,13 @@ "isHttpMetadata": false }, { - "$id": "5556", + "$id": "5566", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The text delta that was added.", "type": { - "$id": "5557", + "$id": "5567", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70998,7 +71121,7 @@ ] }, "response.output_text.done": { - "$id": "5558", + "$id": "5568", "kind": "model", "name": "ResponseTextDoneEvent", "namespace": "OpenAI", @@ -71013,17 +71136,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5559", + "$id": "5569", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.output_text.done`.", "type": { - "$id": "5560", + "$id": "5570", "kind": "enumvalue", "name": "response_output_text_done", "value": "response.output_text.done", @@ -71031,7 +71154,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -71049,13 +71172,13 @@ "isHttpMetadata": false }, { - "$id": "5561", + "$id": "5571", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the text content is finalized.", "type": { - "$id": "5562", + "$id": "5572", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71075,13 +71198,13 @@ "isHttpMetadata": false }, { - "$id": "5563", + "$id": "5573", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the text content is finalized.", "type": { - "$id": "5564", + "$id": "5574", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71101,13 +71224,13 @@ "isHttpMetadata": false }, { - "$id": "5565", + "$id": "5575", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part that the text content is finalized.", "type": { - "$id": "5566", + "$id": "5576", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71127,13 +71250,13 @@ "isHttpMetadata": false }, { - "$id": "5567", + "$id": "5577", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content that is finalized.", "type": { - "$id": "5568", + "$id": "5578", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71155,7 +71278,7 @@ ] }, "response.reasoning_summary_part.added": { - "$id": "5569", + "$id": "5579", "kind": "model", "name": "ResponseReasoningSummaryPartAddedEvent", "namespace": "OpenAI", @@ -71170,17 +71293,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5570", + "$id": "5580", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.reasoning_summary_part.added`.", "type": { - "$id": "5571", + "$id": "5581", "kind": "enumvalue", "name": "response_reasoning_summary_part_added", "value": "response.reasoning_summary_part.added", @@ -71188,7 +71311,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -71206,13 +71329,13 @@ "isHttpMetadata": false }, { - "$id": "5572", + "$id": "5582", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item this summary part is associated with.", "type": { - "$id": "5573", + "$id": "5583", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71232,13 +71355,13 @@ "isHttpMetadata": false }, { - "$id": "5574", + "$id": "5584", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item this summary part is associated with.", "type": { - "$id": "5575", + "$id": "5585", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71258,13 +71381,13 @@ "isHttpMetadata": false }, { - "$id": "5576", + "$id": "5586", "kind": "property", "name": "summary_index", "serializedName": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "5577", + "$id": "5587", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71284,7 +71407,7 @@ "isHttpMetadata": false }, { - "$id": "5578", + "$id": "5588", "kind": "property", "name": "part", "serializedName": "part", @@ -71308,7 +71431,7 @@ ] }, "response.reasoning_summary_part.done": { - "$id": "5579", + "$id": "5589", "kind": "model", "name": "ResponseReasoningSummaryPartDoneEvent", "namespace": "OpenAI", @@ -71323,17 +71446,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5580", + "$id": "5590", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.reasoning_summary_part.done`.", "type": { - "$id": "5581", + "$id": "5591", "kind": "enumvalue", "name": "response_reasoning_summary_part_done", "value": "response.reasoning_summary_part.done", @@ -71341,7 +71464,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -71359,13 +71482,13 @@ "isHttpMetadata": false }, { - "$id": "5582", + "$id": "5592", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item this summary part is associated with.", "type": { - "$id": "5583", + "$id": "5593", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71385,13 +71508,13 @@ "isHttpMetadata": false }, { - "$id": "5584", + "$id": "5594", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item this summary part is associated with.", "type": { - "$id": "5585", + "$id": "5595", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71411,13 +71534,13 @@ "isHttpMetadata": false }, { - "$id": "5586", + "$id": "5596", "kind": "property", "name": "summary_index", "serializedName": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "5587", + "$id": "5597", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71437,7 +71560,7 @@ "isHttpMetadata": false }, { - "$id": "5588", + "$id": "5598", "kind": "property", "name": "part", "serializedName": "part", @@ -71461,7 +71584,7 @@ ] }, "response.reasoning_summary_text.delta": { - "$id": "5589", + "$id": "5599", "kind": "model", "name": "ResponseReasoningSummaryTextDeltaEvent", "namespace": "OpenAI", @@ -71476,17 +71599,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5590", + "$id": "5600", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.reasoning_summary_text.delta`.", "type": { - "$id": "5591", + "$id": "5601", "kind": "enumvalue", "name": "response_reasoning_summary_text_delta", "value": "response.reasoning_summary_text.delta", @@ -71494,7 +71617,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -71512,13 +71635,13 @@ "isHttpMetadata": false }, { - "$id": "5592", + "$id": "5602", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item this summary text delta is associated with.", "type": { - "$id": "5593", + "$id": "5603", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71538,13 +71661,13 @@ "isHttpMetadata": false }, { - "$id": "5594", + "$id": "5604", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item this summary text delta is associated with.", "type": { - "$id": "5595", + "$id": "5605", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71564,13 +71687,13 @@ "isHttpMetadata": false }, { - "$id": "5596", + "$id": "5606", "kind": "property", "name": "summary_index", "serializedName": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "5597", + "$id": "5607", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71590,13 +71713,13 @@ "isHttpMetadata": false }, { - "$id": "5598", + "$id": "5608", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The text delta that was added to the summary.", "type": { - "$id": "5599", + "$id": "5609", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71618,7 +71741,7 @@ ] }, "response.reasoning_summary_text.done": { - "$id": "5600", + "$id": "5610", "kind": "model", "name": "ResponseReasoningSummaryTextDoneEvent", "namespace": "OpenAI", @@ -71633,17 +71756,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5601", + "$id": "5611", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.reasoning_summary_text.done`.", "type": { - "$id": "5602", + "$id": "5612", "kind": "enumvalue", "name": "response_reasoning_summary_text_done", "value": "response.reasoning_summary_text.done", @@ -71651,7 +71774,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -71669,13 +71792,13 @@ "isHttpMetadata": false }, { - "$id": "5603", + "$id": "5613", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item this summary text is associated with.", "type": { - "$id": "5604", + "$id": "5614", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71695,13 +71818,13 @@ "isHttpMetadata": false }, { - "$id": "5605", + "$id": "5615", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item this summary text is associated with.", "type": { - "$id": "5606", + "$id": "5616", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71721,13 +71844,13 @@ "isHttpMetadata": false }, { - "$id": "5607", + "$id": "5617", "kind": "property", "name": "summary_index", "serializedName": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "5608", + "$id": "5618", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71747,13 +71870,13 @@ "isHttpMetadata": false }, { - "$id": "5609", + "$id": "5619", "kind": "property", "name": "text", "serializedName": "text", "doc": "The full text of the completed reasoning summary.", "type": { - "$id": "5610", + "$id": "5620", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71775,7 +71898,7 @@ ] }, "response.reasoning_text.delta": { - "$id": "5611", + "$id": "5621", "kind": "model", "name": "ResponseReasoningTextDeltaEvent", "namespace": "OpenAI", @@ -71785,17 +71908,17 @@ "discriminatorValue": "response.reasoning_text.delta", "decorators": [], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5612", + "$id": "5622", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.reasoning_text.delta`.", "type": { - "$id": "5613", + "$id": "5623", "kind": "enumvalue", "name": "response_reasoning_text_delta", "value": "response.reasoning_text.delta", @@ -71803,7 +71926,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -71821,13 +71944,13 @@ "isHttpMetadata": false }, { - "$id": "5614", + "$id": "5624", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item this reasoning text delta is associated with.", "type": { - "$id": "5615", + "$id": "5625", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71847,13 +71970,13 @@ "isHttpMetadata": false }, { - "$id": "5616", + "$id": "5626", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item this reasoning text delta is associated with.", "type": { - "$id": "5617", + "$id": "5627", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71873,13 +71996,13 @@ "isHttpMetadata": false }, { - "$id": "5618", + "$id": "5628", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the reasoning content part this delta is associated with.", "type": { - "$id": "5619", + "$id": "5629", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71899,13 +72022,13 @@ "isHttpMetadata": false }, { - "$id": "5620", + "$id": "5630", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The text delta that was added to the reasoning content.", "type": { - "$id": "5621", + "$id": "5631", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71927,7 +72050,7 @@ ] }, "response.reasoning_text.done": { - "$id": "5622", + "$id": "5632", "kind": "model", "name": "ResponseReasoningTextDoneEvent", "namespace": "OpenAI", @@ -71937,17 +72060,17 @@ "discriminatorValue": "response.reasoning_text.done", "decorators": [], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5623", + "$id": "5633", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.reasoning_text.done`.", "type": { - "$id": "5624", + "$id": "5634", "kind": "enumvalue", "name": "response_reasoning_text_done", "value": "response.reasoning_text.done", @@ -71955,7 +72078,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -71973,13 +72096,13 @@ "isHttpMetadata": false }, { - "$id": "5625", + "$id": "5635", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item this reasoning text is associated with.", "type": { - "$id": "5626", + "$id": "5636", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71999,13 +72122,13 @@ "isHttpMetadata": false }, { - "$id": "5627", + "$id": "5637", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item this reasoning text is associated with.", "type": { - "$id": "5628", + "$id": "5638", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72025,13 +72148,13 @@ "isHttpMetadata": false }, { - "$id": "5629", + "$id": "5639", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the reasoning content part.", "type": { - "$id": "5630", + "$id": "5640", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72051,13 +72174,13 @@ "isHttpMetadata": false }, { - "$id": "5631", + "$id": "5641", "kind": "property", "name": "text", "serializedName": "text", "doc": "The full text of the completed reasoning content.", "type": { - "$id": "5632", + "$id": "5642", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72079,7 +72202,7 @@ ] }, "response.web_search_call.completed": { - "$id": "5633", + "$id": "5643", "kind": "model", "name": "ResponseWebSearchCallCompletedEvent", "namespace": "OpenAI", @@ -72094,17 +72217,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5634", + "$id": "5644", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.web_search_call.completed`.", "type": { - "$id": "5635", + "$id": "5645", "kind": "enumvalue", "name": "response_web_search_call_completed", "value": "response.web_search_call.completed", @@ -72112,7 +72235,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -72130,13 +72253,13 @@ "isHttpMetadata": false }, { - "$id": "5636", + "$id": "5646", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the web search call is associated with.", "type": { - "$id": "5637", + "$id": "5647", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72156,13 +72279,13 @@ "isHttpMetadata": false }, { - "$id": "5638", + "$id": "5648", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "Unique ID for the output item associated with the web search call.", "type": { - "$id": "5639", + "$id": "5649", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72184,7 +72307,7 @@ ] }, "response.web_search_call.in_progress": { - "$id": "5640", + "$id": "5650", "kind": "model", "name": "ResponseWebSearchCallInProgressEvent", "namespace": "OpenAI", @@ -72199,17 +72322,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5641", + "$id": "5651", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.web_search_call.in_progress`.", "type": { - "$id": "5642", + "$id": "5652", "kind": "enumvalue", "name": "response_web_search_call_in_progress", "value": "response.web_search_call.in_progress", @@ -72217,7 +72340,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -72235,13 +72358,13 @@ "isHttpMetadata": false }, { - "$id": "5643", + "$id": "5653", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the web search call is associated with.", "type": { - "$id": "5644", + "$id": "5654", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72261,13 +72384,13 @@ "isHttpMetadata": false }, { - "$id": "5645", + "$id": "5655", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "Unique ID for the output item associated with the web search call.", "type": { - "$id": "5646", + "$id": "5656", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72289,7 +72412,7 @@ ] }, "response.web_search_call.searching": { - "$id": "5647", + "$id": "5657", "kind": "model", "name": "ResponseWebSearchCallSearchingEvent", "namespace": "OpenAI", @@ -72304,17 +72427,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5648", + "$id": "5658", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.web_search_call.searching`.", "type": { - "$id": "5649", + "$id": "5659", "kind": "enumvalue", "name": "response_web_search_call_searching", "value": "response.web_search_call.searching", @@ -72322,7 +72445,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -72340,13 +72463,13 @@ "isHttpMetadata": false }, { - "$id": "5650", + "$id": "5660", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the web search call is associated with.", "type": { - "$id": "5651", + "$id": "5661", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72366,13 +72489,13 @@ "isHttpMetadata": false }, { - "$id": "5652", + "$id": "5662", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "Unique ID for the output item associated with the web search call.", "type": { - "$id": "5653", + "$id": "5663", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72394,7 +72517,7 @@ ] }, "response.image_generation_call.completed": { - "$id": "5654", + "$id": "5664", "kind": "model", "name": "ResponseImageGenCallCompletedEvent", "namespace": "OpenAI", @@ -72409,17 +72532,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5655", + "$id": "5665", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.image_generation_call.completed'.", "type": { - "$id": "5656", + "$id": "5666", "kind": "enumvalue", "name": "response_image_generation_call_completed", "value": "response.image_generation_call.completed", @@ -72427,7 +72550,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -72445,13 +72568,13 @@ "isHttpMetadata": false }, { - "$id": "5657", + "$id": "5667", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5658", + "$id": "5668", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72471,13 +72594,13 @@ "isHttpMetadata": false }, { - "$id": "5659", + "$id": "5669", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "5660", + "$id": "5670", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72499,7 +72622,7 @@ ] }, "response.image_generation_call.generating": { - "$id": "5661", + "$id": "5671", "kind": "model", "name": "ResponseImageGenCallGeneratingEvent", "namespace": "OpenAI", @@ -72514,17 +72637,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5662", + "$id": "5672", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.image_generation_call.generating'.", "type": { - "$id": "5663", + "$id": "5673", "kind": "enumvalue", "name": "response_image_generation_call_generating", "value": "response.image_generation_call.generating", @@ -72532,7 +72655,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -72550,13 +72673,13 @@ "isHttpMetadata": false }, { - "$id": "5664", + "$id": "5674", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5665", + "$id": "5675", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72576,13 +72699,13 @@ "isHttpMetadata": false }, { - "$id": "5666", + "$id": "5676", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "5667", + "$id": "5677", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72604,7 +72727,7 @@ ] }, "response.image_generation_call.in_progress": { - "$id": "5668", + "$id": "5678", "kind": "model", "name": "ResponseImageGenCallInProgressEvent", "namespace": "OpenAI", @@ -72619,17 +72742,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5669", + "$id": "5679", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.image_generation_call.in_progress'.", "type": { - "$id": "5670", + "$id": "5680", "kind": "enumvalue", "name": "response_image_generation_call_in_progress", "value": "response.image_generation_call.in_progress", @@ -72637,7 +72760,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -72655,13 +72778,13 @@ "isHttpMetadata": false }, { - "$id": "5671", + "$id": "5681", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5672", + "$id": "5682", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72681,13 +72804,13 @@ "isHttpMetadata": false }, { - "$id": "5673", + "$id": "5683", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "5674", + "$id": "5684", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72709,7 +72832,7 @@ ] }, "response.image_generation_call.partial_image": { - "$id": "5675", + "$id": "5685", "kind": "model", "name": "ResponseImageGenCallPartialImageEvent", "namespace": "OpenAI", @@ -72724,17 +72847,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5676", + "$id": "5686", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.image_generation_call.partial_image'.", "type": { - "$id": "5677", + "$id": "5687", "kind": "enumvalue", "name": "response_image_generation_call_partial_image", "value": "response.image_generation_call.partial_image", @@ -72742,7 +72865,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -72760,13 +72883,13 @@ "isHttpMetadata": false }, { - "$id": "5678", + "$id": "5688", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5679", + "$id": "5689", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72786,13 +72909,13 @@ "isHttpMetadata": false }, { - "$id": "5680", + "$id": "5690", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "5681", + "$id": "5691", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72812,13 +72935,13 @@ "isHttpMetadata": false }, { - "$id": "5682", + "$id": "5692", "kind": "property", "name": "partial_image_index", "serializedName": "partial_image_index", "doc": "0-based index for the partial image (backend is 1-based, but this is 0-based for the user).", "type": { - "$id": "5683", + "$id": "5693", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72838,13 +72961,13 @@ "isHttpMetadata": false }, { - "$id": "5684", + "$id": "5694", "kind": "property", "name": "PartialImageBytes", "serializedName": "partial_image_b64", "doc": "Base64-encoded partial image data, suitable for rendering as an image.", "type": { - "$id": "5685", + "$id": "5695", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -72867,7 +72990,7 @@ ] }, "response.mcp_call_arguments.delta": { - "$id": "5686", + "$id": "5696", "kind": "model", "name": "ResponseMCPCallArgumentsDeltaEvent", "namespace": "OpenAI", @@ -72882,17 +73005,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5687", + "$id": "5697", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.mcp_call.arguments_delta'.", "type": { - "$id": "5688", + "$id": "5698", "kind": "enumvalue", "name": "response_mcp_call_arguments_delta", "value": "response.mcp_call_arguments.delta", @@ -72900,7 +73023,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -72918,13 +73041,13 @@ "isHttpMetadata": false }, { - "$id": "5689", + "$id": "5699", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5690", + "$id": "5700", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72944,13 +73067,13 @@ "isHttpMetadata": false }, { - "$id": "5691", + "$id": "5701", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the MCP tool call item being processed.", "type": { - "$id": "5692", + "$id": "5702", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72970,13 +73093,13 @@ "isHttpMetadata": false }, { - "$id": "5693", + "$id": "5703", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The partial update to the arguments for the MCP tool call.", "type": { - "$id": "5694", + "$id": "5704", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -72998,7 +73121,7 @@ ] }, "response.mcp_call_arguments.done": { - "$id": "5695", + "$id": "5705", "kind": "model", "name": "ResponseMCPCallArgumentsDoneEvent", "namespace": "OpenAI", @@ -73013,17 +73136,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5696", + "$id": "5706", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.mcp_call.arguments_done'.", "type": { - "$id": "5697", + "$id": "5707", "kind": "enumvalue", "name": "response_mcp_call_arguments_done", "value": "response.mcp_call_arguments.done", @@ -73031,7 +73154,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -73049,13 +73172,13 @@ "isHttpMetadata": false }, { - "$id": "5698", + "$id": "5708", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5699", + "$id": "5709", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73075,13 +73198,13 @@ "isHttpMetadata": false }, { - "$id": "5700", + "$id": "5710", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the MCP tool call item being processed.", "type": { - "$id": "5701", + "$id": "5711", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73101,13 +73224,13 @@ "isHttpMetadata": false }, { - "$id": "5702", + "$id": "5712", "kind": "property", "name": "ToolArguments", "serializedName": "arguments", "doc": "A JSON string containing the finalized arguments for the MCP tool call.", "type": { - "$id": "5703", + "$id": "5713", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -73129,7 +73252,7 @@ ] }, "response.mcp_call.completed": { - "$id": "5704", + "$id": "5714", "kind": "model", "name": "ResponseMCPCallCompletedEvent", "namespace": "OpenAI", @@ -73144,17 +73267,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5705", + "$id": "5715", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.mcp_call.completed'.", "type": { - "$id": "5706", + "$id": "5716", "kind": "enumvalue", "name": "response_mcp_call_completed", "value": "response.mcp_call.completed", @@ -73162,7 +73285,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -73180,13 +73303,13 @@ "isHttpMetadata": false }, { - "$id": "5707", + "$id": "5717", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the MCP tool call item that completed.", "type": { - "$id": "5708", + "$id": "5718", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73206,13 +73329,13 @@ "isHttpMetadata": false }, { - "$id": "5709", + "$id": "5719", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that completed.", "type": { - "$id": "5710", + "$id": "5720", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73234,7 +73357,7 @@ ] }, "response.mcp_call.failed": { - "$id": "5711", + "$id": "5721", "kind": "model", "name": "ResponseMCPCallFailedEvent", "namespace": "OpenAI", @@ -73249,17 +73372,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5712", + "$id": "5722", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.mcp_call.failed'.", "type": { - "$id": "5713", + "$id": "5723", "kind": "enumvalue", "name": "response_mcp_call_failed", "value": "response.mcp_call.failed", @@ -73267,7 +73390,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -73285,13 +73408,13 @@ "isHttpMetadata": false }, { - "$id": "5714", + "$id": "5724", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the MCP tool call item that failed.", "type": { - "$id": "5715", + "$id": "5725", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73311,13 +73434,13 @@ "isHttpMetadata": false }, { - "$id": "5716", + "$id": "5726", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that failed.", "type": { - "$id": "5717", + "$id": "5727", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73339,7 +73462,7 @@ ] }, "response.mcp_call.in_progress": { - "$id": "5718", + "$id": "5728", "kind": "model", "name": "ResponseMCPCallInProgressEvent", "namespace": "OpenAI", @@ -73354,17 +73477,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5719", + "$id": "5729", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.mcp_call.in_progress'.", "type": { - "$id": "5720", + "$id": "5730", "kind": "enumvalue", "name": "response_mcp_call_in_progress", "value": "response.mcp_call.in_progress", @@ -73372,7 +73495,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -73390,13 +73513,13 @@ "isHttpMetadata": false }, { - "$id": "5721", + "$id": "5731", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5722", + "$id": "5732", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73416,13 +73539,13 @@ "isHttpMetadata": false }, { - "$id": "5723", + "$id": "5733", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the MCP tool call item being processed.", "type": { - "$id": "5724", + "$id": "5734", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73444,7 +73567,7 @@ ] }, "response.mcp_list_tools.completed": { - "$id": "5725", + "$id": "5735", "kind": "model", "name": "ResponseMCPListToolsCompletedEvent", "namespace": "OpenAI", @@ -73459,17 +73582,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5726", + "$id": "5736", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.mcp_list_tools.completed'.", "type": { - "$id": "5727", + "$id": "5737", "kind": "enumvalue", "name": "response_mcp_list_tools_completed", "value": "response.mcp_list_tools.completed", @@ -73477,7 +73600,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -73495,13 +73618,13 @@ "isHttpMetadata": false }, { - "$id": "5728", + "$id": "5738", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the MCP tool call item that produced this output.", "type": { - "$id": "5729", + "$id": "5739", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73521,13 +73644,13 @@ "isHttpMetadata": false }, { - "$id": "5730", + "$id": "5740", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that was processed.", "type": { - "$id": "5731", + "$id": "5741", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73549,7 +73672,7 @@ ] }, "response.mcp_list_tools.failed": { - "$id": "5732", + "$id": "5742", "kind": "model", "name": "ResponseMCPListToolsFailedEvent", "namespace": "OpenAI", @@ -73564,17 +73687,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5733", + "$id": "5743", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.mcp_list_tools.failed'.", "type": { - "$id": "5734", + "$id": "5744", "kind": "enumvalue", "name": "response_mcp_list_tools_failed", "value": "response.mcp_list_tools.failed", @@ -73582,7 +73705,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -73600,13 +73723,13 @@ "isHttpMetadata": false }, { - "$id": "5735", + "$id": "5745", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the MCP tool call item that failed.", "type": { - "$id": "5736", + "$id": "5746", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73626,13 +73749,13 @@ "isHttpMetadata": false }, { - "$id": "5737", + "$id": "5747", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that failed.", "type": { - "$id": "5738", + "$id": "5748", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73654,7 +73777,7 @@ ] }, "response.mcp_list_tools.in_progress": { - "$id": "5739", + "$id": "5749", "kind": "model", "name": "ResponseMCPListToolsInProgressEvent", "namespace": "OpenAI", @@ -73669,17 +73792,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5740", + "$id": "5750", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.mcp_list_tools.in_progress'.", "type": { - "$id": "5741", + "$id": "5751", "kind": "enumvalue", "name": "response_mcp_list_tools_in_progress", "value": "response.mcp_list_tools.in_progress", @@ -73687,7 +73810,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -73705,13 +73828,13 @@ "isHttpMetadata": false }, { - "$id": "5742", + "$id": "5752", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the MCP tool call item that is being processed.", "type": { - "$id": "5743", + "$id": "5753", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73731,13 +73854,13 @@ "isHttpMetadata": false }, { - "$id": "5744", + "$id": "5754", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that is being processed.", "type": { - "$id": "5745", + "$id": "5755", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73759,7 +73882,7 @@ ] }, "response.output_text.annotation.added": { - "$id": "5746", + "$id": "5756", "kind": "model", "name": "ResponseOutputTextAnnotationAddedEvent", "namespace": "OpenAI", @@ -73774,17 +73897,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5747", + "$id": "5757", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.output_text_annotation.added'.", "type": { - "$id": "5748", + "$id": "5758", "kind": "enumvalue", "name": "response_output_text_annotation_added", "value": "response.output_text.annotation.added", @@ -73792,7 +73915,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -73810,13 +73933,13 @@ "isHttpMetadata": false }, { - "$id": "5749", + "$id": "5759", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the item to which the annotation is being added.", "type": { - "$id": "5750", + "$id": "5760", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73836,13 +73959,13 @@ "isHttpMetadata": false }, { - "$id": "5751", + "$id": "5761", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5752", + "$id": "5762", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73862,13 +73985,13 @@ "isHttpMetadata": false }, { - "$id": "5753", + "$id": "5763", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part within the output item.", "type": { - "$id": "5754", + "$id": "5764", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73888,13 +74011,13 @@ "isHttpMetadata": false }, { - "$id": "5755", + "$id": "5765", "kind": "property", "name": "annotation_index", "serializedName": "annotation_index", "doc": "The index of the annotation within the content part.", "type": { - "$id": "5756", + "$id": "5766", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73914,13 +74037,13 @@ "isHttpMetadata": false }, { - "$id": "5757", + "$id": "5767", "kind": "property", "name": "annotation", "serializedName": "annotation", "doc": "The annotation object being added. (See annotation schema for details.)", "type": { - "$id": "5758", + "$id": "5768", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -73942,7 +74065,7 @@ ] }, "response.queued": { - "$id": "5759", + "$id": "5769", "kind": "model", "name": "ResponseQueuedEvent", "namespace": "OpenAI", @@ -73957,17 +74080,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5760", + "$id": "5770", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.queued'.", "type": { - "$id": "5761", + "$id": "5771", "kind": "enumvalue", "name": "response_queued", "value": "response.queued", @@ -73975,7 +74098,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -73993,7 +74116,7 @@ "isHttpMetadata": false }, { - "$id": "5762", + "$id": "5772", "kind": "property", "name": "response", "serializedName": "response", @@ -74017,7 +74140,7 @@ ] }, "response.reasoning.delta": { - "$id": "5763", + "$id": "5773", "kind": "model", "name": "ResponseReasoningDeltaEvent", "namespace": "OpenAI", @@ -74032,17 +74155,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5764", + "$id": "5774", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.reasoning.delta'.", "type": { - "$id": "5765", + "$id": "5775", "kind": "enumvalue", "name": "response_reasoning_delta", "value": "response.reasoning.delta", @@ -74050,7 +74173,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -74068,13 +74191,13 @@ "isHttpMetadata": false }, { - "$id": "5766", + "$id": "5776", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the item for which reasoning is being updated.", "type": { - "$id": "5767", + "$id": "5777", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74094,13 +74217,13 @@ "isHttpMetadata": false }, { - "$id": "5768", + "$id": "5778", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5769", + "$id": "5779", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74120,13 +74243,13 @@ "isHttpMetadata": false }, { - "$id": "5770", + "$id": "5780", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the reasoning content part within the output item.", "type": { - "$id": "5771", + "$id": "5781", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74146,13 +74269,13 @@ "isHttpMetadata": false }, { - "$id": "5772", + "$id": "5782", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The partial update to the reasoning content.", "type": { - "$id": "5773", + "$id": "5783", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -74174,7 +74297,7 @@ ] }, "response.reasoning.done": { - "$id": "5774", + "$id": "5784", "kind": "model", "name": "ResponseReasoningDoneEvent", "namespace": "OpenAI", @@ -74189,17 +74312,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5775", + "$id": "5785", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.reasoning.done'.", "type": { - "$id": "5776", + "$id": "5786", "kind": "enumvalue", "name": "response_reasoning_done", "value": "response.reasoning.done", @@ -74207,7 +74330,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -74225,13 +74348,13 @@ "isHttpMetadata": false }, { - "$id": "5777", + "$id": "5787", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the item for which reasoning is finalized.", "type": { - "$id": "5778", + "$id": "5788", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74251,13 +74374,13 @@ "isHttpMetadata": false }, { - "$id": "5779", + "$id": "5789", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5780", + "$id": "5790", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74277,13 +74400,13 @@ "isHttpMetadata": false }, { - "$id": "5781", + "$id": "5791", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the reasoning content part within the output item.", "type": { - "$id": "5782", + "$id": "5792", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74303,13 +74426,13 @@ "isHttpMetadata": false }, { - "$id": "5783", + "$id": "5793", "kind": "property", "name": "text", "serializedName": "text", "doc": "The finalized reasoning text.", "type": { - "$id": "5784", + "$id": "5794", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74331,7 +74454,7 @@ ] }, "response.reasoning_summary.delta": { - "$id": "5785", + "$id": "5795", "kind": "model", "name": "ResponseReasoningSummaryDeltaEvent", "namespace": "OpenAI", @@ -74346,17 +74469,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5786", + "$id": "5796", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.reasoning_summary.delta'.", "type": { - "$id": "5787", + "$id": "5797", "kind": "enumvalue", "name": "response_reasoning_summary_delta", "value": "response.reasoning_summary.delta", @@ -74364,7 +74487,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -74382,13 +74505,13 @@ "isHttpMetadata": false }, { - "$id": "5788", + "$id": "5798", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the item for which the reasoning summary is being updated.", "type": { - "$id": "5789", + "$id": "5799", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74408,13 +74531,13 @@ "isHttpMetadata": false }, { - "$id": "5790", + "$id": "5800", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5791", + "$id": "5801", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74434,13 +74557,13 @@ "isHttpMetadata": false }, { - "$id": "5792", + "$id": "5802", "kind": "property", "name": "summary_index", "serializedName": "summary_index", "doc": "The index of the summary part within the output item.", "type": { - "$id": "5793", + "$id": "5803", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74460,13 +74583,13 @@ "isHttpMetadata": false }, { - "$id": "5794", + "$id": "5804", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The partial update to the reasoning summary content.", "type": { - "$id": "5795", + "$id": "5805", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -74488,7 +74611,7 @@ ] }, "response.reasoning_summary.done": { - "$id": "5796", + "$id": "5806", "kind": "model", "name": "ResponseReasoningSummaryDoneEvent", "namespace": "OpenAI", @@ -74503,17 +74626,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5797", + "$id": "5807", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.reasoning_summary.done'.", "type": { - "$id": "5798", + "$id": "5808", "kind": "enumvalue", "name": "response_reasoning_summary_done", "value": "response.reasoning_summary.done", @@ -74521,7 +74644,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -74539,13 +74662,13 @@ "isHttpMetadata": false }, { - "$id": "5799", + "$id": "5809", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the item for which the reasoning summary is finalized.", "type": { - "$id": "5800", + "$id": "5810", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74565,13 +74688,13 @@ "isHttpMetadata": false }, { - "$id": "5801", + "$id": "5811", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5802", + "$id": "5812", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74591,13 +74714,13 @@ "isHttpMetadata": false }, { - "$id": "5803", + "$id": "5813", "kind": "property", "name": "summary_index", "serializedName": "summary_index", "doc": "The index of the summary part within the output item.", "type": { - "$id": "5804", + "$id": "5814", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74617,13 +74740,13 @@ "isHttpMetadata": false }, { - "$id": "5805", + "$id": "5815", "kind": "property", "name": "text", "serializedName": "text", "doc": "The finalized reasoning summary text.", "type": { - "$id": "5806", + "$id": "5816", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74645,7 +74768,7 @@ ] }, "response.code_interpreter_call_code.delta": { - "$id": "5807", + "$id": "5817", "kind": "model", "name": "ResponseCodeInterpreterCallCodeDeltaEvent", "namespace": "OpenAI", @@ -74660,17 +74783,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5808", + "$id": "5818", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.code_interpreter_call_code.delta`.", "type": { - "$id": "5809", + "$id": "5819", "kind": "enumvalue", "name": "response_code_interpreter_call_code_delta", "value": "response.code_interpreter_call_code.delta", @@ -74678,7 +74801,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -74696,13 +74819,13 @@ "isHttpMetadata": false }, { - "$id": "5810", + "$id": "5820", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5811", + "$id": "5821", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74722,13 +74845,13 @@ "isHttpMetadata": false }, { - "$id": "5812", + "$id": "5822", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5813", + "$id": "5823", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74748,13 +74871,13 @@ "isHttpMetadata": false }, { - "$id": "5814", + "$id": "5824", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The partial code snippet added by the code interpreter.", "type": { - "$id": "5815", + "$id": "5825", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74776,7 +74899,7 @@ ] }, "response.code_interpreter_call_code.done": { - "$id": "5816", + "$id": "5826", "kind": "model", "name": "ResponseCodeInterpreterCallCodeDoneEvent", "namespace": "OpenAI", @@ -74791,17 +74914,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5817", + "$id": "5827", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.code_interpreter_call_code.done`.", "type": { - "$id": "5818", + "$id": "5828", "kind": "enumvalue", "name": "response_code_interpreter_call_code_done", "value": "response.code_interpreter_call_code.done", @@ -74809,7 +74932,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -74827,13 +74950,13 @@ "isHttpMetadata": false }, { - "$id": "5819", + "$id": "5829", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5820", + "$id": "5830", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74853,13 +74976,13 @@ "isHttpMetadata": false }, { - "$id": "5821", + "$id": "5831", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5822", + "$id": "5832", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74879,13 +75002,13 @@ "isHttpMetadata": false }, { - "$id": "5823", + "$id": "5833", "kind": "property", "name": "code", "serializedName": "code", "doc": "The final code snippet output by the code interpreter.", "type": { - "$id": "5824", + "$id": "5834", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74907,7 +75030,7 @@ ] }, "response.code_interpreter_call.completed": { - "$id": "5825", + "$id": "5835", "kind": "model", "name": "ResponseCodeInterpreterCallCompletedEvent", "namespace": "OpenAI", @@ -74922,17 +75045,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5826", + "$id": "5836", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.code_interpreter_call.completed`.", "type": { - "$id": "5827", + "$id": "5837", "kind": "enumvalue", "name": "response_code_interpreter_call_completed", "value": "response.code_interpreter_call.completed", @@ -74940,7 +75063,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -74958,13 +75081,13 @@ "isHttpMetadata": false }, { - "$id": "5828", + "$id": "5838", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5829", + "$id": "5839", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74984,13 +75107,13 @@ "isHttpMetadata": false }, { - "$id": "5830", + "$id": "5840", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5831", + "$id": "5841", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75012,7 +75135,7 @@ ] }, "response.code_interpreter_call.in_progress": { - "$id": "5832", + "$id": "5842", "kind": "model", "name": "ResponseCodeInterpreterCallInProgressEvent", "namespace": "OpenAI", @@ -75027,17 +75150,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5833", + "$id": "5843", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.code_interpreter_call.in_progress`.", "type": { - "$id": "5834", + "$id": "5844", "kind": "enumvalue", "name": "response_code_interpreter_call_in_progress", "value": "response.code_interpreter_call.in_progress", @@ -75045,7 +75168,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -75063,13 +75186,13 @@ "isHttpMetadata": false }, { - "$id": "5835", + "$id": "5845", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5836", + "$id": "5846", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -75089,13 +75212,13 @@ "isHttpMetadata": false }, { - "$id": "5837", + "$id": "5847", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5838", + "$id": "5848", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75117,7 +75240,7 @@ ] }, "response.code_interpreter_call.interpreting": { - "$id": "5839", + "$id": "5849", "kind": "model", "name": "ResponseCodeInterpreterCallInterpretingEvent", "namespace": "OpenAI", @@ -75132,17 +75255,17 @@ } ], "baseModel": { - "$ref": "5362" + "$ref": "5372" }, "properties": [ { - "$id": "5840", + "$id": "5850", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.code_interpreter_call.interpreting`.", "type": { - "$id": "5841", + "$id": "5851", "kind": "enumvalue", "name": "response_code_interpreter_call_interpreting", "value": "response.code_interpreter_call.interpreting", @@ -75150,7 +75273,7 @@ "$ref": "775" }, "enumType": { - "$ref": "5369" + "$ref": "5379" }, "decorators": [] }, @@ -75168,13 +75291,13 @@ "isHttpMetadata": false }, { - "$id": "5842", + "$id": "5852", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5843", + "$id": "5853", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -75194,13 +75317,13 @@ "isHttpMetadata": false }, { - "$id": "5844", + "$id": "5854", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5845", + "$id": "5855", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75224,10 +75347,7 @@ } }, { - "$ref": "5366" - }, - { - "$ref": "5427" + "$ref": "5376" }, { "$ref": "5437" @@ -75236,52 +75356,52 @@ "$ref": "5447" }, { - "$ref": "5451" + "$ref": "5457" }, { - "$ref": "5462" + "$ref": "5461" }, { - "$ref": "5469" + "$ref": "5472" }, { - "$ref": "5476" + "$ref": "5479" }, { - "$ref": "5483" + "$ref": "5486" }, { - "$ref": "5492" + "$ref": "5493" }, { - "$ref": "5501" + "$ref": "5502" }, { - "$ref": "5505" + "$ref": "5511" }, { - "$ref": "5509" + "$ref": "5515" }, { - "$ref": "5513" + "$ref": "5519" }, { - "$ref": "5519" + "$ref": "5523" }, { - "$ref": "5525" + "$ref": "5529" }, { - "$ref": "5536" + "$ref": "5535" }, { - "$ref": "5547" + "$ref": "5546" }, { - "$ref": "5558" + "$ref": "5557" }, { - "$ref": "5569" + "$ref": "5568" }, { "$ref": "5579" @@ -75290,94 +75410,97 @@ "$ref": "5589" }, { - "$ref": "5600" + "$ref": "5599" }, { - "$ref": "5611" + "$ref": "5610" }, { - "$ref": "5622" + "$ref": "5621" }, { - "$ref": "5633" + "$ref": "5632" }, { - "$ref": "5640" + "$ref": "5643" }, { - "$ref": "5647" + "$ref": "5650" }, { - "$ref": "5654" + "$ref": "5657" }, { - "$ref": "5661" + "$ref": "5664" }, { - "$ref": "5668" + "$ref": "5671" }, { - "$ref": "5675" + "$ref": "5678" }, { - "$ref": "5686" + "$ref": "5685" }, { - "$ref": "5695" + "$ref": "5696" }, { - "$ref": "5704" + "$ref": "5705" }, { - "$ref": "5711" + "$ref": "5714" }, { - "$ref": "5718" + "$ref": "5721" }, { - "$ref": "5725" + "$ref": "5728" }, { - "$ref": "5732" + "$ref": "5735" }, { - "$ref": "5739" + "$ref": "5742" }, { - "$ref": "5746" + "$ref": "5749" }, { - "$ref": "5759" + "$ref": "5756" }, { - "$ref": "5763" + "$ref": "5769" }, { - "$ref": "5774" + "$ref": "5773" }, { - "$ref": "5785" + "$ref": "5784" }, { - "$ref": "5796" + "$ref": "5795" }, { - "$ref": "5807" + "$ref": "5806" }, { - "$ref": "5816" + "$ref": "5817" }, { - "$ref": "5825" + "$ref": "5826" }, { - "$ref": "5832" + "$ref": "5835" }, { - "$ref": "5839" + "$ref": "5842" }, { - "$id": "5846", + "$ref": "5849" + }, + { + "$id": "5856", "kind": "model", "name": "ResponseErrorResponse", "namespace": "OpenAI", @@ -75391,12 +75514,12 @@ ], "properties": [ { - "$id": "5847", + "$id": "5857", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$ref": "5208" + "$ref": "5213" }, "optional": false, "readOnly": false, @@ -75414,7 +75537,7 @@ ] }, { - "$id": "5848", + "$id": "5858", "kind": "model", "name": "DeleteResponseResponse", "namespace": "OpenAI", @@ -75428,12 +75551,12 @@ ], "properties": [ { - "$id": "5849", + "$id": "5859", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "5850", + "$id": "5860", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75453,7 +75576,7 @@ "isHttpMetadata": false }, { - "$id": "5851", + "$id": "5861", "kind": "property", "name": "object", "serializedName": "object", @@ -75474,7 +75597,7 @@ "isHttpMetadata": false }, { - "$id": "5852", + "$id": "5862", "kind": "property", "name": "deleted", "serializedName": "deleted", @@ -75497,7 +75620,7 @@ ] }, { - "$id": "5853", + "$id": "5863", "kind": "model", "name": "ResponseItemList", "namespace": "OpenAI", @@ -75512,7 +75635,7 @@ ], "properties": [ { - "$id": "5854", + "$id": "5864", "kind": "property", "name": "object", "serializedName": "object", @@ -75534,13 +75657,13 @@ "isHttpMetadata": false }, { - "$id": "5855", + "$id": "5865", "kind": "property", "name": "data", "serializedName": "data", "doc": "A list of items used to generate this response.", "type": { - "$ref": "5217" + "$ref": "5222" }, "optional": false, "readOnly": false, @@ -75556,13 +75679,13 @@ "isHttpMetadata": false }, { - "$id": "5856", + "$id": "5866", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Whether there are more items available.", "type": { - "$id": "5857", + "$id": "5867", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -75582,13 +75705,13 @@ "isHttpMetadata": false }, { - "$id": "5858", + "$id": "5868", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The ID of the first item in the list.", "type": { - "$id": "5859", + "$id": "5869", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75608,13 +75731,13 @@ "isHttpMetadata": false }, { - "$id": "5860", + "$id": "5870", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The ID of the last item in the list.", "type": { - "$id": "5861", + "$id": "5871", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75636,7 +75759,7 @@ ] }, { - "$id": "5862", + "$id": "5872", "kind": "model", "name": "CreateImageRequest", "namespace": "OpenAI", @@ -75645,13 +75768,13 @@ "decorators": [], "properties": [ { - "$id": "5863", + "$id": "5873", "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": "5864", + "$id": "5874", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75671,13 +75794,13 @@ "isHttpMetadata": false }, { - "$id": "5865", + "$id": "5875", "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": "5866", + "$id": "5876", "kind": "nullable", "type": { "$ref": "831" @@ -75698,16 +75821,16 @@ "isHttpMetadata": false }, { - "$id": "5867", + "$id": "5877", "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": "5868", + "$id": "5878", "kind": "nullable", "type": { - "$id": "5869", + "$id": "5879", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -75729,13 +75852,13 @@ "isHttpMetadata": false }, { - "$id": "5870", + "$id": "5880", "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": "5871", + "$id": "5881", "kind": "nullable", "type": { "$ref": "836" @@ -75756,13 +75879,13 @@ "isHttpMetadata": false }, { - "$id": "5872", + "$id": "5882", "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": "5873", + "$id": "5883", "kind": "nullable", "type": { "$ref": "844" @@ -75783,13 +75906,13 @@ "isHttpMetadata": false }, { - "$id": "5874", + "$id": "5884", "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": "5875", + "$id": "5885", "kind": "nullable", "type": { "$ref": "848" @@ -75810,16 +75933,16 @@ "isHttpMetadata": false }, { - "$id": "5876", + "$id": "5886", "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": "5877", + "$id": "5887", "kind": "nullable", "type": { - "$id": "5878", + "$id": "5888", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -75841,13 +75964,13 @@ "isHttpMetadata": false }, { - "$id": "5879", + "$id": "5889", "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": "5880", + "$id": "5890", "kind": "nullable", "type": { "$ref": "853" @@ -75868,13 +75991,13 @@ "isHttpMetadata": false }, { - "$id": "5881", + "$id": "5891", "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": "5882", + "$id": "5892", "kind": "nullable", "type": { "$ref": "863" @@ -75895,13 +76018,13 @@ "isHttpMetadata": false }, { - "$id": "5883", + "$id": "5893", "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": "5884", + "$id": "5894", "kind": "nullable", "type": { "$ref": "867" @@ -75922,13 +76045,13 @@ "isHttpMetadata": false }, { - "$id": "5885", + "$id": "5895", "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": "5886", + "$id": "5896", "kind": "nullable", "type": { "$ref": "872" @@ -75949,13 +76072,13 @@ "isHttpMetadata": false }, { - "$id": "5887", + "$id": "5897", "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": "5888", + "$id": "5898", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75977,7 +76100,7 @@ ] }, { - "$id": "5889", + "$id": "5899", "kind": "model", "name": "ImagesResponse", "namespace": "OpenAI", @@ -75987,18 +76110,18 @@ "decorators": [], "properties": [ { - "$id": "5890", + "$id": "5900", "kind": "property", "name": "created", "serializedName": "created", "doc": "The Unix timestamp (in seconds) of when the image was created.", "type": { - "$id": "5891", + "$id": "5901", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5892", + "$id": "5902", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76021,17 +76144,17 @@ "isHttpMetadata": false }, { - "$id": "5893", + "$id": "5903", "kind": "property", "name": "data", "serializedName": "data", "doc": "The list of generated images.", "type": { - "$id": "5894", + "$id": "5904", "kind": "array", "name": "ArrayImage", "valueType": { - "$id": "5895", + "$id": "5905", "kind": "model", "name": "Image", "namespace": "OpenAI", @@ -76041,13 +76164,13 @@ "decorators": [], "properties": [ { - "$id": "5896", + "$id": "5906", "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": "5897", + "$id": "5907", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -76068,13 +76191,13 @@ "isHttpMetadata": false }, { - "$id": "5898", + "$id": "5908", "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": "5899", + "$id": "5909", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -76094,13 +76217,13 @@ "isHttpMetadata": false }, { - "$id": "5900", + "$id": "5910", "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": "5901", + "$id": "5911", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76138,13 +76261,13 @@ "isHttpMetadata": false }, { - "$id": "5902", + "$id": "5912", "kind": "property", "name": "usage", "serializedName": "usage", "doc": "For `gpt-image-1` only, the token usage information for the image generation.", "type": { - "$id": "5903", + "$id": "5913", "kind": "model", "name": "ImagesResponseUsage", "namespace": "OpenAI", @@ -76153,13 +76276,13 @@ "decorators": [], "properties": [ { - "$id": "5904", + "$id": "5914", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens (images and text) used for the image generation.", "type": { - "$id": "5905", + "$id": "5915", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76179,13 +76302,13 @@ "isHttpMetadata": false }, { - "$id": "5906", + "$id": "5916", "kind": "property", "name": "input_tokens", "serializedName": "input_tokens", "doc": "The number of tokens (images and text) in the input prompt.", "type": { - "$id": "5907", + "$id": "5917", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76205,13 +76328,13 @@ "isHttpMetadata": false }, { - "$id": "5908", + "$id": "5918", "kind": "property", "name": "output_tokens", "serializedName": "output_tokens", "doc": "The number of image tokens in the output image.", "type": { - "$id": "5909", + "$id": "5919", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76231,13 +76354,13 @@ "isHttpMetadata": false }, { - "$id": "5910", + "$id": "5920", "kind": "property", "name": "input_tokens_details", "serializedName": "input_tokens_details", "doc": "The input tokens detailed information for the image generation.", "type": { - "$id": "5911", + "$id": "5921", "kind": "model", "name": "ImagesResponseUsageInputTokensDetails", "namespace": "OpenAI", @@ -76246,13 +76369,13 @@ "decorators": [], "properties": [ { - "$id": "5912", + "$id": "5922", "kind": "property", "name": "text_tokens", "serializedName": "text_tokens", "doc": "The number of text tokens in the input prompt.", "type": { - "$id": "5913", + "$id": "5923", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76272,13 +76395,13 @@ "isHttpMetadata": false }, { - "$id": "5914", + "$id": "5924", "kind": "property", "name": "image_tokens", "serializedName": "image_tokens", "doc": "The number of image tokens in the input prompt.", "type": { - "$id": "5915", + "$id": "5925", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76330,16 +76453,16 @@ ] }, { - "$ref": "5895" + "$ref": "5905" }, { - "$ref": "5903" + "$ref": "5913" }, { - "$ref": "5911" + "$ref": "5921" }, { - "$id": "5916", + "$id": "5926", "kind": "model", "name": "CreateImageEditRequest", "namespace": "OpenAI", @@ -76348,18 +76471,18 @@ "decorators": [], "properties": [ { - "$id": "5917", + "$id": "5927", "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": "5918", + "$id": "5928", "kind": "union", "name": "CreateImageEditRequestImage", "variantTypes": [ { - "$id": "5919", + "$id": "5929", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -76367,11 +76490,11 @@ "decorators": [] }, { - "$id": "5920", + "$id": "5930", "kind": "array", "name": "Array25", "valueType": { - "$id": "5921", + "$id": "5931", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -76406,13 +76529,13 @@ "isHttpMetadata": false }, { - "$id": "5922", + "$id": "5932", "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": "5923", + "$id": "5933", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76438,13 +76561,13 @@ "isHttpMetadata": false }, { - "$id": "5924", + "$id": "5934", "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": "5925", + "$id": "5935", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -76471,13 +76594,13 @@ "isHttpMetadata": false }, { - "$id": "5926", + "$id": "5936", "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": "5927", + "$id": "5937", "kind": "nullable", "type": { "$ref": "876" @@ -76504,13 +76627,13 @@ "isHttpMetadata": false }, { - "$id": "5928", + "$id": "5938", "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": "5929", + "$id": "5939", "kind": "nullable", "type": { "$ref": "881" @@ -76537,21 +76660,21 @@ "isHttpMetadata": false }, { - "$id": "5930", + "$id": "5940", "kind": "property", "name": "n", "serializedName": "n", "doc": "The number of images to generate. Must be between 1 and 10.", "type": { - "$id": "5931", + "$id": "5941", "kind": "nullable", "type": { - "$id": "5932", + "$id": "5942", "kind": "int32", "name": "OneToTenInt", "crossLanguageDefinitionId": "OpenAI.OneToTenInt", "baseType": { - "$id": "5933", + "$id": "5943", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76581,13 +76704,13 @@ "isHttpMetadata": false }, { - "$id": "5934", + "$id": "5944", "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": "5935", + "$id": "5945", "kind": "nullable", "type": { "$ref": "885" @@ -76614,13 +76737,13 @@ "isHttpMetadata": false }, { - "$id": "5936", + "$id": "5946", "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": "5937", + "$id": "5947", "kind": "nullable", "type": { "$ref": "893" @@ -76647,13 +76770,13 @@ "isHttpMetadata": false }, { - "$id": "5938", + "$id": "5948", "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": "5939", + "$id": "5949", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76679,13 +76802,13 @@ "isHttpMetadata": false }, { - "$id": "5940", + "$id": "5950", "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": "5941", + "$id": "5951", "kind": "nullable", "type": { "$ref": "897" @@ -76714,7 +76837,7 @@ ] }, { - "$id": "5942", + "$id": "5952", "kind": "model", "name": "CreateImageVariationRequest", "namespace": "OpenAI", @@ -76723,13 +76846,13 @@ "decorators": [], "properties": [ { - "$id": "5943", + "$id": "5953", "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": "5944", + "$id": "5954", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -76756,13 +76879,13 @@ "isHttpMetadata": false }, { - "$id": "5945", + "$id": "5955", "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": "5946", + "$id": "5956", "kind": "nullable", "type": { "$ref": "904" @@ -76789,21 +76912,21 @@ "isHttpMetadata": false }, { - "$id": "5947", + "$id": "5957", "kind": "property", "name": "n", "serializedName": "n", "doc": "The number of images to generate. Must be between 1 and 10.", "type": { - "$id": "5948", + "$id": "5958", "kind": "nullable", "type": { - "$id": "5949", + "$id": "5959", "kind": "int32", "name": "OneToTenInt", "crossLanguageDefinitionId": "OpenAI.OneToTenInt", "baseType": { - "$id": "5950", + "$id": "5960", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76833,13 +76956,13 @@ "isHttpMetadata": false }, { - "$id": "5951", + "$id": "5961", "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": "5952", + "$id": "5962", "kind": "nullable", "type": { "$ref": "907" @@ -76866,13 +76989,13 @@ "isHttpMetadata": false }, { - "$id": "5953", + "$id": "5963", "kind": "property", "name": "size", "serializedName": "size", "doc": "The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`.", "type": { - "$id": "5954", + "$id": "5964", "kind": "nullable", "type": { "$ref": "911" @@ -76899,13 +77022,13 @@ "isHttpMetadata": false }, { - "$id": "5955", + "$id": "5965", "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": "5956", + "$id": "5966", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76933,7 +77056,7 @@ ] }, { - "$id": "5957", + "$id": "5967", "kind": "model", "name": "CreateMessageRequest", "namespace": "OpenAI", @@ -76942,7 +77065,7 @@ "decorators": [], "properties": [ { - "$id": "5958", + "$id": "5968", "kind": "property", "name": "role", "serializedName": "role", @@ -76964,16 +77087,16 @@ "isHttpMetadata": false }, { - "$id": "5959", + "$id": "5969", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "5960", + "$id": "5970", "kind": "array", "name": "ArrayMessageContent", "valueType": { - "$id": "5961", + "$id": "5971", "kind": "model", "name": "MessageContent", "namespace": "OpenAI", @@ -76983,7 +77106,7 @@ "doc": "Represents a single piece of content in an Assistants API message.", "decorators": [], "discriminatorProperty": { - "$id": "5962", + "$id": "5972", "kind": "property", "name": "type", "serializedName": "type", @@ -77005,12 +77128,12 @@ }, "properties": [ { - "$ref": "5962" + "$ref": "5972" } ], "discriminatedSubtypes": { "image_file": { - "$id": "5963", + "$id": "5973", "kind": "model", "name": "MessageContentImageFileObject", "namespace": "OpenAI", @@ -77021,17 +77144,17 @@ "discriminatorValue": "image_file", "decorators": [], "baseModel": { - "$ref": "5961" + "$ref": "5971" }, "properties": [ { - "$id": "5964", + "$id": "5974", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `image_file`.", "type": { - "$id": "5965", + "$id": "5975", "kind": "enumvalue", "name": "image_file", "value": "image_file", @@ -77039,14 +77162,14 @@ "$ref": "921" }, "enumType": { - "$id": "5966", + "$id": "5976", "kind": "enum", "decorators": [], "name": "MessageContentType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "5967", + "$id": "5977", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -77055,59 +77178,59 @@ }, "values": [ { - "$id": "5968", + "$id": "5978", "kind": "enumvalue", "decorators": [], "doc": "The content is a text message.", "name": "text", "value": "text", "valueType": { - "$ref": "5967" + "$ref": "5977" }, "enumType": { - "$ref": "5966" + "$ref": "5976" } }, { - "$id": "5969", + "$id": "5979", "kind": "enumvalue", "decorators": [], "doc": "The content is an image file.", "name": "image_file", "value": "image_file", "valueType": { - "$ref": "5967" + "$ref": "5977" }, "enumType": { - "$ref": "5966" + "$ref": "5976" } }, { - "$id": "5970", + "$id": "5980", "kind": "enumvalue", "decorators": [], "doc": "The content is an image URL.", "name": "image_url", "value": "image_url", "valueType": { - "$ref": "5967" + "$ref": "5977" }, "enumType": { - "$ref": "5966" + "$ref": "5976" } }, { - "$id": "5971", + "$id": "5981", "kind": "enumvalue", "decorators": [], "doc": "The content is a refusal message.", "name": "refusal", "value": "refusal", "valueType": { - "$ref": "5967" + "$ref": "5977" }, "enumType": { - "$ref": "5966" + "$ref": "5976" } } ], @@ -77137,12 +77260,12 @@ "isHttpMetadata": false }, { - "$id": "5972", + "$id": "5982", "kind": "property", "name": "image_file", "serializedName": "image_file", "type": { - "$id": "5973", + "$id": "5983", "kind": "model", "name": "MessageContentImageFileObjectImageFile", "namespace": "OpenAI", @@ -77151,13 +77274,13 @@ "decorators": [], "properties": [ { - "$id": "5974", + "$id": "5984", "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": "5975", + "$id": "5985", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77177,7 +77300,7 @@ "isHttpMetadata": false }, { - "$id": "5976", + "$id": "5986", "kind": "property", "name": "detail", "serializedName": "detail", @@ -77216,7 +77339,7 @@ ] }, "text": { - "$id": "5977", + "$id": "5987", "kind": "model", "name": "MessageContentTextObject", "namespace": "OpenAI", @@ -77227,17 +77350,17 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "5961" + "$ref": "5971" }, "properties": [ { - "$id": "5978", + "$id": "5988", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `text`.", "type": { - "$id": "5979", + "$id": "5989", "kind": "enumvalue", "name": "text", "value": "text", @@ -77245,7 +77368,7 @@ "$ref": "921" }, "enumType": { - "$ref": "5966" + "$ref": "5976" }, "doc": "The content is a text message.", "decorators": [] @@ -77264,24 +77387,24 @@ "isHttpMetadata": false }, { - "$id": "5980", + "$id": "5990", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "5981", + "$id": "5991", "kind": "union", "name": "MessageContentTextObjectText", "variantTypes": [ { - "$id": "5982", + "$id": "5992", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "5983", + "$id": "5993", "kind": "model", "name": "MessageContentTextObjectText1", "namespace": "OpenAI", @@ -77290,12 +77413,12 @@ "decorators": [], "properties": [ { - "$id": "5984", + "$id": "5994", "kind": "property", "name": "value", "serializedName": "value", "type": { - "$id": "5985", + "$id": "5995", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77315,16 +77438,16 @@ "isHttpMetadata": false }, { - "$id": "5986", + "$id": "5996", "kind": "property", "name": "annotations", "serializedName": "annotations", "type": { - "$id": "5987", + "$id": "5997", "kind": "array", "name": "ArrayMessageContentTextObjectAnnotation", "valueType": { - "$id": "5988", + "$id": "5998", "kind": "model", "name": "MessageContentTextObjectAnnotation", "namespace": "OpenAI", @@ -77333,7 +77456,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "5989", + "$id": "5999", "kind": "property", "name": "type", "serializedName": "type", @@ -77356,12 +77479,12 @@ }, "properties": [ { - "$ref": "5989" + "$ref": "5999" } ], "discriminatedSubtypes": { "file_citation": { - "$id": "5990", + "$id": "6000", "kind": "model", "name": "MessageContentTextAnnotationsFileCitationObject", "namespace": "OpenAI", @@ -77372,17 +77495,17 @@ "discriminatorValue": "file_citation", "decorators": [], "baseModel": { - "$ref": "5988" + "$ref": "5998" }, "properties": [ { - "$id": "5991", + "$id": "6001", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `file_citation`.", "type": { - "$id": "5992", + "$id": "6002", "kind": "enumvalue", "name": "file_citation", "value": "file_citation", @@ -77390,14 +77513,14 @@ "$ref": "932" }, "enumType": { - "$id": "5993", + "$id": "6003", "kind": "enum", "decorators": [], "name": "MessageContentTextAnnotationType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "5994", + "$id": "6004", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -77406,29 +77529,29 @@ }, "values": [ { - "$id": "5995", + "$id": "6005", "kind": "enumvalue", "decorators": [], "name": "file_citation", "value": "file_citation", "valueType": { - "$ref": "5994" + "$ref": "6004" }, "enumType": { - "$ref": "5993" + "$ref": "6003" } }, { - "$id": "5996", + "$id": "6006", "kind": "enumvalue", "decorators": [], "name": "file_path", "value": "file_path", "valueType": { - "$ref": "5994" + "$ref": "6004" }, "enumType": { - "$ref": "5993" + "$ref": "6003" } } ], @@ -77457,13 +77580,13 @@ "isHttpMetadata": false }, { - "$id": "5997", + "$id": "6007", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "5998", + "$id": "6008", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77483,12 +77606,12 @@ "isHttpMetadata": false }, { - "$id": "5999", + "$id": "6009", "kind": "property", "name": "file_citation", "serializedName": "file_citation", "type": { - "$id": "6000", + "$id": "6010", "kind": "model", "name": "MessageContentTextAnnotationsFileCitationObjectFileCitation", "namespace": "OpenAI", @@ -77497,13 +77620,13 @@ "decorators": [], "properties": [ { - "$id": "6001", + "$id": "6011", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the specific File the citation is from.", "type": { - "$id": "6002", + "$id": "6012", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77538,12 +77661,12 @@ "isHttpMetadata": false }, { - "$id": "6003", + "$id": "6013", "kind": "property", "name": "start_index", "serializedName": "start_index", "type": { - "$id": "6004", + "$id": "6014", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -77563,12 +77686,12 @@ "isHttpMetadata": false }, { - "$id": "6005", + "$id": "6015", "kind": "property", "name": "end_index", "serializedName": "end_index", "type": { - "$id": "6006", + "$id": "6016", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -77590,7 +77713,7 @@ ] }, "file_path": { - "$id": "6007", + "$id": "6017", "kind": "model", "name": "MessageContentTextAnnotationsFilePathObject", "namespace": "OpenAI", @@ -77601,17 +77724,17 @@ "discriminatorValue": "file_path", "decorators": [], "baseModel": { - "$ref": "5988" + "$ref": "5998" }, "properties": [ { - "$id": "6008", + "$id": "6018", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `file_path`.", "type": { - "$id": "6009", + "$id": "6019", "kind": "enumvalue", "name": "file_path", "value": "file_path", @@ -77619,7 +77742,7 @@ "$ref": "932" }, "enumType": { - "$ref": "5993" + "$ref": "6003" }, "decorators": [] }, @@ -77637,13 +77760,13 @@ "isHttpMetadata": false }, { - "$id": "6010", + "$id": "6020", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "6011", + "$id": "6021", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77663,12 +77786,12 @@ "isHttpMetadata": false }, { - "$id": "6012", + "$id": "6022", "kind": "property", "name": "file_path", "serializedName": "file_path", "type": { - "$id": "6013", + "$id": "6023", "kind": "model", "name": "MessageContentTextAnnotationsFilePathObjectFilePath", "namespace": "OpenAI", @@ -77677,13 +77800,13 @@ "decorators": [], "properties": [ { - "$id": "6014", + "$id": "6024", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file that was generated.", "type": { - "$id": "6015", + "$id": "6025", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77718,12 +77841,12 @@ "isHttpMetadata": false }, { - "$id": "6016", + "$id": "6026", "kind": "property", "name": "start_index", "serializedName": "start_index", "type": { - "$id": "6017", + "$id": "6027", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -77743,12 +77866,12 @@ "isHttpMetadata": false }, { - "$id": "6018", + "$id": "6028", "kind": "property", "name": "end_index", "serializedName": "end_index", "type": { - "$id": "6019", + "$id": "6029", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -77809,7 +77932,7 @@ ] }, "refusal": { - "$id": "6020", + "$id": "6030", "kind": "model", "name": "MessageContentRefusalObject", "namespace": "OpenAI", @@ -77820,17 +77943,17 @@ "discriminatorValue": "refusal", "decorators": [], "baseModel": { - "$ref": "5961" + "$ref": "5971" }, "properties": [ { - "$id": "6021", + "$id": "6031", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `refusal`.", "type": { - "$id": "6022", + "$id": "6032", "kind": "enumvalue", "name": "refusal", "value": "refusal", @@ -77838,7 +77961,7 @@ "$ref": "921" }, "enumType": { - "$ref": "5966" + "$ref": "5976" }, "doc": "The content is a refusal message.", "decorators": [] @@ -77857,12 +77980,12 @@ "isHttpMetadata": false }, { - "$id": "6023", + "$id": "6033", "kind": "property", "name": "refusal", "serializedName": "refusal", "type": { - "$id": "6024", + "$id": "6034", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77884,7 +78007,7 @@ ] }, "image_url": { - "$id": "6025", + "$id": "6035", "kind": "model", "name": "MessageContentImageUrlObject", "namespace": "OpenAI", @@ -77895,17 +78018,17 @@ "discriminatorValue": "image_url", "decorators": [], "baseModel": { - "$ref": "5961" + "$ref": "5971" }, "properties": [ { - "$id": "6026", + "$id": "6036", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content part.", "type": { - "$id": "6027", + "$id": "6037", "kind": "enumvalue", "name": "image_url", "value": "image_url", @@ -77913,7 +78036,7 @@ "$ref": "921" }, "enumType": { - "$ref": "5966" + "$ref": "5976" }, "doc": "The content is an image URL.", "decorators": [] @@ -77932,12 +78055,12 @@ "isHttpMetadata": false }, { - "$id": "6028", + "$id": "6038", "kind": "property", "name": "image_url", "serializedName": "image_url", "type": { - "$id": "6029", + "$id": "6039", "kind": "model", "name": "MessageContentImageUrlObjectImageUrl", "namespace": "OpenAI", @@ -77946,13 +78069,13 @@ "decorators": [], "properties": [ { - "$id": "6030", + "$id": "6040", "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": "6031", + "$id": "6041", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -77972,7 +78095,7 @@ "isHttpMetadata": false }, { - "$id": "6032", + "$id": "6042", "kind": "property", "name": "detail", "serializedName": "detail", @@ -78029,20 +78152,20 @@ "isHttpMetadata": false }, { - "$id": "6033", + "$id": "6043", "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": "6034", + "$id": "6044", "kind": "nullable", "type": { - "$id": "6035", + "$id": "6045", "kind": "array", "name": "Array26", "valueType": { - "$id": "6036", + "$id": "6046", "kind": "model", "name": "CreateMessageRequestAttachment", "namespace": "OpenAI", @@ -78051,13 +78174,13 @@ "decorators": [], "properties": [ { - "$id": "6037", + "$id": "6047", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to attach to the message.", "type": { - "$id": "6038", + "$id": "6048", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78077,17 +78200,17 @@ "isHttpMetadata": false }, { - "$id": "6039", + "$id": "6049", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "The tools to add this file to.", "type": { - "$id": "6040", + "$id": "6050", "kind": "array", "name": "Array27", "valueType": { - "$id": "6041", + "$id": "6051", "kind": "union", "name": "CreateMessageRequestAttachmentTool", "variantTypes": [ @@ -78095,7 +78218,7 @@ "$ref": "2398" }, { - "$id": "6042", + "$id": "6052", "kind": "model", "name": "AssistantToolsFileSearchTypeOnly", "namespace": "OpenAI", @@ -78104,7 +78227,7 @@ "decorators": [], "properties": [ { - "$id": "6043", + "$id": "6053", "kind": "property", "name": "type", "serializedName": "type", @@ -78168,7 +78291,7 @@ "isHttpMetadata": false }, { - "$id": "6044", + "$id": "6054", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -78192,52 +78315,52 @@ ] }, { - "$ref": "5961" - }, - { - "$ref": "5963" + "$ref": "5971" }, { "$ref": "5973" }, { - "$ref": "5977" + "$ref": "5983" }, { - "$ref": "5983" + "$ref": "5987" }, { - "$ref": "5988" + "$ref": "5993" }, { - "$ref": "5990" + "$ref": "5998" }, { "$ref": "6000" }, { - "$ref": "6007" + "$ref": "6010" + }, + { + "$ref": "6017" }, { - "$ref": "6013" + "$ref": "6023" }, { - "$ref": "6020" + "$ref": "6030" }, { - "$ref": "6025" + "$ref": "6035" }, { - "$ref": "6029" + "$ref": "6039" }, { - "$ref": "6036" + "$ref": "6046" }, { - "$ref": "6042" + "$ref": "6052" }, { - "$id": "6045", + "$id": "6055", "kind": "model", "name": "MessageObject", "namespace": "OpenAI", @@ -78247,13 +78370,13 @@ "decorators": [], "properties": [ { - "$id": "6046", + "$id": "6056", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6047", + "$id": "6057", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78273,7 +78396,7 @@ "isHttpMetadata": false }, { - "$id": "6048", + "$id": "6058", "kind": "property", "name": "object", "serializedName": "object", @@ -78295,18 +78418,18 @@ "isHttpMetadata": false }, { - "$id": "6049", + "$id": "6059", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the message was created.", "type": { - "$id": "6050", + "$id": "6060", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6051", + "$id": "6061", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -78329,13 +78452,13 @@ "isHttpMetadata": false }, { - "$id": "6052", + "$id": "6062", "kind": "property", "name": "thread_id", "serializedName": "thread_id", "doc": "The [thread](/docs/api-reference/threads) ID that this message belongs to.", "type": { - "$id": "6053", + "$id": "6063", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78355,7 +78478,7 @@ "isHttpMetadata": false }, { - "$id": "6054", + "$id": "6064", "kind": "property", "name": "status", "serializedName": "status", @@ -78377,16 +78500,16 @@ "isHttpMetadata": false }, { - "$id": "6055", + "$id": "6065", "kind": "property", "name": "incomplete_details", "serializedName": "incomplete_details", "doc": "On an incomplete message, details about why the message is incomplete.", "type": { - "$id": "6056", + "$id": "6066", "kind": "nullable", "type": { - "$id": "6057", + "$id": "6067", "kind": "model", "name": "MessageObjectIncompleteDetails1", "namespace": "OpenAI", @@ -78395,7 +78518,7 @@ "decorators": [], "properties": [ { - "$id": "6058", + "$id": "6068", "kind": "property", "name": "reason", "serializedName": "reason", @@ -78434,21 +78557,21 @@ "isHttpMetadata": false }, { - "$id": "6059", + "$id": "6069", "kind": "property", "name": "completed_at", "serializedName": "completed_at", "doc": "The Unix timestamp (in seconds) for when the message was completed.", "type": { - "$id": "6060", + "$id": "6070", "kind": "nullable", "type": { - "$id": "6061", + "$id": "6071", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6062", + "$id": "6072", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -78473,21 +78596,21 @@ "isHttpMetadata": false }, { - "$id": "6063", + "$id": "6073", "kind": "property", "name": "incomplete_at", "serializedName": "incomplete_at", "doc": "The Unix timestamp (in seconds) for when the message was marked as incomplete.", "type": { - "$id": "6064", + "$id": "6074", "kind": "nullable", "type": { - "$id": "6065", + "$id": "6075", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6066", + "$id": "6076", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -78512,7 +78635,7 @@ "isHttpMetadata": false }, { - "$id": "6067", + "$id": "6077", "kind": "property", "name": "role", "serializedName": "role", @@ -78534,13 +78657,13 @@ "isHttpMetadata": false }, { - "$id": "6068", + "$id": "6078", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message in array of text and/or images.", "type": { - "$ref": "5960" + "$ref": "5970" }, "optional": false, "readOnly": true, @@ -78556,16 +78679,16 @@ "isHttpMetadata": false }, { - "$id": "6069", + "$id": "6079", "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": "6070", + "$id": "6080", "kind": "nullable", "type": { - "$id": "6071", + "$id": "6081", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78587,16 +78710,16 @@ "isHttpMetadata": false }, { - "$id": "6072", + "$id": "6082", "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": "6073", + "$id": "6083", "kind": "nullable", "type": { - "$id": "6074", + "$id": "6084", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78618,20 +78741,20 @@ "isHttpMetadata": false }, { - "$id": "6075", + "$id": "6085", "kind": "property", "name": "attachments", "serializedName": "attachments", "doc": "A list of files attached to the message, and the tools they were added to.", "type": { - "$id": "6076", + "$id": "6086", "kind": "nullable", "type": { - "$id": "6077", + "$id": "6087", "kind": "array", "name": "Array28", "valueType": { - "$id": "6078", + "$id": "6088", "kind": "model", "name": "MessageObjectAttachment", "namespace": "OpenAI", @@ -78640,13 +78763,13 @@ "decorators": [], "properties": [ { - "$id": "6079", + "$id": "6089", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to attach to the message.", "type": { - "$id": "6080", + "$id": "6090", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78666,17 +78789,17 @@ "isHttpMetadata": false }, { - "$id": "6081", + "$id": "6091", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "The tools to add this file to.", "type": { - "$id": "6082", + "$id": "6092", "kind": "array", "name": "Array29", "valueType": { - "$id": "6083", + "$id": "6093", "kind": "union", "name": "MessageObjectAttachmentTool", "variantTypes": [ @@ -78684,7 +78807,7 @@ "$ref": "2398" }, { - "$ref": "6042" + "$ref": "6052" } ], "namespace": "OpenAI", @@ -78727,7 +78850,7 @@ "isHttpMetadata": false }, { - "$id": "6084", + "$id": "6094", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -78751,13 +78874,13 @@ ] }, { - "$ref": "6057" + "$ref": "6067" }, { - "$ref": "6078" + "$ref": "6088" }, { - "$id": "6085", + "$id": "6095", "kind": "model", "name": "ListMessagesResponse", "namespace": "OpenAI", @@ -78766,7 +78889,7 @@ "decorators": [], "properties": [ { - "$id": "6086", + "$id": "6096", "kind": "property", "name": "object", "serializedName": "object", @@ -78787,16 +78910,16 @@ "isHttpMetadata": false }, { - "$id": "6087", + "$id": "6097", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6088", + "$id": "6098", "kind": "array", "name": "ArrayMessageObject", "valueType": { - "$ref": "6045" + "$ref": "6055" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -78815,12 +78938,12 @@ "isHttpMetadata": false }, { - "$id": "6089", + "$id": "6099", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6090", + "$id": "6100", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78840,12 +78963,12 @@ "isHttpMetadata": false }, { - "$id": "6091", + "$id": "6101", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6092", + "$id": "6102", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78865,12 +78988,12 @@ "isHttpMetadata": false }, { - "$id": "6093", + "$id": "6103", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6094", + "$id": "6104", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78892,7 +79015,7 @@ ] }, { - "$id": "6095", + "$id": "6105", "kind": "model", "name": "ModifyMessageRequest", "namespace": "OpenAI", @@ -78901,7 +79024,7 @@ "decorators": [], "properties": [ { - "$id": "6096", + "$id": "6106", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -78925,7 +79048,7 @@ ] }, { - "$id": "6097", + "$id": "6107", "kind": "model", "name": "DeleteMessageResponse", "namespace": "OpenAI", @@ -78934,12 +79057,12 @@ "decorators": [], "properties": [ { - "$id": "6098", + "$id": "6108", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6099", + "$id": "6109", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78959,12 +79082,12 @@ "isHttpMetadata": false }, { - "$id": "6100", + "$id": "6110", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6101", + "$id": "6111", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78984,7 +79107,7 @@ "isHttpMetadata": false }, { - "$id": "6102", + "$id": "6112", "kind": "property", "name": "object", "serializedName": "object", @@ -79007,7 +79130,7 @@ ] }, { - "$id": "6103", + "$id": "6113", "kind": "model", "name": "CreateModerationRequest", "namespace": "OpenAI", @@ -79016,18 +79139,18 @@ "decorators": [], "properties": [ { - "$id": "6104", + "$id": "6114", "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": "6105", + "$id": "6115", "kind": "union", "name": "CreateModerationRequestInput", "variantTypes": [ { - "$id": "6106", + "$id": "6116", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79037,16 +79160,16 @@ "$ref": "2438" }, { - "$id": "6107", + "$id": "6117", "kind": "array", "name": "Array30", "valueType": { - "$id": "6108", + "$id": "6118", "kind": "union", "name": "CreateModerationRequestInput1", "variantTypes": [ { - "$id": "6109", + "$id": "6119", "kind": "model", "name": "CreateModerationRequestInput2", "namespace": "OpenAI", @@ -79055,7 +79178,7 @@ "decorators": [], "properties": [ { - "$id": "6110", + "$id": "6120", "kind": "property", "name": "type", "serializedName": "type", @@ -79077,13 +79200,13 @@ "isHttpMetadata": false }, { - "$id": "6111", + "$id": "6121", "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": "6112", + "$id": "6122", "kind": "model", "name": "CreateModerationRequestInputImageUrl", "namespace": "OpenAI", @@ -79092,13 +79215,13 @@ "decorators": [], "properties": [ { - "$id": "6113", + "$id": "6123", "kind": "property", "name": "url", "serializedName": "url", "doc": "Either a URL of the image or the base64 encoded image data.", "type": { - "$id": "6114", + "$id": "6124", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79135,7 +79258,7 @@ ] }, { - "$id": "6115", + "$id": "6125", "kind": "model", "name": "CreateModerationRequestInput3", "namespace": "OpenAI", @@ -79144,7 +79267,7 @@ "decorators": [], "properties": [ { - "$id": "6116", + "$id": "6126", "kind": "property", "name": "type", "serializedName": "type", @@ -79166,13 +79289,13 @@ "isHttpMetadata": false }, { - "$id": "6117", + "$id": "6127", "kind": "property", "name": "text", "serializedName": "text", "doc": "A string of text to classify.", "type": { - "$id": "6118", + "$id": "6128", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79218,7 +79341,7 @@ "isHttpMetadata": false }, { - "$id": "6119", + "$id": "6129", "kind": "property", "name": "model", "serializedName": "model", @@ -79242,16 +79365,16 @@ ] }, { - "$ref": "6109" + "$ref": "6119" }, { - "$ref": "6112" + "$ref": "6122" }, { - "$ref": "6115" + "$ref": "6125" }, { - "$id": "6120", + "$id": "6130", "kind": "model", "name": "CreateModerationResponse", "namespace": "OpenAI", @@ -79261,13 +79384,13 @@ "decorators": [], "properties": [ { - "$id": "6121", + "$id": "6131", "kind": "property", "name": "id", "serializedName": "id", "doc": "The unique identifier for the moderation request.", "type": { - "$id": "6122", + "$id": "6132", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79287,13 +79410,13 @@ "isHttpMetadata": false }, { - "$id": "6123", + "$id": "6133", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model used to generate the moderation results.", "type": { - "$id": "6124", + "$id": "6134", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79313,17 +79436,17 @@ "isHttpMetadata": false }, { - "$id": "6125", + "$id": "6135", "kind": "property", "name": "results", "serializedName": "results", "doc": "A list of moderation objects.", "type": { - "$id": "6126", + "$id": "6136", "kind": "array", "name": "ArrayCreateModerationResponseResult", "valueType": { - "$id": "6127", + "$id": "6137", "kind": "model", "name": "CreateModerationResponseResult", "namespace": "OpenAI", @@ -79332,13 +79455,13 @@ "decorators": [], "properties": [ { - "$id": "6128", + "$id": "6138", "kind": "property", "name": "flagged", "serializedName": "flagged", "doc": "Whether any of the below categories are flagged.", "type": { - "$id": "6129", + "$id": "6139", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79358,13 +79481,13 @@ "isHttpMetadata": false }, { - "$id": "6130", + "$id": "6140", "kind": "property", "name": "categories", "serializedName": "categories", "doc": "A list of the categories, and whether they are flagged or not.", "type": { - "$id": "6131", + "$id": "6141", "kind": "model", "name": "CreateModerationResponseResultCategories", "namespace": "OpenAI", @@ -79373,13 +79496,13 @@ "decorators": [], "properties": [ { - "$id": "6132", + "$id": "6142", "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": "6133", + "$id": "6143", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79399,13 +79522,13 @@ "isHttpMetadata": false }, { - "$id": "6134", + "$id": "6144", "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": "6135", + "$id": "6145", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79425,13 +79548,13 @@ "isHttpMetadata": false }, { - "$id": "6136", + "$id": "6146", "kind": "property", "name": "harassment", "serializedName": "harassment", "doc": "Content that expresses, incites, or promotes harassing language towards any target.", "type": { - "$id": "6137", + "$id": "6147", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79451,13 +79574,13 @@ "isHttpMetadata": false }, { - "$id": "6138", + "$id": "6148", "kind": "property", "name": "harassment/threatening", "serializedName": "harassment/threatening", "doc": "Harassment content that also includes violence or serious harm towards any target.", "type": { - "$id": "6139", + "$id": "6149", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79477,13 +79600,13 @@ "isHttpMetadata": false }, { - "$id": "6140", + "$id": "6150", "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": "6141", + "$id": "6151", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79503,13 +79626,13 @@ "isHttpMetadata": false }, { - "$id": "6142", + "$id": "6152", "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": "6143", + "$id": "6153", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79529,13 +79652,13 @@ "isHttpMetadata": false }, { - "$id": "6144", + "$id": "6154", "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": "6145", + "$id": "6155", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79555,13 +79678,13 @@ "isHttpMetadata": false }, { - "$id": "6146", + "$id": "6156", "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": "6147", + "$id": "6157", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79581,13 +79704,13 @@ "isHttpMetadata": false }, { - "$id": "6148", + "$id": "6158", "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": "6149", + "$id": "6159", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79607,13 +79730,13 @@ "isHttpMetadata": false }, { - "$id": "6150", + "$id": "6160", "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": "6151", + "$id": "6161", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79633,13 +79756,13 @@ "isHttpMetadata": false }, { - "$id": "6152", + "$id": "6162", "kind": "property", "name": "sexual/minors", "serializedName": "sexual/minors", "doc": "Sexual content that includes an individual who is under 18 years old.", "type": { - "$id": "6153", + "$id": "6163", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79659,13 +79782,13 @@ "isHttpMetadata": false }, { - "$id": "6154", + "$id": "6164", "kind": "property", "name": "violence", "serializedName": "violence", "doc": "Content that depicts death, violence, or physical injury.", "type": { - "$id": "6155", + "$id": "6165", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79685,13 +79808,13 @@ "isHttpMetadata": false }, { - "$id": "6156", + "$id": "6166", "kind": "property", "name": "violence/graphic", "serializedName": "violence/graphic", "doc": "Content that depicts death, violence, or physical injury in graphic detail.", "type": { - "$id": "6157", + "$id": "6167", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79726,13 +79849,13 @@ "isHttpMetadata": false }, { - "$id": "6158", + "$id": "6168", "kind": "property", "name": "category_scores", "serializedName": "category_scores", "doc": "A list of the categories along with their scores as predicted by model.", "type": { - "$id": "6159", + "$id": "6169", "kind": "model", "name": "CreateModerationResponseResultCategoryScores", "namespace": "OpenAI", @@ -79741,13 +79864,13 @@ "decorators": [], "properties": [ { - "$id": "6160", + "$id": "6170", "kind": "property", "name": "hate", "serializedName": "hate", "doc": "The score for the category 'hate'.", "type": { - "$id": "6161", + "$id": "6171", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79767,13 +79890,13 @@ "isHttpMetadata": false }, { - "$id": "6162", + "$id": "6172", "kind": "property", "name": "hate/threatening", "serializedName": "hate/threatening", "doc": "The score for the category 'hate/threatening'.", "type": { - "$id": "6163", + "$id": "6173", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79793,13 +79916,13 @@ "isHttpMetadata": false }, { - "$id": "6164", + "$id": "6174", "kind": "property", "name": "harassment", "serializedName": "harassment", "doc": "The score for the category 'harassment'.", "type": { - "$id": "6165", + "$id": "6175", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79819,13 +79942,13 @@ "isHttpMetadata": false }, { - "$id": "6166", + "$id": "6176", "kind": "property", "name": "harassment/threatening", "serializedName": "harassment/threatening", "doc": "The score for the category 'harassment/threatening'.", "type": { - "$id": "6167", + "$id": "6177", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79845,13 +79968,13 @@ "isHttpMetadata": false }, { - "$id": "6168", + "$id": "6178", "kind": "property", "name": "illicit", "serializedName": "illicit", "doc": "The score for the category 'illicit'.", "type": { - "$id": "6169", + "$id": "6179", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79871,13 +79994,13 @@ "isHttpMetadata": false }, { - "$id": "6170", + "$id": "6180", "kind": "property", "name": "illicit/violent", "serializedName": "illicit/violent", "doc": "The score for the category 'illicit/violent'.", "type": { - "$id": "6171", + "$id": "6181", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79897,13 +80020,13 @@ "isHttpMetadata": false }, { - "$id": "6172", + "$id": "6182", "kind": "property", "name": "self-harm", "serializedName": "self-harm", "doc": "The score for the category 'self-harm'.", "type": { - "$id": "6173", + "$id": "6183", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79923,13 +80046,13 @@ "isHttpMetadata": false }, { - "$id": "6174", + "$id": "6184", "kind": "property", "name": "self-harm/intent", "serializedName": "self-harm/intent", "doc": "The score for the category 'self-harm/intent'.", "type": { - "$id": "6175", + "$id": "6185", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79949,13 +80072,13 @@ "isHttpMetadata": false }, { - "$id": "6176", + "$id": "6186", "kind": "property", "name": "self-harm/instructions", "serializedName": "self-harm/instructions", "doc": "The score for the category 'self-harm/instructions'.", "type": { - "$id": "6177", + "$id": "6187", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79975,13 +80098,13 @@ "isHttpMetadata": false }, { - "$id": "6178", + "$id": "6188", "kind": "property", "name": "sexual", "serializedName": "sexual", "doc": "The score for the category 'sexual'.", "type": { - "$id": "6179", + "$id": "6189", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -80001,13 +80124,13 @@ "isHttpMetadata": false }, { - "$id": "6180", + "$id": "6190", "kind": "property", "name": "sexual/minors", "serializedName": "sexual/minors", "doc": "The score for the category 'sexual/minors'.", "type": { - "$id": "6181", + "$id": "6191", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -80027,13 +80150,13 @@ "isHttpMetadata": false }, { - "$id": "6182", + "$id": "6192", "kind": "property", "name": "violence", "serializedName": "violence", "doc": "The score for the category 'violence'.", "type": { - "$id": "6183", + "$id": "6193", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -80053,13 +80176,13 @@ "isHttpMetadata": false }, { - "$id": "6184", + "$id": "6194", "kind": "property", "name": "violence/graphic", "serializedName": "violence/graphic", "doc": "The score for the category 'violence/graphic'.", "type": { - "$id": "6185", + "$id": "6195", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -80094,13 +80217,13 @@ "isHttpMetadata": false }, { - "$id": "6186", + "$id": "6196", "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": "6187", + "$id": "6197", "kind": "model", "name": "CreateModerationResponseResultCategoryAppliedInputTypes", "namespace": "OpenAI", @@ -80109,17 +80232,17 @@ "decorators": [], "properties": [ { - "$id": "6188", + "$id": "6198", "kind": "property", "name": "hate", "serializedName": "hate", "doc": "The applied input type(s) for the category 'hate'.", "type": { - "$id": "6189", + "$id": "6199", "kind": "array", "name": "Array31", "valueType": { - "$id": "6190", + "$id": "6200", "kind": "enumvalue", "name": "text", "value": "text", @@ -80127,14 +80250,14 @@ "$ref": "1451" }, "enumType": { - "$id": "6191", + "$id": "6201", "kind": "enum", "decorators": [], "name": "ModerationAppliedInputType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6192", + "$id": "6202", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -80143,29 +80266,29 @@ }, "values": [ { - "$id": "6193", + "$id": "6203", "kind": "enumvalue", "decorators": [], "name": "text", "value": "text", "valueType": { - "$ref": "6192" + "$ref": "6202" }, "enumType": { - "$ref": "6191" + "$ref": "6201" } }, { - "$id": "6194", + "$id": "6204", "kind": "enumvalue", "decorators": [], "name": "image", "value": "image", "valueType": { - "$ref": "6192" + "$ref": "6202" }, "enumType": { - "$ref": "6191" + "$ref": "6201" } } ], @@ -80197,13 +80320,13 @@ "isHttpMetadata": false }, { - "$id": "6195", + "$id": "6205", "kind": "property", "name": "hate/threatening", "serializedName": "hate/threatening", "doc": "The applied input type(s) for the category 'hate/threatening'.", "type": { - "$ref": "6189" + "$ref": "6199" }, "optional": false, "readOnly": false, @@ -80219,13 +80342,13 @@ "isHttpMetadata": false }, { - "$id": "6196", + "$id": "6206", "kind": "property", "name": "harassment", "serializedName": "harassment", "doc": "The applied input type(s) for the category 'harassment'.", "type": { - "$ref": "6189" + "$ref": "6199" }, "optional": false, "readOnly": false, @@ -80241,13 +80364,13 @@ "isHttpMetadata": false }, { - "$id": "6197", + "$id": "6207", "kind": "property", "name": "harassment/threatening", "serializedName": "harassment/threatening", "doc": "The applied input type(s) for the category 'harassment/threatening'.", "type": { - "$ref": "6189" + "$ref": "6199" }, "optional": false, "readOnly": false, @@ -80263,13 +80386,13 @@ "isHttpMetadata": false }, { - "$id": "6198", + "$id": "6208", "kind": "property", "name": "illicit", "serializedName": "illicit", "doc": "The applied input type(s) for the category 'illicit'.", "type": { - "$ref": "6189" + "$ref": "6199" }, "optional": false, "readOnly": false, @@ -80285,13 +80408,13 @@ "isHttpMetadata": false }, { - "$id": "6199", + "$id": "6209", "kind": "property", "name": "illicit/violent", "serializedName": "illicit/violent", "doc": "The applied input type(s) for the category 'illicit/violent'.", "type": { - "$ref": "6189" + "$ref": "6199" }, "optional": false, "readOnly": false, @@ -80307,25 +80430,25 @@ "isHttpMetadata": false }, { - "$id": "6200", + "$id": "6210", "kind": "property", "name": "self-harm", "serializedName": "self-harm", "doc": "The applied input type(s) for the category 'self-harm'.", "type": { - "$id": "6201", + "$id": "6211", "kind": "array", "name": "Array32", "valueType": { - "$id": "6202", + "$id": "6212", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSelfHarm", "variantTypes": [ { - "$ref": "6190" + "$ref": "6200" }, { - "$id": "6203", + "$id": "6213", "kind": "enumvalue", "name": "image", "value": "image", @@ -80333,7 +80456,7 @@ "$ref": "1451" }, "enumType": { - "$ref": "6191" + "$ref": "6201" }, "decorators": [] } @@ -80358,25 +80481,25 @@ "isHttpMetadata": false }, { - "$id": "6204", + "$id": "6214", "kind": "property", "name": "self-harm/intent", "serializedName": "self-harm/intent", "doc": "The applied input type(s) for the category 'self-harm/intent'.", "type": { - "$id": "6205", + "$id": "6215", "kind": "array", "name": "Array33", "valueType": { - "$id": "6206", + "$id": "6216", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmIntent", "variantTypes": [ { - "$ref": "6190" + "$ref": "6200" }, { - "$ref": "6203" + "$ref": "6213" } ], "namespace": "OpenAI", @@ -80399,25 +80522,25 @@ "isHttpMetadata": false }, { - "$id": "6207", + "$id": "6217", "kind": "property", "name": "self-harm/instructions", "serializedName": "self-harm/instructions", "doc": "The applied input type(s) for the category 'self-harm/instructions'.", "type": { - "$id": "6208", + "$id": "6218", "kind": "array", "name": "Array34", "valueType": { - "$id": "6209", + "$id": "6219", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmInstruction", "variantTypes": [ { - "$ref": "6190" + "$ref": "6200" }, { - "$ref": "6203" + "$ref": "6213" } ], "namespace": "OpenAI", @@ -80440,25 +80563,25 @@ "isHttpMetadata": false }, { - "$id": "6210", + "$id": "6220", "kind": "property", "name": "sexual", "serializedName": "sexual", "doc": "The applied input type(s) for the category 'sexual'.", "type": { - "$id": "6211", + "$id": "6221", "kind": "array", "name": "Array35", "valueType": { - "$id": "6212", + "$id": "6222", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSexual", "variantTypes": [ { - "$ref": "6190" + "$ref": "6200" }, { - "$ref": "6203" + "$ref": "6213" } ], "namespace": "OpenAI", @@ -80481,13 +80604,13 @@ "isHttpMetadata": false }, { - "$id": "6213", + "$id": "6223", "kind": "property", "name": "sexual/minors", "serializedName": "sexual/minors", "doc": "The applied input type(s) for the category 'sexual/minors'.", "type": { - "$ref": "6189" + "$ref": "6199" }, "optional": false, "readOnly": false, @@ -80503,25 +80626,25 @@ "isHttpMetadata": false }, { - "$id": "6214", + "$id": "6224", "kind": "property", "name": "violence", "serializedName": "violence", "doc": "The applied input type(s) for the category 'violence'.", "type": { - "$id": "6215", + "$id": "6225", "kind": "array", "name": "Array36", "valueType": { - "$id": "6216", + "$id": "6226", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesViolence", "variantTypes": [ { - "$ref": "6190" + "$ref": "6200" }, { - "$ref": "6203" + "$ref": "6213" } ], "namespace": "OpenAI", @@ -80544,25 +80667,25 @@ "isHttpMetadata": false }, { - "$id": "6217", + "$id": "6227", "kind": "property", "name": "violence/graphic", "serializedName": "violence/graphic", "doc": "The applied input type(s) for the category 'violence/graphic'.", "type": { - "$id": "6218", + "$id": "6228", "kind": "array", "name": "Array37", "valueType": { - "$id": "6219", + "$id": "6229", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesViolenceGraphic", "variantTypes": [ { - "$ref": "6190" + "$ref": "6200" }, { - "$ref": "6203" + "$ref": "6213" } ], "namespace": "OpenAI", @@ -80620,19 +80743,19 @@ ] }, { - "$ref": "6127" + "$ref": "6137" }, { - "$ref": "6131" + "$ref": "6141" }, { - "$ref": "6159" + "$ref": "6169" }, { - "$ref": "6187" + "$ref": "6197" }, { - "$id": "6220", + "$id": "6230", "kind": "model", "name": "CreateThreadAndRunRequest", "namespace": "OpenAI", @@ -80641,13 +80764,13 @@ "decorators": [], "properties": [ { - "$id": "6221", + "$id": "6231", "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": "6222", + "$id": "6232", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80667,12 +80790,12 @@ "isHttpMetadata": false }, { - "$id": "6223", + "$id": "6233", "kind": "property", "name": "thread", "serializedName": "thread", "type": { - "$id": "6224", + "$id": "6234", "kind": "model", "name": "CreateThreadRequest", "namespace": "OpenAI", @@ -80682,17 +80805,17 @@ "decorators": [], "properties": [ { - "$id": "6225", + "$id": "6235", "kind": "property", "name": "messages", "serializedName": "messages", "doc": "A list of [messages](/docs/api-reference/messages) to start the thread with.", "type": { - "$id": "6226", + "$id": "6236", "kind": "array", "name": "ArrayCreateMessageRequest", "valueType": { - "$ref": "5957" + "$ref": "5967" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -80711,16 +80834,16 @@ "isHttpMetadata": false }, { - "$id": "6227", + "$id": "6237", "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": "6228", + "$id": "6238", "kind": "nullable", "type": { - "$id": "6229", + "$id": "6239", "kind": "model", "name": "CreateThreadRequestToolResources1", "namespace": "OpenAI", @@ -80729,12 +80852,12 @@ "decorators": [], "properties": [ { - "$id": "6230", + "$id": "6240", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "6231", + "$id": "6241", "kind": "model", "name": "CreateThreadRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -80743,7 +80866,7 @@ "decorators": [], "properties": [ { - "$id": "6232", + "$id": "6242", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -80780,7 +80903,7 @@ "isHttpMetadata": false }, { - "$id": "6233", + "$id": "6243", "kind": "property", "name": "file_search", "serializedName": "file_search", @@ -80818,7 +80941,7 @@ "isHttpMetadata": false }, { - "$id": "6234", + "$id": "6244", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -80855,13 +80978,13 @@ "isHttpMetadata": false }, { - "$id": "6235", + "$id": "6245", "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": "6236", + "$id": "6246", "kind": "nullable", "type": { "$ref": "962" @@ -80882,16 +81005,16 @@ "isHttpMetadata": false }, { - "$id": "6237", + "$id": "6247", "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": "6238", + "$id": "6248", "kind": "nullable", "type": { - "$id": "6239", + "$id": "6249", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80913,13 +81036,13 @@ "isHttpMetadata": false }, { - "$id": "6240", + "$id": "6250", "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": "6241", + "$id": "6251", "kind": "nullable", "type": { "$ref": "2395" @@ -80940,16 +81063,16 @@ "isHttpMetadata": false }, { - "$id": "6242", + "$id": "6252", "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": "6243", + "$id": "6253", "kind": "nullable", "type": { - "$id": "6244", + "$id": "6254", "kind": "model", "name": "CreateThreadAndRunRequestToolResources1", "namespace": "OpenAI", @@ -80958,12 +81081,12 @@ "decorators": [], "properties": [ { - "$id": "6245", + "$id": "6255", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "6246", + "$id": "6256", "kind": "model", "name": "CreateThreadAndRunRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -80972,7 +81095,7 @@ "decorators": [], "properties": [ { - "$id": "6247", + "$id": "6257", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -81009,7 +81132,7 @@ "isHttpMetadata": false }, { - "$id": "6248", + "$id": "6258", "kind": "property", "name": "file_search", "serializedName": "file_search", @@ -81047,7 +81170,7 @@ "isHttpMetadata": false }, { - "$id": "6249", + "$id": "6259", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -81069,16 +81192,16 @@ "isHttpMetadata": false }, { - "$id": "6250", + "$id": "6260", "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": "6251", + "$id": "6261", "kind": "nullable", "type": { - "$id": "6252", + "$id": "6262", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -81100,16 +81223,16 @@ "isHttpMetadata": false }, { - "$id": "6253", + "$id": "6263", "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": "6254", + "$id": "6264", "kind": "nullable", "type": { - "$id": "6255", + "$id": "6265", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -81131,16 +81254,16 @@ "isHttpMetadata": false }, { - "$id": "6256", + "$id": "6266", "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": "6257", + "$id": "6267", "kind": "nullable", "type": { - "$id": "6258", + "$id": "6268", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -81162,16 +81285,16 @@ "isHttpMetadata": false }, { - "$id": "6259", + "$id": "6269", "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": "6260", + "$id": "6270", "kind": "nullable", "type": { - "$id": "6261", + "$id": "6271", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81193,16 +81316,16 @@ "isHttpMetadata": false }, { - "$id": "6262", + "$id": "6272", "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": "6263", + "$id": "6273", "kind": "nullable", "type": { - "$id": "6264", + "$id": "6274", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81224,15 +81347,15 @@ "isHttpMetadata": false }, { - "$id": "6265", + "$id": "6275", "kind": "property", "name": "truncation_strategy", "serializedName": "truncation_strategy", "type": { - "$id": "6266", + "$id": "6276", "kind": "nullable", "type": { - "$id": "6267", + "$id": "6277", "kind": "model", "name": "TruncationObject", "namespace": "OpenAI", @@ -81242,7 +81365,7 @@ "decorators": [], "properties": [ { - "$id": "6268", + "$id": "6278", "kind": "property", "name": "type", "serializedName": "type", @@ -81264,16 +81387,16 @@ "isHttpMetadata": false }, { - "$id": "6269", + "$id": "6279", "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": "6270", + "$id": "6280", "kind": "nullable", "type": { - "$id": "6271", + "$id": "6281", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81312,15 +81435,15 @@ "isHttpMetadata": false }, { - "$id": "6272", + "$id": "6282", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "6273", + "$id": "6283", "kind": "nullable", "type": { - "$id": "6274", + "$id": "6284", "kind": "union", "name": "AssistantsApiToolChoiceOption", "variantTypes": [ @@ -81328,7 +81451,7 @@ "$ref": "1000" }, { - "$id": "6275", + "$id": "6285", "kind": "model", "name": "AssistantsNamedToolChoice", "namespace": "OpenAI", @@ -81338,7 +81461,7 @@ "decorators": [], "properties": [ { - "$id": "6276", + "$id": "6286", "kind": "property", "name": "type", "serializedName": "type", @@ -81360,12 +81483,12 @@ "isHttpMetadata": false }, { - "$id": "6277", + "$id": "6287", "kind": "property", "name": "function", "serializedName": "function", "type": { - "$id": "6278", + "$id": "6288", "kind": "model", "name": "AssistantsNamedToolChoiceFunction", "namespace": "OpenAI", @@ -81374,13 +81497,13 @@ "decorators": [], "properties": [ { - "$id": "6279", + "$id": "6289", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "6280", + "$id": "6290", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81436,17 +81559,17 @@ "isHttpMetadata": false }, { - "$id": "6281", + "$id": "6291", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "type": { - "$id": "6282", + "$id": "6292", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "6283", + "$id": "6293", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -81468,12 +81591,12 @@ "isHttpMetadata": false }, { - "$id": "6284", + "$id": "6294", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "6285", + "$id": "6295", "kind": "nullable", "type": { "$ref": "2456" @@ -81496,31 +81619,31 @@ ] }, { - "$ref": "6224" + "$ref": "6234" }, { - "$ref": "6229" + "$ref": "6239" }, { - "$ref": "6231" + "$ref": "6241" }, { - "$ref": "6244" + "$ref": "6254" }, { - "$ref": "6246" + "$ref": "6256" }, { - "$ref": "6267" + "$ref": "6277" }, { - "$ref": "6275" + "$ref": "6285" }, { - "$ref": "6278" + "$ref": "6288" }, { - "$id": "6286", + "$id": "6296", "kind": "model", "name": "RunObject", "namespace": "OpenAI", @@ -81530,13 +81653,13 @@ "decorators": [], "properties": [ { - "$id": "6287", + "$id": "6297", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6288", + "$id": "6298", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81556,7 +81679,7 @@ "isHttpMetadata": false }, { - "$id": "6289", + "$id": "6299", "kind": "property", "name": "object", "serializedName": "object", @@ -81578,18 +81701,18 @@ "isHttpMetadata": false }, { - "$id": "6290", + "$id": "6300", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the run was created.", "type": { - "$id": "6291", + "$id": "6301", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6292", + "$id": "6302", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81612,13 +81735,13 @@ "isHttpMetadata": false }, { - "$id": "6293", + "$id": "6303", "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": "6294", + "$id": "6304", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81638,13 +81761,13 @@ "isHttpMetadata": false }, { - "$id": "6295", + "$id": "6305", "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": "6296", + "$id": "6306", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81664,7 +81787,7 @@ "isHttpMetadata": false }, { - "$id": "6297", + "$id": "6307", "kind": "property", "name": "status", "serializedName": "status", @@ -81686,16 +81809,16 @@ "isHttpMetadata": false }, { - "$id": "6298", + "$id": "6308", "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": "6299", + "$id": "6309", "kind": "nullable", "type": { - "$id": "6300", + "$id": "6310", "kind": "model", "name": "RunObjectRequiredAction1", "namespace": "OpenAI", @@ -81704,7 +81827,7 @@ "decorators": [], "properties": [ { - "$id": "6301", + "$id": "6311", "kind": "property", "name": "type", "serializedName": "type", @@ -81726,13 +81849,13 @@ "isHttpMetadata": false }, { - "$id": "6302", + "$id": "6312", "kind": "property", "name": "submit_tool_outputs", "serializedName": "submit_tool_outputs", "doc": "Details on the tool outputs needed for this run to continue.", "type": { - "$id": "6303", + "$id": "6313", "kind": "model", "name": "RunObjectRequiredActionSubmitToolOutputs", "namespace": "OpenAI", @@ -81741,17 +81864,17 @@ "decorators": [], "properties": [ { - "$id": "6304", + "$id": "6314", "kind": "property", "name": "tool_calls", "serializedName": "tool_calls", "doc": "A list of the relevant tool calls.", "type": { - "$id": "6305", + "$id": "6315", "kind": "array", "name": "ArrayRunToolCallObject", "valueType": { - "$id": "6306", + "$id": "6316", "kind": "model", "name": "RunToolCallObject", "namespace": "OpenAI", @@ -81761,13 +81884,13 @@ "decorators": [], "properties": [ { - "$id": "6307", + "$id": "6317", "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": "6308", + "$id": "6318", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81787,7 +81910,7 @@ "isHttpMetadata": false }, { - "$id": "6309", + "$id": "6319", "kind": "property", "name": "type", "serializedName": "type", @@ -81809,13 +81932,13 @@ "isHttpMetadata": false }, { - "$id": "6310", + "$id": "6320", "kind": "property", "name": "function", "serializedName": "function", "doc": "The function definition.", "type": { - "$id": "6311", + "$id": "6321", "kind": "model", "name": "RunToolCallObjectFunction", "namespace": "OpenAI", @@ -81824,13 +81947,13 @@ "decorators": [], "properties": [ { - "$id": "6312", + "$id": "6322", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function.", "type": { - "$id": "6313", + "$id": "6323", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81850,13 +81973,13 @@ "isHttpMetadata": false }, { - "$id": "6314", + "$id": "6324", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "The arguments that the model expects you to pass to the function.", "type": { - "$id": "6315", + "$id": "6325", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81941,16 +82064,16 @@ "isHttpMetadata": false }, { - "$id": "6316", + "$id": "6326", "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": "6317", + "$id": "6327", "kind": "nullable", "type": { - "$id": "6318", + "$id": "6328", "kind": "model", "name": "RunObjectLastError1", "namespace": "OpenAI", @@ -81959,7 +82082,7 @@ "decorators": [], "properties": [ { - "$id": "6319", + "$id": "6329", "kind": "property", "name": "code", "serializedName": "code", @@ -81981,13 +82104,13 @@ "isHttpMetadata": false }, { - "$id": "6320", + "$id": "6330", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "6321", + "$id": "6331", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82024,21 +82147,21 @@ "isHttpMetadata": false }, { - "$id": "6322", + "$id": "6332", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the run will expire.", "type": { - "$id": "6323", + "$id": "6333", "kind": "nullable", "type": { - "$id": "6324", + "$id": "6334", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6325", + "$id": "6335", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82063,21 +82186,21 @@ "isHttpMetadata": false }, { - "$id": "6326", + "$id": "6336", "kind": "property", "name": "started_at", "serializedName": "started_at", "doc": "The Unix timestamp (in seconds) for when the run was started.", "type": { - "$id": "6327", + "$id": "6337", "kind": "nullable", "type": { - "$id": "6328", + "$id": "6338", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6329", + "$id": "6339", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82102,21 +82225,21 @@ "isHttpMetadata": false }, { - "$id": "6330", + "$id": "6340", "kind": "property", "name": "cancelled_at", "serializedName": "cancelled_at", "doc": "The Unix timestamp (in seconds) for when the run was cancelled.", "type": { - "$id": "6331", + "$id": "6341", "kind": "nullable", "type": { - "$id": "6332", + "$id": "6342", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6333", + "$id": "6343", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82141,21 +82264,21 @@ "isHttpMetadata": false }, { - "$id": "6334", + "$id": "6344", "kind": "property", "name": "failed_at", "serializedName": "failed_at", "doc": "The Unix timestamp (in seconds) for when the run failed.", "type": { - "$id": "6335", + "$id": "6345", "kind": "nullable", "type": { - "$id": "6336", + "$id": "6346", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6337", + "$id": "6347", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82180,21 +82303,21 @@ "isHttpMetadata": false }, { - "$id": "6338", + "$id": "6348", "kind": "property", "name": "completed_at", "serializedName": "completed_at", "doc": "The Unix timestamp (in seconds) for when the run was completed.", "type": { - "$id": "6339", + "$id": "6349", "kind": "nullable", "type": { - "$id": "6340", + "$id": "6350", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6341", + "$id": "6351", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82219,16 +82342,16 @@ "isHttpMetadata": false }, { - "$id": "6342", + "$id": "6352", "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": "6343", + "$id": "6353", "kind": "nullable", "type": { - "$id": "6344", + "$id": "6354", "kind": "model", "name": "RunObjectIncompleteDetails1", "namespace": "OpenAI", @@ -82237,7 +82360,7 @@ "decorators": [], "properties": [ { - "$id": "6345", + "$id": "6355", "kind": "property", "name": "reason", "serializedName": "reason", @@ -82276,13 +82399,13 @@ "isHttpMetadata": false }, { - "$id": "6346", + "$id": "6356", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model that the [assistant](/docs/api-reference/assistants) used for this run.", "type": { - "$id": "6347", + "$id": "6357", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82302,13 +82425,13 @@ "isHttpMetadata": false }, { - "$id": "6348", + "$id": "6358", "kind": "property", "name": "instructions", "serializedName": "instructions", "doc": "The instructions that the [assistant](/docs/api-reference/assistants) used for this run.", "type": { - "$id": "6349", + "$id": "6359", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82328,7 +82451,7 @@ "isHttpMetadata": false }, { - "$id": "6350", + "$id": "6360", "kind": "property", "name": "tools", "serializedName": "tools", @@ -82350,7 +82473,7 @@ "isHttpMetadata": false }, { - "$id": "6351", + "$id": "6361", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -82372,15 +82495,15 @@ "isHttpMetadata": false }, { - "$id": "6352", + "$id": "6362", "kind": "property", "name": "usage", "serializedName": "usage", "type": { - "$id": "6353", + "$id": "6363", "kind": "nullable", "type": { - "$id": "6354", + "$id": "6364", "kind": "model", "name": "RunCompletionUsage", "namespace": "OpenAI", @@ -82390,13 +82513,13 @@ "decorators": [], "properties": [ { - "$id": "6355", + "$id": "6365", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "Number of completion tokens used over the course of the run.", "type": { - "$id": "6356", + "$id": "6366", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82416,13 +82539,13 @@ "isHttpMetadata": false }, { - "$id": "6357", + "$id": "6367", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "Number of prompt tokens used over the course of the run.", "type": { - "$id": "6358", + "$id": "6368", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82442,13 +82565,13 @@ "isHttpMetadata": false }, { - "$id": "6359", + "$id": "6369", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "Total number of tokens used (prompt + completion).", "type": { - "$id": "6360", + "$id": "6370", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82485,16 +82608,16 @@ "isHttpMetadata": false }, { - "$id": "6361", + "$id": "6371", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "The sampling temperature used for this run. If not set, defaults to 1.", "type": { - "$id": "6362", + "$id": "6372", "kind": "nullable", "type": { - "$id": "6363", + "$id": "6373", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -82516,16 +82639,16 @@ "isHttpMetadata": false }, { - "$id": "6364", + "$id": "6374", "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": "6365", + "$id": "6375", "kind": "nullable", "type": { - "$id": "6366", + "$id": "6376", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -82547,16 +82670,16 @@ "isHttpMetadata": false }, { - "$id": "6367", + "$id": "6377", "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": "6368", + "$id": "6378", "kind": "nullable", "type": { - "$id": "6369", + "$id": "6379", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82578,16 +82701,16 @@ "isHttpMetadata": false }, { - "$id": "6370", + "$id": "6380", "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": "6371", + "$id": "6381", "kind": "nullable", "type": { - "$id": "6372", + "$id": "6382", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82609,15 +82732,15 @@ "isHttpMetadata": false }, { - "$id": "6373", + "$id": "6383", "kind": "property", "name": "truncation_strategy", "serializedName": "truncation_strategy", "type": { - "$id": "6374", + "$id": "6384", "kind": "nullable", "type": { - "$ref": "6267" + "$ref": "6277" }, "namespace": "OpenAI" }, @@ -82635,15 +82758,15 @@ "isHttpMetadata": false }, { - "$id": "6375", + "$id": "6385", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "6376", + "$id": "6386", "kind": "nullable", "type": { - "$ref": "6274" + "$ref": "6284" }, "namespace": "OpenAI" }, @@ -82661,17 +82784,17 @@ "isHttpMetadata": false }, { - "$id": "6377", + "$id": "6387", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "type": { - "$id": "6378", + "$id": "6388", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "6379", + "$id": "6389", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -82693,12 +82816,12 @@ "isHttpMetadata": false }, { - "$id": "6380", + "$id": "6390", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "6381", + "$id": "6391", "kind": "nullable", "type": { "$ref": "2456" @@ -82721,28 +82844,28 @@ ] }, { - "$ref": "6300" + "$ref": "6310" }, { - "$ref": "6303" + "$ref": "6313" }, { - "$ref": "6306" + "$ref": "6316" }, { - "$ref": "6311" + "$ref": "6321" }, { - "$ref": "6318" + "$ref": "6328" }, { - "$ref": "6344" + "$ref": "6354" }, { - "$ref": "6354" + "$ref": "6364" }, { - "$id": "6382", + "$id": "6392", "kind": "model", "name": "CreateRunRequest", "namespace": "OpenAI", @@ -82751,13 +82874,13 @@ "decorators": [], "properties": [ { - "$id": "6383", + "$id": "6393", "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": "6384", + "$id": "6394", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82777,13 +82900,13 @@ "isHttpMetadata": false }, { - "$id": "6385", + "$id": "6395", "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": "6386", + "$id": "6396", "kind": "nullable", "type": { "$ref": "15" @@ -82804,12 +82927,12 @@ "isHttpMetadata": false }, { - "$id": "6387", + "$id": "6397", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", "type": { - "$id": "6388", + "$id": "6398", "kind": "nullable", "type": { "$ref": "53" @@ -82830,16 +82953,16 @@ "isHttpMetadata": false }, { - "$id": "6389", + "$id": "6399", "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": "6390", + "$id": "6400", "kind": "nullable", "type": { - "$id": "6391", + "$id": "6401", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82861,16 +82984,16 @@ "isHttpMetadata": false }, { - "$id": "6392", + "$id": "6402", "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": "6393", + "$id": "6403", "kind": "nullable", "type": { - "$id": "6394", + "$id": "6404", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82892,16 +83015,16 @@ "isHttpMetadata": false }, { - "$id": "6395", + "$id": "6405", "kind": "property", "name": "additional_messages", "serializedName": "additional_messages", "doc": "Adds additional messages to the thread before creating the run.", "type": { - "$id": "6396", + "$id": "6406", "kind": "nullable", "type": { - "$ref": "6226" + "$ref": "6236" }, "namespace": "OpenAI" }, @@ -82919,13 +83042,13 @@ "isHttpMetadata": false }, { - "$id": "6397", + "$id": "6407", "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": "6398", + "$id": "6408", "kind": "nullable", "type": { "$ref": "2395" @@ -82946,7 +83069,7 @@ "isHttpMetadata": false }, { - "$id": "6399", + "$id": "6409", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -82968,16 +83091,16 @@ "isHttpMetadata": false }, { - "$id": "6400", + "$id": "6410", "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": "6401", + "$id": "6411", "kind": "nullable", "type": { - "$id": "6402", + "$id": "6412", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -82999,16 +83122,16 @@ "isHttpMetadata": false }, { - "$id": "6403", + "$id": "6413", "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": "6404", + "$id": "6414", "kind": "nullable", "type": { - "$id": "6405", + "$id": "6415", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -83030,16 +83153,16 @@ "isHttpMetadata": false }, { - "$id": "6406", + "$id": "6416", "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": "6407", + "$id": "6417", "kind": "nullable", "type": { - "$id": "6408", + "$id": "6418", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -83061,16 +83184,16 @@ "isHttpMetadata": false }, { - "$id": "6409", + "$id": "6419", "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": "6410", + "$id": "6420", "kind": "nullable", "type": { - "$id": "6411", + "$id": "6421", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -83092,16 +83215,16 @@ "isHttpMetadata": false }, { - "$id": "6412", + "$id": "6422", "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": "6413", + "$id": "6423", "kind": "nullable", "type": { - "$id": "6414", + "$id": "6424", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -83123,15 +83246,15 @@ "isHttpMetadata": false }, { - "$id": "6415", + "$id": "6425", "kind": "property", "name": "truncation_strategy", "serializedName": "truncation_strategy", "type": { - "$id": "6416", + "$id": "6426", "kind": "nullable", "type": { - "$ref": "6267" + "$ref": "6277" }, "namespace": "OpenAI" }, @@ -83149,15 +83272,15 @@ "isHttpMetadata": false }, { - "$id": "6417", + "$id": "6427", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "6418", + "$id": "6428", "kind": "nullable", "type": { - "$ref": "6274" + "$ref": "6284" }, "namespace": "OpenAI" }, @@ -83175,17 +83298,17 @@ "isHttpMetadata": false }, { - "$id": "6419", + "$id": "6429", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "type": { - "$id": "6420", + "$id": "6430", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "6421", + "$id": "6431", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -83207,12 +83330,12 @@ "isHttpMetadata": false }, { - "$id": "6422", + "$id": "6432", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "6423", + "$id": "6433", "kind": "nullable", "type": { "$ref": "2456" @@ -83235,7 +83358,7 @@ ] }, { - "$id": "6424", + "$id": "6434", "kind": "model", "name": "ListRunsResponse", "namespace": "OpenAI", @@ -83244,7 +83367,7 @@ "decorators": [], "properties": [ { - "$id": "6425", + "$id": "6435", "kind": "property", "name": "object", "serializedName": "object", @@ -83265,16 +83388,16 @@ "isHttpMetadata": false }, { - "$id": "6426", + "$id": "6436", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6427", + "$id": "6437", "kind": "array", "name": "ArrayRunObject", "valueType": { - "$ref": "6286" + "$ref": "6296" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -83293,12 +83416,12 @@ "isHttpMetadata": false }, { - "$id": "6428", + "$id": "6438", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6429", + "$id": "6439", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83318,12 +83441,12 @@ "isHttpMetadata": false }, { - "$id": "6430", + "$id": "6440", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6431", + "$id": "6441", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83343,12 +83466,12 @@ "isHttpMetadata": false }, { - "$id": "6432", + "$id": "6442", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6433", + "$id": "6443", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -83370,7 +83493,7 @@ ] }, { - "$id": "6434", + "$id": "6444", "kind": "model", "name": "ModifyRunRequest", "namespace": "OpenAI", @@ -83379,7 +83502,7 @@ "decorators": [], "properties": [ { - "$id": "6435", + "$id": "6445", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -83403,7 +83526,7 @@ ] }, { - "$id": "6436", + "$id": "6446", "kind": "model", "name": "SubmitToolOutputsRunRequest", "namespace": "OpenAI", @@ -83412,17 +83535,17 @@ "decorators": [], "properties": [ { - "$id": "6437", + "$id": "6447", "kind": "property", "name": "tool_outputs", "serializedName": "tool_outputs", "doc": "A list of tools for which the outputs are being submitted.", "type": { - "$id": "6438", + "$id": "6448", "kind": "array", "name": "Array38", "valueType": { - "$id": "6439", + "$id": "6449", "kind": "model", "name": "SubmitToolOutputsRunRequestToolOutput", "namespace": "OpenAI", @@ -83431,13 +83554,13 @@ "decorators": [], "properties": [ { - "$id": "6440", + "$id": "6450", "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": "6441", + "$id": "6451", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83457,13 +83580,13 @@ "isHttpMetadata": false }, { - "$id": "6442", + "$id": "6452", "kind": "property", "name": "output", "serializedName": "output", "doc": "The output of the tool call to be submitted to continue the run.", "type": { - "$id": "6443", + "$id": "6453", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83501,16 +83624,16 @@ "isHttpMetadata": false }, { - "$id": "6444", + "$id": "6454", "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": "6445", + "$id": "6455", "kind": "nullable", "type": { - "$id": "6446", + "$id": "6456", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -83534,10 +83657,10 @@ ] }, { - "$ref": "6439" + "$ref": "6449" }, { - "$id": "6447", + "$id": "6457", "kind": "model", "name": "ListRunStepsResponse", "namespace": "OpenAI", @@ -83546,7 +83669,7 @@ "decorators": [], "properties": [ { - "$id": "6448", + "$id": "6458", "kind": "property", "name": "object", "serializedName": "object", @@ -83567,16 +83690,16 @@ "isHttpMetadata": false }, { - "$id": "6449", + "$id": "6459", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6450", + "$id": "6460", "kind": "array", "name": "ArrayRunStepObject", "valueType": { - "$id": "6451", + "$id": "6461", "kind": "model", "name": "RunStepObject", "namespace": "OpenAI", @@ -83586,13 +83709,13 @@ "decorators": [], "properties": [ { - "$id": "6452", + "$id": "6462", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier of the run step, which can be referenced in API endpoints.", "type": { - "$id": "6453", + "$id": "6463", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83612,7 +83735,7 @@ "isHttpMetadata": false }, { - "$id": "6454", + "$id": "6464", "kind": "property", "name": "object", "serializedName": "object", @@ -83634,18 +83757,18 @@ "isHttpMetadata": false }, { - "$id": "6455", + "$id": "6465", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the run step was created.", "type": { - "$id": "6456", + "$id": "6466", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6457", + "$id": "6467", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -83668,13 +83791,13 @@ "isHttpMetadata": false }, { - "$id": "6458", + "$id": "6468", "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": "6459", + "$id": "6469", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83694,13 +83817,13 @@ "isHttpMetadata": false }, { - "$id": "6460", + "$id": "6470", "kind": "property", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "6461", + "$id": "6471", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83720,13 +83843,13 @@ "isHttpMetadata": false }, { - "$id": "6462", + "$id": "6472", "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": "6463", + "$id": "6473", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83746,7 +83869,7 @@ "isHttpMetadata": false }, { - "$id": "6464", + "$id": "6474", "kind": "property", "name": "type", "serializedName": "type", @@ -83768,7 +83891,7 @@ "isHttpMetadata": false }, { - "$id": "6465", + "$id": "6475", "kind": "property", "name": "status", "serializedName": "status", @@ -83790,13 +83913,13 @@ "isHttpMetadata": false }, { - "$id": "6466", + "$id": "6476", "kind": "property", "name": "step_details", "serializedName": "step_details", "doc": "The details of the run step.", "type": { - "$id": "6467", + "$id": "6477", "kind": "model", "name": "RunStepObjectStepDetails", "namespace": "OpenAI", @@ -83805,7 +83928,7 @@ "doc": "Abstractly represents a run step details object.", "decorators": [], "discriminatorProperty": { - "$id": "6468", + "$id": "6478", "kind": "property", "name": "type", "serializedName": "type", @@ -83828,12 +83951,12 @@ }, "properties": [ { - "$ref": "6468" + "$ref": "6478" } ], "discriminatedSubtypes": { "message_creation": { - "$id": "6469", + "$id": "6479", "kind": "model", "name": "RunStepDetailsMessageCreationObject", "namespace": "OpenAI", @@ -83843,17 +83966,17 @@ "discriminatorValue": "message_creation", "decorators": [], "baseModel": { - "$ref": "6467" + "$ref": "6477" }, "properties": [ { - "$id": "6470", + "$id": "6480", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `message_creation`.", "type": { - "$id": "6471", + "$id": "6481", "kind": "enumvalue", "name": "message_creation", "value": "message_creation", @@ -83861,14 +83984,14 @@ "$ref": "1042" }, "enumType": { - "$id": "6472", + "$id": "6482", "kind": "enum", "decorators": [], "name": "RunStepDetailsType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6473", + "$id": "6483", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -83877,29 +84000,29 @@ }, "values": [ { - "$id": "6474", + "$id": "6484", "kind": "enumvalue", "decorators": [], "name": "message_creation", "value": "message_creation", "valueType": { - "$ref": "6473" + "$ref": "6483" }, "enumType": { - "$ref": "6472" + "$ref": "6482" } }, { - "$id": "6475", + "$id": "6485", "kind": "enumvalue", "decorators": [], "name": "tool_calls", "value": "tool_calls", "valueType": { - "$ref": "6473" + "$ref": "6483" }, "enumType": { - "$ref": "6472" + "$ref": "6482" } } ], @@ -83928,12 +84051,12 @@ "isHttpMetadata": false }, { - "$id": "6476", + "$id": "6486", "kind": "property", "name": "message_creation", "serializedName": "message_creation", "type": { - "$id": "6477", + "$id": "6487", "kind": "model", "name": "RunStepDetailsMessageCreationObjectMessageCreation", "namespace": "OpenAI", @@ -83942,13 +84065,13 @@ "decorators": [], "properties": [ { - "$id": "6478", + "$id": "6488", "kind": "property", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message that was created by this run step.", "type": { - "$id": "6479", + "$id": "6489", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83985,7 +84108,7 @@ ] }, "tool_calls": { - "$id": "6480", + "$id": "6490", "kind": "model", "name": "RunStepDetailsToolCallsObject", "namespace": "OpenAI", @@ -83995,17 +84118,17 @@ "discriminatorValue": "tool_calls", "decorators": [], "baseModel": { - "$ref": "6467" + "$ref": "6477" }, "properties": [ { - "$id": "6481", + "$id": "6491", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `tool_calls`.", "type": { - "$id": "6482", + "$id": "6492", "kind": "enumvalue", "name": "tool_calls", "value": "tool_calls", @@ -84013,7 +84136,7 @@ "$ref": "1042" }, "enumType": { - "$ref": "6472" + "$ref": "6482" }, "decorators": [] }, @@ -84031,17 +84154,17 @@ "isHttpMetadata": false }, { - "$id": "6483", + "$id": "6493", "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": "6484", + "$id": "6494", "kind": "array", "name": "ArrayRunStepDetailsToolCallsObjectToolCallsObject", "valueType": { - "$id": "6485", + "$id": "6495", "kind": "model", "name": "RunStepDetailsToolCallsObjectToolCallsObject", "namespace": "OpenAI", @@ -84050,7 +84173,7 @@ "doc": "Abstractly represents a run step tool call details inner object.", "decorators": [], "discriminatorProperty": { - "$id": "6486", + "$id": "6496", "kind": "property", "name": "type", "serializedName": "type", @@ -84073,16 +84196,16 @@ }, "properties": [ { - "$ref": "6486" + "$ref": "6496" }, { - "$id": "6487", + "$id": "6497", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the tool call object.", "type": { - "$id": "6488", + "$id": "6498", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84104,7 +84227,7 @@ ], "discriminatedSubtypes": { "code_interpreter": { - "$id": "6489", + "$id": "6499", "kind": "model", "name": "RunStepDetailsToolCallsCodeObject", "namespace": "OpenAI", @@ -84114,17 +84237,17 @@ "discriminatorValue": "code_interpreter", "decorators": [], "baseModel": { - "$ref": "6485" + "$ref": "6495" }, "properties": [ { - "$id": "6490", + "$id": "6500", "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": "6491", + "$id": "6501", "kind": "enumvalue", "name": "code_interpreter", "value": "code_interpreter", @@ -84132,14 +84255,14 @@ "$ref": "1046" }, "enumType": { - "$id": "6492", + "$id": "6502", "kind": "enum", "decorators": [], "name": "RunStepDetailsToolCallType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6493", + "$id": "6503", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -84148,42 +84271,42 @@ }, "values": [ { - "$id": "6494", + "$id": "6504", "kind": "enumvalue", "decorators": [], "name": "code_interpreter", "value": "code_interpreter", "valueType": { - "$ref": "6493" + "$ref": "6503" }, "enumType": { - "$ref": "6492" + "$ref": "6502" } }, { - "$id": "6495", + "$id": "6505", "kind": "enumvalue", "decorators": [], "name": "file_search", "value": "file_search", "valueType": { - "$ref": "6493" + "$ref": "6503" }, "enumType": { - "$ref": "6492" + "$ref": "6502" } }, { - "$id": "6496", + "$id": "6506", "kind": "enumvalue", "decorators": [], "name": "function", "value": "function", "valueType": { - "$ref": "6493" + "$ref": "6503" }, "enumType": { - "$ref": "6492" + "$ref": "6502" } } ], @@ -84212,13 +84335,13 @@ "isHttpMetadata": false }, { - "$id": "6497", + "$id": "6507", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "doc": "The Code Interpreter tool call definition.", "type": { - "$id": "6498", + "$id": "6508", "kind": "model", "name": "RunStepDetailsToolCallsCodeObjectCodeInterpreter", "namespace": "OpenAI", @@ -84227,13 +84350,13 @@ "decorators": [], "properties": [ { - "$id": "6499", + "$id": "6509", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input to the Code Interpreter tool call.", "type": { - "$id": "6500", + "$id": "6510", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84253,17 +84376,17 @@ "isHttpMetadata": false }, { - "$id": "6501", + "$id": "6511", "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": "6502", + "$id": "6512", "kind": "array", "name": "ArrayRunStepDetailsToolCallsCodeObjectCodeInterpreterOutputsObject", "valueType": { - "$id": "6503", + "$id": "6513", "kind": "model", "name": "RunStepDetailsToolCallsCodeObjectCodeInterpreterOutputsObject", "namespace": "OpenAI", @@ -84272,7 +84395,7 @@ "doc": "Abstractly represents a run step tool call details code interpreter output.", "decorators": [], "discriminatorProperty": { - "$id": "6504", + "$id": "6514", "kind": "property", "name": "type", "serializedName": "type", @@ -84295,12 +84418,12 @@ }, "properties": [ { - "$ref": "6504" + "$ref": "6514" } ], "discriminatedSubtypes": { "logs": { - "$id": "6505", + "$id": "6515", "kind": "model", "name": "RunStepDetailsToolCallsCodeOutputLogsObject", "namespace": "OpenAI", @@ -84310,17 +84433,17 @@ "discriminatorValue": "logs", "decorators": [], "baseModel": { - "$ref": "6503" + "$ref": "6513" }, "properties": [ { - "$id": "6506", + "$id": "6516", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `logs`.", "type": { - "$id": "6507", + "$id": "6517", "kind": "enumvalue", "name": "logs", "value": "logs", @@ -84328,14 +84451,14 @@ "$ref": "1051" }, "enumType": { - "$id": "6508", + "$id": "6518", "kind": "enum", "decorators": [], "name": "RunStepDetailsCodeInterpreterOutputType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6509", + "$id": "6519", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -84344,29 +84467,29 @@ }, "values": [ { - "$id": "6510", + "$id": "6520", "kind": "enumvalue", "decorators": [], "name": "logs", "value": "logs", "valueType": { - "$ref": "6509" + "$ref": "6519" }, "enumType": { - "$ref": "6508" + "$ref": "6518" } }, { - "$id": "6511", + "$id": "6521", "kind": "enumvalue", "decorators": [], "name": "image", "value": "image", "valueType": { - "$ref": "6509" + "$ref": "6519" }, "enumType": { - "$ref": "6508" + "$ref": "6518" } } ], @@ -84395,13 +84518,13 @@ "isHttpMetadata": false }, { - "$id": "6512", + "$id": "6522", "kind": "property", "name": "logs", "serializedName": "logs", "doc": "The text output from the Code Interpreter tool call.", "type": { - "$id": "6513", + "$id": "6523", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84423,7 +84546,7 @@ ] }, "image": { - "$id": "6514", + "$id": "6524", "kind": "model", "name": "RunStepDetailsToolCallsCodeOutputImageObject", "namespace": "OpenAI", @@ -84432,17 +84555,17 @@ "discriminatorValue": "image", "decorators": [], "baseModel": { - "$ref": "6503" + "$ref": "6513" }, "properties": [ { - "$id": "6515", + "$id": "6525", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `image`.", "type": { - "$id": "6516", + "$id": "6526", "kind": "enumvalue", "name": "image", "value": "image", @@ -84450,7 +84573,7 @@ "$ref": "1051" }, "enumType": { - "$ref": "6508" + "$ref": "6518" }, "decorators": [] }, @@ -84468,12 +84591,12 @@ "isHttpMetadata": false }, { - "$id": "6517", + "$id": "6527", "kind": "property", "name": "image", "serializedName": "image", "type": { - "$id": "6518", + "$id": "6528", "kind": "model", "name": "RunStepDetailsToolCallsCodeOutputImageObjectImage", "namespace": "OpenAI", @@ -84482,13 +84605,13 @@ "decorators": [], "properties": [ { - "$id": "6519", + "$id": "6529", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The [file](/docs/api-reference/files) ID of the image.", "type": { - "$id": "6520", + "$id": "6530", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84560,7 +84683,7 @@ ] }, "file_search": { - "$id": "6521", + "$id": "6531", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchObject", "namespace": "OpenAI", @@ -84569,17 +84692,17 @@ "discriminatorValue": "file_search", "decorators": [], "baseModel": { - "$ref": "6485" + "$ref": "6495" }, "properties": [ { - "$id": "6522", + "$id": "6532", "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": "6523", + "$id": "6533", "kind": "enumvalue", "name": "file_search", "value": "file_search", @@ -84587,7 +84710,7 @@ "$ref": "1046" }, "enumType": { - "$ref": "6492" + "$ref": "6502" }, "decorators": [] }, @@ -84605,13 +84728,13 @@ "isHttpMetadata": false }, { - "$id": "6524", + "$id": "6534", "kind": "property", "name": "file_search", "serializedName": "file_search", "doc": "For now, this is always going to be an empty object.", "type": { - "$id": "6525", + "$id": "6535", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchObjectFileSearch", "namespace": "OpenAI", @@ -84620,12 +84743,12 @@ "decorators": [], "properties": [ { - "$id": "6526", + "$id": "6536", "kind": "property", "name": "ranking_options", "serializedName": "ranking_options", "type": { - "$id": "6527", + "$id": "6537", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchRankingOptionsObject", "namespace": "OpenAI", @@ -84635,7 +84758,7 @@ "decorators": [], "properties": [ { - "$id": "6528", + "$id": "6538", "kind": "property", "name": "ranker", "serializedName": "ranker", @@ -84656,13 +84779,13 @@ "isHttpMetadata": false }, { - "$id": "6529", + "$id": "6539", "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": "6530", + "$id": "6540", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -84697,17 +84820,17 @@ "isHttpMetadata": false }, { - "$id": "6531", + "$id": "6541", "kind": "property", "name": "results", "serializedName": "results", "doc": "The results of the file search.", "type": { - "$id": "6532", + "$id": "6542", "kind": "array", "name": "ArrayRunStepDetailsToolCallsFileSearchResultObject", "valueType": { - "$id": "6533", + "$id": "6543", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchResultObject", "namespace": "OpenAI", @@ -84717,13 +84840,13 @@ "decorators": [], "properties": [ { - "$id": "6534", + "$id": "6544", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file that result was found in.", "type": { - "$id": "6535", + "$id": "6545", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84743,13 +84866,13 @@ "isHttpMetadata": false }, { - "$id": "6536", + "$id": "6546", "kind": "property", "name": "file_name", "serializedName": "file_name", "doc": "The name of the file that result was found in.", "type": { - "$id": "6537", + "$id": "6547", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84769,13 +84892,13 @@ "isHttpMetadata": false }, { - "$id": "6538", + "$id": "6548", "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": "6539", + "$id": "6549", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -84795,17 +84918,17 @@ "isHttpMetadata": false }, { - "$id": "6540", + "$id": "6550", "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": "6541", + "$id": "6551", "kind": "array", "name": "Array39", "valueType": { - "$id": "6542", + "$id": "6552", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchResultObjectContent", "namespace": "OpenAI", @@ -84814,13 +84937,13 @@ "decorators": [], "properties": [ { - "$id": "6543", + "$id": "6553", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content.", "type": { - "$id": "6544", + "$id": "6554", "kind": "enumvalue", "name": "text", "value": "text", @@ -84828,14 +84951,14 @@ "$ref": "1458" }, "enumType": { - "$id": "6545", + "$id": "6555", "kind": "enum", "decorators": [], "name": "RunStepDetailsToolCallsFileSearchResultObjectContentType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6546", + "$id": "6556", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -84844,16 +84967,16 @@ }, "values": [ { - "$id": "6547", + "$id": "6557", "kind": "enumvalue", "decorators": [], "name": "text", "value": "text", "enumType": { - "$ref": "6545" + "$ref": "6555" }, "valueType": { - "$ref": "6546" + "$ref": "6556" } } ], @@ -84882,13 +85005,13 @@ "isHttpMetadata": false }, { - "$id": "6548", + "$id": "6558", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content of the file.", "type": { - "$id": "6549", + "$id": "6559", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84961,7 +85084,7 @@ ] }, "function": { - "$id": "6550", + "$id": "6560", "kind": "model", "name": "RunStepDetailsToolCallsFunctionObject", "namespace": "OpenAI", @@ -84970,17 +85093,17 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "6485" + "$ref": "6495" }, "properties": [ { - "$id": "6551", + "$id": "6561", "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": "6552", + "$id": "6562", "kind": "enumvalue", "name": "function", "value": "function", @@ -84988,7 +85111,7 @@ "$ref": "1046" }, "enumType": { - "$ref": "6492" + "$ref": "6502" }, "decorators": [] }, @@ -85006,13 +85129,13 @@ "isHttpMetadata": false }, { - "$id": "6553", + "$id": "6563", "kind": "property", "name": "function", "serializedName": "function", "doc": "The definition of the function that was called.", "type": { - "$id": "6554", + "$id": "6564", "kind": "model", "name": "RunStepDetailsToolCallsFunctionObjectFunction", "namespace": "OpenAI", @@ -85021,13 +85144,13 @@ "decorators": [], "properties": [ { - "$id": "6555", + "$id": "6565", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function.", "type": { - "$id": "6556", + "$id": "6566", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85047,13 +85170,13 @@ "isHttpMetadata": false }, { - "$id": "6557", + "$id": "6567", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "The arguments passed to the function.", "type": { - "$id": "6558", + "$id": "6568", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85073,16 +85196,16 @@ "isHttpMetadata": false }, { - "$id": "6559", + "$id": "6569", "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": "6560", + "$id": "6570", "kind": "nullable", "type": { - "$id": "6561", + "$id": "6571", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85156,16 +85279,16 @@ "isHttpMetadata": false }, { - "$id": "6562", + "$id": "6572", "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": "6563", + "$id": "6573", "kind": "nullable", "type": { - "$id": "6564", + "$id": "6574", "kind": "model", "name": "RunStepObjectLastError1", "namespace": "OpenAI", @@ -85174,7 +85297,7 @@ "decorators": [], "properties": [ { - "$id": "6565", + "$id": "6575", "kind": "property", "name": "code", "serializedName": "code", @@ -85196,13 +85319,13 @@ "isHttpMetadata": false }, { - "$id": "6566", + "$id": "6576", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "6567", + "$id": "6577", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85239,21 +85362,21 @@ "isHttpMetadata": false }, { - "$id": "6568", + "$id": "6578", "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": "6569", + "$id": "6579", "kind": "nullable", "type": { - "$id": "6570", + "$id": "6580", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6571", + "$id": "6581", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85278,21 +85401,21 @@ "isHttpMetadata": false }, { - "$id": "6572", + "$id": "6582", "kind": "property", "name": "cancelled_at", "serializedName": "cancelled_at", "doc": "The Unix timestamp (in seconds) for when the run step was cancelled.", "type": { - "$id": "6573", + "$id": "6583", "kind": "nullable", "type": { - "$id": "6574", + "$id": "6584", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6575", + "$id": "6585", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85317,21 +85440,21 @@ "isHttpMetadata": false }, { - "$id": "6576", + "$id": "6586", "kind": "property", "name": "failed_at", "serializedName": "failed_at", "doc": "The Unix timestamp (in seconds) for when the run step failed.", "type": { - "$id": "6577", + "$id": "6587", "kind": "nullable", "type": { - "$id": "6578", + "$id": "6588", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6579", + "$id": "6589", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85356,21 +85479,21 @@ "isHttpMetadata": false }, { - "$id": "6580", + "$id": "6590", "kind": "property", "name": "completed_at", "serializedName": "completed_at", "doc": "The Unix timestamp (in seconds) for when the run step completed.", "type": { - "$id": "6581", + "$id": "6591", "kind": "nullable", "type": { - "$id": "6582", + "$id": "6592", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6583", + "$id": "6593", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85395,7 +85518,7 @@ "isHttpMetadata": false }, { - "$id": "6584", + "$id": "6594", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -85417,15 +85540,15 @@ "isHttpMetadata": false }, { - "$id": "6585", + "$id": "6595", "kind": "property", "name": "usage", "serializedName": "usage", "type": { - "$id": "6586", + "$id": "6596", "kind": "nullable", "type": { - "$id": "6587", + "$id": "6597", "kind": "model", "name": "RunStepCompletionUsage", "namespace": "OpenAI", @@ -85435,13 +85558,13 @@ "decorators": [], "properties": [ { - "$id": "6588", + "$id": "6598", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "Number of completion tokens used over the course of the run step.", "type": { - "$id": "6589", + "$id": "6599", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85461,13 +85584,13 @@ "isHttpMetadata": false }, { - "$id": "6590", + "$id": "6600", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "Number of prompt tokens used over the course of the run step.", "type": { - "$id": "6591", + "$id": "6601", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85487,13 +85610,13 @@ "isHttpMetadata": false }, { - "$id": "6592", + "$id": "6602", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "Total number of tokens used (prompt + completion).", "type": { - "$id": "6593", + "$id": "6603", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85548,12 +85671,12 @@ "isHttpMetadata": false }, { - "$id": "6594", + "$id": "6604", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6595", + "$id": "6605", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85573,12 +85696,12 @@ "isHttpMetadata": false }, { - "$id": "6596", + "$id": "6606", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6597", + "$id": "6607", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85598,12 +85721,12 @@ "isHttpMetadata": false }, { - "$id": "6598", + "$id": "6608", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6599", + "$id": "6609", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -85625,70 +85748,70 @@ ] }, { - "$ref": "6451" + "$ref": "6461" }, { - "$ref": "6467" + "$ref": "6477" }, { - "$ref": "6469" + "$ref": "6479" }, { - "$ref": "6477" + "$ref": "6487" }, { - "$ref": "6480" + "$ref": "6490" }, { - "$ref": "6485" + "$ref": "6495" }, { - "$ref": "6489" + "$ref": "6499" }, { - "$ref": "6498" + "$ref": "6508" }, { - "$ref": "6503" + "$ref": "6513" }, { - "$ref": "6505" + "$ref": "6515" }, { - "$ref": "6514" + "$ref": "6524" }, { - "$ref": "6518" + "$ref": "6528" }, { - "$ref": "6521" + "$ref": "6531" }, { - "$ref": "6525" + "$ref": "6535" }, { - "$ref": "6527" + "$ref": "6537" }, { - "$ref": "6533" + "$ref": "6543" }, { - "$ref": "6542" + "$ref": "6552" }, { - "$ref": "6550" + "$ref": "6560" }, { - "$ref": "6554" + "$ref": "6564" }, { - "$ref": "6564" + "$ref": "6574" }, { - "$ref": "6587" + "$ref": "6597" }, { - "$id": "6600", + "$id": "6610", "kind": "model", "name": "ThreadObject", "namespace": "OpenAI", @@ -85698,13 +85821,13 @@ "decorators": [], "properties": [ { - "$id": "6601", + "$id": "6611", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6602", + "$id": "6612", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85724,7 +85847,7 @@ "isHttpMetadata": false }, { - "$id": "6603", + "$id": "6613", "kind": "property", "name": "object", "serializedName": "object", @@ -85746,18 +85869,18 @@ "isHttpMetadata": false }, { - "$id": "6604", + "$id": "6614", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the thread was created.", "type": { - "$id": "6605", + "$id": "6615", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6606", + "$id": "6616", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85780,16 +85903,16 @@ "isHttpMetadata": false }, { - "$id": "6607", + "$id": "6617", "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": "6608", + "$id": "6618", "kind": "nullable", "type": { - "$id": "6609", + "$id": "6619", "kind": "model", "name": "ThreadObjectToolResources1", "namespace": "OpenAI", @@ -85798,12 +85921,12 @@ "decorators": [], "properties": [ { - "$id": "6610", + "$id": "6620", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "6611", + "$id": "6621", "kind": "model", "name": "ThreadObjectToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -85812,7 +85935,7 @@ "decorators": [], "properties": [ { - "$id": "6612", + "$id": "6622", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -85849,12 +85972,12 @@ "isHttpMetadata": false }, { - "$id": "6613", + "$id": "6623", "kind": "property", "name": "file_search", "serializedName": "file_search", "type": { - "$id": "6614", + "$id": "6624", "kind": "model", "name": "ThreadObjectToolResourcesFileSearch", "namespace": "OpenAI", @@ -85863,7 +85986,7 @@ "decorators": [], "properties": [ { - "$id": "6615", + "$id": "6625", "kind": "property", "name": "vector_store_ids", "serializedName": "vector_store_ids", @@ -85917,7 +86040,7 @@ "isHttpMetadata": false }, { - "$id": "6616", + "$id": "6626", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -85941,16 +86064,16 @@ ] }, { - "$ref": "6609" + "$ref": "6619" }, { - "$ref": "6611" + "$ref": "6621" }, { - "$ref": "6614" + "$ref": "6624" }, { - "$id": "6617", + "$id": "6627", "kind": "model", "name": "ModifyThreadRequest", "namespace": "OpenAI", @@ -85959,16 +86082,16 @@ "decorators": [], "properties": [ { - "$id": "6618", + "$id": "6628", "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": "6619", + "$id": "6629", "kind": "nullable", "type": { - "$id": "6620", + "$id": "6630", "kind": "model", "name": "ModifyThreadRequestToolResources1", "namespace": "OpenAI", @@ -85977,12 +86100,12 @@ "decorators": [], "properties": [ { - "$id": "6621", + "$id": "6631", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "6622", + "$id": "6632", "kind": "model", "name": "ModifyThreadRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -85991,7 +86114,7 @@ "decorators": [], "properties": [ { - "$id": "6623", + "$id": "6633", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -86028,7 +86151,7 @@ "isHttpMetadata": false }, { - "$id": "6624", + "$id": "6634", "kind": "property", "name": "file_search", "serializedName": "file_search", @@ -86066,7 +86189,7 @@ "isHttpMetadata": false }, { - "$id": "6625", + "$id": "6635", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -86090,13 +86213,13 @@ ] }, { - "$ref": "6620" + "$ref": "6630" }, { - "$ref": "6622" + "$ref": "6632" }, { - "$id": "6626", + "$id": "6636", "kind": "model", "name": "DeleteThreadResponse", "namespace": "OpenAI", @@ -86105,12 +86228,12 @@ "decorators": [], "properties": [ { - "$id": "6627", + "$id": "6637", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6628", + "$id": "6638", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86130,12 +86253,12 @@ "isHttpMetadata": false }, { - "$id": "6629", + "$id": "6639", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6630", + "$id": "6640", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -86155,7 +86278,7 @@ "isHttpMetadata": false }, { - "$id": "6631", + "$id": "6641", "kind": "property", "name": "object", "serializedName": "object", @@ -86178,7 +86301,7 @@ ] }, { - "$id": "6632", + "$id": "6642", "kind": "model", "name": "ListVectorStoresResponse", "namespace": "OpenAI", @@ -86187,7 +86310,7 @@ "decorators": [], "properties": [ { - "$id": "6633", + "$id": "6643", "kind": "property", "name": "object", "serializedName": "object", @@ -86208,16 +86331,16 @@ "isHttpMetadata": false }, { - "$id": "6634", + "$id": "6644", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6635", + "$id": "6645", "kind": "array", "name": "ArrayVectorStoreObject", "valueType": { - "$id": "6636", + "$id": "6646", "kind": "model", "name": "VectorStoreObject", "namespace": "OpenAI", @@ -86227,13 +86350,13 @@ "decorators": [], "properties": [ { - "$id": "6637", + "$id": "6647", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6638", + "$id": "6648", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86253,7 +86376,7 @@ "isHttpMetadata": false }, { - "$id": "6639", + "$id": "6649", "kind": "property", "name": "object", "serializedName": "object", @@ -86275,18 +86398,18 @@ "isHttpMetadata": false }, { - "$id": "6640", + "$id": "6650", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the vector store was created.", "type": { - "$id": "6641", + "$id": "6651", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6642", + "$id": "6652", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86309,13 +86432,13 @@ "isHttpMetadata": false }, { - "$id": "6643", + "$id": "6653", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the vector store.", "type": { - "$id": "6644", + "$id": "6654", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86335,13 +86458,13 @@ "isHttpMetadata": false }, { - "$id": "6645", + "$id": "6655", "kind": "property", "name": "usage_bytes", "serializedName": "usage_bytes", "doc": "The total number of bytes used by the files in the vector store.", "type": { - "$id": "6646", + "$id": "6656", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86361,12 +86484,12 @@ "isHttpMetadata": false }, { - "$id": "6647", + "$id": "6657", "kind": "property", "name": "file_counts", "serializedName": "file_counts", "type": { - "$id": "6648", + "$id": "6658", "kind": "model", "name": "VectorStoreObjectFileCounts", "namespace": "OpenAI", @@ -86375,13 +86498,13 @@ "decorators": [], "properties": [ { - "$id": "6649", + "$id": "6659", "kind": "property", "name": "in_progress", "serializedName": "in_progress", "doc": "The number of files that are currently being processed.", "type": { - "$id": "6650", + "$id": "6660", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86401,13 +86524,13 @@ "isHttpMetadata": false }, { - "$id": "6651", + "$id": "6661", "kind": "property", "name": "completed", "serializedName": "completed", "doc": "The number of files that have been successfully processed.", "type": { - "$id": "6652", + "$id": "6662", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86427,13 +86550,13 @@ "isHttpMetadata": false }, { - "$id": "6653", + "$id": "6663", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "The number of files that have failed to process.", "type": { - "$id": "6654", + "$id": "6664", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86453,13 +86576,13 @@ "isHttpMetadata": false }, { - "$id": "6655", + "$id": "6665", "kind": "property", "name": "cancelled", "serializedName": "cancelled", "doc": "The number of files that were cancelled.", "type": { - "$id": "6656", + "$id": "6666", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86479,13 +86602,13 @@ "isHttpMetadata": false }, { - "$id": "6657", + "$id": "6667", "kind": "property", "name": "total", "serializedName": "total", "doc": "The total number of files.", "type": { - "$id": "6658", + "$id": "6668", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86520,7 +86643,7 @@ "isHttpMetadata": false }, { - "$id": "6659", + "$id": "6669", "kind": "property", "name": "status", "serializedName": "status", @@ -86542,12 +86665,12 @@ "isHttpMetadata": false }, { - "$id": "6660", + "$id": "6670", "kind": "property", "name": "expires_after", "serializedName": "expires_after", "type": { - "$id": "6661", + "$id": "6671", "kind": "model", "name": "VectorStoreExpirationAfter", "namespace": "OpenAI", @@ -86557,13 +86680,13 @@ "decorators": [], "properties": [ { - "$id": "6662", + "$id": "6672", "kind": "property", "name": "anchor", "serializedName": "anchor", "doc": "Anchor timestamp after which the expiration policy applies. Supported anchors: `last_active_at`.", "type": { - "$id": "6663", + "$id": "6673", "kind": "enumvalue", "name": "last_active_at", "value": "last_active_at", @@ -86571,14 +86694,14 @@ "$ref": "1461" }, "enumType": { - "$id": "6664", + "$id": "6674", "kind": "enum", "decorators": [], "name": "VectorStoreExpirationAnchor", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6665", + "$id": "6675", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -86587,16 +86710,16 @@ }, "values": [ { - "$id": "6666", + "$id": "6676", "kind": "enumvalue", "decorators": [], "name": "last_active_at", "value": "last_active_at", "enumType": { - "$ref": "6664" + "$ref": "6674" }, "valueType": { - "$ref": "6665" + "$ref": "6675" } } ], @@ -86625,13 +86748,13 @@ "isHttpMetadata": false }, { - "$id": "6667", + "$id": "6677", "kind": "property", "name": "days", "serializedName": "days", "doc": "The number of days after the anchor time that the vector store will expire.", "type": { - "$id": "6668", + "$id": "6678", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86666,21 +86789,21 @@ "isHttpMetadata": false }, { - "$id": "6669", + "$id": "6679", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the vector store will expire.", "type": { - "$id": "6670", + "$id": "6680", "kind": "nullable", "type": { - "$id": "6671", + "$id": "6681", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6672", + "$id": "6682", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86705,21 +86828,21 @@ "isHttpMetadata": false }, { - "$id": "6673", + "$id": "6683", "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": "6674", + "$id": "6684", "kind": "nullable", "type": { - "$id": "6675", + "$id": "6685", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6676", + "$id": "6686", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86744,7 +86867,7 @@ "isHttpMetadata": false }, { - "$id": "6677", + "$id": "6687", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -86784,12 +86907,12 @@ "isHttpMetadata": false }, { - "$id": "6678", + "$id": "6688", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6679", + "$id": "6689", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86809,12 +86932,12 @@ "isHttpMetadata": false }, { - "$id": "6680", + "$id": "6690", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6681", + "$id": "6691", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86834,12 +86957,12 @@ "isHttpMetadata": false }, { - "$id": "6682", + "$id": "6692", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6683", + "$id": "6693", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -86861,16 +86984,16 @@ ] }, { - "$ref": "6636" + "$ref": "6646" }, { - "$ref": "6648" + "$ref": "6658" }, { - "$ref": "6661" + "$ref": "6671" }, { - "$id": "6684", + "$id": "6694", "kind": "model", "name": "CreateVectorStoreRequest", "namespace": "OpenAI", @@ -86879,7 +87002,7 @@ "decorators": [], "properties": [ { - "$id": "6685", + "$id": "6695", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -86901,13 +87024,13 @@ "isHttpMetadata": false }, { - "$id": "6686", + "$id": "6696", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the vector store.", "type": { - "$id": "6687", + "$id": "6697", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86927,12 +87050,12 @@ "isHttpMetadata": false }, { - "$id": "6688", + "$id": "6698", "kind": "property", "name": "expires_after", "serializedName": "expires_after", "type": { - "$ref": "6661" + "$ref": "6671" }, "optional": true, "readOnly": false, @@ -86948,13 +87071,13 @@ "isHttpMetadata": false }, { - "$id": "6689", + "$id": "6699", "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": "6690", + "$id": "6700", "kind": "union", "name": "CreateVectorStoreRequestChunkingStrategy", "variantTypes": [ @@ -86982,7 +87105,7 @@ "isHttpMetadata": false }, { - "$id": "6691", + "$id": "6701", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -87006,7 +87129,7 @@ ] }, { - "$id": "6692", + "$id": "6702", "kind": "model", "name": "UpdateVectorStoreRequest", "namespace": "OpenAI", @@ -87015,16 +87138,16 @@ "decorators": [], "properties": [ { - "$id": "6693", + "$id": "6703", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the vector store.", "type": { - "$id": "6694", + "$id": "6704", "kind": "nullable", "type": { - "$id": "6695", + "$id": "6705", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87046,15 +87169,15 @@ "isHttpMetadata": false }, { - "$id": "6696", + "$id": "6706", "kind": "property", "name": "expires_after", "serializedName": "expires_after", "type": { - "$id": "6697", + "$id": "6707", "kind": "nullable", "type": { - "$ref": "6661" + "$ref": "6671" }, "namespace": "OpenAI" }, @@ -87072,7 +87195,7 @@ "isHttpMetadata": false }, { - "$id": "6698", + "$id": "6708", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -87096,7 +87219,7 @@ ] }, { - "$id": "6699", + "$id": "6709", "kind": "model", "name": "DeleteVectorStoreResponse", "namespace": "OpenAI", @@ -87105,12 +87228,12 @@ "decorators": [], "properties": [ { - "$id": "6700", + "$id": "6710", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6701", + "$id": "6711", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87130,12 +87253,12 @@ "isHttpMetadata": false }, { - "$id": "6702", + "$id": "6712", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6703", + "$id": "6713", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -87155,7 +87278,7 @@ "isHttpMetadata": false }, { - "$id": "6704", + "$id": "6714", "kind": "property", "name": "object", "serializedName": "object", @@ -87178,7 +87301,7 @@ ] }, { - "$id": "6705", + "$id": "6715", "kind": "model", "name": "CreateVectorStoreFileBatchRequest", "namespace": "OpenAI", @@ -87187,7 +87310,7 @@ "decorators": [], "properties": [ { - "$id": "6706", + "$id": "6716", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -87209,7 +87332,7 @@ "isHttpMetadata": false }, { - "$id": "6707", + "$id": "6717", "kind": "property", "name": "chunking_strategy", "serializedName": "chunking_strategy", @@ -87230,12 +87353,12 @@ "isHttpMetadata": false }, { - "$id": "6708", + "$id": "6718", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6709", + "$id": "6719", "kind": "nullable", "type": { "$ref": "3948" @@ -87258,7 +87381,7 @@ ] }, { - "$id": "6710", + "$id": "6720", "kind": "model", "name": "VectorStoreFileBatchObject", "namespace": "OpenAI", @@ -87268,13 +87391,13 @@ "decorators": [], "properties": [ { - "$id": "6711", + "$id": "6721", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6712", + "$id": "6722", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87294,7 +87417,7 @@ "isHttpMetadata": false }, { - "$id": "6713", + "$id": "6723", "kind": "property", "name": "object", "serializedName": "object", @@ -87316,18 +87439,18 @@ "isHttpMetadata": false }, { - "$id": "6714", + "$id": "6724", "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": "6715", + "$id": "6725", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6716", + "$id": "6726", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87350,13 +87473,13 @@ "isHttpMetadata": false }, { - "$id": "6717", + "$id": "6727", "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": "6718", + "$id": "6728", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87376,7 +87499,7 @@ "isHttpMetadata": false }, { - "$id": "6719", + "$id": "6729", "kind": "property", "name": "status", "serializedName": "status", @@ -87398,12 +87521,12 @@ "isHttpMetadata": false }, { - "$id": "6720", + "$id": "6730", "kind": "property", "name": "file_counts", "serializedName": "file_counts", "type": { - "$id": "6721", + "$id": "6731", "kind": "model", "name": "VectorStoreFileBatchObjectFileCounts", "namespace": "OpenAI", @@ -87412,13 +87535,13 @@ "decorators": [], "properties": [ { - "$id": "6722", + "$id": "6732", "kind": "property", "name": "in_progress", "serializedName": "in_progress", "doc": "The number of files that are currently being processed.", "type": { - "$id": "6723", + "$id": "6733", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87438,13 +87561,13 @@ "isHttpMetadata": false }, { - "$id": "6724", + "$id": "6734", "kind": "property", "name": "completed", "serializedName": "completed", "doc": "The number of files that have been processed.", "type": { - "$id": "6725", + "$id": "6735", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87464,13 +87587,13 @@ "isHttpMetadata": false }, { - "$id": "6726", + "$id": "6736", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "The number of files that have failed to process.", "type": { - "$id": "6727", + "$id": "6737", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87490,13 +87613,13 @@ "isHttpMetadata": false }, { - "$id": "6728", + "$id": "6738", "kind": "property", "name": "cancelled", "serializedName": "cancelled", "doc": "The number of files that where cancelled.", "type": { - "$id": "6729", + "$id": "6739", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87516,13 +87639,13 @@ "isHttpMetadata": false }, { - "$id": "6730", + "$id": "6740", "kind": "property", "name": "total", "serializedName": "total", "doc": "The total number of files.", "type": { - "$id": "6731", + "$id": "6741", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87559,10 +87682,10 @@ ] }, { - "$ref": "6721" + "$ref": "6731" }, { - "$id": "6732", + "$id": "6742", "kind": "model", "name": "ListVectorStoreFilesResponse", "namespace": "OpenAI", @@ -87571,7 +87694,7 @@ "decorators": [], "properties": [ { - "$id": "6733", + "$id": "6743", "kind": "property", "name": "object", "serializedName": "object", @@ -87592,16 +87715,16 @@ "isHttpMetadata": false }, { - "$id": "6734", + "$id": "6744", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6735", + "$id": "6745", "kind": "array", "name": "ArrayVectorStoreFileObject", "valueType": { - "$id": "6736", + "$id": "6746", "kind": "model", "name": "VectorStoreFileObject", "namespace": "OpenAI", @@ -87611,13 +87734,13 @@ "decorators": [], "properties": [ { - "$id": "6737", + "$id": "6747", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6738", + "$id": "6748", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87637,7 +87760,7 @@ "isHttpMetadata": false }, { - "$id": "6739", + "$id": "6749", "kind": "property", "name": "object", "serializedName": "object", @@ -87659,13 +87782,13 @@ "isHttpMetadata": false }, { - "$id": "6740", + "$id": "6750", "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": "6741", + "$id": "6751", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87685,18 +87808,18 @@ "isHttpMetadata": false }, { - "$id": "6742", + "$id": "6752", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the vector store file was created.", "type": { - "$id": "6743", + "$id": "6753", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6744", + "$id": "6754", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87719,13 +87842,13 @@ "isHttpMetadata": false }, { - "$id": "6745", + "$id": "6755", "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": "6746", + "$id": "6756", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87745,7 +87868,7 @@ "isHttpMetadata": false }, { - "$id": "6747", + "$id": "6757", "kind": "property", "name": "status", "serializedName": "status", @@ -87767,16 +87890,16 @@ "isHttpMetadata": false }, { - "$id": "6748", + "$id": "6758", "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": "6749", + "$id": "6759", "kind": "nullable", "type": { - "$id": "6750", + "$id": "6760", "kind": "model", "name": "VectorStoreFileObjectLastError1", "namespace": "OpenAI", @@ -87785,7 +87908,7 @@ "decorators": [], "properties": [ { - "$id": "6751", + "$id": "6761", "kind": "property", "name": "code", "serializedName": "code", @@ -87807,13 +87930,13 @@ "isHttpMetadata": false }, { - "$id": "6752", + "$id": "6762", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "6753", + "$id": "6763", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87850,13 +87973,13 @@ "isHttpMetadata": false }, { - "$id": "6754", + "$id": "6764", "kind": "property", "name": "chunking_strategy", "serializedName": "chunking_strategy", "doc": "The strategy used to chunk the file.", "type": { - "$id": "6755", + "$id": "6765", "kind": "model", "name": "ChunkingStrategyResponseParam", "namespace": "OpenAI", @@ -87864,7 +87987,7 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "6756", + "$id": "6766", "kind": "property", "name": "type", "serializedName": "type", @@ -87886,12 +88009,12 @@ }, "properties": [ { - "$ref": "6756" + "$ref": "6766" } ], "discriminatedSubtypes": { "other": { - "$id": "6757", + "$id": "6767", "kind": "model", "name": "OtherChunkingStrategyResponseParam", "namespace": "OpenAI", @@ -87901,17 +88024,17 @@ "discriminatorValue": "other", "decorators": [], "baseModel": { - "$ref": "6755" + "$ref": "6765" }, "properties": [ { - "$id": "6758", + "$id": "6768", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `other`.", "type": { - "$id": "6759", + "$id": "6769", "kind": "enumvalue", "name": "other", "value": "other", @@ -87919,14 +88042,14 @@ "$ref": "1081" }, "enumType": { - "$id": "6760", + "$id": "6770", "kind": "enum", "decorators": [], "name": "ChunkingStrategyResponseParamType", "isGeneratedName": true, "namespace": "OpenAI", "valueType": { - "$id": "6761", + "$id": "6771", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -87935,29 +88058,29 @@ }, "values": [ { - "$id": "6762", + "$id": "6772", "kind": "enumvalue", "decorators": [], "name": "static", "value": "static", "valueType": { - "$ref": "6761" + "$ref": "6771" }, "enumType": { - "$ref": "6760" + "$ref": "6770" } }, { - "$id": "6763", + "$id": "6773", "kind": "enumvalue", "decorators": [], "name": "other", "value": "other", "valueType": { - "$ref": "6761" + "$ref": "6771" }, "enumType": { - "$ref": "6760" + "$ref": "6770" } } ], @@ -87988,7 +88111,7 @@ ] }, "static": { - "$id": "6764", + "$id": "6774", "kind": "model", "name": "StaticChunkingStrategyResponseParam", "namespace": "OpenAI", @@ -87997,17 +88120,17 @@ "discriminatorValue": "static", "decorators": [], "baseModel": { - "$ref": "6755" + "$ref": "6765" }, "properties": [ { - "$id": "6765", + "$id": "6775", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `static`.", "type": { - "$id": "6766", + "$id": "6776", "kind": "enumvalue", "name": "static", "value": "static", @@ -88015,7 +88138,7 @@ "$ref": "1081" }, "enumType": { - "$ref": "6760" + "$ref": "6770" }, "decorators": [] }, @@ -88033,7 +88156,7 @@ "isHttpMetadata": false }, { - "$id": "6767", + "$id": "6777", "kind": "property", "name": "static", "serializedName": "static", @@ -88071,12 +88194,12 @@ "isHttpMetadata": false }, { - "$id": "6768", + "$id": "6778", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6769", + "$id": "6779", "kind": "nullable", "type": { "$ref": "3948" @@ -88115,12 +88238,12 @@ "isHttpMetadata": false }, { - "$id": "6770", + "$id": "6780", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6771", + "$id": "6781", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88140,12 +88263,12 @@ "isHttpMetadata": false }, { - "$id": "6772", + "$id": "6782", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6773", + "$id": "6783", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88165,12 +88288,12 @@ "isHttpMetadata": false }, { - "$id": "6774", + "$id": "6784", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6775", + "$id": "6785", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -88192,22 +88315,22 @@ ] }, { - "$ref": "6736" + "$ref": "6746" }, { - "$ref": "6750" + "$ref": "6760" }, { - "$ref": "6755" + "$ref": "6765" }, { - "$ref": "6757" + "$ref": "6767" }, { - "$ref": "6764" + "$ref": "6774" }, { - "$id": "6776", + "$id": "6786", "kind": "model", "name": "CreateVectorStoreFileRequest", "namespace": "OpenAI", @@ -88216,13 +88339,13 @@ "decorators": [], "properties": [ { - "$id": "6777", + "$id": "6787", "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": "6778", + "$id": "6788", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88242,7 +88365,7 @@ "isHttpMetadata": false }, { - "$id": "6779", + "$id": "6789", "kind": "property", "name": "chunking_strategy", "serializedName": "chunking_strategy", @@ -88263,12 +88386,12 @@ "isHttpMetadata": false }, { - "$id": "6780", + "$id": "6790", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6781", + "$id": "6791", "kind": "nullable", "type": { "$ref": "3948" @@ -88291,7 +88414,7 @@ ] }, { - "$id": "6782", + "$id": "6792", "kind": "model", "name": "DeleteVectorStoreFileResponse", "namespace": "OpenAI", @@ -88300,12 +88423,12 @@ "decorators": [], "properties": [ { - "$id": "6783", + "$id": "6793", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6784", + "$id": "6794", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88325,12 +88448,12 @@ "isHttpMetadata": false }, { - "$id": "6785", + "$id": "6795", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6786", + "$id": "6796", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -88350,7 +88473,7 @@ "isHttpMetadata": false }, { - "$id": "6787", + "$id": "6797", "kind": "property", "name": "object", "serializedName": "object", @@ -88373,7 +88496,7 @@ ] }, { - "$id": "6788", + "$id": "6798", "kind": "model", "name": "UpdateVectorStoreFileAttributesRequest", "namespace": "OpenAI", @@ -88382,12 +88505,12 @@ "decorators": [], "properties": [ { - "$id": "6789", + "$id": "6799", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6790", + "$id": "6800", "kind": "nullable", "type": { "$ref": "3948" @@ -88410,7 +88533,7 @@ ] }, { - "$id": "6791", + "$id": "6801", "kind": "model", "name": "VectorStoreFileContentResponse", "namespace": "OpenAI", @@ -88420,7 +88543,7 @@ "decorators": [], "properties": [ { - "$id": "6792", + "$id": "6802", "kind": "property", "name": "object", "serializedName": "object", @@ -88442,17 +88565,17 @@ "isHttpMetadata": false }, { - "$id": "6793", + "$id": "6803", "kind": "property", "name": "data", "serializedName": "data", "doc": "Parsed content of the file.", "type": { - "$id": "6794", + "$id": "6804", "kind": "array", "name": "Array40", "valueType": { - "$id": "6795", + "$id": "6805", "kind": "model", "name": "VectorStoreFileContentResponseDatum", "namespace": "OpenAI", @@ -88461,13 +88584,13 @@ "decorators": [], "properties": [ { - "$id": "6796", + "$id": "6806", "kind": "property", "name": "type", "serializedName": "type", "doc": "The content type (currently only `\"text\"`)", "type": { - "$id": "6797", + "$id": "6807", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88487,13 +88610,13 @@ "isHttpMetadata": false }, { - "$id": "6798", + "$id": "6808", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content", "type": { - "$id": "6799", + "$id": "6809", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88531,13 +88654,13 @@ "isHttpMetadata": false }, { - "$id": "6800", + "$id": "6810", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates if there are more content pages to fetch.", "type": { - "$id": "6801", + "$id": "6811", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -88557,16 +88680,16 @@ "isHttpMetadata": false }, { - "$id": "6802", + "$id": "6812", "kind": "property", "name": "next_page", "serializedName": "next_page", "doc": "The token for the next page, if any.", "type": { - "$id": "6803", + "$id": "6813", "kind": "nullable", "type": { - "$id": "6804", + "$id": "6814", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88590,10 +88713,10 @@ ] }, { - "$ref": "6795" + "$ref": "6805" }, { - "$id": "6805", + "$id": "6815", "kind": "model", "name": "VectorStoreSearchRequestRankingOptions", "namespace": "OpenAI", @@ -88602,7 +88725,7 @@ "decorators": [], "properties": [ { - "$id": "6806", + "$id": "6816", "kind": "property", "name": "ranker", "serializedName": "ranker", @@ -88623,12 +88746,12 @@ "isHttpMetadata": false }, { - "$id": "6807", + "$id": "6817", "kind": "property", "name": "score_threshold", "serializedName": "score_threshold", "type": { - "$id": "6808", + "$id": "6818", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -88650,7 +88773,7 @@ ] }, { - "$id": "6809", + "$id": "6819", "kind": "model", "name": "VectorStoreSearchRequest", "namespace": "OpenAI", @@ -88659,18 +88782,18 @@ "decorators": [], "properties": [ { - "$id": "6810", + "$id": "6820", "kind": "property", "name": "query", "serializedName": "query", "doc": "A query string for a search", "type": { - "$id": "6811", + "$id": "6821", "kind": "union", "name": "VectorStoreSearchRequestQuery", "variantTypes": [ { - "$id": "6812", + "$id": "6822", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88697,13 +88820,13 @@ "isHttpMetadata": false }, { - "$id": "6813", + "$id": "6823", "kind": "property", "name": "rewrite_query", "serializedName": "rewrite_query", "doc": "Whether to rewrite the natural language query for vector search.", "type": { - "$id": "6814", + "$id": "6824", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -88723,13 +88846,13 @@ "isHttpMetadata": false }, { - "$id": "6815", + "$id": "6825", "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": "6816", + "$id": "6826", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88749,13 +88872,13 @@ "isHttpMetadata": false }, { - "$id": "6817", + "$id": "6827", "kind": "property", "name": "filters", "serializedName": "filters", "doc": "A filter to apply based on file attributes.", "type": { - "$id": "6818", + "$id": "6828", "kind": "union", "name": "VectorStoreSearchRequestFilters", "variantTypes": [ @@ -88783,13 +88906,13 @@ "isHttpMetadata": false }, { - "$id": "6819", + "$id": "6829", "kind": "property", "name": "ranking_options", "serializedName": "ranking_options", "doc": "Ranking options for search.", "type": { - "$ref": "6805" + "$ref": "6815" }, "optional": true, "readOnly": false, @@ -88807,7 +88930,7 @@ ] }, { - "$id": "6820", + "$id": "6830", "kind": "model", "name": "VectorStoreSearchResultsPage", "namespace": "OpenAI", @@ -88816,7 +88939,7 @@ "decorators": [], "properties": [ { - "$id": "6821", + "$id": "6831", "kind": "property", "name": "object", "serializedName": "object", @@ -88838,7 +88961,7 @@ "isHttpMetadata": false }, { - "$id": "6822", + "$id": "6832", "kind": "property", "name": "search_query", "serializedName": "search_query", @@ -88859,17 +88982,17 @@ "isHttpMetadata": false }, { - "$id": "6823", + "$id": "6833", "kind": "property", "name": "data", "serializedName": "data", "doc": "The list of search result items.", "type": { - "$id": "6824", + "$id": "6834", "kind": "array", "name": "ArrayVectorStoreSearchResultItem", "valueType": { - "$id": "6825", + "$id": "6835", "kind": "model", "name": "VectorStoreSearchResultItem", "namespace": "OpenAI", @@ -88878,13 +89001,13 @@ "decorators": [], "properties": [ { - "$id": "6826", + "$id": "6836", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the vector store file.", "type": { - "$id": "6827", + "$id": "6837", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88904,13 +89027,13 @@ "isHttpMetadata": false }, { - "$id": "6828", + "$id": "6838", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the vector store file.", "type": { - "$id": "6829", + "$id": "6839", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88930,13 +89053,13 @@ "isHttpMetadata": false }, { - "$id": "6830", + "$id": "6840", "kind": "property", "name": "score", "serializedName": "score", "doc": "The similarity score for the result.", "type": { - "$id": "6831", + "$id": "6841", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -88956,12 +89079,12 @@ "isHttpMetadata": false }, { - "$id": "6832", + "$id": "6842", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6833", + "$id": "6843", "kind": "nullable", "type": { "$ref": "3948" @@ -88982,17 +89105,17 @@ "isHttpMetadata": false }, { - "$id": "6834", + "$id": "6844", "kind": "property", "name": "content", "serializedName": "content", "doc": "Content chunks from the file.", "type": { - "$id": "6835", + "$id": "6845", "kind": "array", "name": "ArrayVectorStoreSearchResultContentObject", "valueType": { - "$id": "6836", + "$id": "6846", "kind": "model", "name": "VectorStoreSearchResultContentObject", "namespace": "OpenAI", @@ -89001,7 +89124,7 @@ "decorators": [], "properties": [ { - "$id": "6837", + "$id": "6847", "kind": "property", "name": "type", "serializedName": "type", @@ -89023,13 +89146,13 @@ "isHttpMetadata": false }, { - "$id": "6838", + "$id": "6848", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content returned from search.", "type": { - "$id": "6839", + "$id": "6849", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89085,13 +89208,13 @@ "isHttpMetadata": false }, { - "$id": "6840", + "$id": "6850", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates if there are more results to fetch.", "type": { - "$id": "6841", + "$id": "6851", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -89111,16 +89234,16 @@ "isHttpMetadata": false }, { - "$id": "6842", + "$id": "6852", "kind": "property", "name": "next_page", "serializedName": "next_page", "doc": "The token for the next page, if any.", "type": { - "$id": "6843", + "$id": "6853", "kind": "nullable", "type": { - "$id": "6844", + "$id": "6854", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89144,13 +89267,13 @@ ] }, { - "$ref": "6825" + "$ref": "6835" }, { - "$ref": "6836" + "$ref": "6846" }, { - "$id": "6845", + "$id": "6855", "kind": "model", "name": "CreateCompletionRequest", "namespace": "OpenAI", @@ -89159,7 +89282,7 @@ "decorators": [], "properties": [ { - "$id": "6846", + "$id": "6856", "kind": "property", "name": "model", "serializedName": "model", @@ -89181,21 +89304,21 @@ "isHttpMetadata": false }, { - "$id": "6847", + "$id": "6857", "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": "6848", + "$id": "6858", "kind": "nullable", "type": { - "$id": "6849", + "$id": "6859", "kind": "union", "name": "CreateCompletionRequestPrompt", "variantTypes": [ { - "$id": "6850", + "$id": "6860", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89230,16 +89353,16 @@ "isHttpMetadata": false }, { - "$id": "6851", + "$id": "6861", "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": "6852", + "$id": "6862", "kind": "nullable", "type": { - "$id": "6853", + "$id": "6863", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -89261,16 +89384,16 @@ "isHttpMetadata": false }, { - "$id": "6854", + "$id": "6864", "kind": "property", "name": "echo", "serializedName": "echo", "doc": "Echo back the prompt in addition to the completion", "type": { - "$id": "6855", + "$id": "6865", "kind": "nullable", "type": { - "$id": "6856", + "$id": "6866", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -89292,16 +89415,16 @@ "isHttpMetadata": false }, { - "$id": "6857", + "$id": "6867", "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": "6858", + "$id": "6868", "kind": "nullable", "type": { - "$id": "6859", + "$id": "6869", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -89323,13 +89446,13 @@ "isHttpMetadata": false }, { - "$id": "6860", + "$id": "6870", "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": "6861", + "$id": "6871", "kind": "nullable", "type": { "$ref": "3169" @@ -89350,16 +89473,16 @@ "isHttpMetadata": false }, { - "$id": "6862", + "$id": "6872", "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": "6863", + "$id": "6873", "kind": "nullable", "type": { - "$id": "6864", + "$id": "6874", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -89381,16 +89504,16 @@ "isHttpMetadata": false }, { - "$id": "6865", + "$id": "6875", "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": "6866", + "$id": "6876", "kind": "nullable", "type": { - "$id": "6867", + "$id": "6877", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -89412,16 +89535,16 @@ "isHttpMetadata": false }, { - "$id": "6868", + "$id": "6878", "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": "6869", + "$id": "6879", "kind": "nullable", "type": { - "$id": "6870", + "$id": "6880", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -89443,16 +89566,16 @@ "isHttpMetadata": false }, { - "$id": "6871", + "$id": "6881", "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": "6872", + "$id": "6882", "kind": "nullable", "type": { - "$id": "6873", + "$id": "6883", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -89474,16 +89597,16 @@ "isHttpMetadata": false }, { - "$id": "6874", + "$id": "6884", "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": "6875", + "$id": "6885", "kind": "nullable", "type": { - "$id": "6876", + "$id": "6886", "kind": "int64", "name": "int64", "crossLanguageDefinitionId": "TypeSpec.int64", @@ -89505,12 +89628,12 @@ "isHttpMetadata": false }, { - "$id": "6877", + "$id": "6887", "kind": "property", "name": "stop", "serializedName": "stop", "type": { - "$id": "6878", + "$id": "6888", "kind": "nullable", "type": { "$ref": "3165" @@ -89531,16 +89654,16 @@ "isHttpMetadata": false }, { - "$id": "6879", + "$id": "6889", "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": "6880", + "$id": "6890", "kind": "nullable", "type": { - "$id": "6881", + "$id": "6891", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -89562,12 +89685,12 @@ "isHttpMetadata": false }, { - "$id": "6882", + "$id": "6892", "kind": "property", "name": "stream_options", "serializedName": "stream_options", "type": { - "$id": "6883", + "$id": "6893", "kind": "nullable", "type": { "$ref": "3199" @@ -89588,16 +89711,16 @@ "isHttpMetadata": false }, { - "$id": "6884", + "$id": "6894", "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": "6885", + "$id": "6895", "kind": "nullable", "type": { - "$id": "6886", + "$id": "6896", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89619,16 +89742,16 @@ "isHttpMetadata": false }, { - "$id": "6887", + "$id": "6897", "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": "6888", + "$id": "6898", "kind": "nullable", "type": { - "$id": "6889", + "$id": "6899", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -89650,16 +89773,16 @@ "isHttpMetadata": false }, { - "$id": "6890", + "$id": "6900", "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": "6891", + "$id": "6901", "kind": "nullable", "type": { - "$id": "6892", + "$id": "6902", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -89681,13 +89804,13 @@ "isHttpMetadata": false }, { - "$id": "6893", + "$id": "6903", "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": "6894", + "$id": "6904", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89709,7 +89832,7 @@ ] }, { - "$id": "6895", + "$id": "6905", "kind": "model", "name": "CreateCompletionResponse", "namespace": "OpenAI", @@ -89719,13 +89842,13 @@ "decorators": [], "properties": [ { - "$id": "6896", + "$id": "6906", "kind": "property", "name": "id", "serializedName": "id", "doc": "A unique identifier for the completion.", "type": { - "$id": "6897", + "$id": "6907", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89745,17 +89868,17 @@ "isHttpMetadata": false }, { - "$id": "6898", + "$id": "6908", "kind": "property", "name": "choices", "serializedName": "choices", "doc": "The list of completion choices the model generated for the input prompt.", "type": { - "$id": "6899", + "$id": "6909", "kind": "array", "name": "Array41", "valueType": { - "$id": "6900", + "$id": "6910", "kind": "model", "name": "CreateCompletionResponseChoice", "namespace": "OpenAI", @@ -89764,7 +89887,7 @@ "decorators": [], "properties": [ { - "$id": "6901", + "$id": "6911", "kind": "property", "name": "finish_reason", "serializedName": "finish_reason", @@ -89786,12 +89909,12 @@ "isHttpMetadata": false }, { - "$id": "6902", + "$id": "6912", "kind": "property", "name": "index", "serializedName": "index", "type": { - "$id": "6903", + "$id": "6913", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -89811,15 +89934,15 @@ "isHttpMetadata": false }, { - "$id": "6904", + "$id": "6914", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "type": { - "$id": "6905", + "$id": "6915", "kind": "nullable", "type": { - "$id": "6906", + "$id": "6916", "kind": "model", "name": "CreateCompletionResponseChoiceLogprobs1", "namespace": "OpenAI", @@ -89828,7 +89951,7 @@ "decorators": [], "properties": [ { - "$id": "6907", + "$id": "6917", "kind": "property", "name": "text_offset", "serializedName": "text_offset", @@ -89849,7 +89972,7 @@ "isHttpMetadata": false }, { - "$id": "6908", + "$id": "6918", "kind": "property", "name": "token_logprobs", "serializedName": "token_logprobs", @@ -89870,7 +89993,7 @@ "isHttpMetadata": false }, { - "$id": "6909", + "$id": "6919", "kind": "property", "name": "tokens", "serializedName": "tokens", @@ -89891,26 +90014,26 @@ "isHttpMetadata": false }, { - "$id": "6910", + "$id": "6920", "kind": "property", "name": "top_logprobs", "serializedName": "top_logprobs", "type": { - "$id": "6911", + "$id": "6921", "kind": "array", "name": "ArrayRecord1", "valueType": { - "$id": "6912", + "$id": "6922", "kind": "dict", "keyType": { - "$id": "6913", + "$id": "6923", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, "valueType": { - "$id": "6914", + "$id": "6924", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -89952,12 +90075,12 @@ "isHttpMetadata": false }, { - "$id": "6915", + "$id": "6925", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "6916", + "$id": "6926", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89995,18 +90118,18 @@ "isHttpMetadata": false }, { - "$id": "6917", + "$id": "6927", "kind": "property", "name": "created", "serializedName": "created", "doc": "The Unix timestamp (in seconds) of when the completion was created.", "type": { - "$id": "6918", + "$id": "6928", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6919", + "$id": "6929", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -90029,13 +90152,13 @@ "isHttpMetadata": false }, { - "$id": "6920", + "$id": "6930", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model used for completion.", "type": { - "$id": "6921", + "$id": "6931", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90055,13 +90178,13 @@ "isHttpMetadata": false }, { - "$id": "6922", + "$id": "6932", "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": "6923", + "$id": "6933", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90081,7 +90204,7 @@ "isHttpMetadata": false }, { - "$id": "6924", + "$id": "6934", "kind": "property", "name": "object", "serializedName": "object", @@ -90103,7 +90226,7 @@ "isHttpMetadata": false }, { - "$id": "6925", + "$id": "6935", "kind": "property", "name": "usage", "serializedName": "usage", @@ -90126,13 +90249,13 @@ ] }, { - "$ref": "6900" + "$ref": "6910" }, { - "$ref": "6906" + "$ref": "6916" }, { - "$id": "6926", + "$id": "6936", "kind": "model", "name": "ListModelsResponse", "namespace": "OpenAI", @@ -90141,7 +90264,7 @@ "decorators": [], "properties": [ { - "$id": "6927", + "$id": "6937", "kind": "property", "name": "object", "serializedName": "object", @@ -90162,16 +90285,16 @@ "isHttpMetadata": false }, { - "$id": "6928", + "$id": "6938", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6929", + "$id": "6939", "kind": "array", "name": "ArrayModel", "valueType": { - "$id": "6930", + "$id": "6940", "kind": "model", "name": "Model", "namespace": "OpenAI", @@ -90181,13 +90304,13 @@ "decorators": [], "properties": [ { - "$id": "6931", + "$id": "6941", "kind": "property", "name": "id", "serializedName": "id", "doc": "The model identifier, which can be referenced in the API endpoints.", "type": { - "$id": "6932", + "$id": "6942", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90207,18 +90330,18 @@ "isHttpMetadata": false }, { - "$id": "6933", + "$id": "6943", "kind": "property", "name": "created", "serializedName": "created", "doc": "The Unix timestamp (in seconds) when the model was created.", "type": { - "$id": "6934", + "$id": "6944", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6935", + "$id": "6945", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -90241,7 +90364,7 @@ "isHttpMetadata": false }, { - "$id": "6936", + "$id": "6946", "kind": "property", "name": "object", "serializedName": "object", @@ -90263,13 +90386,13 @@ "isHttpMetadata": false }, { - "$id": "6937", + "$id": "6947", "kind": "property", "name": "owned_by", "serializedName": "owned_by", "doc": "The organization that owns the model.", "type": { - "$id": "6938", + "$id": "6948", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90309,10 +90432,10 @@ ] }, { - "$ref": "6930" + "$ref": "6940" }, { - "$id": "6939", + "$id": "6949", "kind": "model", "name": "DeleteModelResponse", "namespace": "OpenAI", @@ -90321,12 +90444,12 @@ "decorators": [], "properties": [ { - "$id": "6940", + "$id": "6950", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6941", + "$id": "6951", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90346,12 +90469,12 @@ "isHttpMetadata": false }, { - "$id": "6942", + "$id": "6952", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6943", + "$id": "6953", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -90371,7 +90494,7 @@ "isHttpMetadata": false }, { - "$id": "6944", + "$id": "6954", "kind": "property", "name": "object", "serializedName": "object", @@ -90394,7 +90517,7 @@ ] }, { - "$id": "6945", + "$id": "6955", "kind": "model", "name": "RealtimeClientEvent", "namespace": "OpenAI", @@ -90403,7 +90526,7 @@ "doc": "A realtime client event.", "decorators": [], "discriminatorProperty": { - "$id": "6946", + "$id": "6956", "kind": "property", "name": "type", "serializedName": "type", @@ -90426,15 +90549,15 @@ }, "properties": [ { - "$ref": "6946" + "$ref": "6956" }, { - "$id": "6947", + "$id": "6957", "kind": "property", "name": "event_id", "serializedName": "event_id", "type": { - "$id": "6948", + "$id": "6958", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90456,7 +90579,7 @@ ], "discriminatedSubtypes": { "session.update": { - "$id": "6949", + "$id": "6959", "kind": "model", "name": "RealtimeClientEventSessionUpdate", "namespace": "OpenAI", @@ -90466,17 +90589,17 @@ "discriminatorValue": "session.update", "decorators": [], "baseModel": { - "$ref": "6945" + "$ref": "6955" }, "properties": [ { - "$id": "6950", + "$id": "6960", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `session.update`.", "type": { - "$id": "6951", + "$id": "6961", "kind": "enumvalue", "name": "session_update", "value": "session.update", @@ -90484,14 +90607,14 @@ "$ref": "1099" }, "enumType": { - "$id": "6952", + "$id": "6962", "kind": "enum", "decorators": [], "name": "RealtimeClientEventType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6953", + "$id": "6963", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -90500,159 +90623,159 @@ }, "values": [ { - "$id": "6954", + "$id": "6964", "kind": "enumvalue", "decorators": [], "name": "session_update", "value": "session.update", "valueType": { - "$ref": "6953" + "$ref": "6963" }, "enumType": { - "$ref": "6952" + "$ref": "6962" } }, { - "$id": "6955", + "$id": "6965", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_append", "value": "input_audio_buffer.append", "valueType": { - "$ref": "6953" + "$ref": "6963" }, "enumType": { - "$ref": "6952" + "$ref": "6962" } }, { - "$id": "6956", + "$id": "6966", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_commit", "value": "input_audio_buffer.commit", "valueType": { - "$ref": "6953" + "$ref": "6963" }, "enumType": { - "$ref": "6952" + "$ref": "6962" } }, { - "$id": "6957", + "$id": "6967", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_clear", "value": "input_audio_buffer.clear", "valueType": { - "$ref": "6953" + "$ref": "6963" }, "enumType": { - "$ref": "6952" + "$ref": "6962" } }, { - "$id": "6958", + "$id": "6968", "kind": "enumvalue", "decorators": [], "name": "output_audio_buffer_clear", "value": "output_audio_buffer.clear", "valueType": { - "$ref": "6953" + "$ref": "6963" }, "enumType": { - "$ref": "6952" + "$ref": "6962" } }, { - "$id": "6959", + "$id": "6969", "kind": "enumvalue", "decorators": [], "name": "conversation_item_create", "value": "conversation.item.create", "valueType": { - "$ref": "6953" + "$ref": "6963" }, "enumType": { - "$ref": "6952" + "$ref": "6962" } }, { - "$id": "6960", + "$id": "6970", "kind": "enumvalue", "decorators": [], "name": "conversation_item_retrieve", "value": "conversation.item.retrieve", "valueType": { - "$ref": "6953" + "$ref": "6963" }, "enumType": { - "$ref": "6952" + "$ref": "6962" } }, { - "$id": "6961", + "$id": "6971", "kind": "enumvalue", "decorators": [], "name": "conversation_item_truncate", "value": "conversation.item.truncate", "valueType": { - "$ref": "6953" + "$ref": "6963" }, "enumType": { - "$ref": "6952" + "$ref": "6962" } }, { - "$id": "6962", + "$id": "6972", "kind": "enumvalue", "decorators": [], "name": "conversation_item_delete", "value": "conversation.item.delete", "valueType": { - "$ref": "6953" + "$ref": "6963" }, "enumType": { - "$ref": "6952" + "$ref": "6962" } }, { - "$id": "6963", + "$id": "6973", "kind": "enumvalue", "decorators": [], "name": "response_create", "value": "response.create", "valueType": { - "$ref": "6953" + "$ref": "6963" }, "enumType": { - "$ref": "6952" + "$ref": "6962" } }, { - "$id": "6964", + "$id": "6974", "kind": "enumvalue", "decorators": [], "name": "response_cancel", "value": "response.cancel", "valueType": { - "$ref": "6953" + "$ref": "6963" }, "enumType": { - "$ref": "6952" + "$ref": "6962" } }, { - "$id": "6965", + "$id": "6975", "kind": "enumvalue", "decorators": [], "name": "transcription_session_update", "value": "transcription_session.update", "valueType": { - "$ref": "6953" + "$ref": "6963" }, "enumType": { - "$ref": "6952" + "$ref": "6962" } } ], @@ -90681,12 +90804,12 @@ "isHttpMetadata": false }, { - "$id": "6966", + "$id": "6976", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$id": "6967", + "$id": "6977", "kind": "model", "name": "RealtimeRequestSession", "namespace": "OpenAI", @@ -90695,12 +90818,12 @@ "decorators": [], "properties": [ { - "$id": "6968", + "$id": "6978", "kind": "property", "name": "modalities", "serializedName": "modalities", "type": { - "$id": "6969", + "$id": "6979", "kind": "array", "name": "ArrayRealtimeModality", "valueType": { @@ -90723,12 +90846,12 @@ "isHttpMetadata": false }, { - "$id": "6970", + "$id": "6980", "kind": "property", "name": "instructions", "serializedName": "instructions", "type": { - "$id": "6971", + "$id": "6981", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90748,7 +90871,7 @@ "isHttpMetadata": false }, { - "$id": "6972", + "$id": "6982", "kind": "property", "name": "model", "serializedName": "model", @@ -90769,7 +90892,7 @@ "isHttpMetadata": false }, { - "$id": "6973", + "$id": "6983", "kind": "property", "name": "voice", "serializedName": "voice", @@ -90790,7 +90913,7 @@ "isHttpMetadata": false }, { - "$id": "6974", + "$id": "6984", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", @@ -90811,7 +90934,7 @@ "isHttpMetadata": false }, { - "$id": "6975", + "$id": "6985", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", @@ -90832,15 +90955,15 @@ "isHttpMetadata": false }, { - "$id": "6976", + "$id": "6986", "kind": "property", "name": "input_audio_transcription", "serializedName": "input_audio_transcription", "type": { - "$id": "6977", + "$id": "6987", "kind": "nullable", "type": { - "$id": "6978", + "$id": "6988", "kind": "model", "name": "RealtimeAudioInputTranscriptionSettings", "namespace": "OpenAI", @@ -90849,7 +90972,7 @@ "decorators": [], "properties": [ { - "$id": "6979", + "$id": "6989", "kind": "property", "name": "model", "serializedName": "model", @@ -90870,12 +90993,12 @@ "isHttpMetadata": false }, { - "$id": "6980", + "$id": "6990", "kind": "property", "name": "language", "serializedName": "language", "type": { - "$id": "6981", + "$id": "6991", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90895,12 +91018,12 @@ "isHttpMetadata": false }, { - "$id": "6982", + "$id": "6992", "kind": "property", "name": "prompt", "serializedName": "prompt", "type": { - "$id": "6983", + "$id": "6993", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90937,15 +91060,15 @@ "isHttpMetadata": false }, { - "$id": "6984", + "$id": "6994", "kind": "property", "name": "turn_detection", "serializedName": "turn_detection", "type": { - "$id": "6985", + "$id": "6995", "kind": "nullable", "type": { - "$id": "6986", + "$id": "6996", "kind": "model", "name": "RealtimeTurnDetection", "namespace": "OpenAI", @@ -90953,7 +91076,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "6987", + "$id": "6997", "kind": "property", "name": "type", "serializedName": "type", @@ -90975,16 +91098,16 @@ }, "properties": [ { - "$ref": "6987" + "$ref": "6997" }, { - "$id": "6988", + "$id": "6998", "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": "6989", + "$id": "6999", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -91004,13 +91127,13 @@ "isHttpMetadata": false }, { - "$id": "6990", + "$id": "7000", "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": "6991", + "$id": "7001", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -91032,7 +91155,7 @@ ], "discriminatedSubtypes": { "server_vad": { - "$id": "6992", + "$id": "7002", "kind": "model", "name": "RealtimeServerVadTurnDetection", "namespace": "OpenAI", @@ -91041,16 +91164,16 @@ "discriminatorValue": "server_vad", "decorators": [], "baseModel": { - "$ref": "6986" + "$ref": "6996" }, "properties": [ { - "$id": "6993", + "$id": "7003", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "6994", + "$id": "7004", "kind": "enumvalue", "name": "server_vad", "value": "server_vad", @@ -91058,14 +91181,14 @@ "$ref": "1132" }, "enumType": { - "$id": "6995", + "$id": "7005", "kind": "enum", "decorators": [], "name": "RealtimeTurnDetectionType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6996", + "$id": "7006", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -91074,30 +91197,30 @@ }, "values": [ { - "$id": "6997", + "$id": "7007", "kind": "enumvalue", "decorators": [], "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.", "name": "server_vad", "value": "server_vad", "valueType": { - "$ref": "6996" + "$ref": "7006" }, "enumType": { - "$ref": "6995" + "$ref": "7005" } }, { - "$id": "6998", + "$id": "7008", "kind": "enumvalue", "decorators": [], "name": "semantic_vad", "value": "semantic_vad", "valueType": { - "$ref": "6996" + "$ref": "7006" }, "enumType": { - "$ref": "6995" + "$ref": "7005" } } ], @@ -91127,13 +91250,13 @@ "isHttpMetadata": false }, { - "$id": "6999", + "$id": "7009", "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": "7000", + "$id": "7010", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -91153,18 +91276,18 @@ "isHttpMetadata": false }, { - "$id": "7001", + "$id": "7011", "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": "7002", + "$id": "7012", "kind": "duration", "name": "duration", "encode": "ISO8601", "wireType": { - "$id": "7003", + "$id": "7013", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91187,18 +91310,18 @@ "isHttpMetadata": false }, { - "$id": "7004", + "$id": "7014", "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": "7005", + "$id": "7015", "kind": "duration", "name": "duration", "encode": "ISO8601", "wireType": { - "$id": "7006", + "$id": "7016", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91223,7 +91346,7 @@ ] }, "semantic_vad": { - "$id": "7007", + "$id": "7017", "kind": "model", "name": "RealtimeSemanticVadTurnDetection", "namespace": "OpenAI", @@ -91232,16 +91355,16 @@ "discriminatorValue": "semantic_vad", "decorators": [], "baseModel": { - "$ref": "6986" + "$ref": "6996" }, "properties": [ { - "$id": "7008", + "$id": "7018", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7009", + "$id": "7019", "kind": "enumvalue", "name": "semantic_vad", "value": "semantic_vad", @@ -91249,7 +91372,7 @@ "$ref": "1132" }, "enumType": { - "$ref": "6995" + "$ref": "7005" }, "decorators": [] }, @@ -91267,7 +91390,7 @@ "isHttpMetadata": false }, { - "$id": "7010", + "$id": "7020", "kind": "property", "name": "eagerness", "serializedName": "eagerness", @@ -91308,12 +91431,12 @@ "isHttpMetadata": false }, { - "$id": "7011", + "$id": "7021", "kind": "property", "name": "input_audio_noise_reduction", "serializedName": "input_audio_noise_reduction", "type": { - "$id": "7012", + "$id": "7022", "kind": "model", "name": "RealtimeAudioNoiseReduction", "namespace": "OpenAI", @@ -91321,7 +91444,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "7013", + "$id": "7023", "kind": "property", "name": "type", "serializedName": "type", @@ -91343,12 +91466,12 @@ }, "properties": [ { - "$ref": "7013" + "$ref": "7023" } ], "discriminatedSubtypes": { "near_field": { - "$id": "7014", + "$id": "7024", "kind": "model", "name": "RealtimeAudioNearFieldNoiseReduction", "namespace": "OpenAI", @@ -91357,16 +91480,16 @@ "discriminatorValue": "near_field", "decorators": [], "baseModel": { - "$ref": "7012" + "$ref": "7022" }, "properties": [ { - "$id": "7015", + "$id": "7025", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7016", + "$id": "7026", "kind": "enumvalue", "name": "near_field", "value": "near_field", @@ -91374,14 +91497,14 @@ "$ref": "1142" }, "enumType": { - "$id": "7017", + "$id": "7027", "kind": "enum", "decorators": [], "name": "RealtimeAudioNoiseReductionType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "7018", + "$id": "7028", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -91390,29 +91513,29 @@ }, "values": [ { - "$id": "7019", + "$id": "7029", "kind": "enumvalue", "decorators": [], "name": "near_field", "value": "near_field", "valueType": { - "$ref": "7018" + "$ref": "7028" }, "enumType": { - "$ref": "7017" + "$ref": "7027" } }, { - "$id": "7020", + "$id": "7030", "kind": "enumvalue", "decorators": [], "name": "far_field", "value": "far_field", "valueType": { - "$ref": "7018" + "$ref": "7028" }, "enumType": { - "$ref": "7017" + "$ref": "7027" } } ], @@ -91443,7 +91566,7 @@ ] }, "far_field": { - "$id": "7021", + "$id": "7031", "kind": "model", "name": "RealtimeAudioFarFieldNoiseReduction", "namespace": "OpenAI", @@ -91452,16 +91575,16 @@ "discriminatorValue": "far_field", "decorators": [], "baseModel": { - "$ref": "7012" + "$ref": "7022" }, "properties": [ { - "$id": "7022", + "$id": "7032", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7023", + "$id": "7033", "kind": "enumvalue", "name": "far_field", "value": "far_field", @@ -91469,7 +91592,7 @@ "$ref": "1142" }, "enumType": { - "$ref": "7017" + "$ref": "7027" }, "decorators": [] }, @@ -91504,16 +91627,16 @@ "isHttpMetadata": false }, { - "$id": "7024", + "$id": "7034", "kind": "property", "name": "tools", "serializedName": "tools", "type": { - "$id": "7025", + "$id": "7035", "kind": "array", "name": "ArrayRealtimeTool", "valueType": { - "$id": "7026", + "$id": "7036", "kind": "model", "name": "RealtimeTool", "namespace": "OpenAI", @@ -91522,7 +91645,7 @@ "doc": "The base representation of a realtime tool definition.", "decorators": [], "discriminatorProperty": { - "$id": "7027", + "$id": "7037", "kind": "property", "name": "type", "serializedName": "type", @@ -91544,12 +91667,12 @@ }, "properties": [ { - "$ref": "7027" + "$ref": "7037" } ], "discriminatedSubtypes": { "function": { - "$id": "7028", + "$id": "7038", "kind": "model", "name": "RealtimeFunctionTool", "namespace": "OpenAI", @@ -91559,16 +91682,16 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "7026" + "$ref": "7036" }, "properties": [ { - "$id": "7029", + "$id": "7039", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7030", + "$id": "7040", "kind": "enumvalue", "name": "function", "value": "function", @@ -91576,7 +91699,7 @@ "$ref": "1146" }, "enumType": { - "$id": "7031", + "$id": "7041", "kind": "enum", "decorators": [], "doc": "The supported tool type discriminators for realtime tools.\nCurrently, only 'function' tools are supported.", @@ -91584,7 +91707,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "7032", + "$id": "7042", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -91593,16 +91716,16 @@ }, "values": [ { - "$id": "7033", + "$id": "7043", "kind": "enumvalue", "decorators": [], "name": "function", "value": "function", "valueType": { - "$ref": "7032" + "$ref": "7042" }, "enumType": { - "$ref": "7031" + "$ref": "7041" } } ], @@ -91631,12 +91754,12 @@ "isHttpMetadata": false }, { - "$id": "7034", + "$id": "7044", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "7035", + "$id": "7045", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91656,12 +91779,12 @@ "isHttpMetadata": false }, { - "$id": "7036", + "$id": "7046", "kind": "property", "name": "description", "serializedName": "description", "type": { - "$id": "7037", + "$id": "7047", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91681,12 +91804,12 @@ "isHttpMetadata": false }, { - "$id": "7038", + "$id": "7048", "kind": "property", "name": "parameters", "serializedName": "parameters", "type": { - "$id": "7039", + "$id": "7049", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -91726,12 +91849,12 @@ "isHttpMetadata": false }, { - "$id": "7040", + "$id": "7050", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "7041", + "$id": "7051", "kind": "union", "name": "RealtimeToolChoice", "variantTypes": [ @@ -91739,7 +91862,7 @@ "$ref": "1148" }, { - "$id": "7042", + "$id": "7052", "kind": "model", "name": "RealtimeToolChoiceObject", "namespace": "OpenAI", @@ -91748,7 +91871,7 @@ "doc": "A base representation for a realtime tool_choice selecting a named tool.", "decorators": [], "discriminatorProperty": { - "$id": "7043", + "$id": "7053", "kind": "property", "name": "type", "serializedName": "type", @@ -91770,12 +91893,12 @@ }, "properties": [ { - "$ref": "7043" + "$ref": "7053" } ], "discriminatedSubtypes": { "function": { - "$id": "7044", + "$id": "7054", "kind": "model", "name": "RealtimeToolChoiceFunctionObject", "namespace": "OpenAI", @@ -91785,16 +91908,16 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "7042" + "$ref": "7052" }, "properties": [ { - "$id": "7045", + "$id": "7055", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "7030" + "$ref": "7040" }, "optional": false, "readOnly": false, @@ -91810,12 +91933,12 @@ "isHttpMetadata": false }, { - "$id": "7046", + "$id": "7056", "kind": "property", "name": "function", "serializedName": "function", "type": { - "$id": "7047", + "$id": "7057", "kind": "model", "name": "RealtimeToolChoiceFunctionObjectFunction", "namespace": "OpenAI", @@ -91824,12 +91947,12 @@ "decorators": [], "properties": [ { - "$id": "7048", + "$id": "7058", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "7049", + "$id": "7059", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91885,12 +92008,12 @@ "isHttpMetadata": false }, { - "$id": "7050", + "$id": "7060", "kind": "property", "name": "temperature", "serializedName": "temperature", "type": { - "$id": "7051", + "$id": "7061", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -91910,17 +92033,17 @@ "isHttpMetadata": false }, { - "$id": "7052", + "$id": "7062", "kind": "property", "name": "max_response_output_tokens", "serializedName": "max_response_output_tokens", "type": { - "$id": "7053", + "$id": "7063", "kind": "union", "name": "RealtimeRequestSessionMaxResponseOutputTokens", "variantTypes": [ { - "$id": "7054", + "$id": "7064", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -91964,7 +92087,7 @@ ] }, "input_audio_buffer.append": { - "$id": "7055", + "$id": "7065", "kind": "model", "name": "RealtimeClientEventInputAudioBufferAppend", "namespace": "OpenAI", @@ -91974,17 +92097,17 @@ "discriminatorValue": "input_audio_buffer.append", "decorators": [], "baseModel": { - "$ref": "6945" + "$ref": "6955" }, "properties": [ { - "$id": "7056", + "$id": "7066", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.append`.", "type": { - "$id": "7057", + "$id": "7067", "kind": "enumvalue", "name": "input_audio_buffer_append", "value": "input_audio_buffer.append", @@ -91992,7 +92115,7 @@ "$ref": "1099" }, "enumType": { - "$ref": "6952" + "$ref": "6962" }, "decorators": [] }, @@ -92010,13 +92133,13 @@ "isHttpMetadata": false }, { - "$id": "7058", + "$id": "7068", "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": "7059", + "$id": "7069", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -92039,7 +92162,7 @@ ] }, "input_audio_buffer.commit": { - "$id": "7060", + "$id": "7070", "kind": "model", "name": "RealtimeClientEventInputAudioBufferCommit", "namespace": "OpenAI", @@ -92049,17 +92172,17 @@ "discriminatorValue": "input_audio_buffer.commit", "decorators": [], "baseModel": { - "$ref": "6945" + "$ref": "6955" }, "properties": [ { - "$id": "7061", + "$id": "7071", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.commit`.", "type": { - "$id": "7062", + "$id": "7072", "kind": "enumvalue", "name": "input_audio_buffer_commit", "value": "input_audio_buffer.commit", @@ -92067,7 +92190,7 @@ "$ref": "1099" }, "enumType": { - "$ref": "6952" + "$ref": "6962" }, "decorators": [] }, @@ -92087,7 +92210,7 @@ ] }, "input_audio_buffer.clear": { - "$id": "7063", + "$id": "7073", "kind": "model", "name": "RealtimeClientEventInputAudioBufferClear", "namespace": "OpenAI", @@ -92097,17 +92220,17 @@ "discriminatorValue": "input_audio_buffer.clear", "decorators": [], "baseModel": { - "$ref": "6945" + "$ref": "6955" }, "properties": [ { - "$id": "7064", + "$id": "7074", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.clear`.", "type": { - "$id": "7065", + "$id": "7075", "kind": "enumvalue", "name": "input_audio_buffer_clear", "value": "input_audio_buffer.clear", @@ -92115,7 +92238,7 @@ "$ref": "1099" }, "enumType": { - "$ref": "6952" + "$ref": "6962" }, "decorators": [] }, @@ -92135,7 +92258,7 @@ ] }, "output_audio_buffer.clear": { - "$id": "7066", + "$id": "7076", "kind": "model", "name": "RealtimeClientEventOutputAudioBufferClear", "namespace": "OpenAI", @@ -92145,17 +92268,17 @@ "discriminatorValue": "output_audio_buffer.clear", "decorators": [], "baseModel": { - "$ref": "6945" + "$ref": "6955" }, "properties": [ { - "$id": "7067", + "$id": "7077", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.clear`.", "type": { - "$id": "7068", + "$id": "7078", "kind": "enumvalue", "name": "output_audio_buffer_clear", "value": "output_audio_buffer.clear", @@ -92163,7 +92286,7 @@ "$ref": "1099" }, "enumType": { - "$ref": "6952" + "$ref": "6962" }, "decorators": [] }, @@ -92183,7 +92306,7 @@ ] }, "conversation.item.create": { - "$id": "7069", + "$id": "7079", "kind": "model", "name": "RealtimeClientEventConversationItemCreate", "namespace": "OpenAI", @@ -92193,17 +92316,17 @@ "discriminatorValue": "conversation.item.create", "decorators": [], "baseModel": { - "$ref": "6945" + "$ref": "6955" }, "properties": [ { - "$id": "7070", + "$id": "7080", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.create`.", "type": { - "$id": "7071", + "$id": "7081", "kind": "enumvalue", "name": "conversation_item_create", "value": "conversation.item.create", @@ -92211,7 +92334,7 @@ "$ref": "1099" }, "enumType": { - "$ref": "6952" + "$ref": "6962" }, "decorators": [] }, @@ -92229,13 +92352,13 @@ "isHttpMetadata": false }, { - "$id": "7072", + "$id": "7082", "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": "7073", + "$id": "7083", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92255,12 +92378,12 @@ "isHttpMetadata": false }, { - "$id": "7074", + "$id": "7084", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$id": "7075", + "$id": "7085", "kind": "model", "name": "RealtimeConversationRequestItem", "namespace": "OpenAI", @@ -92268,7 +92391,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "7076", + "$id": "7086", "kind": "property", "name": "type", "serializedName": "type", @@ -92290,15 +92413,15 @@ }, "properties": [ { - "$ref": "7076" + "$ref": "7086" }, { - "$id": "7077", + "$id": "7087", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "7078", + "$id": "7088", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92320,7 +92443,7 @@ ], "discriminatedSubtypes": { "message": { - "$id": "7079", + "$id": "7089", "kind": "model", "name": "RealtimeRequestMessageItem", "namespace": "OpenAI", @@ -92329,7 +92452,7 @@ "discriminatorValue": "message", "decorators": [], "discriminatorProperty": { - "$id": "7080", + "$id": "7090", "kind": "property", "name": "role", "serializedName": "role", @@ -92350,16 +92473,16 @@ "isHttpMetadata": false }, "baseModel": { - "$ref": "7075" + "$ref": "7085" }, "properties": [ { - "$id": "7081", + "$id": "7091", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7082", + "$id": "7092", "kind": "enumvalue", "name": "message", "value": "message", @@ -92367,14 +92490,14 @@ "$ref": "1154" }, "enumType": { - "$id": "7083", + "$id": "7093", "kind": "enum", "decorators": [], "name": "RealtimeItemType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "7084", + "$id": "7094", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -92383,42 +92506,42 @@ }, "values": [ { - "$id": "7085", + "$id": "7095", "kind": "enumvalue", "decorators": [], "name": "message", "value": "message", "valueType": { - "$ref": "7084" + "$ref": "7094" }, "enumType": { - "$ref": "7083" + "$ref": "7093" } }, { - "$id": "7086", + "$id": "7096", "kind": "enumvalue", "decorators": [], "name": "function_call", "value": "function_call", "valueType": { - "$ref": "7084" + "$ref": "7094" }, "enumType": { - "$ref": "7083" + "$ref": "7093" } }, { - "$id": "7087", + "$id": "7097", "kind": "enumvalue", "decorators": [], "name": "function_call_output", "value": "function_call_output", "valueType": { - "$ref": "7084" + "$ref": "7094" }, "enumType": { - "$ref": "7083" + "$ref": "7093" } } ], @@ -92447,10 +92570,10 @@ "isHttpMetadata": false }, { - "$ref": "7080" + "$ref": "7090" }, { - "$id": "7088", + "$id": "7098", "kind": "property", "name": "status", "serializedName": "status", @@ -92473,7 +92596,7 @@ ], "discriminatedSubtypes": { "system": { - "$id": "7089", + "$id": "7099", "kind": "model", "name": "RealtimeRequestSystemMessageItem", "namespace": "OpenAI", @@ -92482,16 +92605,16 @@ "discriminatorValue": "system", "decorators": [], "baseModel": { - "$ref": "7079" + "$ref": "7089" }, "properties": [ { - "$id": "7090", + "$id": "7100", "kind": "property", "name": "role", "serializedName": "role", "type": { - "$id": "7091", + "$id": "7101", "kind": "enumvalue", "name": "system", "value": "system", @@ -92499,14 +92622,14 @@ "$ref": "1159" }, "enumType": { - "$id": "7092", + "$id": "7102", "kind": "enum", "decorators": [], "name": "RealtimeMessageRole", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "7093", + "$id": "7103", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -92515,42 +92638,42 @@ }, "values": [ { - "$id": "7094", + "$id": "7104", "kind": "enumvalue", "decorators": [], "name": "system", "value": "system", "valueType": { - "$ref": "7093" + "$ref": "7103" }, "enumType": { - "$ref": "7092" + "$ref": "7102" } }, { - "$id": "7095", + "$id": "7105", "kind": "enumvalue", "decorators": [], "name": "user", "value": "user", "valueType": { - "$ref": "7093" + "$ref": "7103" }, "enumType": { - "$ref": "7092" + "$ref": "7102" } }, { - "$id": "7096", + "$id": "7106", "kind": "enumvalue", "decorators": [], "name": "assistant", "value": "assistant", "valueType": { - "$ref": "7093" + "$ref": "7103" }, "enumType": { - "$ref": "7092" + "$ref": "7102" } } ], @@ -92579,16 +92702,16 @@ "isHttpMetadata": false }, { - "$id": "7097", + "$id": "7107", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "7098", + "$id": "7108", "kind": "array", "name": "ArrayRealtimeRequestTextContentPart", "valueType": { - "$id": "7099", + "$id": "7109", "kind": "model", "name": "RealtimeRequestTextContentPart", "namespace": "OpenAI", @@ -92597,7 +92720,7 @@ "discriminatorValue": "input_text", "decorators": [], "baseModel": { - "$id": "7100", + "$id": "7110", "kind": "model", "name": "RealtimeContentPart", "namespace": "OpenAI", @@ -92605,7 +92728,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "7101", + "$id": "7111", "kind": "property", "name": "type", "serializedName": "type", @@ -92627,15 +92750,15 @@ }, "properties": [ { - "$ref": "7101" + "$ref": "7111" } ], "discriminatedSubtypes": { "input_text": { - "$ref": "7099" + "$ref": "7109" }, "input_audio": { - "$id": "7102", + "$id": "7112", "kind": "model", "name": "RealtimeRequestAudioContentPart", "namespace": "OpenAI", @@ -92644,16 +92767,16 @@ "discriminatorValue": "input_audio", "decorators": [], "baseModel": { - "$ref": "7100" + "$ref": "7110" }, "properties": [ { - "$id": "7103", + "$id": "7113", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7104", + "$id": "7114", "kind": "enumvalue", "name": "input_audio", "value": "input_audio", @@ -92661,14 +92784,14 @@ "$ref": "1169" }, "enumType": { - "$id": "7105", + "$id": "7115", "kind": "enum", "decorators": [], "name": "RealtimeContentPartType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "7106", + "$id": "7116", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -92677,55 +92800,55 @@ }, "values": [ { - "$id": "7107", + "$id": "7117", "kind": "enumvalue", "decorators": [], "name": "input_text", "value": "input_text", "valueType": { - "$ref": "7106" + "$ref": "7116" }, "enumType": { - "$ref": "7105" + "$ref": "7115" } }, { - "$id": "7108", + "$id": "7118", "kind": "enumvalue", "decorators": [], "name": "input_audio", "value": "input_audio", "valueType": { - "$ref": "7106" + "$ref": "7116" }, "enumType": { - "$ref": "7105" + "$ref": "7115" } }, { - "$id": "7109", + "$id": "7119", "kind": "enumvalue", "decorators": [], "name": "text", "value": "text", "valueType": { - "$ref": "7106" + "$ref": "7116" }, "enumType": { - "$ref": "7105" + "$ref": "7115" } }, { - "$id": "7110", + "$id": "7120", "kind": "enumvalue", "decorators": [], "name": "audio", "value": "audio", "valueType": { - "$ref": "7106" + "$ref": "7116" }, "enumType": { - "$ref": "7105" + "$ref": "7115" } } ], @@ -92754,12 +92877,12 @@ "isHttpMetadata": false }, { - "$id": "7111", + "$id": "7121", "kind": "property", "name": "transcript", "serializedName": "transcript", "type": { - "$id": "7112", + "$id": "7122", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92781,7 +92904,7 @@ ] }, "text": { - "$id": "7113", + "$id": "7123", "kind": "model", "name": "RealtimeResponseTextContentPart", "namespace": "OpenAI", @@ -92790,16 +92913,16 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "7100" + "$ref": "7110" }, "properties": [ { - "$id": "7114", + "$id": "7124", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7115", + "$id": "7125", "kind": "enumvalue", "name": "text", "value": "text", @@ -92807,7 +92930,7 @@ "$ref": "1169" }, "enumType": { - "$ref": "7105" + "$ref": "7115" }, "decorators": [] }, @@ -92825,12 +92948,12 @@ "isHttpMetadata": false }, { - "$id": "7116", + "$id": "7126", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "7117", + "$id": "7127", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92852,7 +92975,7 @@ ] }, "audio": { - "$id": "7118", + "$id": "7128", "kind": "model", "name": "RealtimeResponseAudioContentPart", "namespace": "OpenAI", @@ -92861,16 +92984,16 @@ "discriminatorValue": "audio", "decorators": [], "baseModel": { - "$ref": "7100" + "$ref": "7110" }, "properties": [ { - "$id": "7119", + "$id": "7129", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7120", + "$id": "7130", "kind": "enumvalue", "name": "audio", "value": "audio", @@ -92878,7 +93001,7 @@ "$ref": "1169" }, "enumType": { - "$ref": "7105" + "$ref": "7115" }, "decorators": [] }, @@ -92896,15 +93019,15 @@ "isHttpMetadata": false }, { - "$id": "7121", + "$id": "7131", "kind": "property", "name": "transcript", "serializedName": "transcript", "type": { - "$id": "7122", + "$id": "7132", "kind": "nullable", "type": { - "$id": "7123", + "$id": "7133", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92931,12 +93054,12 @@ }, "properties": [ { - "$id": "7124", + "$id": "7134", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7125", + "$id": "7135", "kind": "enumvalue", "name": "input_text", "value": "input_text", @@ -92944,7 +93067,7 @@ "$ref": "1169" }, "enumType": { - "$ref": "7105" + "$ref": "7115" }, "decorators": [] }, @@ -92962,12 +93085,12 @@ "isHttpMetadata": false }, { - "$id": "7126", + "$id": "7136", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "7127", + "$id": "7137", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93007,7 +93130,7 @@ ] }, "user": { - "$id": "7128", + "$id": "7138", "kind": "model", "name": "RealtimeRequestUserMessageItem", "namespace": "OpenAI", @@ -93016,16 +93139,16 @@ "discriminatorValue": "user", "decorators": [], "baseModel": { - "$ref": "7079" + "$ref": "7089" }, "properties": [ { - "$id": "7129", + "$id": "7139", "kind": "property", "name": "role", "serializedName": "role", "type": { - "$id": "7130", + "$id": "7140", "kind": "enumvalue", "name": "user", "value": "user", @@ -93033,7 +93156,7 @@ "$ref": "1159" }, "enumType": { - "$ref": "7092" + "$ref": "7102" }, "decorators": [] }, @@ -93051,24 +93174,24 @@ "isHttpMetadata": false }, { - "$id": "7131", + "$id": "7141", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "7132", + "$id": "7142", "kind": "array", "name": "Array42", "valueType": { - "$id": "7133", + "$id": "7143", "kind": "union", "name": "RealtimeRequestUserMessageItemContent", "variantTypes": [ { - "$ref": "7099" + "$ref": "7109" }, { - "$ref": "7102" + "$ref": "7112" } ], "namespace": "OpenAI", @@ -93093,7 +93216,7 @@ ] }, "assistant": { - "$id": "7134", + "$id": "7144", "kind": "model", "name": "RealtimeRequestAssistantMessageItem", "namespace": "OpenAI", @@ -93102,16 +93225,16 @@ "discriminatorValue": "assistant", "decorators": [], "baseModel": { - "$ref": "7079" + "$ref": "7089" }, "properties": [ { - "$id": "7135", + "$id": "7145", "kind": "property", "name": "role", "serializedName": "role", "type": { - "$id": "7136", + "$id": "7146", "kind": "enumvalue", "name": "assistant", "value": "assistant", @@ -93119,7 +93242,7 @@ "$ref": "1159" }, "enumType": { - "$ref": "7092" + "$ref": "7102" }, "decorators": [] }, @@ -93137,12 +93260,12 @@ "isHttpMetadata": false }, { - "$id": "7137", + "$id": "7147", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$ref": "7098" + "$ref": "7108" }, "optional": false, "readOnly": false, @@ -93162,7 +93285,7 @@ } }, "function_call": { - "$id": "7138", + "$id": "7148", "kind": "model", "name": "RealtimeRequestFunctionCallItem", "namespace": "OpenAI", @@ -93171,16 +93294,16 @@ "discriminatorValue": "function_call", "decorators": [], "baseModel": { - "$ref": "7075" + "$ref": "7085" }, "properties": [ { - "$id": "7139", + "$id": "7149", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7140", + "$id": "7150", "kind": "enumvalue", "name": "function_call", "value": "function_call", @@ -93188,7 +93311,7 @@ "$ref": "1154" }, "enumType": { - "$ref": "7083" + "$ref": "7093" }, "decorators": [] }, @@ -93206,12 +93329,12 @@ "isHttpMetadata": false }, { - "$id": "7141", + "$id": "7151", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "7142", + "$id": "7152", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93231,12 +93354,12 @@ "isHttpMetadata": false }, { - "$id": "7143", + "$id": "7153", "kind": "property", "name": "call_id", "serializedName": "call_id", "type": { - "$id": "7144", + "$id": "7154", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93256,12 +93379,12 @@ "isHttpMetadata": false }, { - "$id": "7145", + "$id": "7155", "kind": "property", "name": "arguments", "serializedName": "arguments", "type": { - "$id": "7146", + "$id": "7156", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93281,7 +93404,7 @@ "isHttpMetadata": false }, { - "$id": "7147", + "$id": "7157", "kind": "property", "name": "status", "serializedName": "status", @@ -93304,7 +93427,7 @@ ] }, "function_call_output": { - "$id": "7148", + "$id": "7158", "kind": "model", "name": "RealtimeRequestFunctionCallOutputItem", "namespace": "OpenAI", @@ -93313,16 +93436,16 @@ "discriminatorValue": "function_call_output", "decorators": [], "baseModel": { - "$ref": "7075" + "$ref": "7085" }, "properties": [ { - "$id": "7149", + "$id": "7159", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7150", + "$id": "7160", "kind": "enumvalue", "name": "function_call_output", "value": "function_call_output", @@ -93330,7 +93453,7 @@ "$ref": "1154" }, "enumType": { - "$ref": "7083" + "$ref": "7093" }, "decorators": [] }, @@ -93348,12 +93471,12 @@ "isHttpMetadata": false }, { - "$id": "7151", + "$id": "7161", "kind": "property", "name": "call_id", "serializedName": "call_id", "type": { - "$id": "7152", + "$id": "7162", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93373,12 +93496,12 @@ "isHttpMetadata": false }, { - "$id": "7153", + "$id": "7163", "kind": "property", "name": "output", "serializedName": "output", "type": { - "$id": "7154", + "$id": "7164", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93417,7 +93540,7 @@ ] }, "conversation.item.truncate": { - "$id": "7155", + "$id": "7165", "kind": "model", "name": "RealtimeClientEventConversationItemTruncate", "namespace": "OpenAI", @@ -93427,17 +93550,17 @@ "discriminatorValue": "conversation.item.truncate", "decorators": [], "baseModel": { - "$ref": "6945" + "$ref": "6955" }, "properties": [ { - "$id": "7156", + "$id": "7166", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.truncate`.", "type": { - "$id": "7157", + "$id": "7167", "kind": "enumvalue", "name": "conversation_item_truncate", "value": "conversation.item.truncate", @@ -93445,7 +93568,7 @@ "$ref": "1099" }, "enumType": { - "$ref": "6952" + "$ref": "6962" }, "decorators": [] }, @@ -93463,13 +93586,13 @@ "isHttpMetadata": false }, { - "$id": "7158", + "$id": "7168", "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": "7159", + "$id": "7169", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93489,13 +93612,13 @@ "isHttpMetadata": false }, { - "$id": "7160", + "$id": "7170", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part to truncate. Set this to 0.", "type": { - "$id": "7161", + "$id": "7171", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -93515,13 +93638,13 @@ "isHttpMetadata": false }, { - "$id": "7162", + "$id": "7172", "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": "7163", + "$id": "7173", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -93543,7 +93666,7 @@ ] }, "conversation.item.delete": { - "$id": "7164", + "$id": "7174", "kind": "model", "name": "RealtimeClientEventConversationItemDelete", "namespace": "OpenAI", @@ -93553,17 +93676,17 @@ "discriminatorValue": "conversation.item.delete", "decorators": [], "baseModel": { - "$ref": "6945" + "$ref": "6955" }, "properties": [ { - "$id": "7165", + "$id": "7175", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.delete`.", "type": { - "$id": "7166", + "$id": "7176", "kind": "enumvalue", "name": "conversation_item_delete", "value": "conversation.item.delete", @@ -93571,7 +93694,7 @@ "$ref": "1099" }, "enumType": { - "$ref": "6952" + "$ref": "6962" }, "decorators": [] }, @@ -93589,13 +93712,13 @@ "isHttpMetadata": false }, { - "$id": "7167", + "$id": "7177", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to delete.", "type": { - "$id": "7168", + "$id": "7178", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93617,7 +93740,7 @@ ] }, "response.create": { - "$id": "7169", + "$id": "7179", "kind": "model", "name": "RealtimeClientEventResponseCreate", "namespace": "OpenAI", @@ -93627,17 +93750,17 @@ "discriminatorValue": "response.create", "decorators": [], "baseModel": { - "$ref": "6945" + "$ref": "6955" }, "properties": [ { - "$id": "7170", + "$id": "7180", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.create`.", "type": { - "$id": "7171", + "$id": "7181", "kind": "enumvalue", "name": "response_create", "value": "response.create", @@ -93645,7 +93768,7 @@ "$ref": "1099" }, "enumType": { - "$ref": "6952" + "$ref": "6962" }, "decorators": [] }, @@ -93663,12 +93786,12 @@ "isHttpMetadata": false }, { - "$id": "7172", + "$id": "7182", "kind": "property", "name": "response", "serializedName": "response", "type": { - "$id": "7173", + "$id": "7183", "kind": "model", "name": "RealtimeResponseCreateParams", "namespace": "OpenAI", @@ -93678,13 +93801,13 @@ "decorators": [], "properties": [ { - "$id": "7174", + "$id": "7184", "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": "6969" + "$ref": "6979" }, "optional": true, "readOnly": false, @@ -93700,13 +93823,13 @@ "isHttpMetadata": false }, { - "$id": "7175", + "$id": "7185", "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": "7176", + "$id": "7186", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93726,7 +93849,7 @@ "isHttpMetadata": false }, { - "$id": "7177", + "$id": "7187", "kind": "property", "name": "voice", "serializedName": "voice", @@ -93748,7 +93871,7 @@ "isHttpMetadata": false }, { - "$id": "7178", + "$id": "7188", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", @@ -93770,13 +93893,13 @@ "isHttpMetadata": false }, { - "$id": "7179", + "$id": "7189", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "Tools (functions) available to the model.", "type": { - "$ref": "7025" + "$ref": "7035" }, "optional": true, "readOnly": false, @@ -93792,13 +93915,13 @@ "isHttpMetadata": false }, { - "$id": "7180", + "$id": "7190", "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": "7181", + "$id": "7191", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93818,13 +93941,13 @@ "isHttpMetadata": false }, { - "$id": "7182", + "$id": "7192", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Sampling temperature for the model, limited to [0.6, 1.2]. Defaults to 0.8.", "type": { - "$id": "7183", + "$id": "7193", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -93844,18 +93967,18 @@ "isHttpMetadata": false }, { - "$id": "7184", + "$id": "7194", "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": "7185", + "$id": "7195", "kind": "union", "name": "RealtimeResponseCreateParamsMaxOutputTokens", "variantTypes": [ { - "$id": "7186", + "$id": "7196", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -93882,7 +94005,7 @@ "isHttpMetadata": false }, { - "$id": "7187", + "$id": "7197", "kind": "property", "name": "conversation", "serializedName": "conversation", @@ -93904,7 +94027,7 @@ "isHttpMetadata": false }, { - "$id": "7188", + "$id": "7198", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -93926,17 +94049,17 @@ "isHttpMetadata": false }, { - "$id": "7189", + "$id": "7199", "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": "7190", + "$id": "7200", "kind": "array", "name": "ArrayRealtimeConversationRequestItem", "valueType": { - "$ref": "7075" + "$ref": "7085" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -93972,7 +94095,7 @@ ] }, "response.cancel": { - "$id": "7191", + "$id": "7201", "kind": "model", "name": "RealtimeClientEventResponseCancel", "namespace": "OpenAI", @@ -93982,17 +94105,17 @@ "discriminatorValue": "response.cancel", "decorators": [], "baseModel": { - "$ref": "6945" + "$ref": "6955" }, "properties": [ { - "$id": "7192", + "$id": "7202", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.cancel`.", "type": { - "$id": "7193", + "$id": "7203", "kind": "enumvalue", "name": "response_cancel", "value": "response.cancel", @@ -94000,7 +94123,7 @@ "$ref": "1099" }, "enumType": { - "$ref": "6952" + "$ref": "6962" }, "decorators": [] }, @@ -94018,13 +94141,13 @@ "isHttpMetadata": false }, { - "$id": "7194", + "$id": "7204", "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": "7195", + "$id": "7205", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94046,7 +94169,7 @@ ] }, "conversation.item.retrieve": { - "$id": "7196", + "$id": "7206", "kind": "model", "name": "RealtimeClientEventConversationItemRetrieve", "namespace": "OpenAI", @@ -94056,17 +94179,17 @@ "discriminatorValue": "conversation.item.retrieve", "decorators": [], "baseModel": { - "$ref": "6945" + "$ref": "6955" }, "properties": [ { - "$id": "7197", + "$id": "7207", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.retrieve`.", "type": { - "$id": "7198", + "$id": "7208", "kind": "enumvalue", "name": "conversation_item_retrieve", "value": "conversation.item.retrieve", @@ -94074,7 +94197,7 @@ "$ref": "1099" }, "enumType": { - "$ref": "6952" + "$ref": "6962" }, "decorators": [] }, @@ -94092,13 +94215,13 @@ "isHttpMetadata": false }, { - "$id": "7199", + "$id": "7209", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to retrieve.", "type": { - "$id": "7200", + "$id": "7210", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94120,7 +94243,7 @@ ] }, "transcription_session.update": { - "$id": "7201", + "$id": "7211", "kind": "model", "name": "RealtimeClientEventTranscriptionSessionUpdate", "namespace": "OpenAI", @@ -94130,17 +94253,17 @@ "discriminatorValue": "transcription_session.update", "decorators": [], "baseModel": { - "$ref": "6945" + "$ref": "6955" }, "properties": [ { - "$id": "7202", + "$id": "7212", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `transcription_session.update`.", "type": { - "$id": "7203", + "$id": "7213", "kind": "enumvalue", "name": "transcription_session_update", "value": "transcription_session.update", @@ -94148,7 +94271,7 @@ "$ref": "1099" }, "enumType": { - "$ref": "6952" + "$ref": "6962" }, "decorators": [] }, @@ -94166,12 +94289,12 @@ "isHttpMetadata": false }, { - "$id": "7204", + "$id": "7214", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$id": "7205", + "$id": "7215", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequest", "namespace": "OpenAI", @@ -94181,13 +94304,13 @@ "decorators": [], "properties": [ { - "$id": "7206", + "$id": "7216", "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": "7207", + "$id": "7217", "kind": "array", "name": "Array43", "valueType": { @@ -94210,7 +94333,7 @@ "isHttpMetadata": false }, { - "$id": "7208", + "$id": "7218", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", @@ -94232,13 +94355,13 @@ "isHttpMetadata": false }, { - "$id": "7209", + "$id": "7219", "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": "7210", + "$id": "7220", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestInputAudioTranscription", "namespace": "OpenAI", @@ -94247,7 +94370,7 @@ "decorators": [], "properties": [ { - "$id": "7211", + "$id": "7221", "kind": "property", "name": "model", "serializedName": "model", @@ -94269,13 +94392,13 @@ "isHttpMetadata": false }, { - "$id": "7212", + "$id": "7222", "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": "7213", + "$id": "7223", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94295,13 +94418,13 @@ "isHttpMetadata": false }, { - "$id": "7214", + "$id": "7224", "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": "7215", + "$id": "7225", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94336,13 +94459,13 @@ "isHttpMetadata": false }, { - "$id": "7216", + "$id": "7226", "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": "7217", + "$id": "7227", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestTurnDetection", "namespace": "OpenAI", @@ -94351,7 +94474,7 @@ "decorators": [], "properties": [ { - "$id": "7218", + "$id": "7228", "kind": "property", "name": "type", "serializedName": "type", @@ -94373,7 +94496,7 @@ "isHttpMetadata": false }, { - "$id": "7219", + "$id": "7229", "kind": "property", "name": "eagerness", "serializedName": "eagerness", @@ -94395,13 +94518,13 @@ "isHttpMetadata": false }, { - "$id": "7220", + "$id": "7230", "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": "7221", + "$id": "7231", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -94421,13 +94544,13 @@ "isHttpMetadata": false }, { - "$id": "7222", + "$id": "7232", "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": "7223", + "$id": "7233", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -94447,13 +94570,13 @@ "isHttpMetadata": false }, { - "$id": "7224", + "$id": "7234", "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": "7225", + "$id": "7235", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -94473,13 +94596,13 @@ "isHttpMetadata": false }, { - "$id": "7226", + "$id": "7236", "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": "7227", + "$id": "7237", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -94499,13 +94622,13 @@ "isHttpMetadata": false }, { - "$id": "7228", + "$id": "7238", "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": "7229", + "$id": "7239", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -94540,16 +94663,16 @@ "isHttpMetadata": false }, { - "$id": "7230", + "$id": "7240", "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": "7231", + "$id": "7241", "kind": "nullable", "type": { - "$id": "7232", + "$id": "7242", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestInputAudioNoiseReduction1", "namespace": "OpenAI", @@ -94558,7 +94681,7 @@ "decorators": [], "properties": [ { - "$id": "7233", + "$id": "7243", "kind": "property", "name": "type", "serializedName": "type", @@ -94597,7 +94720,7 @@ "isHttpMetadata": false }, { - "$id": "7234", + "$id": "7244", "kind": "property", "name": "include", "serializedName": "include", @@ -94619,13 +94742,13 @@ "isHttpMetadata": false }, { - "$id": "7235", + "$id": "7245", "kind": "property", "name": "client_secret", "serializedName": "client_secret", "doc": "Configuration options for the generated client secret.", "type": { - "$id": "7236", + "$id": "7246", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestClientSecret", "namespace": "OpenAI", @@ -94634,13 +94757,13 @@ "decorators": [], "properties": [ { - "$id": "7237", + "$id": "7247", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "Configuration for the ephemeral token expiration.", "type": { - "$id": "7238", + "$id": "7248", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestClientSecretExpiresAt", "namespace": "OpenAI", @@ -94649,7 +94772,7 @@ "decorators": [], "properties": [ { - "$id": "7239", + "$id": "7249", "kind": "property", "name": "anchor", "serializedName": "anchor", @@ -94671,13 +94794,13 @@ "isHttpMetadata": false }, { - "$id": "7240", + "$id": "7250", "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": "7241", + "$id": "7251", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -94746,67 +94869,64 @@ } }, { - "$ref": "6949" - }, - { - "$ref": "6967" + "$ref": "6959" }, { - "$ref": "6978" + "$ref": "6977" }, { - "$ref": "6986" + "$ref": "6988" }, { - "$ref": "6992" + "$ref": "6996" }, { - "$ref": "7007" + "$ref": "7002" }, { - "$ref": "7012" + "$ref": "7017" }, { - "$ref": "7014" + "$ref": "7022" }, { - "$ref": "7021" + "$ref": "7024" }, { - "$ref": "7026" + "$ref": "7031" }, { - "$ref": "7028" + "$ref": "7036" }, { - "$ref": "7042" + "$ref": "7038" }, { - "$ref": "7044" + "$ref": "7052" }, { - "$ref": "7047" + "$ref": "7054" }, { - "$ref": "7055" + "$ref": "7057" }, { - "$ref": "7060" + "$ref": "7065" }, { - "$ref": "7063" + "$ref": "7070" }, { - "$ref": "7066" + "$ref": "7073" }, { - "$ref": "7069" + "$ref": "7076" }, { - "$ref": "7075" + "$ref": "7079" }, { - "$ref": "7079" + "$ref": "7085" }, { "$ref": "7089" @@ -94815,70 +94935,73 @@ "$ref": "7099" }, { - "$ref": "7100" + "$ref": "7109" }, { - "$ref": "7102" + "$ref": "7110" }, { - "$ref": "7113" + "$ref": "7112" }, { - "$ref": "7118" + "$ref": "7123" }, { "$ref": "7128" }, { - "$ref": "7134" + "$ref": "7138" }, { - "$ref": "7138" + "$ref": "7144" }, { "$ref": "7148" }, { - "$ref": "7155" + "$ref": "7158" + }, + { + "$ref": "7165" }, { - "$ref": "7164" + "$ref": "7174" }, { - "$ref": "7169" + "$ref": "7179" }, { - "$ref": "7173" + "$ref": "7183" }, { - "$ref": "7191" + "$ref": "7201" }, { - "$ref": "7196" + "$ref": "7206" }, { - "$ref": "7201" + "$ref": "7211" }, { - "$ref": "7205" + "$ref": "7215" }, { - "$ref": "7210" + "$ref": "7220" }, { - "$ref": "7217" + "$ref": "7227" }, { - "$ref": "7232" + "$ref": "7242" }, { - "$ref": "7236" + "$ref": "7246" }, { - "$ref": "7238" + "$ref": "7248" }, { - "$id": "7242", + "$id": "7252", "kind": "model", "name": "RealtimeServerEvent", "namespace": "OpenAI", @@ -94887,7 +95010,7 @@ "doc": "A realtime server event.", "decorators": [], "discriminatorProperty": { - "$id": "7243", + "$id": "7253", "kind": "property", "name": "type", "serializedName": "type", @@ -94910,15 +95033,15 @@ }, "properties": [ { - "$ref": "7243" + "$ref": "7253" }, { - "$id": "7244", + "$id": "7254", "kind": "property", "name": "event_id", "serializedName": "event_id", "type": { - "$id": "7245", + "$id": "7255", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94940,7 +95063,7 @@ ], "discriminatedSubtypes": { "error": { - "$id": "7246", + "$id": "7256", "kind": "model", "name": "RealtimeServerEventError", "namespace": "OpenAI", @@ -94950,17 +95073,17 @@ "discriminatorValue": "error", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7247", + "$id": "7257", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `error`.", "type": { - "$id": "7248", + "$id": "7258", "kind": "enumvalue", "name": "error", "value": "error", @@ -94968,14 +95091,14 @@ "$ref": "1211" }, "enumType": { - "$id": "7249", + "$id": "7259", "kind": "enum", "decorators": [], "name": "RealtimeServerEventType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "7250", + "$id": "7260", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -94984,445 +95107,445 @@ }, "values": [ { - "$id": "7251", + "$id": "7261", "kind": "enumvalue", "decorators": [], "name": "error", "value": "error", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7252", + "$id": "7262", "kind": "enumvalue", "decorators": [], "name": "session_created", "value": "session.created", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7253", + "$id": "7263", "kind": "enumvalue", "decorators": [], "name": "session_updated", "value": "session.updated", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7254", + "$id": "7264", "kind": "enumvalue", "decorators": [], "name": "conversation_created", "value": "conversation.created", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7255", + "$id": "7265", "kind": "enumvalue", "decorators": [], "name": "conversation_item_input_audio_transcription_completed", "value": "conversation.item.input_audio_transcription.completed", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7256", + "$id": "7266", "kind": "enumvalue", "decorators": [], "name": "conversation_item_input_audio_transcription_delta", "value": "conversation.item.input_audio_transcription.delta", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7257", + "$id": "7267", "kind": "enumvalue", "decorators": [], "name": "conversation_item_input_audio_transcription_failed", "value": "conversation.item.input_audio_transcription.failed", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7258", + "$id": "7268", "kind": "enumvalue", "decorators": [], "name": "conversation_item_created", "value": "conversation.item.created", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7259", + "$id": "7269", "kind": "enumvalue", "decorators": [], "name": "conversation_item_retrieved", "value": "conversation.item.retrieved", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7260", + "$id": "7270", "kind": "enumvalue", "decorators": [], "name": "conversation_item_truncated", "value": "conversation.item.truncated", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7261", + "$id": "7271", "kind": "enumvalue", "decorators": [], "name": "conversation_item_deleted", "value": "conversation.item.deleted", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7262", + "$id": "7272", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_committed", "value": "input_audio_buffer.committed", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7263", + "$id": "7273", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_cleared", "value": "input_audio_buffer.cleared", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7264", + "$id": "7274", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_speech_started", "value": "input_audio_buffer.speech_started", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7265", + "$id": "7275", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_speech_stopped", "value": "input_audio_buffer.speech_stopped", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7266", + "$id": "7276", "kind": "enumvalue", "decorators": [], "name": "output_audio_buffer_cleared", "value": "output_audio_buffer.cleared", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7267", + "$id": "7277", "kind": "enumvalue", "decorators": [], "name": "output_audio_buffer_started", "value": "output_audio_buffer.started", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7268", + "$id": "7278", "kind": "enumvalue", "decorators": [], "name": "output_audio_buffer_stopped", "value": "output_audio_buffer.stopped", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7269", + "$id": "7279", "kind": "enumvalue", "decorators": [], "name": "response_created", "value": "response.created", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7270", + "$id": "7280", "kind": "enumvalue", "decorators": [], "name": "response_done", "value": "response.done", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7271", + "$id": "7281", "kind": "enumvalue", "decorators": [], "name": "response_output_item_added", "value": "response.output_item.added", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7272", + "$id": "7282", "kind": "enumvalue", "decorators": [], "name": "response_output_item_done", "value": "response.output_item.done", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7273", + "$id": "7283", "kind": "enumvalue", "decorators": [], "name": "response_content_part_added", "value": "response.content_part.added", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7274", + "$id": "7284", "kind": "enumvalue", "decorators": [], "name": "response_content_part_done", "value": "response.content_part.done", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7275", + "$id": "7285", "kind": "enumvalue", "decorators": [], "name": "response_text_delta", "value": "response.text.delta", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7276", + "$id": "7286", "kind": "enumvalue", "decorators": [], "name": "response_text_done", "value": "response.text.done", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7277", + "$id": "7287", "kind": "enumvalue", "decorators": [], "name": "response_audio_transcript_delta", "value": "response.audio_transcript.delta", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7278", + "$id": "7288", "kind": "enumvalue", "decorators": [], "name": "response_audio_transcript_done", "value": "response.audio_transcript.done", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7279", + "$id": "7289", "kind": "enumvalue", "decorators": [], "name": "response_audio_delta", "value": "response.audio.delta", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7280", + "$id": "7290", "kind": "enumvalue", "decorators": [], "name": "response_audio_done", "value": "response.audio.done", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7281", + "$id": "7291", "kind": "enumvalue", "decorators": [], "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7282", + "$id": "7292", "kind": "enumvalue", "decorators": [], "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7283", + "$id": "7293", "kind": "enumvalue", "decorators": [], "name": "transcription_session_updated", "value": "transcription_session.updated", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } }, { - "$id": "7284", + "$id": "7294", "kind": "enumvalue", "decorators": [], "name": "rate_limits_updated", "value": "rate_limits.updated", "valueType": { - "$ref": "7250" + "$ref": "7260" }, "enumType": { - "$ref": "7249" + "$ref": "7259" } } ], @@ -95451,13 +95574,13 @@ "isHttpMetadata": false }, { - "$id": "7285", + "$id": "7295", "kind": "property", "name": "error", "serializedName": "error", "doc": "Details of the error.", "type": { - "$id": "7286", + "$id": "7296", "kind": "model", "name": "RealtimeServerEventErrorError", "namespace": "OpenAI", @@ -95466,13 +95589,13 @@ "decorators": [], "properties": [ { - "$id": "7287", + "$id": "7297", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of error (e.g., \"invalid_request_error\", \"server_error\").", "type": { - "$id": "7288", + "$id": "7298", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95492,16 +95615,16 @@ "isHttpMetadata": false }, { - "$id": "7289", + "$id": "7299", "kind": "property", "name": "code", "serializedName": "code", "doc": "Error code, if any.", "type": { - "$id": "7290", + "$id": "7300", "kind": "nullable", "type": { - "$id": "7291", + "$id": "7301", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95523,13 +95646,13 @@ "isHttpMetadata": false }, { - "$id": "7292", + "$id": "7302", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable error message.", "type": { - "$id": "7293", + "$id": "7303", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95549,16 +95672,16 @@ "isHttpMetadata": false }, { - "$id": "7294", + "$id": "7304", "kind": "property", "name": "param", "serializedName": "param", "doc": "Parameter related to the error, if any.", "type": { - "$id": "7295", + "$id": "7305", "kind": "nullable", "type": { - "$id": "7296", + "$id": "7306", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95580,16 +95703,16 @@ "isHttpMetadata": false }, { - "$id": "7297", + "$id": "7307", "kind": "property", "name": "event_id", "serializedName": "event_id", "doc": "The event_id of the client event that caused the error, if applicable.", "type": { - "$id": "7298", + "$id": "7308", "kind": "nullable", "type": { - "$id": "7299", + "$id": "7309", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95628,7 +95751,7 @@ ] }, "session.created": { - "$id": "7300", + "$id": "7310", "kind": "model", "name": "RealtimeServerEventSessionCreated", "namespace": "OpenAI", @@ -95638,17 +95761,17 @@ "discriminatorValue": "session.created", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7301", + "$id": "7311", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `session.created`.", "type": { - "$id": "7302", + "$id": "7312", "kind": "enumvalue", "name": "session_created", "value": "session.created", @@ -95656,7 +95779,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -95674,12 +95797,12 @@ "isHttpMetadata": false }, { - "$id": "7303", + "$id": "7313", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$id": "7304", + "$id": "7314", "kind": "model", "name": "RealtimeResponseSession", "namespace": "OpenAI", @@ -95688,7 +95811,7 @@ "decorators": [], "properties": [ { - "$id": "7305", + "$id": "7315", "kind": "property", "name": "object", "serializedName": "object", @@ -95709,12 +95832,12 @@ "isHttpMetadata": false }, { - "$id": "7306", + "$id": "7316", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "7307", + "$id": "7317", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95734,12 +95857,12 @@ "isHttpMetadata": false }, { - "$id": "7308", + "$id": "7318", "kind": "property", "name": "model", "serializedName": "model", "type": { - "$id": "7309", + "$id": "7319", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95759,12 +95882,12 @@ "isHttpMetadata": false }, { - "$id": "7310", + "$id": "7320", "kind": "property", "name": "modalities", "serializedName": "modalities", "type": { - "$ref": "6969" + "$ref": "6979" }, "optional": false, "readOnly": false, @@ -95780,12 +95903,12 @@ "isHttpMetadata": false }, { - "$id": "7311", + "$id": "7321", "kind": "property", "name": "instructions", "serializedName": "instructions", "type": { - "$id": "7312", + "$id": "7322", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95805,7 +95928,7 @@ "isHttpMetadata": false }, { - "$id": "7313", + "$id": "7323", "kind": "property", "name": "voice", "serializedName": "voice", @@ -95826,7 +95949,7 @@ "isHttpMetadata": false }, { - "$id": "7314", + "$id": "7324", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", @@ -95847,7 +95970,7 @@ "isHttpMetadata": false }, { - "$id": "7315", + "$id": "7325", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", @@ -95868,15 +95991,15 @@ "isHttpMetadata": false }, { - "$id": "7316", + "$id": "7326", "kind": "property", "name": "input_audio_transcription", "serializedName": "input_audio_transcription", "type": { - "$id": "7317", + "$id": "7327", "kind": "nullable", "type": { - "$ref": "6978" + "$ref": "6988" }, "namespace": "OpenAI" }, @@ -95894,12 +96017,12 @@ "isHttpMetadata": false }, { - "$id": "7318", + "$id": "7328", "kind": "property", "name": "turn_detection", "serializedName": "turn_detection", "type": { - "$ref": "6986" + "$ref": "6996" }, "optional": false, "readOnly": false, @@ -95915,12 +96038,12 @@ "isHttpMetadata": false }, { - "$id": "7319", + "$id": "7329", "kind": "property", "name": "input_audio_noise_reduction", "serializedName": "input_audio_noise_reduction", "type": { - "$ref": "7012" + "$ref": "7022" }, "optional": false, "readOnly": false, @@ -95936,12 +96059,12 @@ "isHttpMetadata": false }, { - "$id": "7320", + "$id": "7330", "kind": "property", "name": "tools", "serializedName": "tools", "type": { - "$ref": "7025" + "$ref": "7035" }, "optional": false, "readOnly": false, @@ -95957,12 +96080,12 @@ "isHttpMetadata": false }, { - "$id": "7321", + "$id": "7331", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$ref": "7041" + "$ref": "7051" }, "optional": false, "readOnly": false, @@ -95978,12 +96101,12 @@ "isHttpMetadata": false }, { - "$id": "7322", + "$id": "7332", "kind": "property", "name": "temperature", "serializedName": "temperature", "type": { - "$id": "7323", + "$id": "7333", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -96003,20 +96126,20 @@ "isHttpMetadata": false }, { - "$id": "7324", + "$id": "7334", "kind": "property", "name": "max_response_output_tokens", "serializedName": "max_response_output_tokens", "type": { - "$id": "7325", + "$id": "7335", "kind": "nullable", "type": { - "$id": "7326", + "$id": "7336", "kind": "union", "name": "RealtimeResponseSessionMaxResponseOutputTokens", "variantTypes": [ { - "$id": "7327", + "$id": "7337", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96062,7 +96185,7 @@ ] }, "session.updated": { - "$id": "7328", + "$id": "7338", "kind": "model", "name": "RealtimeServerEventSessionUpdated", "namespace": "OpenAI", @@ -96072,17 +96195,17 @@ "discriminatorValue": "session.updated", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7329", + "$id": "7339", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `session.updated`.", "type": { - "$id": "7330", + "$id": "7340", "kind": "enumvalue", "name": "session_updated", "value": "session.updated", @@ -96090,7 +96213,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -96108,12 +96231,12 @@ "isHttpMetadata": false }, { - "$id": "7331", + "$id": "7341", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$ref": "7304" + "$ref": "7314" }, "optional": false, "readOnly": false, @@ -96131,7 +96254,7 @@ ] }, "conversation.created": { - "$id": "7332", + "$id": "7342", "kind": "model", "name": "RealtimeServerEventConversationCreated", "namespace": "OpenAI", @@ -96141,17 +96264,17 @@ "discriminatorValue": "conversation.created", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7333", + "$id": "7343", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.created`.", "type": { - "$id": "7334", + "$id": "7344", "kind": "enumvalue", "name": "conversation_created", "value": "conversation.created", @@ -96159,7 +96282,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -96177,13 +96300,13 @@ "isHttpMetadata": false }, { - "$id": "7335", + "$id": "7345", "kind": "property", "name": "conversation", "serializedName": "conversation", "doc": "The conversation resource.", "type": { - "$id": "7336", + "$id": "7346", "kind": "model", "name": "RealtimeServerEventConversationCreatedConversation", "namespace": "OpenAI", @@ -96192,13 +96315,13 @@ "decorators": [], "properties": [ { - "$id": "7337", + "$id": "7347", "kind": "property", "name": "id", "serializedName": "id", "doc": "The unique ID of the conversation.", "type": { - "$id": "7338", + "$id": "7348", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96218,13 +96341,13 @@ "isHttpMetadata": false }, { - "$id": "7339", + "$id": "7349", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, must be `realtime.conversation`.", "type": { - "$id": "7340", + "$id": "7350", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96261,7 +96384,7 @@ ] }, "input_audio_buffer.committed": { - "$id": "7341", + "$id": "7351", "kind": "model", "name": "RealtimeServerEventInputAudioBufferCommitted", "namespace": "OpenAI", @@ -96271,17 +96394,17 @@ "discriminatorValue": "input_audio_buffer.committed", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7342", + "$id": "7352", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.committed`.", "type": { - "$id": "7343", + "$id": "7353", "kind": "enumvalue", "name": "input_audio_buffer_committed", "value": "input_audio_buffer.committed", @@ -96289,7 +96412,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -96307,13 +96430,13 @@ "isHttpMetadata": false }, { - "$id": "7344", + "$id": "7354", "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": "7345", + "$id": "7355", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96333,13 +96456,13 @@ "isHttpMetadata": false }, { - "$id": "7346", + "$id": "7356", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item that will be created.", "type": { - "$id": "7347", + "$id": "7357", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96361,7 +96484,7 @@ ] }, "input_audio_buffer.cleared": { - "$id": "7348", + "$id": "7358", "kind": "model", "name": "RealtimeServerEventInputAudioBufferCleared", "namespace": "OpenAI", @@ -96371,17 +96494,17 @@ "discriminatorValue": "input_audio_buffer.cleared", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7349", + "$id": "7359", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.cleared`.", "type": { - "$id": "7350", + "$id": "7360", "kind": "enumvalue", "name": "input_audio_buffer_cleared", "value": "input_audio_buffer.cleared", @@ -96389,7 +96512,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -96409,7 +96532,7 @@ ] }, "input_audio_buffer.speech_started": { - "$id": "7351", + "$id": "7361", "kind": "model", "name": "RealtimeServerEventInputAudioBufferSpeechStarted", "namespace": "OpenAI", @@ -96419,17 +96542,17 @@ "discriminatorValue": "input_audio_buffer.speech_started", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7352", + "$id": "7362", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.speech_started`.", "type": { - "$id": "7353", + "$id": "7363", "kind": "enumvalue", "name": "input_audio_buffer_speech_started", "value": "input_audio_buffer.speech_started", @@ -96437,7 +96560,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -96455,13 +96578,13 @@ "isHttpMetadata": false }, { - "$id": "7354", + "$id": "7364", "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": "7355", + "$id": "7365", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96481,13 +96604,13 @@ "isHttpMetadata": false }, { - "$id": "7356", + "$id": "7366", "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": "7357", + "$id": "7367", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96509,7 +96632,7 @@ ] }, "input_audio_buffer.speech_stopped": { - "$id": "7358", + "$id": "7368", "kind": "model", "name": "RealtimeServerEventInputAudioBufferSpeechStopped", "namespace": "OpenAI", @@ -96519,17 +96642,17 @@ "discriminatorValue": "input_audio_buffer.speech_stopped", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7359", + "$id": "7369", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.speech_stopped`.", "type": { - "$id": "7360", + "$id": "7370", "kind": "enumvalue", "name": "input_audio_buffer_speech_stopped", "value": "input_audio_buffer.speech_stopped", @@ -96537,7 +96660,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -96555,13 +96678,13 @@ "isHttpMetadata": false }, { - "$id": "7361", + "$id": "7371", "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": "7362", + "$id": "7372", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96581,13 +96704,13 @@ "isHttpMetadata": false }, { - "$id": "7363", + "$id": "7373", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item that will be created.", "type": { - "$id": "7364", + "$id": "7374", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96609,7 +96732,7 @@ ] }, "output_audio_buffer.cleared": { - "$id": "7365", + "$id": "7375", "kind": "model", "name": "RealtimeServerEventOutputAudioBufferCleared", "namespace": "OpenAI", @@ -96619,17 +96742,17 @@ "discriminatorValue": "output_audio_buffer.cleared", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7366", + "$id": "7376", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.cleared`.", "type": { - "$id": "7367", + "$id": "7377", "kind": "enumvalue", "name": "output_audio_buffer_cleared", "value": "output_audio_buffer.cleared", @@ -96637,7 +96760,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -96655,13 +96778,13 @@ "isHttpMetadata": false }, { - "$id": "7368", + "$id": "7378", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The unique ID of the response that produced the audio.", "type": { - "$id": "7369", + "$id": "7379", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96683,7 +96806,7 @@ ] }, "output_audio_buffer.started": { - "$id": "7370", + "$id": "7380", "kind": "model", "name": "RealtimeServerEventOutputAudioBufferStarted", "namespace": "OpenAI", @@ -96693,17 +96816,17 @@ "discriminatorValue": "output_audio_buffer.started", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7371", + "$id": "7381", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.started`.", "type": { - "$id": "7372", + "$id": "7382", "kind": "enumvalue", "name": "output_audio_buffer_started", "value": "output_audio_buffer.started", @@ -96711,7 +96834,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -96729,13 +96852,13 @@ "isHttpMetadata": false }, { - "$id": "7373", + "$id": "7383", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The unique ID of the response that produced the audio.", "type": { - "$id": "7374", + "$id": "7384", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96757,7 +96880,7 @@ ] }, "output_audio_buffer.stopped": { - "$id": "7375", + "$id": "7385", "kind": "model", "name": "RealtimeServerEventOutputAudioBufferStopped", "namespace": "OpenAI", @@ -96767,17 +96890,17 @@ "discriminatorValue": "output_audio_buffer.stopped", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7376", + "$id": "7386", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.stopped`.", "type": { - "$id": "7377", + "$id": "7387", "kind": "enumvalue", "name": "output_audio_buffer_stopped", "value": "output_audio_buffer.stopped", @@ -96785,7 +96908,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -96803,13 +96926,13 @@ "isHttpMetadata": false }, { - "$id": "7378", + "$id": "7388", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The unique ID of the response that produced the audio.", "type": { - "$id": "7379", + "$id": "7389", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96831,7 +96954,7 @@ ] }, "conversation.item.created": { - "$id": "7380", + "$id": "7390", "kind": "model", "name": "RealtimeServerEventConversationItemCreated", "namespace": "OpenAI", @@ -96841,17 +96964,17 @@ "discriminatorValue": "conversation.item.created", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7381", + "$id": "7391", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.created`.", "type": { - "$id": "7382", + "$id": "7392", "kind": "enumvalue", "name": "conversation_item_created", "value": "conversation.item.created", @@ -96859,7 +96982,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -96877,13 +97000,13 @@ "isHttpMetadata": false }, { - "$id": "7383", + "$id": "7393", "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": "7384", + "$id": "7394", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96903,12 +97026,12 @@ "isHttpMetadata": false }, { - "$id": "7385", + "$id": "7395", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$id": "7386", + "$id": "7396", "kind": "model", "name": "RealtimeConversationResponseItem", "namespace": "OpenAI", @@ -96916,7 +97039,7 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "7387", + "$id": "7397", "kind": "property", "name": "type", "serializedName": "type", @@ -96938,7 +97061,7 @@ }, "properties": [ { - "$id": "7388", + "$id": "7398", "kind": "property", "name": "object", "serializedName": "object", @@ -96959,18 +97082,18 @@ "isHttpMetadata": false }, { - "$ref": "7387" + "$ref": "7397" }, { - "$id": "7389", + "$id": "7399", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "7390", + "$id": "7400", "kind": "nullable", "type": { - "$id": "7391", + "$id": "7401", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96994,7 +97117,7 @@ ], "discriminatedSubtypes": { "message": { - "$id": "7392", + "$id": "7402", "kind": "model", "name": "RealtimeResponseMessageItem", "namespace": "OpenAI", @@ -97003,16 +97126,16 @@ "discriminatorValue": "message", "decorators": [], "baseModel": { - "$ref": "7386" + "$ref": "7396" }, "properties": [ { - "$id": "7393", + "$id": "7403", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "7082" + "$ref": "7092" }, "optional": false, "readOnly": false, @@ -97028,7 +97151,7 @@ "isHttpMetadata": false }, { - "$id": "7394", + "$id": "7404", "kind": "property", "name": "role", "serializedName": "role", @@ -97049,16 +97172,16 @@ "isHttpMetadata": false }, { - "$id": "7395", + "$id": "7405", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "7396", + "$id": "7406", "kind": "array", "name": "ArrayRealtimeContentPart", "valueType": { - "$ref": "7100" + "$ref": "7110" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -97077,7 +97200,7 @@ "isHttpMetadata": false }, { - "$id": "7397", + "$id": "7407", "kind": "property", "name": "status", "serializedName": "status", @@ -97100,7 +97223,7 @@ ] }, "function_call": { - "$id": "7398", + "$id": "7408", "kind": "model", "name": "RealtimeResponseFunctionCallItem", "namespace": "OpenAI", @@ -97109,16 +97232,16 @@ "discriminatorValue": "function_call", "decorators": [], "baseModel": { - "$ref": "7386" + "$ref": "7396" }, "properties": [ { - "$id": "7399", + "$id": "7409", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "7140" + "$ref": "7150" }, "optional": false, "readOnly": false, @@ -97134,12 +97257,12 @@ "isHttpMetadata": false }, { - "$id": "7400", + "$id": "7410", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "7401", + "$id": "7411", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97159,12 +97282,12 @@ "isHttpMetadata": false }, { - "$id": "7402", + "$id": "7412", "kind": "property", "name": "call_id", "serializedName": "call_id", "type": { - "$id": "7403", + "$id": "7413", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97184,12 +97307,12 @@ "isHttpMetadata": false }, { - "$id": "7404", + "$id": "7414", "kind": "property", "name": "arguments", "serializedName": "arguments", "type": { - "$id": "7405", + "$id": "7415", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97209,7 +97332,7 @@ "isHttpMetadata": false }, { - "$id": "7406", + "$id": "7416", "kind": "property", "name": "status", "serializedName": "status", @@ -97232,7 +97355,7 @@ ] }, "function_call_output": { - "$id": "7407", + "$id": "7417", "kind": "model", "name": "RealtimeResponseFunctionCallOutputItem", "namespace": "OpenAI", @@ -97241,16 +97364,16 @@ "discriminatorValue": "function_call_output", "decorators": [], "baseModel": { - "$ref": "7386" + "$ref": "7396" }, "properties": [ { - "$id": "7408", + "$id": "7418", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "7150" + "$ref": "7160" }, "optional": false, "readOnly": false, @@ -97266,12 +97389,12 @@ "isHttpMetadata": false }, { - "$id": "7409", + "$id": "7419", "kind": "property", "name": "call_id", "serializedName": "call_id", "type": { - "$id": "7410", + "$id": "7420", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97291,12 +97414,12 @@ "isHttpMetadata": false }, { - "$id": "7411", + "$id": "7421", "kind": "property", "name": "output", "serializedName": "output", "type": { - "$id": "7412", + "$id": "7422", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97335,7 +97458,7 @@ ] }, "conversation.item.input_audio_transcription.completed": { - "$id": "7413", + "$id": "7423", "kind": "model", "name": "RealtimeServerEventConversationItemInputAudioTranscriptionCompleted", "namespace": "OpenAI", @@ -97345,17 +97468,17 @@ "discriminatorValue": "conversation.item.input_audio_transcription.completed", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7414", + "$id": "7424", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be\n`conversation.item.input_audio_transcription.completed`.", "type": { - "$id": "7415", + "$id": "7425", "kind": "enumvalue", "name": "conversation_item_input_audio_transcription_completed", "value": "conversation.item.input_audio_transcription.completed", @@ -97363,7 +97486,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -97381,13 +97504,13 @@ "isHttpMetadata": false }, { - "$id": "7416", + "$id": "7426", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item containing the audio.", "type": { - "$id": "7417", + "$id": "7427", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97407,13 +97530,13 @@ "isHttpMetadata": false }, { - "$id": "7418", + "$id": "7428", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part containing the audio.", "type": { - "$id": "7419", + "$id": "7429", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97433,13 +97556,13 @@ "isHttpMetadata": false }, { - "$id": "7420", + "$id": "7430", "kind": "property", "name": "transcript", "serializedName": "transcript", "doc": "The transcribed text.", "type": { - "$id": "7421", + "$id": "7431", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97459,20 +97582,20 @@ "isHttpMetadata": false }, { - "$id": "7422", + "$id": "7432", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "doc": "The log probabilities of the transcription.", "type": { - "$id": "7423", + "$id": "7433", "kind": "nullable", "type": { - "$id": "7424", + "$id": "7434", "kind": "array", "name": "ArrayLogProbProperties", "valueType": { - "$id": "7425", + "$id": "7435", "kind": "model", "name": "LogProbProperties", "namespace": "OpenAI", @@ -97482,13 +97605,13 @@ "decorators": [], "properties": [ { - "$id": "7426", + "$id": "7436", "kind": "property", "name": "token", "serializedName": "token", "doc": "The token that was used to generate the log probability.", "type": { - "$id": "7427", + "$id": "7437", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97508,13 +97631,13 @@ "isHttpMetadata": false }, { - "$id": "7428", + "$id": "7438", "kind": "property", "name": "logprob", "serializedName": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "7429", + "$id": "7439", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -97534,7 +97657,7 @@ "isHttpMetadata": false }, { - "$id": "7430", + "$id": "7440", "kind": "property", "name": "bytes", "serializedName": "bytes", @@ -97578,7 +97701,7 @@ ] }, "conversation.item.input_audio_transcription.failed": { - "$id": "7431", + "$id": "7441", "kind": "model", "name": "RealtimeServerEventConversationItemInputAudioTranscriptionFailed", "namespace": "OpenAI", @@ -97588,17 +97711,17 @@ "discriminatorValue": "conversation.item.input_audio_transcription.failed", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7432", + "$id": "7442", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be\n`conversation.item.input_audio_transcription.failed`.", "type": { - "$id": "7433", + "$id": "7443", "kind": "enumvalue", "name": "conversation_item_input_audio_transcription_failed", "value": "conversation.item.input_audio_transcription.failed", @@ -97606,7 +97729,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -97624,13 +97747,13 @@ "isHttpMetadata": false }, { - "$id": "7434", + "$id": "7444", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item.", "type": { - "$id": "7435", + "$id": "7445", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97650,13 +97773,13 @@ "isHttpMetadata": false }, { - "$id": "7436", + "$id": "7446", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part containing the audio.", "type": { - "$id": "7437", + "$id": "7447", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97676,13 +97799,13 @@ "isHttpMetadata": false }, { - "$id": "7438", + "$id": "7448", "kind": "property", "name": "error", "serializedName": "error", "doc": "Details of the transcription error.", "type": { - "$id": "7439", + "$id": "7449", "kind": "model", "name": "RealtimeServerEventConversationItemInputAudioTranscriptionFailedError", "namespace": "OpenAI", @@ -97691,13 +97814,13 @@ "decorators": [], "properties": [ { - "$id": "7440", + "$id": "7450", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of error.", "type": { - "$id": "7441", + "$id": "7451", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97717,13 +97840,13 @@ "isHttpMetadata": false }, { - "$id": "7442", + "$id": "7452", "kind": "property", "name": "code", "serializedName": "code", "doc": "Error code, if any.", "type": { - "$id": "7443", + "$id": "7453", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97743,13 +97866,13 @@ "isHttpMetadata": false }, { - "$id": "7444", + "$id": "7454", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable error message.", "type": { - "$id": "7445", + "$id": "7455", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97769,13 +97892,13 @@ "isHttpMetadata": false }, { - "$id": "7446", + "$id": "7456", "kind": "property", "name": "param", "serializedName": "param", "doc": "Parameter related to the error, if any.", "type": { - "$id": "7447", + "$id": "7457", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97812,7 +97935,7 @@ ] }, "conversation.item.truncated": { - "$id": "7448", + "$id": "7458", "kind": "model", "name": "RealtimeServerEventConversationItemTruncated", "namespace": "OpenAI", @@ -97822,17 +97945,17 @@ "discriminatorValue": "conversation.item.truncated", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7449", + "$id": "7459", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.truncated`.", "type": { - "$id": "7450", + "$id": "7460", "kind": "enumvalue", "name": "conversation_item_truncated", "value": "conversation.item.truncated", @@ -97840,7 +97963,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -97858,13 +97981,13 @@ "isHttpMetadata": false }, { - "$id": "7451", + "$id": "7461", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the assistant message item that was truncated.", "type": { - "$id": "7452", + "$id": "7462", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97884,13 +98007,13 @@ "isHttpMetadata": false }, { - "$id": "7453", + "$id": "7463", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part that was truncated.", "type": { - "$id": "7454", + "$id": "7464", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97910,13 +98033,13 @@ "isHttpMetadata": false }, { - "$id": "7455", + "$id": "7465", "kind": "property", "name": "audio_end_ms", "serializedName": "audio_end_ms", "doc": "The duration up to which the audio was truncated, in milliseconds.", "type": { - "$id": "7456", + "$id": "7466", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97938,7 +98061,7 @@ ] }, "conversation.item.deleted": { - "$id": "7457", + "$id": "7467", "kind": "model", "name": "RealtimeServerEventConversationItemDeleted", "namespace": "OpenAI", @@ -97948,17 +98071,17 @@ "discriminatorValue": "conversation.item.deleted", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7458", + "$id": "7468", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.deleted`.", "type": { - "$id": "7459", + "$id": "7469", "kind": "enumvalue", "name": "conversation_item_deleted", "value": "conversation.item.deleted", @@ -97966,7 +98089,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -97984,13 +98107,13 @@ "isHttpMetadata": false }, { - "$id": "7460", + "$id": "7470", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item that was deleted.", "type": { - "$id": "7461", + "$id": "7471", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98012,7 +98135,7 @@ ] }, "response.created": { - "$id": "7462", + "$id": "7472", "kind": "model", "name": "RealtimeServerEventResponseCreated", "namespace": "OpenAI", @@ -98022,17 +98145,17 @@ "discriminatorValue": "response.created", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7463", + "$id": "7473", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.created`.", "type": { - "$id": "7464", + "$id": "7474", "kind": "enumvalue", "name": "response_created", "value": "response.created", @@ -98040,7 +98163,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -98058,12 +98181,12 @@ "isHttpMetadata": false }, { - "$id": "7465", + "$id": "7475", "kind": "property", "name": "response", "serializedName": "response", "type": { - "$id": "7466", + "$id": "7476", "kind": "model", "name": "RealtimeResponse", "namespace": "OpenAI", @@ -98073,13 +98196,13 @@ "decorators": [], "properties": [ { - "$id": "7467", + "$id": "7477", "kind": "property", "name": "id", "serializedName": "id", "doc": "The unique ID of the response.", "type": { - "$id": "7468", + "$id": "7478", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98099,7 +98222,7 @@ "isHttpMetadata": false }, { - "$id": "7469", + "$id": "7479", "kind": "property", "name": "object", "serializedName": "object", @@ -98121,7 +98244,7 @@ "isHttpMetadata": false }, { - "$id": "7470", + "$id": "7480", "kind": "property", "name": "status", "serializedName": "status", @@ -98143,13 +98266,13 @@ "isHttpMetadata": false }, { - "$id": "7471", + "$id": "7481", "kind": "property", "name": "status_details", "serializedName": "status_details", "doc": "Additional details about the status.", "type": { - "$id": "7472", + "$id": "7482", "kind": "model", "name": "RealtimeResponseStatusDetails", "namespace": "OpenAI", @@ -98158,7 +98281,7 @@ "decorators": [], "properties": [ { - "$id": "7473", + "$id": "7483", "kind": "property", "name": "type", "serializedName": "type", @@ -98180,7 +98303,7 @@ "isHttpMetadata": false }, { - "$id": "7474", + "$id": "7484", "kind": "property", "name": "reason", "serializedName": "reason", @@ -98202,13 +98325,13 @@ "isHttpMetadata": false }, { - "$id": "7475", + "$id": "7485", "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": "7476", + "$id": "7486", "kind": "model", "name": "RealtimeResponseStatusDetailsError", "namespace": "OpenAI", @@ -98217,13 +98340,13 @@ "decorators": [], "properties": [ { - "$id": "7477", + "$id": "7487", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of error.", "type": { - "$id": "7478", + "$id": "7488", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98243,13 +98366,13 @@ "isHttpMetadata": false }, { - "$id": "7479", + "$id": "7489", "kind": "property", "name": "code", "serializedName": "code", "doc": "Error code, if any.", "type": { - "$id": "7480", + "$id": "7490", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98299,17 +98422,17 @@ "isHttpMetadata": false }, { - "$id": "7481", + "$id": "7491", "kind": "property", "name": "output", "serializedName": "output", "doc": "The list of output items generated by the response.", "type": { - "$id": "7482", + "$id": "7492", "kind": "array", "name": "ArrayRealtimeConversationResponseItem", "valueType": { - "$ref": "7386" + "$ref": "7396" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -98328,7 +98451,7 @@ "isHttpMetadata": false }, { - "$id": "7483", + "$id": "7493", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -98350,13 +98473,13 @@ "isHttpMetadata": false }, { - "$id": "7484", + "$id": "7494", "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": "7485", + "$id": "7495", "kind": "model", "name": "RealtimeResponseUsage", "namespace": "OpenAI", @@ -98365,13 +98488,13 @@ "decorators": [], "properties": [ { - "$id": "7486", + "$id": "7496", "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": "7487", + "$id": "7497", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98391,13 +98514,13 @@ "isHttpMetadata": false }, { - "$id": "7488", + "$id": "7498", "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": "7489", + "$id": "7499", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98417,13 +98540,13 @@ "isHttpMetadata": false }, { - "$id": "7490", + "$id": "7500", "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": "7491", + "$id": "7501", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98443,13 +98566,13 @@ "isHttpMetadata": false }, { - "$id": "7492", + "$id": "7502", "kind": "property", "name": "input_token_details", "serializedName": "input_token_details", "doc": "Details about the input tokens used in the Response.", "type": { - "$id": "7493", + "$id": "7503", "kind": "model", "name": "RealtimeResponseUsageInputTokenDetails", "namespace": "OpenAI", @@ -98458,13 +98581,13 @@ "decorators": [], "properties": [ { - "$id": "7494", + "$id": "7504", "kind": "property", "name": "cached_tokens", "serializedName": "cached_tokens", "doc": "The number of cached tokens used in the Response.", "type": { - "$id": "7495", + "$id": "7505", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98484,13 +98607,13 @@ "isHttpMetadata": false }, { - "$id": "7496", + "$id": "7506", "kind": "property", "name": "text_tokens", "serializedName": "text_tokens", "doc": "The number of text tokens used in the Response.", "type": { - "$id": "7497", + "$id": "7507", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98510,13 +98633,13 @@ "isHttpMetadata": false }, { - "$id": "7498", + "$id": "7508", "kind": "property", "name": "audio_tokens", "serializedName": "audio_tokens", "doc": "The number of audio tokens used in the Response.", "type": { - "$id": "7499", + "$id": "7509", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98551,13 +98674,13 @@ "isHttpMetadata": false }, { - "$id": "7500", + "$id": "7510", "kind": "property", "name": "output_token_details", "serializedName": "output_token_details", "doc": "Details about the output tokens used in the Response.", "type": { - "$id": "7501", + "$id": "7511", "kind": "model", "name": "RealtimeResponseUsageOutputTokenDetails", "namespace": "OpenAI", @@ -98566,13 +98689,13 @@ "decorators": [], "properties": [ { - "$id": "7502", + "$id": "7512", "kind": "property", "name": "text_tokens", "serializedName": "text_tokens", "doc": "The number of text tokens used in the Response.", "type": { - "$id": "7503", + "$id": "7513", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98592,13 +98715,13 @@ "isHttpMetadata": false }, { - "$id": "7504", + "$id": "7514", "kind": "property", "name": "audio_tokens", "serializedName": "audio_tokens", "doc": "The number of audio tokens used in the Response.", "type": { - "$id": "7505", + "$id": "7515", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98648,13 +98771,13 @@ "isHttpMetadata": false }, { - "$id": "7506", + "$id": "7516", "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": "7507", + "$id": "7517", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98674,7 +98797,7 @@ "isHttpMetadata": false }, { - "$id": "7508", + "$id": "7518", "kind": "property", "name": "voice", "serializedName": "voice", @@ -98696,13 +98819,13 @@ "isHttpMetadata": false }, { - "$id": "7509", + "$id": "7519", "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": "7510", + "$id": "7520", "kind": "array", "name": "Array44", "valueType": { @@ -98725,7 +98848,7 @@ "isHttpMetadata": false }, { - "$id": "7511", + "$id": "7521", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", @@ -98747,13 +98870,13 @@ "isHttpMetadata": false }, { - "$id": "7512", + "$id": "7522", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Sampling temperature for the model, limited to [0.6, 1.2]. Defaults to 0.8.", "type": { - "$id": "7513", + "$id": "7523", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -98773,18 +98896,18 @@ "isHttpMetadata": false }, { - "$id": "7514", + "$id": "7524", "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": "7515", + "$id": "7525", "kind": "union", "name": "RealtimeResponseMaxOutputTokens", "variantTypes": [ { - "$id": "7516", + "$id": "7526", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98828,7 +98951,7 @@ ] }, "response.done": { - "$id": "7517", + "$id": "7527", "kind": "model", "name": "RealtimeServerEventResponseDone", "namespace": "OpenAI", @@ -98838,17 +98961,17 @@ "discriminatorValue": "response.done", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7518", + "$id": "7528", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.done`.", "type": { - "$id": "7519", + "$id": "7529", "kind": "enumvalue", "name": "response_done", "value": "response.done", @@ -98856,7 +98979,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -98874,12 +98997,12 @@ "isHttpMetadata": false }, { - "$id": "7520", + "$id": "7530", "kind": "property", "name": "response", "serializedName": "response", "type": { - "$ref": "7466" + "$ref": "7476" }, "optional": false, "readOnly": false, @@ -98897,7 +99020,7 @@ ] }, "response.output_item.added": { - "$id": "7521", + "$id": "7531", "kind": "model", "name": "RealtimeServerEventResponseOutputItemAdded", "namespace": "OpenAI", @@ -98907,17 +99030,17 @@ "discriminatorValue": "response.output_item.added", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7522", + "$id": "7532", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.output_item.added`.", "type": { - "$id": "7523", + "$id": "7533", "kind": "enumvalue", "name": "response_output_item_added", "value": "response.output_item.added", @@ -98925,7 +99048,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -98943,13 +99066,13 @@ "isHttpMetadata": false }, { - "$id": "7524", + "$id": "7534", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the Response to which the item belongs.", "type": { - "$id": "7525", + "$id": "7535", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98969,13 +99092,13 @@ "isHttpMetadata": false }, { - "$id": "7526", + "$id": "7536", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the Response.", "type": { - "$id": "7527", + "$id": "7537", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98995,12 +99118,12 @@ "isHttpMetadata": false }, { - "$id": "7528", + "$id": "7538", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$ref": "7386" + "$ref": "7396" }, "optional": false, "readOnly": false, @@ -99018,7 +99141,7 @@ ] }, "response.output_item.done": { - "$id": "7529", + "$id": "7539", "kind": "model", "name": "RealtimeServerEventResponseOutputItemDone", "namespace": "OpenAI", @@ -99028,17 +99151,17 @@ "discriminatorValue": "response.output_item.done", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7530", + "$id": "7540", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.output_item.done`.", "type": { - "$id": "7531", + "$id": "7541", "kind": "enumvalue", "name": "response_output_item_done", "value": "response.output_item.done", @@ -99046,7 +99169,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -99064,13 +99187,13 @@ "isHttpMetadata": false }, { - "$id": "7532", + "$id": "7542", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the Response to which the item belongs.", "type": { - "$id": "7533", + "$id": "7543", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99090,13 +99213,13 @@ "isHttpMetadata": false }, { - "$id": "7534", + "$id": "7544", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the Response.", "type": { - "$id": "7535", + "$id": "7545", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99116,12 +99239,12 @@ "isHttpMetadata": false }, { - "$id": "7536", + "$id": "7546", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$ref": "7386" + "$ref": "7396" }, "optional": false, "readOnly": false, @@ -99139,7 +99262,7 @@ ] }, "response.content_part.added": { - "$id": "7537", + "$id": "7547", "kind": "model", "name": "RealtimeServerEventResponseContentPartAdded", "namespace": "OpenAI", @@ -99149,17 +99272,17 @@ "discriminatorValue": "response.content_part.added", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7538", + "$id": "7548", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.content_part.added`.", "type": { - "$id": "7539", + "$id": "7549", "kind": "enumvalue", "name": "response_content_part_added", "value": "response.content_part.added", @@ -99167,7 +99290,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -99185,13 +99308,13 @@ "isHttpMetadata": false }, { - "$id": "7540", + "$id": "7550", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7541", + "$id": "7551", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99211,13 +99334,13 @@ "isHttpMetadata": false }, { - "$id": "7542", + "$id": "7552", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to which the content part was added.", "type": { - "$id": "7543", + "$id": "7553", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99237,13 +99360,13 @@ "isHttpMetadata": false }, { - "$id": "7544", + "$id": "7554", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7545", + "$id": "7555", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99263,13 +99386,13 @@ "isHttpMetadata": false }, { - "$id": "7546", + "$id": "7556", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7547", + "$id": "7557", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99289,13 +99412,13 @@ "isHttpMetadata": false }, { - "$id": "7548", + "$id": "7558", "kind": "property", "name": "part", "serializedName": "part", "doc": "The content part that was added.", "type": { - "$ref": "7100" + "$ref": "7110" }, "optional": false, "readOnly": false, @@ -99313,7 +99436,7 @@ ] }, "response.content_part.done": { - "$id": "7549", + "$id": "7559", "kind": "model", "name": "RealtimeServerEventResponseContentPartDone", "namespace": "OpenAI", @@ -99323,17 +99446,17 @@ "discriminatorValue": "response.content_part.done", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7550", + "$id": "7560", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.content_part.done`.", "type": { - "$id": "7551", + "$id": "7561", "kind": "enumvalue", "name": "response_content_part_done", "value": "response.content_part.done", @@ -99341,7 +99464,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -99359,13 +99482,13 @@ "isHttpMetadata": false }, { - "$id": "7552", + "$id": "7562", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7553", + "$id": "7563", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99385,13 +99508,13 @@ "isHttpMetadata": false }, { - "$id": "7554", + "$id": "7564", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7555", + "$id": "7565", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99411,13 +99534,13 @@ "isHttpMetadata": false }, { - "$id": "7556", + "$id": "7566", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7557", + "$id": "7567", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99437,13 +99560,13 @@ "isHttpMetadata": false }, { - "$id": "7558", + "$id": "7568", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7559", + "$id": "7569", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99463,13 +99586,13 @@ "isHttpMetadata": false }, { - "$id": "7560", + "$id": "7570", "kind": "property", "name": "part", "serializedName": "part", "doc": "The content part that is done.", "type": { - "$ref": "7100" + "$ref": "7110" }, "optional": false, "readOnly": false, @@ -99487,7 +99610,7 @@ ] }, "response.text.delta": { - "$id": "7561", + "$id": "7571", "kind": "model", "name": "RealtimeServerEventResponseTextDelta", "namespace": "OpenAI", @@ -99497,17 +99620,17 @@ "discriminatorValue": "response.text.delta", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7562", + "$id": "7572", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.text.delta`.", "type": { - "$id": "7563", + "$id": "7573", "kind": "enumvalue", "name": "response_text_delta", "value": "response.text.delta", @@ -99515,7 +99638,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -99533,13 +99656,13 @@ "isHttpMetadata": false }, { - "$id": "7564", + "$id": "7574", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7565", + "$id": "7575", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99559,13 +99682,13 @@ "isHttpMetadata": false }, { - "$id": "7566", + "$id": "7576", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7567", + "$id": "7577", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99585,13 +99708,13 @@ "isHttpMetadata": false }, { - "$id": "7568", + "$id": "7578", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7569", + "$id": "7579", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99611,13 +99734,13 @@ "isHttpMetadata": false }, { - "$id": "7570", + "$id": "7580", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7571", + "$id": "7581", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99637,13 +99760,13 @@ "isHttpMetadata": false }, { - "$id": "7572", + "$id": "7582", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The text delta.", "type": { - "$id": "7573", + "$id": "7583", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99665,7 +99788,7 @@ ] }, "response.text.done": { - "$id": "7574", + "$id": "7584", "kind": "model", "name": "RealtimeServerEventResponseTextDone", "namespace": "OpenAI", @@ -99675,17 +99798,17 @@ "discriminatorValue": "response.text.done", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7575", + "$id": "7585", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.text.done`.", "type": { - "$id": "7576", + "$id": "7586", "kind": "enumvalue", "name": "response_text_done", "value": "response.text.done", @@ -99693,7 +99816,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -99711,13 +99834,13 @@ "isHttpMetadata": false }, { - "$id": "7577", + "$id": "7587", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7578", + "$id": "7588", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99737,13 +99860,13 @@ "isHttpMetadata": false }, { - "$id": "7579", + "$id": "7589", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7580", + "$id": "7590", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99763,13 +99886,13 @@ "isHttpMetadata": false }, { - "$id": "7581", + "$id": "7591", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7582", + "$id": "7592", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99789,13 +99912,13 @@ "isHttpMetadata": false }, { - "$id": "7583", + "$id": "7593", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7584", + "$id": "7594", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99815,13 +99938,13 @@ "isHttpMetadata": false }, { - "$id": "7585", + "$id": "7595", "kind": "property", "name": "text", "serializedName": "text", "doc": "The final text content.", "type": { - "$id": "7586", + "$id": "7596", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99843,7 +99966,7 @@ ] }, "response.audio_transcript.delta": { - "$id": "7587", + "$id": "7597", "kind": "model", "name": "RealtimeServerEventResponseAudioTranscriptDelta", "namespace": "OpenAI", @@ -99853,17 +99976,17 @@ "discriminatorValue": "response.audio_transcript.delta", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7588", + "$id": "7598", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.audio_transcript.delta`.", "type": { - "$id": "7589", + "$id": "7599", "kind": "enumvalue", "name": "response_audio_transcript_delta", "value": "response.audio_transcript.delta", @@ -99871,7 +99994,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -99889,13 +100012,13 @@ "isHttpMetadata": false }, { - "$id": "7590", + "$id": "7600", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7591", + "$id": "7601", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99915,13 +100038,13 @@ "isHttpMetadata": false }, { - "$id": "7592", + "$id": "7602", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7593", + "$id": "7603", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99941,13 +100064,13 @@ "isHttpMetadata": false }, { - "$id": "7594", + "$id": "7604", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7595", + "$id": "7605", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99967,13 +100090,13 @@ "isHttpMetadata": false }, { - "$id": "7596", + "$id": "7606", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7597", + "$id": "7607", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99993,13 +100116,13 @@ "isHttpMetadata": false }, { - "$id": "7598", + "$id": "7608", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The transcript delta.", "type": { - "$id": "7599", + "$id": "7609", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100021,7 +100144,7 @@ ] }, "response.audio_transcript.done": { - "$id": "7600", + "$id": "7610", "kind": "model", "name": "RealtimeServerEventResponseAudioTranscriptDone", "namespace": "OpenAI", @@ -100031,17 +100154,17 @@ "discriminatorValue": "response.audio_transcript.done", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7601", + "$id": "7611", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.audio_transcript.done`.", "type": { - "$id": "7602", + "$id": "7612", "kind": "enumvalue", "name": "response_audio_transcript_done", "value": "response.audio_transcript.done", @@ -100049,7 +100172,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -100067,13 +100190,13 @@ "isHttpMetadata": false }, { - "$id": "7603", + "$id": "7613", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7604", + "$id": "7614", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100093,13 +100216,13 @@ "isHttpMetadata": false }, { - "$id": "7605", + "$id": "7615", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7606", + "$id": "7616", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100119,13 +100242,13 @@ "isHttpMetadata": false }, { - "$id": "7607", + "$id": "7617", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7608", + "$id": "7618", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100145,13 +100268,13 @@ "isHttpMetadata": false }, { - "$id": "7609", + "$id": "7619", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7610", + "$id": "7620", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100171,13 +100294,13 @@ "isHttpMetadata": false }, { - "$id": "7611", + "$id": "7621", "kind": "property", "name": "transcript", "serializedName": "transcript", "doc": "The final transcript of the audio.", "type": { - "$id": "7612", + "$id": "7622", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100199,7 +100322,7 @@ ] }, "response.audio.delta": { - "$id": "7613", + "$id": "7623", "kind": "model", "name": "RealtimeServerEventResponseAudioDelta", "namespace": "OpenAI", @@ -100209,17 +100332,17 @@ "discriminatorValue": "response.audio.delta", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7614", + "$id": "7624", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.audio.delta`.", "type": { - "$id": "7615", + "$id": "7625", "kind": "enumvalue", "name": "response_audio_delta", "value": "response.audio.delta", @@ -100227,7 +100350,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -100245,13 +100368,13 @@ "isHttpMetadata": false }, { - "$id": "7616", + "$id": "7626", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7617", + "$id": "7627", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100271,13 +100394,13 @@ "isHttpMetadata": false }, { - "$id": "7618", + "$id": "7628", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7619", + "$id": "7629", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100297,13 +100420,13 @@ "isHttpMetadata": false }, { - "$id": "7620", + "$id": "7630", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7621", + "$id": "7631", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100323,13 +100446,13 @@ "isHttpMetadata": false }, { - "$id": "7622", + "$id": "7632", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7623", + "$id": "7633", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100349,13 +100472,13 @@ "isHttpMetadata": false }, { - "$id": "7624", + "$id": "7634", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "Base64-encoded audio data delta.", "type": { - "$id": "7625", + "$id": "7635", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -100378,7 +100501,7 @@ ] }, "response.audio.done": { - "$id": "7626", + "$id": "7636", "kind": "model", "name": "RealtimeServerEventResponseAudioDone", "namespace": "OpenAI", @@ -100388,17 +100511,17 @@ "discriminatorValue": "response.audio.done", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7627", + "$id": "7637", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.audio.done`.", "type": { - "$id": "7628", + "$id": "7638", "kind": "enumvalue", "name": "response_audio_done", "value": "response.audio.done", @@ -100406,7 +100529,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -100424,13 +100547,13 @@ "isHttpMetadata": false }, { - "$id": "7629", + "$id": "7639", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7630", + "$id": "7640", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100450,13 +100573,13 @@ "isHttpMetadata": false }, { - "$id": "7631", + "$id": "7641", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7632", + "$id": "7642", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100476,13 +100599,13 @@ "isHttpMetadata": false }, { - "$id": "7633", + "$id": "7643", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7634", + "$id": "7644", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100502,13 +100625,13 @@ "isHttpMetadata": false }, { - "$id": "7635", + "$id": "7645", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7636", + "$id": "7646", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100530,7 +100653,7 @@ ] }, "response.function_call_arguments.delta": { - "$id": "7637", + "$id": "7647", "kind": "model", "name": "RealtimeServerEventResponseFunctionCallArgumentsDelta", "namespace": "OpenAI", @@ -100540,17 +100663,17 @@ "discriminatorValue": "response.function_call_arguments.delta", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7638", + "$id": "7648", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.function_call_arguments.delta`.", "type": { - "$id": "7639", + "$id": "7649", "kind": "enumvalue", "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", @@ -100558,7 +100681,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -100576,13 +100699,13 @@ "isHttpMetadata": false }, { - "$id": "7640", + "$id": "7650", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7641", + "$id": "7651", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100602,13 +100725,13 @@ "isHttpMetadata": false }, { - "$id": "7642", + "$id": "7652", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the function call item.", "type": { - "$id": "7643", + "$id": "7653", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100628,13 +100751,13 @@ "isHttpMetadata": false }, { - "$id": "7644", + "$id": "7654", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7645", + "$id": "7655", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100654,13 +100777,13 @@ "isHttpMetadata": false }, { - "$id": "7646", + "$id": "7656", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the function call.", "type": { - "$id": "7647", + "$id": "7657", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100680,13 +100803,13 @@ "isHttpMetadata": false }, { - "$id": "7648", + "$id": "7658", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The arguments delta as a JSON string.", "type": { - "$id": "7649", + "$id": "7659", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100708,7 +100831,7 @@ ] }, "response.function_call_arguments.done": { - "$id": "7650", + "$id": "7660", "kind": "model", "name": "RealtimeServerEventResponseFunctionCallArgumentsDone", "namespace": "OpenAI", @@ -100718,17 +100841,17 @@ "discriminatorValue": "response.function_call_arguments.done", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7651", + "$id": "7661", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.function_call_arguments.done`.", "type": { - "$id": "7652", + "$id": "7662", "kind": "enumvalue", "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", @@ -100736,7 +100859,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -100754,13 +100877,13 @@ "isHttpMetadata": false }, { - "$id": "7653", + "$id": "7663", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7654", + "$id": "7664", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100780,13 +100903,13 @@ "isHttpMetadata": false }, { - "$id": "7655", + "$id": "7665", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the function call item.", "type": { - "$id": "7656", + "$id": "7666", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100806,13 +100929,13 @@ "isHttpMetadata": false }, { - "$id": "7657", + "$id": "7667", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7658", + "$id": "7668", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100832,13 +100955,13 @@ "isHttpMetadata": false }, { - "$id": "7659", + "$id": "7669", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the function call.", "type": { - "$id": "7660", + "$id": "7670", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100858,13 +100981,13 @@ "isHttpMetadata": false }, { - "$id": "7661", + "$id": "7671", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "The final arguments as a JSON string.", "type": { - "$id": "7662", + "$id": "7672", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100886,7 +101009,7 @@ ] }, "rate_limits.updated": { - "$id": "7663", + "$id": "7673", "kind": "model", "name": "RealtimeServerEventRateLimitsUpdated", "namespace": "OpenAI", @@ -100896,17 +101019,17 @@ "discriminatorValue": "rate_limits.updated", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7664", + "$id": "7674", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `rate_limits.updated`.", "type": { - "$id": "7665", + "$id": "7675", "kind": "enumvalue", "name": "rate_limits_updated", "value": "rate_limits.updated", @@ -100914,7 +101037,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -100932,17 +101055,17 @@ "isHttpMetadata": false }, { - "$id": "7666", + "$id": "7676", "kind": "property", "name": "rate_limits", "serializedName": "rate_limits", "doc": "List of rate limit information.", "type": { - "$id": "7667", + "$id": "7677", "kind": "array", "name": "ArrayRealtimeServerEventRateLimitsUpdatedRateLimitsItem", "valueType": { - "$id": "7668", + "$id": "7678", "kind": "model", "name": "RealtimeServerEventRateLimitsUpdatedRateLimitsItem", "namespace": "OpenAI", @@ -100951,13 +101074,13 @@ "decorators": [], "properties": [ { - "$id": "7669", + "$id": "7679", "kind": "property", "name": "name", "serializedName": "name", "doc": "The rate limit property name that this item includes information about.", "type": { - "$id": "7670", + "$id": "7680", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100977,13 +101100,13 @@ "isHttpMetadata": false }, { - "$id": "7671", + "$id": "7681", "kind": "property", "name": "limit", "serializedName": "limit", "doc": "The maximum configured limit for this rate limit property.", "type": { - "$id": "7672", + "$id": "7682", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101003,13 +101126,13 @@ "isHttpMetadata": false }, { - "$id": "7673", + "$id": "7683", "kind": "property", "name": "remaining", "serializedName": "remaining", "doc": "The remaining quota available against the configured limit for this rate limit property.", "type": { - "$id": "7674", + "$id": "7684", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101029,18 +101152,18 @@ "isHttpMetadata": false }, { - "$id": "7675", + "$id": "7685", "kind": "property", "name": "reset_seconds", "serializedName": "reset_seconds", "doc": "The remaining time, in seconds, until this rate limit property is reset.", "type": { - "$id": "7676", + "$id": "7686", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "7677", + "$id": "7687", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -101083,7 +101206,7 @@ ] }, "conversation.item.input_audio_transcription.delta": { - "$id": "7678", + "$id": "7688", "kind": "model", "name": "RealtimeServerEventConversationItemInputAudioTranscriptionDelta", "namespace": "OpenAI", @@ -101093,17 +101216,17 @@ "discriminatorValue": "conversation.item.input_audio_transcription.delta", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7679", + "$id": "7689", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.input_audio_transcription.delta`.", "type": { - "$id": "7680", + "$id": "7690", "kind": "enumvalue", "name": "conversation_item_input_audio_transcription_delta", "value": "conversation.item.input_audio_transcription.delta", @@ -101111,7 +101234,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -101129,13 +101252,13 @@ "isHttpMetadata": false }, { - "$id": "7681", + "$id": "7691", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7682", + "$id": "7692", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101155,13 +101278,13 @@ "isHttpMetadata": false }, { - "$id": "7683", + "$id": "7693", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7684", + "$id": "7694", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101181,13 +101304,13 @@ "isHttpMetadata": false }, { - "$id": "7685", + "$id": "7695", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The text delta.", "type": { - "$id": "7686", + "$id": "7696", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101207,16 +101330,16 @@ "isHttpMetadata": false }, { - "$id": "7687", + "$id": "7697", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "doc": "The log probabilities of the transcription.", "type": { - "$id": "7688", + "$id": "7698", "kind": "nullable", "type": { - "$ref": "7424" + "$ref": "7434" }, "namespace": "OpenAI" }, @@ -101236,7 +101359,7 @@ ] }, "conversation.item.retrieved": { - "$id": "7689", + "$id": "7699", "kind": "model", "name": "RealtimeServerEventConversationItemRetrieved", "namespace": "OpenAI", @@ -101246,17 +101369,17 @@ "discriminatorValue": "conversation.item.retrieved", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7690", + "$id": "7700", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.retrieved`.", "type": { - "$id": "7691", + "$id": "7701", "kind": "enumvalue", "name": "conversation_item_retrieved", "value": "conversation.item.retrieved", @@ -101264,7 +101387,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -101282,12 +101405,12 @@ "isHttpMetadata": false }, { - "$id": "7692", + "$id": "7702", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$ref": "7386" + "$ref": "7396" }, "optional": false, "readOnly": false, @@ -101305,7 +101428,7 @@ ] }, "transcription_session.updated": { - "$id": "7693", + "$id": "7703", "kind": "model", "name": "RealtimeServerEventTranscriptionSessionUpdated", "namespace": "OpenAI", @@ -101315,17 +101438,17 @@ "discriminatorValue": "transcription_session.updated", "decorators": [], "baseModel": { - "$ref": "7242" + "$ref": "7252" }, "properties": [ { - "$id": "7694", + "$id": "7704", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `transcription_session.updated`.", "type": { - "$id": "7695", + "$id": "7705", "kind": "enumvalue", "name": "transcription_session_updated", "value": "transcription_session.updated", @@ -101333,7 +101456,7 @@ "$ref": "1211" }, "enumType": { - "$ref": "7249" + "$ref": "7259" }, "decorators": [] }, @@ -101351,12 +101474,12 @@ "isHttpMetadata": false }, { - "$id": "7696", + "$id": "7706", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$id": "7697", + "$id": "7707", "kind": "model", "name": "RealtimeTranscriptionSessionCreateResponse", "namespace": "OpenAI", @@ -101366,13 +101489,13 @@ "decorators": [], "properties": [ { - "$id": "7698", + "$id": "7708", "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": "7699", + "$id": "7709", "kind": "model", "name": "RealtimeTranscriptionSessionCreateResponseClientSecret", "namespace": "OpenAI", @@ -101381,13 +101504,13 @@ "decorators": [], "properties": [ { - "$id": "7700", + "$id": "7710", "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": "7701", + "$id": "7711", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101407,18 +101530,18 @@ "isHttpMetadata": false }, { - "$id": "7702", + "$id": "7712", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "Timestamp for when the token expires. Currently, all tokens expire\nafter one minute.", "type": { - "$id": "7703", + "$id": "7713", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7704", + "$id": "7714", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101456,13 +101579,13 @@ "isHttpMetadata": false }, { - "$id": "7705", + "$id": "7715", "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": "7706", + "$id": "7716", "kind": "array", "name": "Array45", "valueType": { @@ -101485,13 +101608,13 @@ "isHttpMetadata": false }, { - "$id": "7707", + "$id": "7717", "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": "7708", + "$id": "7718", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101511,13 +101634,13 @@ "isHttpMetadata": false }, { - "$id": "7709", + "$id": "7719", "kind": "property", "name": "input_audio_transcription", "serializedName": "input_audio_transcription", "doc": "Configuration of the transcription model.", "type": { - "$id": "7710", + "$id": "7720", "kind": "model", "name": "RealtimeTranscriptionSessionCreateResponseInputAudioTranscription", "namespace": "OpenAI", @@ -101526,7 +101649,7 @@ "decorators": [], "properties": [ { - "$id": "7711", + "$id": "7721", "kind": "property", "name": "model", "serializedName": "model", @@ -101548,13 +101671,13 @@ "isHttpMetadata": false }, { - "$id": "7712", + "$id": "7722", "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": "7713", + "$id": "7723", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101574,13 +101697,13 @@ "isHttpMetadata": false }, { - "$id": "7714", + "$id": "7724", "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": "7715", + "$id": "7725", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101615,13 +101738,13 @@ "isHttpMetadata": false }, { - "$id": "7716", + "$id": "7726", "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": "7717", + "$id": "7727", "kind": "model", "name": "RealtimeTranscriptionSessionCreateResponseTurnDetection", "namespace": "OpenAI", @@ -101630,13 +101753,13 @@ "decorators": [], "properties": [ { - "$id": "7718", + "$id": "7728", "kind": "property", "name": "type", "serializedName": "type", "doc": "Type of turn detection, only `server_vad` is currently supported.", "type": { - "$id": "7719", + "$id": "7729", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101656,13 +101779,13 @@ "isHttpMetadata": false }, { - "$id": "7720", + "$id": "7730", "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": "7721", + "$id": "7731", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -101682,13 +101805,13 @@ "isHttpMetadata": false }, { - "$id": "7722", + "$id": "7732", "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": "7723", + "$id": "7733", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101708,13 +101831,13 @@ "isHttpMetadata": false }, { - "$id": "7724", + "$id": "7734", "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": "7725", + "$id": "7735", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101768,31 +101891,25 @@ } }, { - "$ref": "7246" - }, - { - "$ref": "7286" - }, - { - "$ref": "7300" + "$ref": "7256" }, { - "$ref": "7304" + "$ref": "7296" }, { - "$ref": "7328" + "$ref": "7310" }, { - "$ref": "7332" + "$ref": "7314" }, { - "$ref": "7336" + "$ref": "7338" }, { - "$ref": "7341" + "$ref": "7342" }, { - "$ref": "7348" + "$ref": "7346" }, { "$ref": "7351" @@ -101801,10 +101918,10 @@ "$ref": "7358" }, { - "$ref": "7365" + "$ref": "7361" }, { - "$ref": "7370" + "$ref": "7368" }, { "$ref": "7375" @@ -101813,40 +101930,40 @@ "$ref": "7380" }, { - "$ref": "7386" + "$ref": "7385" }, { - "$ref": "7392" + "$ref": "7390" }, { - "$ref": "7398" + "$ref": "7396" }, { - "$ref": "7407" + "$ref": "7402" }, { - "$ref": "7413" + "$ref": "7408" }, { - "$ref": "7425" + "$ref": "7417" }, { - "$ref": "7431" + "$ref": "7423" }, { - "$ref": "7439" + "$ref": "7435" }, { - "$ref": "7448" + "$ref": "7441" }, { - "$ref": "7457" + "$ref": "7449" }, { - "$ref": "7462" + "$ref": "7458" }, { - "$ref": "7466" + "$ref": "7467" }, { "$ref": "7472" @@ -101855,82 +101972,88 @@ "$ref": "7476" }, { - "$ref": "7485" + "$ref": "7482" + }, + { + "$ref": "7486" }, { - "$ref": "7493" + "$ref": "7495" }, { - "$ref": "7501" + "$ref": "7503" }, { - "$ref": "7517" + "$ref": "7511" }, { - "$ref": "7521" + "$ref": "7527" }, { - "$ref": "7529" + "$ref": "7531" }, { - "$ref": "7537" + "$ref": "7539" }, { - "$ref": "7549" + "$ref": "7547" }, { - "$ref": "7561" + "$ref": "7559" }, { - "$ref": "7574" + "$ref": "7571" }, { - "$ref": "7587" + "$ref": "7584" }, { - "$ref": "7600" + "$ref": "7597" }, { - "$ref": "7613" + "$ref": "7610" }, { - "$ref": "7626" + "$ref": "7623" }, { - "$ref": "7637" + "$ref": "7636" }, { - "$ref": "7650" + "$ref": "7647" }, { - "$ref": "7663" + "$ref": "7660" }, { - "$ref": "7668" + "$ref": "7673" }, { "$ref": "7678" }, { - "$ref": "7689" + "$ref": "7688" + }, + { + "$ref": "7699" }, { - "$ref": "7693" + "$ref": "7703" }, { - "$ref": "7697" + "$ref": "7707" }, { - "$ref": "7699" + "$ref": "7709" }, { - "$ref": "7710" + "$ref": "7720" }, { - "$ref": "7717" + "$ref": "7727" }, { - "$id": "7726", + "$id": "7736", "kind": "model", "name": "RealtimeSessionCreateRequest", "namespace": "OpenAI", @@ -101940,13 +102063,13 @@ "decorators": [], "properties": [ { - "$id": "7727", + "$id": "7737", "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": "6969" + "$ref": "6979" }, "optional": true, "readOnly": false, @@ -101962,7 +102085,7 @@ "isHttpMetadata": false }, { - "$id": "7728", + "$id": "7738", "kind": "property", "name": "model", "serializedName": "model", @@ -101984,13 +102107,13 @@ "isHttpMetadata": false }, { - "$id": "7729", + "$id": "7739", "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": "7730", + "$id": "7740", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102010,7 +102133,7 @@ "isHttpMetadata": false }, { - "$id": "7731", + "$id": "7741", "kind": "property", "name": "voice", "serializedName": "voice", @@ -102032,7 +102155,7 @@ "isHttpMetadata": false }, { - "$id": "7732", + "$id": "7742", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", @@ -102054,7 +102177,7 @@ "isHttpMetadata": false }, { - "$id": "7733", + "$id": "7743", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", @@ -102076,13 +102199,13 @@ "isHttpMetadata": false }, { - "$id": "7734", + "$id": "7744", "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": "7735", + "$id": "7745", "kind": "model", "name": "RealtimeSessionCreateRequestInputAudioTranscription", "namespace": "OpenAI", @@ -102091,13 +102214,13 @@ "decorators": [], "properties": [ { - "$id": "7736", + "$id": "7746", "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": "7737", + "$id": "7747", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102117,13 +102240,13 @@ "isHttpMetadata": false }, { - "$id": "7738", + "$id": "7748", "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": "7739", + "$id": "7749", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102143,13 +102266,13 @@ "isHttpMetadata": false }, { - "$id": "7740", + "$id": "7750", "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": "7741", + "$id": "7751", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102184,13 +102307,13 @@ "isHttpMetadata": false }, { - "$id": "7742", + "$id": "7752", "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": "7743", + "$id": "7753", "kind": "model", "name": "RealtimeSessionCreateRequestTurnDetection", "namespace": "OpenAI", @@ -102199,7 +102322,7 @@ "decorators": [], "properties": [ { - "$id": "7744", + "$id": "7754", "kind": "property", "name": "type", "serializedName": "type", @@ -102221,7 +102344,7 @@ "isHttpMetadata": false }, { - "$id": "7745", + "$id": "7755", "kind": "property", "name": "eagerness", "serializedName": "eagerness", @@ -102243,13 +102366,13 @@ "isHttpMetadata": false }, { - "$id": "7746", + "$id": "7756", "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": "7747", + "$id": "7757", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -102269,13 +102392,13 @@ "isHttpMetadata": false }, { - "$id": "7748", + "$id": "7758", "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": "7749", + "$id": "7759", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102295,13 +102418,13 @@ "isHttpMetadata": false }, { - "$id": "7750", + "$id": "7760", "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": "7751", + "$id": "7761", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102321,13 +102444,13 @@ "isHttpMetadata": false }, { - "$id": "7752", + "$id": "7762", "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": "7753", + "$id": "7763", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -102347,13 +102470,13 @@ "isHttpMetadata": false }, { - "$id": "7754", + "$id": "7764", "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": "7755", + "$id": "7765", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -102388,16 +102511,16 @@ "isHttpMetadata": false }, { - "$id": "7756", + "$id": "7766", "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": "7757", + "$id": "7767", "kind": "nullable", "type": { - "$id": "7758", + "$id": "7768", "kind": "model", "name": "RealtimeSessionCreateRequestInputAudioNoiseReduction1", "namespace": "OpenAI", @@ -102406,7 +102529,7 @@ "decorators": [], "properties": [ { - "$id": "7759", + "$id": "7769", "kind": "property", "name": "type", "serializedName": "type", @@ -102445,13 +102568,13 @@ "isHttpMetadata": false }, { - "$id": "7760", + "$id": "7770", "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": "7761", + "$id": "7771", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -102471,13 +102594,13 @@ "isHttpMetadata": false }, { - "$id": "7762", + "$id": "7772", "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": "7763", + "$id": "7773", "kind": "union", "name": "RealtimeSessionCreateRequestTracing", "variantTypes": [ @@ -102485,7 +102608,7 @@ "$ref": "1746" }, { - "$id": "7764", + "$id": "7774", "kind": "model", "name": "RealtimeSessionCreateRequestTracing1", "namespace": "OpenAI", @@ -102494,13 +102617,13 @@ "decorators": [], "properties": [ { - "$id": "7765", + "$id": "7775", "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": "7766", + "$id": "7776", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102520,13 +102643,13 @@ "isHttpMetadata": false }, { - "$id": "7767", + "$id": "7777", "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": "7768", + "$id": "7778", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102546,13 +102669,13 @@ "isHttpMetadata": false }, { - "$id": "7769", + "$id": "7779", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "The arbitrary metadata to attach to this trace to enable\nfiltering in the traces dashboard.", "type": { - "$id": "7770", + "$id": "7780", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -102591,13 +102714,13 @@ "isHttpMetadata": false }, { - "$id": "7771", + "$id": "7781", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "Tools (functions) available to the model.", "type": { - "$ref": "7025" + "$ref": "7035" }, "optional": true, "readOnly": false, @@ -102613,13 +102736,13 @@ "isHttpMetadata": false }, { - "$id": "7772", + "$id": "7782", "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": "7773", + "$id": "7783", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102639,13 +102762,13 @@ "isHttpMetadata": false }, { - "$id": "7774", + "$id": "7784", "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": "7775", + "$id": "7785", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -102665,18 +102788,18 @@ "isHttpMetadata": false }, { - "$id": "7776", + "$id": "7786", "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": "7777", + "$id": "7787", "kind": "union", "name": "RealtimeSessionCreateRequestMaxResponseOutputTokens", "variantTypes": [ { - "$id": "7778", + "$id": "7788", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102703,13 +102826,13 @@ "isHttpMetadata": false }, { - "$id": "7779", + "$id": "7789", "kind": "property", "name": "client_secret", "serializedName": "client_secret", "doc": "Configuration options for the generated client secret.", "type": { - "$id": "7780", + "$id": "7790", "kind": "model", "name": "RealtimeSessionCreateRequestClientSecret", "namespace": "OpenAI", @@ -102718,13 +102841,13 @@ "decorators": [], "properties": [ { - "$id": "7781", + "$id": "7791", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "Configuration for the ephemeral token expiration.", "type": { - "$id": "7782", + "$id": "7792", "kind": "model", "name": "RealtimeSessionCreateRequestClientSecretExpiresAt", "namespace": "OpenAI", @@ -102733,7 +102856,7 @@ "decorators": [], "properties": [ { - "$id": "7783", + "$id": "7793", "kind": "property", "name": "anchor", "serializedName": "anchor", @@ -102755,13 +102878,13 @@ "isHttpMetadata": false }, { - "$id": "7784", + "$id": "7794", "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": "7785", + "$id": "7795", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102813,25 +102936,25 @@ ] }, { - "$ref": "7735" + "$ref": "7745" }, { - "$ref": "7743" + "$ref": "7753" }, { - "$ref": "7758" + "$ref": "7768" }, { - "$ref": "7764" + "$ref": "7774" }, { - "$ref": "7780" + "$ref": "7790" }, { - "$ref": "7782" + "$ref": "7792" }, { - "$id": "7786", + "$id": "7796", "kind": "model", "name": "RealtimeSessionCreateResponse", "namespace": "OpenAI", @@ -102841,13 +102964,13 @@ "decorators": [], "properties": [ { - "$id": "7787", + "$id": "7797", "kind": "property", "name": "client_secret", "serializedName": "client_secret", "doc": "Ephemeral key returned by the API.", "type": { - "$id": "7788", + "$id": "7798", "kind": "model", "name": "RealtimeSessionCreateResponseClientSecret", "namespace": "OpenAI", @@ -102856,13 +102979,13 @@ "decorators": [], "properties": [ { - "$id": "7789", + "$id": "7799", "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": "7790", + "$id": "7800", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102882,18 +103005,18 @@ "isHttpMetadata": false }, { - "$id": "7791", + "$id": "7801", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "Timestamp for when the token expires. Currently, all tokens expire\nafter one minute.", "type": { - "$id": "7792", + "$id": "7802", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7793", + "$id": "7803", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102931,13 +103054,13 @@ "isHttpMetadata": false }, { - "$id": "7794", + "$id": "7804", "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": "6969" + "$ref": "6979" }, "optional": true, "readOnly": false, @@ -102953,13 +103076,13 @@ "isHttpMetadata": false }, { - "$id": "7795", + "$id": "7805", "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": "7796", + "$id": "7806", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102979,7 +103102,7 @@ "isHttpMetadata": false }, { - "$id": "7797", + "$id": "7807", "kind": "property", "name": "voice", "serializedName": "voice", @@ -103001,7 +103124,7 @@ "isHttpMetadata": false }, { - "$id": "7798", + "$id": "7808", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", @@ -103023,7 +103146,7 @@ "isHttpMetadata": false }, { - "$id": "7799", + "$id": "7809", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", @@ -103045,13 +103168,13 @@ "isHttpMetadata": false }, { - "$id": "7800", + "$id": "7810", "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": "7801", + "$id": "7811", "kind": "model", "name": "RealtimeSessionCreateResponseInputAudioTranscription", "namespace": "OpenAI", @@ -103060,13 +103183,13 @@ "decorators": [], "properties": [ { - "$id": "7802", + "$id": "7812", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for transcription, `whisper-1` is the only currently\nsupported model.", "type": { - "$id": "7803", + "$id": "7813", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103101,13 +103224,13 @@ "isHttpMetadata": false }, { - "$id": "7804", + "$id": "7814", "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": "7805", + "$id": "7815", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -103127,13 +103250,13 @@ "isHttpMetadata": false }, { - "$id": "7806", + "$id": "7816", "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": "7807", + "$id": "7817", "kind": "union", "name": "RealtimeSessionCreateResponseTracing", "variantTypes": [ @@ -103141,7 +103264,7 @@ "$ref": "1750" }, { - "$id": "7808", + "$id": "7818", "kind": "model", "name": "RealtimeSessionCreateResponseTracing1", "namespace": "OpenAI", @@ -103150,13 +103273,13 @@ "decorators": [], "properties": [ { - "$id": "7809", + "$id": "7819", "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": "7810", + "$id": "7820", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103176,13 +103299,13 @@ "isHttpMetadata": false }, { - "$id": "7811", + "$id": "7821", "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": "7812", + "$id": "7822", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103202,13 +103325,13 @@ "isHttpMetadata": false }, { - "$id": "7813", + "$id": "7823", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "The arbitrary metadata to attach to this trace to enable\nfiltering in the traces dashboard.", "type": { - "$id": "7814", + "$id": "7824", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -103247,13 +103370,13 @@ "isHttpMetadata": false }, { - "$id": "7815", + "$id": "7825", "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": "7816", + "$id": "7826", "kind": "model", "name": "RealtimeSessionCreateResponseTurnDetection", "namespace": "OpenAI", @@ -103262,13 +103385,13 @@ "decorators": [], "properties": [ { - "$id": "7817", + "$id": "7827", "kind": "property", "name": "type", "serializedName": "type", "doc": "Type of turn detection, only `server_vad` is currently supported.", "type": { - "$id": "7818", + "$id": "7828", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103288,13 +103411,13 @@ "isHttpMetadata": false }, { - "$id": "7819", + "$id": "7829", "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": "7820", + "$id": "7830", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -103314,13 +103437,13 @@ "isHttpMetadata": false }, { - "$id": "7821", + "$id": "7831", "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": "7822", + "$id": "7832", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103340,13 +103463,13 @@ "isHttpMetadata": false }, { - "$id": "7823", + "$id": "7833", "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": "7824", + "$id": "7834", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103381,13 +103504,13 @@ "isHttpMetadata": false }, { - "$id": "7825", + "$id": "7835", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "Tools (functions) available to the model.", "type": { - "$ref": "7025" + "$ref": "7035" }, "optional": true, "readOnly": false, @@ -103403,13 +103526,13 @@ "isHttpMetadata": false }, { - "$id": "7826", + "$id": "7836", "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": "7827", + "$id": "7837", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103429,13 +103552,13 @@ "isHttpMetadata": false }, { - "$id": "7828", + "$id": "7838", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Sampling temperature for the model, limited to [0.6, 1.2]. Defaults to 0.8.", "type": { - "$id": "7829", + "$id": "7839", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -103455,18 +103578,18 @@ "isHttpMetadata": false }, { - "$id": "7830", + "$id": "7840", "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": "7831", + "$id": "7841", "kind": "union", "name": "RealtimeSessionCreateResponseMaxResponseOutputTokens", "variantTypes": [ { - "$id": "7832", + "$id": "7842", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103495,19 +103618,19 @@ ] }, { - "$ref": "7788" + "$ref": "7798" }, { - "$ref": "7801" + "$ref": "7811" }, { - "$ref": "7808" + "$ref": "7818" }, { - "$ref": "7816" + "$ref": "7826" }, { - "$id": "7833", + "$id": "7843", "kind": "model", "name": "CreateUploadRequest", "namespace": "OpenAI", @@ -103516,13 +103639,13 @@ "decorators": [], "properties": [ { - "$id": "7834", + "$id": "7844", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file to upload.", "type": { - "$id": "7835", + "$id": "7845", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103542,7 +103665,7 @@ "isHttpMetadata": false }, { - "$id": "7836", + "$id": "7846", "kind": "property", "name": "purpose", "serializedName": "purpose", @@ -103564,13 +103687,13 @@ "isHttpMetadata": false }, { - "$id": "7837", + "$id": "7847", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "The number of bytes in the file you are uploading.", "type": { - "$id": "7838", + "$id": "7848", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103590,13 +103713,13 @@ "isHttpMetadata": false }, { - "$id": "7839", + "$id": "7849", "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": "7840", + "$id": "7850", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103618,7 +103741,7 @@ ] }, { - "$id": "7841", + "$id": "7851", "kind": "model", "name": "Upload", "namespace": "OpenAI", @@ -103628,13 +103751,13 @@ "decorators": [], "properties": [ { - "$id": "7842", + "$id": "7852", "kind": "property", "name": "id", "serializedName": "id", "doc": "The Upload unique identifier, which can be referenced in API endpoints.", "type": { - "$id": "7843", + "$id": "7853", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103654,18 +103777,18 @@ "isHttpMetadata": false }, { - "$id": "7844", + "$id": "7854", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the Upload was created.", "type": { - "$id": "7845", + "$id": "7855", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7846", + "$id": "7856", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103688,13 +103811,13 @@ "isHttpMetadata": false }, { - "$id": "7847", + "$id": "7857", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file to be uploaded.", "type": { - "$id": "7848", + "$id": "7858", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103714,13 +103837,13 @@ "isHttpMetadata": false }, { - "$id": "7849", + "$id": "7859", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "The intended number of bytes to be uploaded.", "type": { - "$id": "7850", + "$id": "7860", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103740,13 +103863,13 @@ "isHttpMetadata": false }, { - "$id": "7851", + "$id": "7861", "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": "7852", + "$id": "7862", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103766,7 +103889,7 @@ "isHttpMetadata": false }, { - "$id": "7853", + "$id": "7863", "kind": "property", "name": "status", "serializedName": "status", @@ -103788,18 +103911,18 @@ "isHttpMetadata": false }, { - "$id": "7854", + "$id": "7864", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the Upload will expire.", "type": { - "$id": "7855", + "$id": "7865", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7856", + "$id": "7866", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103822,7 +103945,7 @@ "isHttpMetadata": false }, { - "$id": "7857", + "$id": "7867", "kind": "property", "name": "object", "serializedName": "object", @@ -103844,12 +103967,12 @@ "isHttpMetadata": false }, { - "$id": "7858", + "$id": "7868", "kind": "property", "name": "file", "serializedName": "file", "type": { - "$id": "7859", + "$id": "7869", "kind": "nullable", "type": { "$ref": "3448" @@ -103872,7 +103995,7 @@ ] }, { - "$id": "7860", + "$id": "7870", "kind": "model", "name": "AddUploadPartRequest", "namespace": "OpenAI", @@ -103881,13 +104004,13 @@ "decorators": [], "properties": [ { - "$id": "7861", + "$id": "7871", "kind": "property", "name": "data", "serializedName": "data", "doc": "The chunk of bytes for this Part.", "type": { - "$id": "7862", + "$id": "7872", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -103916,7 +104039,7 @@ ] }, { - "$id": "7863", + "$id": "7873", "kind": "model", "name": "UploadPart", "namespace": "OpenAI", @@ -103926,13 +104049,13 @@ "decorators": [], "properties": [ { - "$id": "7864", + "$id": "7874", "kind": "property", "name": "id", "serializedName": "id", "doc": "The upload Part unique identifier, which can be referenced in API endpoints.", "type": { - "$id": "7865", + "$id": "7875", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103952,18 +104075,18 @@ "isHttpMetadata": false }, { - "$id": "7866", + "$id": "7876", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the Part was created.", "type": { - "$id": "7867", + "$id": "7877", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7868", + "$id": "7878", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103986,13 +104109,13 @@ "isHttpMetadata": false }, { - "$id": "7869", + "$id": "7879", "kind": "property", "name": "upload_id", "serializedName": "upload_id", "doc": "The ID of the Upload object that this Part was added to.", "type": { - "$id": "7870", + "$id": "7880", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104012,7 +104135,7 @@ "isHttpMetadata": false }, { - "$id": "7871", + "$id": "7881", "kind": "property", "name": "object", "serializedName": "object", @@ -104036,7 +104159,7 @@ ] }, { - "$id": "7872", + "$id": "7882", "kind": "model", "name": "CompleteUploadRequest", "namespace": "OpenAI", @@ -104045,7 +104168,7 @@ "decorators": [], "properties": [ { - "$id": "7873", + "$id": "7883", "kind": "property", "name": "part_ids", "serializedName": "part_ids", @@ -104067,13 +104190,13 @@ "isHttpMetadata": false }, { - "$id": "7874", + "$id": "7884", "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": "7875", + "$id": "7885", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104095,7 +104218,7 @@ ] }, { - "$id": "7876", + "$id": "7886", "kind": "model", "name": "BatchRequestInput", "namespace": "OpenAI", @@ -104106,12 +104229,12 @@ "decorators": [], "properties": [ { - "$id": "7877", + "$id": "7887", "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": "7878", + "$id": "7888", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104127,7 +104250,7 @@ "isHttpMetadata": false }, { - "$id": "7879", + "$id": "7889", "kind": "property", "name": "method", "doc": "The HTTP method to be used for the request. Currently only `POST` is supported.", @@ -104144,12 +104267,12 @@ "isHttpMetadata": false }, { - "$id": "7880", + "$id": "7890", "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": "7881", + "$id": "7891", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -104167,7 +104290,7 @@ ] }, { - "$id": "7882", + "$id": "7892", "kind": "model", "name": "BatchRequestOutput", "namespace": "OpenAI", @@ -104178,11 +104301,11 @@ "decorators": [], "properties": [ { - "$id": "7883", + "$id": "7893", "kind": "property", "name": "id", "type": { - "$id": "7884", + "$id": "7894", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104198,12 +104321,12 @@ "isHttpMetadata": false }, { - "$id": "7885", + "$id": "7895", "kind": "property", "name": "custom_id", "doc": "A developer-provided per-request id that will be used to match outputs to inputs.", "type": { - "$id": "7886", + "$id": "7896", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104219,14 +104342,14 @@ "isHttpMetadata": false }, { - "$id": "7887", + "$id": "7897", "kind": "property", "name": "response", "type": { - "$id": "7888", + "$id": "7898", "kind": "nullable", "type": { - "$id": "7889", + "$id": "7899", "kind": "model", "name": "BatchRequestOutputResponse1", "namespace": "OpenAI", @@ -104235,12 +104358,12 @@ "decorators": [], "properties": [ { - "$id": "7890", + "$id": "7900", "kind": "property", "name": "status_code", "doc": "The HTTP status code of the response", "type": { - "$id": "7891", + "$id": "7901", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104256,12 +104379,12 @@ "isHttpMetadata": false }, { - "$id": "7892", + "$id": "7902", "kind": "property", "name": "request_id", "doc": "An unique identifier for the OpenAI API request. Please include this request ID when contacting support.", "type": { - "$id": "7893", + "$id": "7903", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104277,7 +104400,7 @@ "isHttpMetadata": false }, { - "$id": "7894", + "$id": "7904", "kind": "property", "name": "body", "doc": "The JSON body of the response", @@ -104307,15 +104430,15 @@ "isHttpMetadata": false }, { - "$id": "7895", + "$id": "7905", "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": "7896", + "$id": "7906", "kind": "nullable", "type": { - "$id": "7897", + "$id": "7907", "kind": "model", "name": "BatchRequestOutputError1", "namespace": "OpenAI", @@ -104324,12 +104447,12 @@ "decorators": [], "properties": [ { - "$id": "7898", + "$id": "7908", "kind": "property", "name": "code", "doc": "A machine-readable error code.", "type": { - "$id": "7899", + "$id": "7909", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104345,12 +104468,12 @@ "isHttpMetadata": false }, { - "$id": "7900", + "$id": "7910", "kind": "property", "name": "message", "doc": "A human-readable error message.", "type": { - "$id": "7901", + "$id": "7911", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104381,13 +104504,13 @@ ] }, { - "$ref": "7889" + "$ref": "7899" }, { - "$ref": "7897" + "$ref": "7907" }, { - "$id": "7902", + "$id": "7912", "kind": "model", "name": "ChatCompletionFunctionChoice", "namespace": "OpenAI", @@ -104403,7 +104526,7 @@ "properties": [] }, { - "$id": "7903", + "$id": "7913", "kind": "model", "name": "ChatCompletionToolChoice", "namespace": "OpenAI", @@ -104419,7 +104542,7 @@ "properties": [] }, { - "$id": "7904", + "$id": "7914", "kind": "model", "name": "FineTuneChatCompletionRequestAssistantMessage", "namespace": "OpenAI", @@ -104428,7 +104551,7 @@ "decorators": [], "properties": [ { - "$id": "7905", + "$id": "7915", "kind": "property", "name": "weight", "doc": "Controls whether the assistant message is trained against (0 or 1)", @@ -104445,7 +104568,7 @@ "isHttpMetadata": false }, { - "$id": "7906", + "$id": "7916", "kind": "property", "name": "content", "doc": "The contents of the assistant message. Required unless `tool_calls` or `function_call` is specified.", @@ -104462,7 +104585,7 @@ "isHttpMetadata": false }, { - "$id": "7907", + "$id": "7917", "kind": "property", "name": "refusal", "doc": "The refusal message by the assistant.", @@ -104479,12 +104602,12 @@ "isHttpMetadata": false }, { - "$id": "7908", + "$id": "7918", "kind": "property", "name": "role", "doc": "The role of the messages author, in this case `assistant`.", "type": { - "$id": "7909", + "$id": "7919", "kind": "enumvalue", "name": "assistant", "value": "assistant", @@ -104506,12 +104629,12 @@ "isHttpMetadata": false }, { - "$id": "7910", + "$id": "7920", "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": "7911", + "$id": "7921", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104527,7 +104650,7 @@ "isHttpMetadata": false }, { - "$id": "7912", + "$id": "7922", "kind": "property", "name": "audio", "doc": "Data about a previous audio response from the model.\n[Learn more](/docs/guides/audio).", @@ -104544,7 +104667,7 @@ "isHttpMetadata": false }, { - "$id": "7913", + "$id": "7923", "kind": "property", "name": "tool_calls", "type": { @@ -104560,7 +104683,7 @@ "isHttpMetadata": false }, { - "$id": "7914", + "$id": "7924", "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.", @@ -104579,7 +104702,7 @@ ] }, { - "$id": "7915", + "$id": "7925", "kind": "model", "name": "FineTuneChatRequestInput", "namespace": "OpenAI", @@ -104590,15 +104713,15 @@ "decorators": [], "properties": [ { - "$id": "7916", + "$id": "7926", "kind": "property", "name": "messages", "type": { - "$id": "7917", + "$id": "7927", "kind": "array", "name": "Array46", "valueType": { - "$id": "7918", + "$id": "7928", "kind": "union", "name": "FineTuneChatRequestInputMessage", "variantTypes": [ @@ -104609,7 +104732,7 @@ "$ref": "3064" }, { - "$ref": "7904" + "$ref": "7914" }, { "$ref": "3101" @@ -104634,7 +104757,7 @@ "isHttpMetadata": false }, { - "$id": "7919", + "$id": "7929", "kind": "property", "name": "tools", "doc": "A list of tools the model may generate JSON inputs for.", @@ -104651,16 +104774,16 @@ "isHttpMetadata": false }, { - "$id": "7920", + "$id": "7930", "kind": "property", "name": "parallel_tool_calls", "type": { - "$id": "7921", + "$id": "7931", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "7922", + "$id": "7932", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -104678,7 +104801,7 @@ "isHttpMetadata": false }, { - "$id": "7923", + "$id": "7933", "kind": "property", "name": "functions", "doc": "A list of functions the model may generate JSON inputs for.", @@ -104697,7 +104820,7 @@ ] }, { - "$id": "7924", + "$id": "7934", "kind": "model", "name": "FineTuningJobsPageToken", "namespace": "OpenAI", @@ -104707,11 +104830,11 @@ "decorators": [], "properties": [ { - "$id": "7925", + "$id": "7935", "kind": "property", "name": "limit", "type": { - "$id": "7926", + "$id": "7936", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104727,11 +104850,11 @@ "isHttpMetadata": false }, { - "$id": "7927", + "$id": "7937", "kind": "property", "name": "after", "type": { - "$id": "7928", + "$id": "7938", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104749,7 +104872,7 @@ ] }, { - "$id": "7929", + "$id": "7939", "kind": "model", "name": "MessageDeltaContent", "namespace": "OpenAI", @@ -104759,7 +104882,7 @@ "doc": "Represents a single piece of incremental content in an Assistants API streaming response.", "decorators": [], "discriminatorProperty": { - "$id": "7930", + "$id": "7940", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the content item.", @@ -104777,12 +104900,12 @@ }, "properties": [ { - "$ref": "7930" + "$ref": "7940" } ], "discriminatedSubtypes": { "image_file": { - "$id": "7931", + "$id": "7941", "kind": "model", "name": "MessageDeltaContentImageFileObject", "namespace": "OpenAI", @@ -104793,16 +104916,16 @@ "discriminatorValue": "image_file", "decorators": [], "baseModel": { - "$ref": "7929" + "$ref": "7939" }, "properties": [ { - "$id": "7932", + "$id": "7942", "kind": "property", "name": "index", "doc": "The index of the content part in the message.", "type": { - "$id": "7933", + "$id": "7943", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104818,12 +104941,12 @@ "isHttpMetadata": false }, { - "$id": "7934", + "$id": "7944", "kind": "property", "name": "type", "doc": "Always `image_file`.", "type": { - "$ref": "5965" + "$ref": "5975" }, "optional": false, "readOnly": false, @@ -104835,11 +104958,11 @@ "isHttpMetadata": false }, { - "$id": "7935", + "$id": "7945", "kind": "property", "name": "image_file", "type": { - "$id": "7936", + "$id": "7946", "kind": "model", "name": "MessageDeltaContentImageFileObjectImageFile", "namespace": "OpenAI", @@ -104848,12 +104971,12 @@ "decorators": [], "properties": [ { - "$id": "7937", + "$id": "7947", "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": "7938", + "$id": "7948", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104869,7 +104992,7 @@ "isHttpMetadata": false }, { - "$id": "7939", + "$id": "7949", "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`.", @@ -104899,7 +105022,7 @@ ] }, "image_url": { - "$id": "7940", + "$id": "7950", "kind": "model", "name": "MessageDeltaContentImageUrlObject", "namespace": "OpenAI", @@ -104910,16 +105033,16 @@ "discriminatorValue": "image_url", "decorators": [], "baseModel": { - "$ref": "7929" + "$ref": "7939" }, "properties": [ { - "$id": "7941", + "$id": "7951", "kind": "property", "name": "index", "doc": "The index of the content part in the message.", "type": { - "$id": "7942", + "$id": "7952", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104935,12 +105058,12 @@ "isHttpMetadata": false }, { - "$id": "7943", + "$id": "7953", "kind": "property", "name": "type", "doc": "Always `image_url`.", "type": { - "$ref": "6027" + "$ref": "6037" }, "optional": false, "readOnly": false, @@ -104952,11 +105075,11 @@ "isHttpMetadata": false }, { - "$id": "7944", + "$id": "7954", "kind": "property", "name": "image_url", "type": { - "$id": "7945", + "$id": "7955", "kind": "model", "name": "MessageDeltaContentImageUrlObjectImageUrl", "namespace": "OpenAI", @@ -104965,12 +105088,12 @@ "decorators": [], "properties": [ { - "$id": "7946", + "$id": "7956", "kind": "property", "name": "url", "doc": "The URL of the image, must be a supported image types: jpeg, jpg, png, gif, webp.", "type": { - "$id": "7947", + "$id": "7957", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -104986,7 +105109,7 @@ "isHttpMetadata": false }, { - "$id": "7948", + "$id": "7958", "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`.", @@ -105016,7 +105139,7 @@ ] }, "text": { - "$id": "7949", + "$id": "7959", "kind": "model", "name": "MessageDeltaContentTextObject", "namespace": "OpenAI", @@ -105027,16 +105150,16 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "7929" + "$ref": "7939" }, "properties": [ { - "$id": "7950", + "$id": "7960", "kind": "property", "name": "index", "doc": "The index of the content part in the message.", "type": { - "$id": "7951", + "$id": "7961", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105052,12 +105175,12 @@ "isHttpMetadata": false }, { - "$id": "7952", + "$id": "7962", "kind": "property", "name": "type", "doc": "Always `text`.", "type": { - "$ref": "5979" + "$ref": "5989" }, "optional": false, "readOnly": false, @@ -105069,11 +105192,11 @@ "isHttpMetadata": false }, { - "$id": "7953", + "$id": "7963", "kind": "property", "name": "text", "type": { - "$id": "7954", + "$id": "7964", "kind": "model", "name": "MessageDeltaContentTextObjectText", "namespace": "OpenAI", @@ -105082,12 +105205,12 @@ "decorators": [], "properties": [ { - "$id": "7955", + "$id": "7965", "kind": "property", "name": "value", "doc": "The data that makes up the text.", "type": { - "$id": "7956", + "$id": "7966", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105103,15 +105226,15 @@ "isHttpMetadata": false }, { - "$id": "7957", + "$id": "7967", "kind": "property", "name": "annotations", "type": { - "$id": "7958", + "$id": "7968", "kind": "array", "name": "ArrayMessageDeltaTextContentAnnotation", "valueType": { - "$id": "7959", + "$id": "7969", "kind": "model", "name": "MessageDeltaTextContentAnnotation", "namespace": "OpenAI", @@ -105120,7 +105243,7 @@ "usage": "Output", "decorators": [], "discriminatorProperty": { - "$id": "7960", + "$id": "7970", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the content item.", @@ -105138,12 +105261,12 @@ }, "properties": [ { - "$ref": "7960" + "$ref": "7970" } ], "discriminatedSubtypes": { "file_citation": { - "$id": "7961", + "$id": "7971", "kind": "model", "name": "MessageDeltaContentTextAnnotationsFileCitationObject", "namespace": "OpenAI", @@ -105154,16 +105277,16 @@ "discriminatorValue": "file_citation", "decorators": [], "baseModel": { - "$ref": "7959" + "$ref": "7969" }, "properties": [ { - "$id": "7962", + "$id": "7972", "kind": "property", "name": "index", "doc": "The index of the annotation in the text content part.", "type": { - "$id": "7963", + "$id": "7973", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105179,12 +105302,12 @@ "isHttpMetadata": false }, { - "$id": "7964", + "$id": "7974", "kind": "property", "name": "type", "doc": "Always `file_citation`.", "type": { - "$ref": "5992" + "$ref": "6002" }, "optional": false, "readOnly": false, @@ -105196,12 +105319,12 @@ "isHttpMetadata": false }, { - "$id": "7965", + "$id": "7975", "kind": "property", "name": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "7966", + "$id": "7976", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105217,11 +105340,11 @@ "isHttpMetadata": false }, { - "$id": "7967", + "$id": "7977", "kind": "property", "name": "file_citation", "type": { - "$id": "7968", + "$id": "7978", "kind": "model", "name": "MessageDeltaContentTextAnnotationsFileCitationObjectFileCitation", "namespace": "OpenAI", @@ -105230,12 +105353,12 @@ "decorators": [], "properties": [ { - "$id": "7969", + "$id": "7979", "kind": "property", "name": "file_id", "doc": "The ID of the specific File the citation is from.", "type": { - "$id": "7970", + "$id": "7980", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105251,12 +105374,12 @@ "isHttpMetadata": false }, { - "$id": "7971", + "$id": "7981", "kind": "property", "name": "quote", "doc": "The specific quote in the file.", "type": { - "$id": "7972", + "$id": "7982", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105283,11 +105406,11 @@ "isHttpMetadata": false }, { - "$id": "7973", + "$id": "7983", "kind": "property", "name": "start_index", "type": { - "$id": "7974", + "$id": "7984", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105303,11 +105426,11 @@ "isHttpMetadata": false }, { - "$id": "7975", + "$id": "7985", "kind": "property", "name": "end_index", "type": { - "$id": "7976", + "$id": "7986", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105325,7 +105448,7 @@ ] }, "file_path": { - "$id": "7977", + "$id": "7987", "kind": "model", "name": "MessageDeltaContentTextAnnotationsFilePathObject", "namespace": "OpenAI", @@ -105336,16 +105459,16 @@ "discriminatorValue": "file_path", "decorators": [], "baseModel": { - "$ref": "7959" + "$ref": "7969" }, "properties": [ { - "$id": "7978", + "$id": "7988", "kind": "property", "name": "index", "doc": "The index of the annotation in the text content part.", "type": { - "$id": "7979", + "$id": "7989", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105361,12 +105484,12 @@ "isHttpMetadata": false }, { - "$id": "7980", + "$id": "7990", "kind": "property", "name": "type", "doc": "Always `file_path`.", "type": { - "$ref": "6009" + "$ref": "6019" }, "optional": false, "readOnly": false, @@ -105378,12 +105501,12 @@ "isHttpMetadata": false }, { - "$id": "7981", + "$id": "7991", "kind": "property", "name": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "7982", + "$id": "7992", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105399,11 +105522,11 @@ "isHttpMetadata": false }, { - "$id": "7983", + "$id": "7993", "kind": "property", "name": "file_path", "type": { - "$id": "7984", + "$id": "7994", "kind": "model", "name": "MessageDeltaContentTextAnnotationsFilePathObjectFilePath", "namespace": "OpenAI", @@ -105412,12 +105535,12 @@ "decorators": [], "properties": [ { - "$id": "7985", + "$id": "7995", "kind": "property", "name": "file_id", "doc": "The ID of the file that was generated.", "type": { - "$id": "7986", + "$id": "7996", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105444,11 +105567,11 @@ "isHttpMetadata": false }, { - "$id": "7987", + "$id": "7997", "kind": "property", "name": "start_index", "type": { - "$id": "7988", + "$id": "7998", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105464,11 +105587,11 @@ "isHttpMetadata": false }, { - "$id": "7989", + "$id": "7999", "kind": "property", "name": "end_index", "type": { - "$id": "7990", + "$id": "8000", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105513,7 +105636,7 @@ ] }, "refusal": { - "$id": "7991", + "$id": "8001", "kind": "model", "name": "MessageDeltaContentRefusalObject", "namespace": "OpenAI", @@ -105523,16 +105646,16 @@ "discriminatorValue": "refusal", "decorators": [], "baseModel": { - "$ref": "7929" + "$ref": "7939" }, "properties": [ { - "$id": "7992", + "$id": "8002", "kind": "property", "name": "index", "doc": "The index of the refusal part in the message.", "type": { - "$id": "7993", + "$id": "8003", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105548,12 +105671,12 @@ "isHttpMetadata": false }, { - "$id": "7994", + "$id": "8004", "kind": "property", "name": "type", "doc": "Always `refusal`.", "type": { - "$ref": "6022" + "$ref": "6032" }, "optional": false, "readOnly": false, @@ -105565,11 +105688,11 @@ "isHttpMetadata": false }, { - "$id": "7995", + "$id": "8005", "kind": "property", "name": "refusal", "type": { - "$id": "7996", + "$id": "8006", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105589,43 +105712,43 @@ } }, { - "$ref": "7931" + "$ref": "7941" }, { - "$ref": "7936" + "$ref": "7946" }, { - "$ref": "7940" + "$ref": "7950" }, { - "$ref": "7945" + "$ref": "7955" }, { - "$ref": "7949" + "$ref": "7959" }, { - "$ref": "7954" + "$ref": "7964" }, { - "$ref": "7959" + "$ref": "7969" }, { - "$ref": "7961" + "$ref": "7971" }, { - "$ref": "7968" + "$ref": "7978" }, { - "$ref": "7977" + "$ref": "7987" }, { - "$ref": "7984" + "$ref": "7994" }, { - "$ref": "7991" + "$ref": "8001" }, { - "$id": "7997", + "$id": "8007", "kind": "model", "name": "MessageDeltaObject", "namespace": "OpenAI", @@ -105636,12 +105759,12 @@ "decorators": [], "properties": [ { - "$id": "7998", + "$id": "8008", "kind": "property", "name": "id", "doc": "The identifier of the message, which can be referenced in API endpoints.", "type": { - "$id": "7999", + "$id": "8009", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105657,7 +105780,7 @@ "isHttpMetadata": false }, { - "$id": "8000", + "$id": "8010", "kind": "property", "name": "object", "doc": "The object type, which is always `thread.message.delta`.", @@ -105674,12 +105797,12 @@ "isHttpMetadata": false }, { - "$id": "8001", + "$id": "8011", "kind": "property", "name": "delta", "doc": "The delta containing the fields that have changed on the Message.", "type": { - "$id": "8002", + "$id": "8012", "kind": "model", "name": "MessageDeltaObjectDelta", "namespace": "OpenAI", @@ -105688,7 +105811,7 @@ "decorators": [], "properties": [ { - "$id": "8003", + "$id": "8013", "kind": "property", "name": "role", "doc": "The entity that produced the message. One of `user` or `assistant`.", @@ -105705,16 +105828,16 @@ "isHttpMetadata": false }, { - "$id": "8004", + "$id": "8014", "kind": "property", "name": "content", "doc": "The content of the message in array of text and/or images.", "type": { - "$id": "8005", + "$id": "8015", "kind": "array", "name": "ArrayMessageDeltaContent", "valueType": { - "$ref": "7929" + "$ref": "7939" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -105742,10 +105865,10 @@ ] }, { - "$ref": "8002" + "$ref": "8012" }, { - "$id": "8006", + "$id": "8016", "kind": "model", "name": "RunStepDeltaObject", "namespace": "OpenAI", @@ -105756,12 +105879,12 @@ "decorators": [], "properties": [ { - "$id": "8007", + "$id": "8017", "kind": "property", "name": "id", "doc": "The identifier of the run step, which can be referenced in API endpoints.", "type": { - "$id": "8008", + "$id": "8018", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105777,7 +105900,7 @@ "isHttpMetadata": false }, { - "$id": "8009", + "$id": "8019", "kind": "property", "name": "object", "doc": "The object type, which is always `thread.run.step.delta`.", @@ -105794,12 +105917,12 @@ "isHttpMetadata": false }, { - "$id": "8010", + "$id": "8020", "kind": "property", "name": "delta", "doc": "The delta containing the fields that have changed on the run step.", "type": { - "$id": "8011", + "$id": "8021", "kind": "model", "name": "RunStepDeltaObjectDelta", "namespace": "OpenAI", @@ -105808,12 +105931,12 @@ "decorators": [], "properties": [ { - "$id": "8012", + "$id": "8022", "kind": "property", "name": "step_details", "doc": "The details of the run step.", "type": { - "$id": "8013", + "$id": "8023", "kind": "model", "name": "RunStepDeltaStepDetails", "namespace": "OpenAI", @@ -105821,7 +105944,7 @@ "usage": "Output", "decorators": [], "discriminatorProperty": { - "$id": "8014", + "$id": "8024", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the details object.", @@ -105839,12 +105962,12 @@ }, "properties": [ { - "$ref": "8014" + "$ref": "8024" } ], "discriminatedSubtypes": { "message_creation": { - "$id": "8015", + "$id": "8025", "kind": "model", "name": "RunStepDeltaStepDetailsMessageCreationObject", "namespace": "OpenAI", @@ -105855,16 +105978,16 @@ "discriminatorValue": "message_creation", "decorators": [], "baseModel": { - "$ref": "8013" + "$ref": "8023" }, "properties": [ { - "$id": "8016", + "$id": "8026", "kind": "property", "name": "type", "doc": "Always `message_creation`.", "type": { - "$ref": "6471" + "$ref": "6481" }, "optional": false, "readOnly": false, @@ -105876,11 +105999,11 @@ "isHttpMetadata": false }, { - "$id": "8017", + "$id": "8027", "kind": "property", "name": "message_creation", "type": { - "$id": "8018", + "$id": "8028", "kind": "model", "name": "RunStepDeltaStepDetailsMessageCreationObjectMessageCreation", "namespace": "OpenAI", @@ -105889,12 +106012,12 @@ "decorators": [], "properties": [ { - "$id": "8019", + "$id": "8029", "kind": "property", "name": "message_id", "doc": "The ID of the message that was created by this run step.", "type": { - "$id": "8020", + "$id": "8030", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105923,7 +106046,7 @@ ] }, "tool_calls": { - "$id": "8021", + "$id": "8031", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsObject", "namespace": "OpenAI", @@ -105934,16 +106057,16 @@ "discriminatorValue": "tool_calls", "decorators": [], "baseModel": { - "$ref": "8013" + "$ref": "8023" }, "properties": [ { - "$id": "8022", + "$id": "8032", "kind": "property", "name": "type", "doc": "Always `tool_calls`.", "type": { - "$ref": "6482" + "$ref": "6492" }, "optional": false, "readOnly": false, @@ -105955,16 +106078,16 @@ "isHttpMetadata": false }, { - "$id": "8023", + "$id": "8033", "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": "8024", + "$id": "8034", "kind": "array", "name": "ArrayRunStepDeltaStepDetailsToolCallsObjectToolCallsObject", "valueType": { - "$id": "8025", + "$id": "8035", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsObjectToolCallsObject", "namespace": "OpenAI", @@ -105973,7 +106096,7 @@ "doc": "Abstractly represents a run step tool call details inner object.", "decorators": [], "discriminatorProperty": { - "$id": "8026", + "$id": "8036", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the details object.", @@ -105991,12 +106114,12 @@ }, "properties": [ { - "$ref": "8026" + "$ref": "8036" } ], "discriminatedSubtypes": { "code_interpreter": { - "$id": "8027", + "$id": "8037", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeObject", "namespace": "OpenAI", @@ -106007,16 +106130,16 @@ "discriminatorValue": "code_interpreter", "decorators": [], "baseModel": { - "$ref": "8025" + "$ref": "8035" }, "properties": [ { - "$id": "8028", + "$id": "8038", "kind": "property", "name": "index", "doc": "The index of the tool call in the tool calls array.", "type": { - "$id": "8029", + "$id": "8039", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106032,12 +106155,12 @@ "isHttpMetadata": false }, { - "$id": "8030", + "$id": "8040", "kind": "property", "name": "id", "doc": "The ID of the tool call.", "type": { - "$id": "8031", + "$id": "8041", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106053,12 +106176,12 @@ "isHttpMetadata": false }, { - "$id": "8032", + "$id": "8042", "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": "6491" + "$ref": "6501" }, "optional": false, "readOnly": false, @@ -106070,12 +106193,12 @@ "isHttpMetadata": false }, { - "$id": "8033", + "$id": "8043", "kind": "property", "name": "code_interpreter", "doc": "The Code Interpreter tool call definition.", "type": { - "$id": "8034", + "$id": "8044", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreter", "namespace": "OpenAI", @@ -106084,12 +106207,12 @@ "decorators": [], "properties": [ { - "$id": "8035", + "$id": "8045", "kind": "property", "name": "input", "doc": "The input to the Code Interpreter tool call.", "type": { - "$id": "8036", + "$id": "8046", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106105,16 +106228,16 @@ "isHttpMetadata": false }, { - "$id": "8037", + "$id": "8047", "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": "8038", + "$id": "8048", "kind": "array", "name": "ArrayRunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreterOutputsObject", "valueType": { - "$id": "8039", + "$id": "8049", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreterOutputsObject", "namespace": "OpenAI", @@ -106123,7 +106246,7 @@ "doc": "Abstractly represents a run step tool call details code interpreter output.", "decorators": [], "discriminatorProperty": { - "$id": "8040", + "$id": "8050", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the details object.", @@ -106141,12 +106264,12 @@ }, "properties": [ { - "$ref": "8040" + "$ref": "8050" } ], "discriminatedSubtypes": { "logs": { - "$id": "8041", + "$id": "8051", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject", "namespace": "OpenAI", @@ -106157,16 +106280,16 @@ "discriminatorValue": "logs", "decorators": [], "baseModel": { - "$ref": "8039" + "$ref": "8049" }, "properties": [ { - "$id": "8042", + "$id": "8052", "kind": "property", "name": "index", "doc": "The index of the output in the outputs array.", "type": { - "$id": "8043", + "$id": "8053", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106182,12 +106305,12 @@ "isHttpMetadata": false }, { - "$id": "8044", + "$id": "8054", "kind": "property", "name": "type", "doc": "Always `logs`.", "type": { - "$ref": "6507" + "$ref": "6517" }, "optional": false, "readOnly": false, @@ -106199,12 +106322,12 @@ "isHttpMetadata": false }, { - "$id": "8045", + "$id": "8055", "kind": "property", "name": "logs", "doc": "The text output from the Code Interpreter tool call.", "type": { - "$id": "8046", + "$id": "8056", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106222,7 +106345,7 @@ ] }, "image": { - "$id": "8047", + "$id": "8057", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeOutputImageObject", "namespace": "OpenAI", @@ -106232,16 +106355,16 @@ "discriminatorValue": "image", "decorators": [], "baseModel": { - "$ref": "8039" + "$ref": "8049" }, "properties": [ { - "$id": "8048", + "$id": "8058", "kind": "property", "name": "index", "doc": "The index of the output in the outputs array.", "type": { - "$id": "8049", + "$id": "8059", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106257,12 +106380,12 @@ "isHttpMetadata": false }, { - "$id": "8050", + "$id": "8060", "kind": "property", "name": "type", "doc": "Always `image`.", "type": { - "$ref": "6516" + "$ref": "6526" }, "optional": false, "readOnly": false, @@ -106274,11 +106397,11 @@ "isHttpMetadata": false }, { - "$id": "8051", + "$id": "8061", "kind": "property", "name": "image", "type": { - "$id": "8052", + "$id": "8062", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectImage", "namespace": "OpenAI", @@ -106287,12 +106410,12 @@ "decorators": [], "properties": [ { - "$id": "8053", + "$id": "8063", "kind": "property", "name": "file_id", "doc": "The [file](/docs/api-reference/files) ID of the image.", "type": { - "$id": "8054", + "$id": "8064", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106348,7 +106471,7 @@ ] }, "file_search": { - "$id": "8055", + "$id": "8065", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsFileSearchObject", "namespace": "OpenAI", @@ -106358,16 +106481,16 @@ "discriminatorValue": "file_search", "decorators": [], "baseModel": { - "$ref": "8025" + "$ref": "8035" }, "properties": [ { - "$id": "8056", + "$id": "8066", "kind": "property", "name": "index", "doc": "The index of the tool call in the tool calls array.", "type": { - "$id": "8057", + "$id": "8067", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106383,12 +106506,12 @@ "isHttpMetadata": false }, { - "$id": "8058", + "$id": "8068", "kind": "property", "name": "id", "doc": "The ID of the tool call object.", "type": { - "$id": "8059", + "$id": "8069", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106404,12 +106527,12 @@ "isHttpMetadata": false }, { - "$id": "8060", + "$id": "8070", "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": "6523" + "$ref": "6533" }, "optional": false, "readOnly": false, @@ -106421,12 +106544,12 @@ "isHttpMetadata": false }, { - "$id": "8061", + "$id": "8071", "kind": "property", "name": "file_search", "doc": "For now, this is always going to be an empty object.", "type": { - "$id": "8062", + "$id": "8072", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsFileSearchObjectFileSearch", "namespace": "OpenAI", @@ -106435,11 +106558,11 @@ "decorators": [], "properties": [ { - "$id": "8063", + "$id": "8073", "kind": "property", "name": "ranking_options", "type": { - "$ref": "6527" + "$ref": "6537" }, "optional": true, "readOnly": false, @@ -106451,12 +106574,12 @@ "isHttpMetadata": false }, { - "$id": "8064", + "$id": "8074", "kind": "property", "name": "results", "doc": "The results of the file search.", "type": { - "$ref": "6532" + "$ref": "6542" }, "optional": true, "readOnly": true, @@ -106481,7 +106604,7 @@ ] }, "function": { - "$id": "8065", + "$id": "8075", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsFunctionObject", "namespace": "OpenAI", @@ -106491,16 +106614,16 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "8025" + "$ref": "8035" }, "properties": [ { - "$id": "8066", + "$id": "8076", "kind": "property", "name": "index", "doc": "The index of the tool call in the tool calls array.", "type": { - "$id": "8067", + "$id": "8077", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106516,12 +106639,12 @@ "isHttpMetadata": false }, { - "$id": "8068", + "$id": "8078", "kind": "property", "name": "id", "doc": "The ID of the tool call object.", "type": { - "$id": "8069", + "$id": "8079", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106537,12 +106660,12 @@ "isHttpMetadata": false }, { - "$id": "8070", + "$id": "8080", "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": "6552" + "$ref": "6562" }, "optional": false, "readOnly": false, @@ -106554,12 +106677,12 @@ "isHttpMetadata": false }, { - "$id": "8071", + "$id": "8081", "kind": "property", "name": "function", "doc": "The definition of the function that was called.", "type": { - "$id": "8072", + "$id": "8082", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsFunctionObjectFunction", "namespace": "OpenAI", @@ -106568,12 +106691,12 @@ "decorators": [], "properties": [ { - "$id": "8073", + "$id": "8083", "kind": "property", "name": "name", "doc": "The name of the function.", "type": { - "$id": "8074", + "$id": "8084", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106589,12 +106712,12 @@ "isHttpMetadata": false }, { - "$id": "8075", + "$id": "8085", "kind": "property", "name": "arguments", "doc": "The arguments passed to the function.", "type": { - "$id": "8076", + "$id": "8086", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106610,15 +106733,15 @@ "isHttpMetadata": false }, { - "$id": "8077", + "$id": "8087", "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": "8078", + "$id": "8088", "kind": "nullable", "type": { - "$id": "8079", + "$id": "8089", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106689,43 +106812,37 @@ ] }, { - "$ref": "8011" - }, - { - "$ref": "8013" - }, - { - "$ref": "8015" + "$ref": "8021" }, { - "$ref": "8018" + "$ref": "8023" }, { - "$ref": "8021" + "$ref": "8025" }, { - "$ref": "8025" + "$ref": "8028" }, { - "$ref": "8027" + "$ref": "8031" }, { - "$ref": "8034" + "$ref": "8035" }, { - "$ref": "8039" + "$ref": "8037" }, { - "$ref": "8041" + "$ref": "8044" }, { - "$ref": "8047" + "$ref": "8049" }, { - "$ref": "8052" + "$ref": "8051" }, { - "$ref": "8055" + "$ref": "8057" }, { "$ref": "8062" @@ -106737,7 +106854,13 @@ "$ref": "8072" }, { - "$id": "8080", + "$ref": "8075" + }, + { + "$ref": "8082" + }, + { + "$id": "8090", "kind": "model", "name": "CreateThreadRequestToolResourcesFileSearchBase", "namespace": "OpenAI", @@ -106748,7 +106871,7 @@ "properties": [] }, { - "$id": "8081", + "$id": "8091", "kind": "model", "name": "AssistantCollectionOptions", "namespace": "OpenAI", @@ -106758,12 +106881,12 @@ "decorators": [], "properties": [ { - "$id": "8082", + "$id": "8092", "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": "8083", + "$id": "8093", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106779,12 +106902,12 @@ "isHttpMetadata": true }, { - "$id": "8084", + "$id": "8094", "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": "8085", + "$id": "8095", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106800,12 +106923,12 @@ "isHttpMetadata": true }, { - "$id": "8086", + "$id": "8096", "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": "8087", + "$id": "8097", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106821,7 +106944,7 @@ "isHttpMetadata": true }, { - "$id": "8088", + "$id": "8098", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -106840,7 +106963,7 @@ ] }, { - "$id": "8089", + "$id": "8099", "kind": "model", "name": "MessageCollectionOptions", "namespace": "OpenAI", @@ -106850,12 +106973,12 @@ "decorators": [], "properties": [ { - "$id": "8090", + "$id": "8100", "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": "8091", + "$id": "8101", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106871,12 +106994,12 @@ "isHttpMetadata": true }, { - "$id": "8092", + "$id": "8102", "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": "8093", + "$id": "8103", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106892,12 +107015,12 @@ "isHttpMetadata": true }, { - "$id": "8094", + "$id": "8104", "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": "8095", + "$id": "8105", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106913,7 +107036,7 @@ "isHttpMetadata": true }, { - "$id": "8096", + "$id": "8106", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -106932,7 +107055,7 @@ ] }, { - "$id": "8097", + "$id": "8107", "kind": "model", "name": "RunCollectionOptions", "namespace": "OpenAI", @@ -106942,12 +107065,12 @@ "decorators": [], "properties": [ { - "$id": "8098", + "$id": "8108", "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": "8099", + "$id": "8109", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106963,12 +107086,12 @@ "isHttpMetadata": true }, { - "$id": "8100", + "$id": "8110", "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": "8101", + "$id": "8111", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106984,12 +107107,12 @@ "isHttpMetadata": true }, { - "$id": "8102", + "$id": "8112", "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": "8103", + "$id": "8113", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -107005,7 +107128,7 @@ "isHttpMetadata": true }, { - "$id": "8104", + "$id": "8114", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -107024,7 +107147,7 @@ ] }, { - "$id": "8105", + "$id": "8115", "kind": "model", "name": "RunStepCollectionOptions", "namespace": "OpenAI", @@ -107034,12 +107157,12 @@ "decorators": [], "properties": [ { - "$id": "8106", + "$id": "8116", "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": "8107", + "$id": "8117", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107055,12 +107178,12 @@ "isHttpMetadata": true }, { - "$id": "8108", + "$id": "8118", "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": "8109", + "$id": "8119", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107076,12 +107199,12 @@ "isHttpMetadata": true }, { - "$id": "8110", + "$id": "8120", "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": "8111", + "$id": "8121", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -107097,7 +107220,7 @@ "isHttpMetadata": true }, { - "$id": "8112", + "$id": "8122", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -107116,7 +107239,7 @@ ] }, { - "$id": "8113", + "$id": "8123", "kind": "model", "name": "DotNetChatResponseFormat", "namespace": "OpenAI", @@ -107130,7 +107253,7 @@ } ], "discriminatorProperty": { - "$id": "8114", + "$id": "8124", "kind": "property", "name": "type", "type": { @@ -107147,12 +107270,12 @@ }, "properties": [ { - "$ref": "8114" + "$ref": "8124" } ], "discriminatedSubtypes": { "text": { - "$id": "8115", + "$id": "8125", "kind": "model", "name": "DotNetChatResponseFormatText", "namespace": "OpenAI", @@ -107167,11 +107290,11 @@ } ], "baseModel": { - "$ref": "8113" + "$ref": "8123" }, "properties": [ { - "$id": "8116", + "$id": "8126", "kind": "property", "name": "type", "doc": "The type of response format being defined. Always `text`.", @@ -107190,7 +107313,7 @@ ] }, "json_object": { - "$id": "8117", + "$id": "8127", "kind": "model", "name": "DotNetChatResponseFormatJsonObject", "namespace": "OpenAI", @@ -107205,11 +107328,11 @@ } ], "baseModel": { - "$ref": "8113" + "$ref": "8123" }, "properties": [ { - "$id": "8118", + "$id": "8128", "kind": "property", "name": "type", "doc": "The type of response format being defined. Always `json_object`.", @@ -107228,7 +107351,7 @@ ] }, "json_schema": { - "$id": "8119", + "$id": "8129", "kind": "model", "name": "DotNetChatResponseFormatJsonSchema", "namespace": "OpenAI", @@ -107243,11 +107366,11 @@ } ], "baseModel": { - "$ref": "8113" + "$ref": "8123" }, "properties": [ { - "$id": "8120", + "$id": "8130", "kind": "property", "name": "type", "type": { @@ -107263,11 +107386,11 @@ "isHttpMetadata": false }, { - "$id": "8121", + "$id": "8131", "kind": "property", "name": "json_schema", "type": { - "$id": "8122", + "$id": "8132", "kind": "model", "name": "DotNetChatResponseFormatJsonSchemaJsonSchema", "namespace": "OpenAI", @@ -107276,11 +107399,11 @@ "decorators": [], "properties": [ { - "$id": "8123", + "$id": "8133", "kind": "property", "name": "description", "type": { - "$id": "8124", + "$id": "8134", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107296,11 +107419,11 @@ "isHttpMetadata": false }, { - "$id": "8125", + "$id": "8135", "kind": "property", "name": "name", "type": { - "$id": "8126", + "$id": "8136", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107316,11 +107439,11 @@ "isHttpMetadata": false }, { - "$id": "8127", + "$id": "8137", "kind": "property", "name": "schema", "type": { - "$id": "8128", + "$id": "8138", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -107336,14 +107459,14 @@ "isHttpMetadata": false }, { - "$id": "8129", + "$id": "8139", "kind": "property", "name": "strict", "type": { - "$id": "8130", + "$id": "8140", "kind": "nullable", "type": { - "$id": "8131", + "$id": "8141", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -107376,19 +107499,19 @@ } }, { - "$ref": "8115" + "$ref": "8125" }, { - "$ref": "8117" + "$ref": "8127" }, { - "$ref": "8119" + "$ref": "8129" }, { - "$ref": "8122" + "$ref": "8132" }, { - "$id": "8132", + "$id": "8142", "kind": "model", "name": "DotNetAssistantResponseFormat", "namespace": "OpenAI", @@ -107397,7 +107520,7 @@ "usage": "Input,Output", "decorators": [], "discriminatorProperty": { - "$id": "8133", + "$id": "8143", "kind": "property", "name": "type", "type": { @@ -107414,12 +107537,12 @@ }, "properties": [ { - "$ref": "8133" + "$ref": "8143" } ], "discriminatedSubtypes": { "text": { - "$id": "8134", + "$id": "8144", "kind": "model", "name": "DotNetAssistantResponseFormatText", "namespace": "OpenAI", @@ -107429,11 +107552,11 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "8132" + "$ref": "8142" }, "properties": [ { - "$id": "8135", + "$id": "8145", "kind": "property", "name": "type", "doc": "The type of response format being defined. Always `text`.", @@ -107452,7 +107575,7 @@ ] }, "json_object": { - "$id": "8136", + "$id": "8146", "kind": "model", "name": "DotNetAssistantResponseFormatJsonObject", "namespace": "OpenAI", @@ -107462,11 +107585,11 @@ "discriminatorValue": "json_object", "decorators": [], "baseModel": { - "$ref": "8132" + "$ref": "8142" }, "properties": [ { - "$id": "8137", + "$id": "8147", "kind": "property", "name": "type", "doc": "The type of response format being defined. Always `json_object`.", @@ -107485,7 +107608,7 @@ ] }, "json_schema": { - "$id": "8138", + "$id": "8148", "kind": "model", "name": "DotNetAssistantResponseFormatJsonSchema", "namespace": "OpenAI", @@ -107495,11 +107618,11 @@ "discriminatorValue": "json_schema", "decorators": [], "baseModel": { - "$ref": "8132" + "$ref": "8142" }, "properties": [ { - "$id": "8139", + "$id": "8149", "kind": "property", "name": "type", "type": { @@ -107515,11 +107638,11 @@ "isHttpMetadata": false }, { - "$id": "8140", + "$id": "8150", "kind": "property", "name": "json_schema", "type": { - "$id": "8141", + "$id": "8151", "kind": "model", "name": "DotNetAssistantResponseFormatJsonSchemaJsonSchema", "namespace": "OpenAI", @@ -107528,11 +107651,11 @@ "decorators": [], "properties": [ { - "$id": "8142", + "$id": "8152", "kind": "property", "name": "description", "type": { - "$id": "8143", + "$id": "8153", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107548,11 +107671,11 @@ "isHttpMetadata": false }, { - "$id": "8144", + "$id": "8154", "kind": "property", "name": "name", "type": { - "$id": "8145", + "$id": "8155", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107568,11 +107691,11 @@ "isHttpMetadata": false }, { - "$id": "8146", + "$id": "8156", "kind": "property", "name": "schema", "type": { - "$id": "8147", + "$id": "8157", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -107588,14 +107711,14 @@ "isHttpMetadata": false }, { - "$id": "8148", + "$id": "8158", "kind": "property", "name": "strict", "type": { - "$id": "8149", + "$id": "8159", "kind": "nullable", "type": { - "$id": "8150", + "$id": "8160", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -107628,19 +107751,19 @@ } }, { - "$ref": "8134" + "$ref": "8144" }, { - "$ref": "8136" + "$ref": "8146" }, { - "$ref": "8138" + "$ref": "8148" }, { - "$ref": "8141" + "$ref": "8151" }, { - "$id": "8151", + "$id": "8161", "kind": "model", "name": "DotNetAudioLogProbsProperties", "namespace": "OpenAI", @@ -107650,12 +107773,12 @@ "decorators": [], "properties": [ { - "$id": "8152", + "$id": "8162", "kind": "property", "name": "token", "doc": "The token that was used to generate the log probability.", "type": { - "$id": "8153", + "$id": "8163", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107671,12 +107794,12 @@ "isHttpMetadata": false }, { - "$id": "8154", + "$id": "8164", "kind": "property", "name": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "8155", + "$id": "8165", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -107692,7 +107815,7 @@ "isHttpMetadata": false }, { - "$id": "8156", + "$id": "8166", "kind": "property", "name": "bytes", "doc": "The bytes that were used to generate the log probability.", @@ -107711,7 +107834,7 @@ ] }, { - "$id": "8157", + "$id": "8167", "kind": "model", "name": "DotNetRealtimeLogProbsProperties", "namespace": "OpenAI", @@ -107721,12 +107844,12 @@ "decorators": [], "properties": [ { - "$id": "8158", + "$id": "8168", "kind": "property", "name": "token", "doc": "The token that was used to generate the log probability.", "type": { - "$id": "8159", + "$id": "8169", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107742,12 +107865,12 @@ "isHttpMetadata": false }, { - "$id": "8160", + "$id": "8170", "kind": "property", "name": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "8161", + "$id": "8171", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -107763,7 +107886,7 @@ "isHttpMetadata": false }, { - "$id": "8162", + "$id": "8172", "kind": "property", "name": "bytes", "doc": "The bytes that were used to generate the log probability.", @@ -107782,7 +107905,7 @@ ] }, { - "$id": "8163", + "$id": "8173", "kind": "model", "name": "DotNetCombinedJsonTranscriptionResponse", "namespace": "OpenAI", @@ -107792,7 +107915,7 @@ "decorators": [], "properties": [ { - "$id": "8164", + "$id": "8174", "kind": "property", "name": "task", "doc": "The task label.", @@ -107809,12 +107932,12 @@ "isHttpMetadata": false }, { - "$id": "8165", + "$id": "8175", "kind": "property", "name": "language", "doc": "The language of the input audio.", "type": { - "$id": "8166", + "$id": "8176", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107830,17 +107953,17 @@ "isHttpMetadata": false }, { - "$id": "8167", + "$id": "8177", "kind": "property", "name": "duration", "doc": "The duration of the input audio.", "type": { - "$id": "8168", + "$id": "8178", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "8169", + "$id": "8179", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -107859,12 +107982,12 @@ "isHttpMetadata": false }, { - "$id": "8170", + "$id": "8180", "kind": "property", "name": "text", "doc": "The transcribed text.", "type": { - "$id": "8171", + "$id": "8181", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107880,7 +108003,7 @@ "isHttpMetadata": false }, { - "$id": "8172", + "$id": "8182", "kind": "property", "name": "words", "doc": "Extracted words and their corresponding timestamps.", @@ -107897,7 +108020,7 @@ "isHttpMetadata": false }, { - "$id": "8173", + "$id": "8183", "kind": "property", "name": "segments", "doc": "Segments of the transcribed text and their corresponding details.", @@ -107914,11 +108037,11 @@ "isHttpMetadata": false }, { - "$id": "8174", + "$id": "8184", "kind": "property", "name": "logprobs", "type": { - "$ref": "7424" + "$ref": "7434" }, "optional": true, "readOnly": false, @@ -107932,7 +108055,7 @@ ] }, { - "$id": "8175", + "$id": "8185", "kind": "model", "name": "BatchCollectionOptions", "namespace": "OpenAI", @@ -107942,12 +108065,12 @@ "decorators": [], "properties": [ { - "$id": "8176", + "$id": "8186", "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": "8177", + "$id": "8187", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107963,12 +108086,12 @@ "isHttpMetadata": true }, { - "$id": "8178", + "$id": "8188", "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": "8179", + "$id": "8189", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -107986,7 +108109,7 @@ ] }, { - "$id": "8180", + "$id": "8190", "kind": "model", "name": "ChatCompletionCollectionOptions", "namespace": "OpenAI", @@ -108001,12 +108124,12 @@ ], "properties": [ { - "$id": "8181", + "$id": "8191", "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": "8182", + "$id": "8192", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108022,12 +108145,12 @@ "isHttpMetadata": true }, { - "$id": "8183", + "$id": "8193", "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": "8184", + "$id": "8194", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -108043,7 +108166,7 @@ "isHttpMetadata": true }, { - "$id": "8185", + "$id": "8195", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -108060,7 +108183,7 @@ "isHttpMetadata": true }, { - "$id": "8186", + "$id": "8196", "kind": "property", "name": "metadata", "type": { @@ -108076,11 +108199,11 @@ "isHttpMetadata": true }, { - "$id": "8187", + "$id": "8197", "kind": "property", "name": "model", "type": { - "$id": "8188", + "$id": "8198", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108098,7 +108221,7 @@ ] }, { - "$id": "8189", + "$id": "8199", "kind": "model", "name": "ChatCompletionMessageCollectionOptions", "namespace": "OpenAI", @@ -108113,12 +108236,12 @@ ], "properties": [ { - "$id": "8190", + "$id": "8200", "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": "8191", + "$id": "8201", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108134,12 +108257,12 @@ "isHttpMetadata": true }, { - "$id": "8192", + "$id": "8202", "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": "8193", + "$id": "8203", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -108155,7 +108278,7 @@ "isHttpMetadata": true }, { - "$id": "8194", + "$id": "8204", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -108174,7 +108297,7 @@ ] }, { - "$id": "8195", + "$id": "8205", "kind": "model", "name": "ContainerCollectionOptions", "namespace": "OpenAI", @@ -108184,12 +108307,12 @@ "decorators": [], "properties": [ { - "$id": "8196", + "$id": "8206", "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": "8197", + "$id": "8207", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108205,12 +108328,12 @@ "isHttpMetadata": true }, { - "$id": "8198", + "$id": "8208", "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": "8199", + "$id": "8209", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -108226,7 +108349,7 @@ "isHttpMetadata": true }, { - "$id": "8200", + "$id": "8210", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -108245,7 +108368,7 @@ ] }, { - "$id": "8201", + "$id": "8211", "kind": "model", "name": "ContainerFileCollectionOptions", "namespace": "OpenAI", @@ -108255,12 +108378,12 @@ "decorators": [], "properties": [ { - "$id": "8202", + "$id": "8212", "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": "8203", + "$id": "8213", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108276,12 +108399,12 @@ "isHttpMetadata": true }, { - "$id": "8204", + "$id": "8214", "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": "8205", + "$id": "8215", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -108297,7 +108420,7 @@ "isHttpMetadata": true }, { - "$id": "8206", + "$id": "8216", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -108316,7 +108439,7 @@ ] }, { - "$id": "8207", + "$id": "8217", "kind": "model", "name": "ConversationItemCollectionOptions", "namespace": "OpenAI", @@ -108326,12 +108449,12 @@ "decorators": [], "properties": [ { - "$id": "8208", + "$id": "8218", "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": "8209", + "$id": "8219", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108347,12 +108470,12 @@ "isHttpMetadata": true }, { - "$id": "8210", + "$id": "8220", "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": "8211", + "$id": "8221", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -108368,7 +108491,7 @@ "isHttpMetadata": true }, { - "$id": "8212", + "$id": "8222", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -108387,7 +108510,7 @@ ] }, { - "$id": "8213", + "$id": "8223", "kind": "model", "name": "ResponseItemCollectionOptions", "namespace": "OpenAI", @@ -108402,12 +108525,12 @@ ], "properties": [ { - "$id": "8214", + "$id": "8224", "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": "8215", + "$id": "8225", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108423,12 +108546,12 @@ "isHttpMetadata": true }, { - "$id": "8216", + "$id": "8226", "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": "8217", + "$id": "8227", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108444,12 +108567,12 @@ "isHttpMetadata": true }, { - "$id": "8218", + "$id": "8228", "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": "8219", + "$id": "8229", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -108465,7 +108588,7 @@ "isHttpMetadata": true }, { - "$id": "8220", + "$id": "8230", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -108484,7 +108607,7 @@ ] }, { - "$id": "8221", + "$id": "8231", "kind": "model", "name": "DotNetCustomToolCallApprovalPolicy", "namespace": "OpenAI", @@ -108499,7 +108622,7 @@ ], "properties": [ { - "$id": "8222", + "$id": "8232", "kind": "property", "name": "always", "doc": "A list of tools that always require approval.", @@ -108516,7 +108639,7 @@ "isHttpMetadata": false }, { - "$id": "8223", + "$id": "8233", "kind": "property", "name": "never", "doc": "A list of tools that never require approval.", @@ -108535,7 +108658,7 @@ ] }, { - "$id": "8224", + "$id": "8234", "kind": "model", "name": "DotNetToolCallApprovalPolicy", "namespace": "OpenAI", @@ -108550,7 +108673,7 @@ ], "properties": [ { - "$id": "8225", + "$id": "8235", "kind": "property", "name": "global_policy", "type": { @@ -108566,11 +108689,11 @@ "isHttpMetadata": false }, { - "$id": "8226", + "$id": "8236", "kind": "property", "name": "custom_policy", "type": { - "$ref": "8221" + "$ref": "8231" }, "optional": true, "readOnly": false, @@ -108584,7 +108707,7 @@ ] }, { - "$id": "8227", + "$id": "8237", "kind": "model", "name": "DotNetCodeInterpreterToolContainer", "namespace": "OpenAI", @@ -108599,11 +108722,11 @@ ], "properties": [ { - "$id": "8228", + "$id": "8238", "kind": "property", "name": "container_id", "type": { - "$id": "8229", + "$id": "8239", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108619,7 +108742,7 @@ "isHttpMetadata": false }, { - "$id": "8230", + "$id": "8240", "kind": "property", "name": "container", "type": { @@ -108637,7 +108760,7 @@ ] }, { - "$id": "8231", + "$id": "8241", "kind": "model", "name": "DotNetCombinedChunkingStrategyParam", "namespace": "OpenAI", @@ -108645,7 +108768,7 @@ "usage": "Input,Output", "decorators": [], "discriminatorProperty": { - "$id": "8232", + "$id": "8242", "kind": "property", "name": "type", "type": { @@ -108662,12 +108785,12 @@ }, "properties": [ { - "$ref": "8232" + "$ref": "8242" } ], "discriminatedSubtypes": { "auto": { - "$id": "8233", + "$id": "8243", "kind": "model", "name": "DotNetCombinedAutoChunkingStrategyParam", "namespace": "OpenAI", @@ -108677,16 +108800,16 @@ "discriminatorValue": "auto", "decorators": [], "baseModel": { - "$ref": "8231" + "$ref": "8241" }, "properties": [ { - "$id": "8234", + "$id": "8244", "kind": "property", "name": "type", "doc": "Always `auto`.", "type": { - "$id": "8235", + "$id": "8245", "kind": "enumvalue", "name": "auto", "value": "auto", @@ -108694,14 +108817,14 @@ "$ref": "1391" }, "enumType": { - "$id": "8236", + "$id": "8246", "kind": "enum", "decorators": [], "name": "DotNetCombinedChunkingStrategyParamType", "isGeneratedName": true, "namespace": "OpenAI", "valueType": { - "$id": "8237", + "$id": "8247", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -108710,42 +108833,42 @@ }, "values": [ { - "$id": "8238", + "$id": "8248", "kind": "enumvalue", "decorators": [], "name": "auto", "value": "auto", "valueType": { - "$ref": "8237" + "$ref": "8247" }, "enumType": { - "$ref": "8236" + "$ref": "8246" } }, { - "$id": "8239", + "$id": "8249", "kind": "enumvalue", "decorators": [], "name": "static", "value": "static", "valueType": { - "$ref": "8237" + "$ref": "8247" }, "enumType": { - "$ref": "8236" + "$ref": "8246" } }, { - "$id": "8240", + "$id": "8250", "kind": "enumvalue", "decorators": [], "name": "other", "value": "other", "valueType": { - "$ref": "8237" + "$ref": "8247" }, "enumType": { - "$ref": "8236" + "$ref": "8246" } } ], @@ -108772,7 +108895,7 @@ ] }, "static": { - "$id": "8241", + "$id": "8251", "kind": "model", "name": "DotNetCombinedStaticChunkingStrategyParam", "namespace": "OpenAI", @@ -108782,16 +108905,16 @@ "discriminatorValue": "static", "decorators": [], "baseModel": { - "$ref": "8231" + "$ref": "8241" }, "properties": [ { - "$id": "8242", + "$id": "8252", "kind": "property", "name": "type", "doc": "Always `static`.", "type": { - "$id": "8243", + "$id": "8253", "kind": "enumvalue", "name": "static", "value": "static", @@ -108799,7 +108922,7 @@ "$ref": "1391" }, "enumType": { - "$ref": "8236" + "$ref": "8246" }, "decorators": [] }, @@ -108813,7 +108936,7 @@ "isHttpMetadata": false }, { - "$id": "8244", + "$id": "8254", "kind": "property", "name": "static", "type": { @@ -108831,7 +108954,7 @@ ] }, "other": { - "$id": "8245", + "$id": "8255", "kind": "model", "name": "DotNetCombinedOtherChunkingStrategyParam", "namespace": "OpenAI", @@ -108841,16 +108964,16 @@ "discriminatorValue": "other", "decorators": [], "baseModel": { - "$ref": "8231" + "$ref": "8241" }, "properties": [ { - "$id": "8246", + "$id": "8256", "kind": "property", "name": "type", "doc": "Always `other`.", "type": { - "$id": "8247", + "$id": "8257", "kind": "enumvalue", "name": "other", "value": "other", @@ -108858,7 +108981,7 @@ "$ref": "1391" }, "enumType": { - "$ref": "8236" + "$ref": "8246" }, "decorators": [] }, @@ -108876,16 +108999,16 @@ } }, { - "$ref": "8233" + "$ref": "8243" }, { - "$ref": "8241" + "$ref": "8251" }, { - "$ref": "8245" + "$ref": "8255" }, { - "$id": "8248", + "$id": "8258", "kind": "model", "name": "VectorStoreCollectionOptions", "namespace": "OpenAI", @@ -108895,12 +109018,12 @@ "decorators": [], "properties": [ { - "$id": "8249", + "$id": "8259", "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": "8250", + "$id": "8260", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108916,12 +109039,12 @@ "isHttpMetadata": true }, { - "$id": "8251", + "$id": "8261", "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": "8252", + "$id": "8262", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108937,12 +109060,12 @@ "isHttpMetadata": true }, { - "$id": "8253", + "$id": "8263", "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": "8254", + "$id": "8264", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -108958,7 +109081,7 @@ "isHttpMetadata": true }, { - "$id": "8255", + "$id": "8265", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -108977,7 +109100,7 @@ ] }, { - "$id": "8256", + "$id": "8266", "kind": "model", "name": "VectorStoreFileCollectionOptions", "namespace": "OpenAI", @@ -108987,12 +109110,12 @@ "decorators": [], "properties": [ { - "$id": "8257", + "$id": "8267", "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": "8258", + "$id": "8268", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109008,12 +109131,12 @@ "isHttpMetadata": true }, { - "$id": "8259", + "$id": "8269", "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": "8260", + "$id": "8270", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109029,12 +109152,12 @@ "isHttpMetadata": true }, { - "$id": "8261", + "$id": "8271", "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": "8262", + "$id": "8272", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -109050,7 +109173,7 @@ "isHttpMetadata": true }, { - "$id": "8263", + "$id": "8273", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -109067,7 +109190,7 @@ "isHttpMetadata": true }, { - "$id": "8264", + "$id": "8274", "kind": "property", "name": "filter", "type": { @@ -109085,7 +109208,7 @@ ] }, { - "$id": "8265", + "$id": "8275", "kind": "model", "name": "VideoCollectionOptions", "namespace": "OpenAI", @@ -109095,12 +109218,12 @@ "decorators": [], "properties": [ { - "$id": "8266", + "$id": "8276", "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": "8267", + "$id": "8277", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109116,12 +109239,12 @@ "isHttpMetadata": true }, { - "$id": "8268", + "$id": "8278", "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": "8269", + "$id": "8279", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -109137,7 +109260,7 @@ "isHttpMetadata": true }, { - "$id": "8270", + "$id": "8280", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -109158,20 +109281,20 @@ ], "clients": [ { - "$id": "8271", + "$id": "8281", "kind": "client", "name": "OpenAIClient", "namespace": "OpenAI", "methods": [], "parameters": [ { - "$id": "8272", + "$id": "8282", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8273", + "$id": "8283", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -109182,7 +109305,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8274", + "$id": "8284", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -109201,27 +109324,27 @@ "apiVersions": [], "children": [ { - "$id": "8275", + "$id": "8285", "kind": "client", "name": "Assistants", "namespace": "OpenAI", "methods": [ { - "$id": "8276", + "$id": "8286", "kind": "paging", "name": "GetAssistants", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of assistants.", "operation": { - "$id": "8277", + "$id": "8287", "name": "GetAssistants", "resourceName": "Assistants", "summary": "Returns a list of assistants.", "accessibility": "public", "parameters": [ { - "$id": "8278", + "$id": "8288", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -109237,7 +109360,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.listAssistants.accept" }, { - "$id": "8279", + "$id": "8289", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -109253,13 +109376,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.listAssistants.openAIBeta" }, { - "$id": "8280", + "$id": "8290", "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": "8281", + "$id": "8291", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -109274,7 +109397,7 @@ "readOnly": false }, { - "$id": "8282", + "$id": "8292", "kind": "query", "name": "order", "serializedName": "order", @@ -109291,13 +109414,13 @@ "readOnly": false }, { - "$id": "8283", + "$id": "8293", "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": "8284", + "$id": "8294", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109312,13 +109435,13 @@ "readOnly": false }, { - "$id": "8285", + "$id": "8295", "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": "8286", + "$id": "8296", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109359,7 +109482,7 @@ }, "parameters": [ { - "$id": "8287", + "$id": "8297", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -109376,7 +109499,7 @@ "decorators": [] }, { - "$id": "8288", + "$id": "8298", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -109393,13 +109516,13 @@ "decorators": [] }, { - "$id": "8289", + "$id": "8299", "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": "8290", + "$id": "8300", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -109415,7 +109538,7 @@ "decorators": [] }, { - "$id": "8291", + "$id": "8301", "kind": "method", "name": "order", "serializedName": "order", @@ -109433,13 +109556,13 @@ "decorators": [] }, { - "$id": "8292", + "$id": "8302", "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": "8293", + "$id": "8303", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109455,13 +109578,13 @@ "decorators": [] }, { - "$id": "8294", + "$id": "8304", "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": "8295", + "$id": "8305", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109495,7 +109618,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8283" + "$ref": "8293" }, "responseSegments": [ "last_id" @@ -109505,21 +109628,21 @@ } }, { - "$id": "8296", + "$id": "8306", "kind": "basic", "name": "createAssistant", "accessibility": "public", "apiVersions": [], "summary": "Create an assistant with a model and instructions.", "operation": { - "$id": "8297", + "$id": "8307", "name": "createAssistant", "resourceName": "Assistants", "summary": "Create an assistant with a model and instructions.", "accessibility": "public", "parameters": [ { - "$id": "8298", + "$id": "8308", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -109535,7 +109658,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant.accept" }, { - "$id": "8299", + "$id": "8309", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -109551,7 +109674,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant.openAIBeta" }, { - "$id": "8300", + "$id": "8310", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -109568,7 +109691,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant.contentType" }, { - "$id": "8301", + "$id": "8311", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -109616,7 +109739,7 @@ }, "parameters": [ { - "$id": "8302", + "$id": "8312", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -109633,7 +109756,7 @@ "decorators": [] }, { - "$id": "8303", + "$id": "8313", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -109650,7 +109773,7 @@ "decorators": [] }, { - "$id": "8304", + "$id": "8314", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -109667,7 +109790,7 @@ "decorators": [] }, { - "$id": "8305", + "$id": "8315", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -109696,21 +109819,21 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant" }, { - "$id": "8306", + "$id": "8316", "kind": "basic", "name": "getAssistant", "accessibility": "public", "apiVersions": [], "summary": "Retrieves an assistant.", "operation": { - "$id": "8307", + "$id": "8317", "name": "getAssistant", "resourceName": "Assistants", "summary": "Retrieves an assistant.", "accessibility": "public", "parameters": [ { - "$id": "8308", + "$id": "8318", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -109726,7 +109849,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.getAssistant.accept" }, { - "$id": "8309", + "$id": "8319", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -109742,13 +109865,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.getAssistant.openAIBeta" }, { - "$id": "8310", + "$id": "8320", "kind": "path", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to retrieve.", "type": { - "$id": "8311", + "$id": "8321", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109792,7 +109915,7 @@ }, "parameters": [ { - "$id": "8312", + "$id": "8322", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -109809,7 +109932,7 @@ "decorators": [] }, { - "$id": "8313", + "$id": "8323", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -109826,13 +109949,13 @@ "decorators": [] }, { - "$id": "8314", + "$id": "8324", "kind": "method", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to retrieve.", "type": { - "$id": "8315", + "$id": "8325", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109859,21 +109982,21 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.getAssistant" }, { - "$id": "8316", + "$id": "8326", "kind": "basic", "name": "modifyAssistant", "accessibility": "public", "apiVersions": [], "summary": "Modifies an assistant.", "operation": { - "$id": "8317", + "$id": "8327", "name": "modifyAssistant", "resourceName": "Assistants", "summary": "Modifies an assistant.", "accessibility": "public", "parameters": [ { - "$id": "8318", + "$id": "8328", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -109889,7 +110012,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant.accept" }, { - "$id": "8319", + "$id": "8329", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -109905,13 +110028,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant.openAIBeta" }, { - "$id": "8320", + "$id": "8330", "kind": "path", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to modify.", "type": { - "$id": "8321", + "$id": "8331", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109929,7 +110052,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant.assistant_id" }, { - "$id": "8322", + "$id": "8332", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -109946,7 +110069,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant.contentType" }, { - "$id": "8323", + "$id": "8333", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -109994,7 +110117,7 @@ }, "parameters": [ { - "$id": "8324", + "$id": "8334", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -110011,7 +110134,7 @@ "decorators": [] }, { - "$id": "8325", + "$id": "8335", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -110028,13 +110151,13 @@ "decorators": [] }, { - "$id": "8326", + "$id": "8336", "kind": "method", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to modify.", "type": { - "$id": "8327", + "$id": "8337", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110050,7 +110173,7 @@ "decorators": [] }, { - "$id": "8328", + "$id": "8338", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -110067,7 +110190,7 @@ "decorators": [] }, { - "$id": "8329", + "$id": "8339", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -110096,21 +110219,21 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant" }, { - "$id": "8330", + "$id": "8340", "kind": "basic", "name": "deleteAssistant", "accessibility": "public", "apiVersions": [], "summary": "Delete an assistant.", "operation": { - "$id": "8331", + "$id": "8341", "name": "deleteAssistant", "resourceName": "Assistants", "summary": "Delete an assistant.", "accessibility": "public", "parameters": [ { - "$id": "8332", + "$id": "8342", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -110126,7 +110249,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.deleteAssistant.accept" }, { - "$id": "8333", + "$id": "8343", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -110142,13 +110265,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.deleteAssistant.openAIBeta" }, { - "$id": "8334", + "$id": "8344", "kind": "path", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to delete.", "type": { - "$id": "8335", + "$id": "8345", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110192,7 +110315,7 @@ }, "parameters": [ { - "$id": "8336", + "$id": "8346", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -110209,7 +110332,7 @@ "decorators": [] }, { - "$id": "8337", + "$id": "8347", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -110226,13 +110349,13 @@ "decorators": [] }, { - "$id": "8338", + "$id": "8348", "kind": "method", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to delete.", "type": { - "$id": "8339", + "$id": "8349", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110261,13 +110384,13 @@ ], "parameters": [ { - "$id": "8340", + "$id": "8350", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8341", + "$id": "8351", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -110278,7 +110401,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8342", + "$id": "8352", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -110296,31 +110419,31 @@ "crossLanguageDefinitionId": "OpenAI.Assistants", "apiVersions": [], "parent": { - "$ref": "8271" + "$ref": "8281" } }, { - "$id": "8343", + "$id": "8353", "kind": "client", "name": "Audio", "namespace": "OpenAI", "methods": [ { - "$id": "8344", + "$id": "8354", "kind": "basic", "name": "GenerateSpeech", "accessibility": "public", "apiVersions": [], "summary": "Generates audio from the input text.", "operation": { - "$id": "8345", + "$id": "8355", "name": "GenerateSpeech", "resourceName": "Audio", "summary": "Generates audio from the input text.", "accessibility": "public", "parameters": [ { - "$id": "8346", + "$id": "8356", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -110336,7 +110459,7 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createSpeech.accept" }, { - "$id": "8347", + "$id": "8357", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -110353,7 +110476,7 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createSpeech.contentType" }, { - "$id": "8348", + "$id": "8358", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -110378,7 +110501,7 @@ 200 ], "bodyType": { - "$id": "8349", + "$id": "8359", "kind": "bytes", "name": "bytes", "crossLanguageDefinitionId": "TypeSpec.bytes", @@ -110390,7 +110513,7 @@ "nameInResponse": "Transfer-Encoding", "doc": "chunked", "type": { - "$id": "8350", + "$id": "8360", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110425,7 +110548,7 @@ }, "parameters": [ { - "$id": "8351", + "$id": "8361", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -110442,7 +110565,7 @@ "decorators": [] }, { - "$id": "8352", + "$id": "8362", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -110459,7 +110582,7 @@ "decorators": [] }, { - "$id": "8353", + "$id": "8363", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -110479,7 +110602,7 @@ ], "response": { "type": { - "$ref": "8349" + "$ref": "8359" } }, "isOverride": false, @@ -110488,21 +110611,21 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createSpeech" }, { - "$id": "8354", + "$id": "8364", "kind": "basic", "name": "TranscribeAudio", "accessibility": "public", "apiVersions": [], "summary": "Transcribes audio into the input language.", "operation": { - "$id": "8355", + "$id": "8365", "name": "TranscribeAudio", "resourceName": "Audio", "summary": "Transcribes audio into the input language.", "accessibility": "public", "parameters": [ { - "$id": "8356", + "$id": "8366", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -110518,7 +110641,7 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranscription.accept" }, { - "$id": "8357", + "$id": "8367", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -110534,7 +110657,7 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranscription.contentType" }, { - "$id": "8358", + "$id": "8368", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -110559,12 +110682,12 @@ 200 ], "bodyType": { - "$id": "8359", + "$id": "8369", "kind": "union", "name": "", "variantTypes": [ { - "$id": "8360", + "$id": "8370", "kind": "union", "name": "", "variantTypes": [ @@ -110616,7 +110739,7 @@ }, "parameters": [ { - "$id": "8361", + "$id": "8371", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -110633,7 +110756,7 @@ "decorators": [] }, { - "$id": "8362", + "$id": "8372", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -110650,7 +110773,7 @@ "decorators": [] }, { - "$id": "8363", + "$id": "8373", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -110669,7 +110792,7 @@ ], "response": { "type": { - "$ref": "8359" + "$ref": "8369" } }, "isOverride": false, @@ -110678,21 +110801,21 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranscription" }, { - "$id": "8364", + "$id": "8374", "kind": "basic", "name": "TranslateAudio", "accessibility": "public", "apiVersions": [], "summary": "Translates audio into English..", "operation": { - "$id": "8365", + "$id": "8375", "name": "TranslateAudio", "resourceName": "Audio", "summary": "Translates audio into English..", "accessibility": "public", "parameters": [ { - "$id": "8366", + "$id": "8376", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -110708,7 +110831,7 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranslation.accept" }, { - "$id": "8367", + "$id": "8377", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -110724,7 +110847,7 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranslation.contentType" }, { - "$id": "8368", + "$id": "8378", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -110749,12 +110872,12 @@ 200 ], "bodyType": { - "$id": "8369", + "$id": "8379", "kind": "union", "name": "", "variantTypes": [ { - "$id": "8370", + "$id": "8380", "kind": "union", "name": "", "variantTypes": [ @@ -110769,7 +110892,7 @@ "decorators": [] }, { - "$id": "8371", + "$id": "8381", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110810,7 +110933,7 @@ }, "parameters": [ { - "$id": "8372", + "$id": "8382", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -110827,7 +110950,7 @@ "decorators": [] }, { - "$id": "8373", + "$id": "8383", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -110844,7 +110967,7 @@ "decorators": [] }, { - "$id": "8374", + "$id": "8384", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -110863,7 +110986,7 @@ ], "response": { "type": { - "$ref": "8369" + "$ref": "8379" } }, "isOverride": false, @@ -110874,13 +110997,13 @@ ], "parameters": [ { - "$id": "8375", + "$id": "8385", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8376", + "$id": "8386", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -110891,7 +111014,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8377", + "$id": "8387", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -110909,31 +111032,31 @@ "crossLanguageDefinitionId": "OpenAI.Audio", "apiVersions": [], "parent": { - "$ref": "8271" + "$ref": "8281" } }, { - "$id": "8378", + "$id": "8388", "kind": "client", "name": "Batches", "namespace": "OpenAI", "methods": [ { - "$id": "8379", + "$id": "8389", "kind": "basic", "name": "createBatch", "accessibility": "public", "apiVersions": [], "summary": "Creates and executes a batch from an uploaded file of requests", "operation": { - "$id": "8380", + "$id": "8390", "name": "createBatch", "resourceName": "Batches", "summary": "Creates and executes a batch from an uploaded file of requests", "accessibility": "public", "parameters": [ { - "$id": "8381", + "$id": "8391", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -110949,7 +111072,7 @@ "crossLanguageDefinitionId": "OpenAI.Batches.createBatch.accept" }, { - "$id": "8382", + "$id": "8392", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -110966,7 +111089,7 @@ "crossLanguageDefinitionId": "OpenAI.Batches.createBatch.contentType" }, { - "$id": "8383", + "$id": "8393", "kind": "body", "name": "createBatchRequest", "serializedName": "createBatchRequest", @@ -111014,7 +111137,7 @@ }, "parameters": [ { - "$id": "8384", + "$id": "8394", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -111031,13 +111154,13 @@ "decorators": [] }, { - "$id": "8385", + "$id": "8395", "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": "8386", + "$id": "8396", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111053,7 +111176,7 @@ "decorators": [] }, { - "$id": "8387", + "$id": "8397", "kind": "method", "name": "endpoint", "serializedName": "endpoint", @@ -111071,7 +111194,7 @@ "decorators": [] }, { - "$id": "8388", + "$id": "8398", "kind": "method", "name": "completion_window", "serializedName": "completion_window", @@ -111089,7 +111212,7 @@ "decorators": [] }, { - "$id": "8389", + "$id": "8399", "kind": "method", "name": "metadata", "serializedName": "metadata", @@ -111107,7 +111230,7 @@ "decorators": [] }, { - "$id": "8390", + "$id": "8400", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -111136,21 +111259,21 @@ "crossLanguageDefinitionId": "OpenAI.Batches.createBatch" }, { - "$id": "8391", + "$id": "8401", "kind": "paging", "name": "GetBatches", "accessibility": "public", "apiVersions": [], "summary": "List your organization's batches.", "operation": { - "$id": "8392", + "$id": "8402", "name": "GetBatches", "resourceName": "Batches", "summary": "List your organization's batches.", "accessibility": "public", "parameters": [ { - "$id": "8393", + "$id": "8403", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -111166,13 +111289,13 @@ "crossLanguageDefinitionId": "OpenAI.Batches.listBatches.accept" }, { - "$id": "8394", + "$id": "8404", "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": "8395", + "$id": "8405", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111187,13 +111310,13 @@ "readOnly": false }, { - "$id": "8396", + "$id": "8406", "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": "8397", + "$id": "8407", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -111234,7 +111357,7 @@ }, "parameters": [ { - "$id": "8398", + "$id": "8408", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -111251,13 +111374,13 @@ "decorators": [] }, { - "$id": "8399", + "$id": "8409", "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": "8400", + "$id": "8410", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111273,13 +111396,13 @@ "decorators": [] }, { - "$id": "8401", + "$id": "8411", "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": "8402", + "$id": "8412", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -111313,7 +111436,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8394" + "$ref": "8404" }, "responseSegments": [ "last_id" @@ -111323,21 +111446,21 @@ } }, { - "$id": "8403", + "$id": "8413", "kind": "basic", "name": "GetBatch", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a batch.", "operation": { - "$id": "8404", + "$id": "8414", "name": "GetBatch", "resourceName": "Batches", "summary": "Retrieves a batch.", "accessibility": "public", "parameters": [ { - "$id": "8405", + "$id": "8415", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -111353,13 +111476,13 @@ "crossLanguageDefinitionId": "OpenAI.Batches.retrieveBatch.accept" }, { - "$id": "8406", + "$id": "8416", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the batch to retrieve.", "type": { - "$id": "8407", + "$id": "8417", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111403,7 +111526,7 @@ }, "parameters": [ { - "$id": "8408", + "$id": "8418", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -111420,13 +111543,13 @@ "decorators": [] }, { - "$id": "8409", + "$id": "8419", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the batch to retrieve.", "type": { - "$id": "8410", + "$id": "8420", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111453,21 +111576,21 @@ "crossLanguageDefinitionId": "OpenAI.Batches.retrieveBatch" }, { - "$id": "8411", + "$id": "8421", "kind": "basic", "name": "cancelBatch", "accessibility": "public", "apiVersions": [], "summary": "Cancels an in-progress batch.", "operation": { - "$id": "8412", + "$id": "8422", "name": "cancelBatch", "resourceName": "Batches", "summary": "Cancels an in-progress batch.", "accessibility": "public", "parameters": [ { - "$id": "8413", + "$id": "8423", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -111483,13 +111606,13 @@ "crossLanguageDefinitionId": "OpenAI.Batches.cancelBatch.accept" }, { - "$id": "8414", + "$id": "8424", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the batch to cancel.", "type": { - "$id": "8415", + "$id": "8425", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111533,7 +111656,7 @@ }, "parameters": [ { - "$id": "8416", + "$id": "8426", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -111550,13 +111673,13 @@ "decorators": [] }, { - "$id": "8417", + "$id": "8427", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the batch to cancel.", "type": { - "$id": "8418", + "$id": "8428", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111585,13 +111708,13 @@ ], "parameters": [ { - "$id": "8419", + "$id": "8429", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8420", + "$id": "8430", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -111602,7 +111725,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8421", + "$id": "8431", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -111620,37 +111743,37 @@ "crossLanguageDefinitionId": "OpenAI.Batches", "apiVersions": [], "parent": { - "$ref": "8271" + "$ref": "8281" } }, { - "$id": "8422", + "$id": "8432", "kind": "client", "name": "Chat", "namespace": "OpenAI", "methods": [ { - "$id": "8423", + "$id": "8433", "kind": "paging", "name": "listChatCompletions", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of chat completions.", "operation": { - "$id": "8424", + "$id": "8434", "name": "listChatCompletions", "resourceName": "Chat", "summary": "Returns a list of chat completions.", "accessibility": "public", "parameters": [ { - "$id": "8425", + "$id": "8435", "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": "8426", + "$id": "8436", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111665,13 +111788,13 @@ "readOnly": false }, { - "$id": "8427", + "$id": "8437", "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": "8428", + "$id": "8438", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -111686,7 +111809,7 @@ "readOnly": false }, { - "$id": "8429", + "$id": "8439", "kind": "query", "name": "order", "serializedName": "order", @@ -111703,7 +111826,7 @@ "readOnly": false }, { - "$id": "8430", + "$id": "8440", "kind": "query", "name": "metadata", "serializedName": "metadata", @@ -111719,12 +111842,12 @@ "readOnly": false }, { - "$id": "8431", + "$id": "8441", "kind": "query", "name": "model", "serializedName": "model", "type": { - "$id": "8432", + "$id": "8442", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111739,7 +111862,7 @@ "readOnly": false }, { - "$id": "8433", + "$id": "8443", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -111781,13 +111904,13 @@ }, "parameters": [ { - "$id": "8434", + "$id": "8444", "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": "8435", + "$id": "8445", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111803,13 +111926,13 @@ "decorators": [] }, { - "$id": "8436", + "$id": "8446", "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": "8437", + "$id": "8447", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -111825,7 +111948,7 @@ "decorators": [] }, { - "$id": "8438", + "$id": "8448", "kind": "method", "name": "order", "serializedName": "order", @@ -111843,7 +111966,7 @@ "decorators": [] }, { - "$id": "8439", + "$id": "8449", "kind": "method", "name": "metadata", "serializedName": "metadata", @@ -111860,12 +111983,12 @@ "decorators": [] }, { - "$id": "8440", + "$id": "8450", "kind": "method", "name": "model", "serializedName": "model", "type": { - "$id": "8441", + "$id": "8451", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111881,7 +112004,7 @@ "decorators": [] }, { - "$id": "8442", + "$id": "8452", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -111916,7 +112039,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8425" + "$ref": "8435" }, "responseSegments": [ "last_id" @@ -111926,21 +112049,21 @@ } }, { - "$id": "8443", + "$id": "8453", "kind": "basic", "name": "CompleteChat", "accessibility": "public", "apiVersions": [], "summary": "Creates a model response for the given chat conversation.", "operation": { - "$id": "8444", + "$id": "8454", "name": "CompleteChat", "resourceName": "Chat", "summary": "Creates a model response for the given chat conversation.", "accessibility": "public", "parameters": [ { - "$id": "8445", + "$id": "8455", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -111956,7 +112079,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.createChatCompletion.accept" }, { - "$id": "8446", + "$id": "8456", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -111973,7 +112096,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.createChatCompletion.contentType" }, { - "$id": "8447", + "$id": "8457", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -111998,7 +112121,7 @@ 200 ], "bodyType": { - "$id": "8448", + "$id": "8458", "kind": "union", "name": "", "variantTypes": [ @@ -112042,7 +112165,7 @@ }, "parameters": [ { - "$id": "8449", + "$id": "8459", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -112059,7 +112182,7 @@ "decorators": [] }, { - "$id": "8450", + "$id": "8460", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -112076,7 +112199,7 @@ "decorators": [] }, { - "$id": "8451", + "$id": "8461", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -112096,7 +112219,7 @@ ], "response": { "type": { - "$ref": "8448" + "$ref": "8458" } }, "isOverride": false, @@ -112105,27 +112228,27 @@ "crossLanguageDefinitionId": "OpenAI.Chat.createChatCompletion" }, { - "$id": "8452", + "$id": "8462", "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": "8453", + "$id": "8463", "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": "8454", + "$id": "8464", "kind": "path", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to retrieve.", "type": { - "$id": "8455", + "$id": "8465", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112143,7 +112266,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.getChatCompletion.completion_id" }, { - "$id": "8456", + "$id": "8466", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -112185,13 +112308,13 @@ }, "parameters": [ { - "$id": "8457", + "$id": "8467", "kind": "method", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to retrieve.", "type": { - "$id": "8458", + "$id": "8468", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112207,7 +112330,7 @@ "decorators": [] }, { - "$id": "8459", + "$id": "8469", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -112235,27 +112358,27 @@ "crossLanguageDefinitionId": "OpenAI.Chat.getChatCompletion" }, { - "$id": "8460", + "$id": "8470", "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": "8461", + "$id": "8471", "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": "8462", + "$id": "8472", "kind": "path", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to update.", "type": { - "$id": "8463", + "$id": "8473", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112273,7 +112396,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion.completion_id" }, { - "$id": "8464", + "$id": "8474", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -112290,7 +112413,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion.contentType" }, { - "$id": "8465", + "$id": "8475", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -112306,7 +112429,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion.accept" }, { - "$id": "8466", + "$id": "8476", "kind": "body", "name": "updateChatCompletionRequest", "serializedName": "updateChatCompletionRequest", @@ -112354,13 +112477,13 @@ }, "parameters": [ { - "$id": "8467", + "$id": "8477", "kind": "method", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to update.", "type": { - "$id": "8468", + "$id": "8478", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112376,7 +112499,7 @@ "decorators": [] }, { - "$id": "8469", + "$id": "8479", "kind": "method", "name": "metadata", "serializedName": "metadata", @@ -112394,7 +112517,7 @@ "decorators": [] }, { - "$id": "8470", + "$id": "8480", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -112412,7 +112535,7 @@ "decorators": [] }, { - "$id": "8471", + "$id": "8481", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -112440,27 +112563,27 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion" }, { - "$id": "8472", + "$id": "8482", "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": "8473", + "$id": "8483", "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": "8474", + "$id": "8484", "kind": "path", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to delete.", "type": { - "$id": "8475", + "$id": "8485", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112478,7 +112601,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.deleteChatCompletion.completion_id" }, { - "$id": "8476", + "$id": "8486", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -112520,13 +112643,13 @@ }, "parameters": [ { - "$id": "8477", + "$id": "8487", "kind": "method", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to delete.", "type": { - "$id": "8478", + "$id": "8488", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112542,7 +112665,7 @@ "decorators": [] }, { - "$id": "8479", + "$id": "8489", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -112570,27 +112693,27 @@ "crossLanguageDefinitionId": "OpenAI.Chat.deleteChatCompletion" }, { - "$id": "8480", + "$id": "8490", "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": "8481", + "$id": "8491", "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": "8482", + "$id": "8492", "kind": "path", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to retrieve messages for.", "type": { - "$id": "8483", + "$id": "8493", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112608,13 +112731,13 @@ "crossLanguageDefinitionId": "OpenAI.Chat.getChatCompletionMessages.completion_id" }, { - "$id": "8484", + "$id": "8494", "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": "8485", + "$id": "8495", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112629,13 +112752,13 @@ "readOnly": false }, { - "$id": "8486", + "$id": "8496", "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": "8487", + "$id": "8497", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -112650,7 +112773,7 @@ "readOnly": false }, { - "$id": "8488", + "$id": "8498", "kind": "query", "name": "order", "serializedName": "order", @@ -112667,7 +112790,7 @@ "readOnly": false }, { - "$id": "8489", + "$id": "8499", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -112709,13 +112832,13 @@ }, "parameters": [ { - "$id": "8490", + "$id": "8500", "kind": "method", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to retrieve messages for.", "type": { - "$id": "8491", + "$id": "8501", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112731,13 +112854,13 @@ "decorators": [] }, { - "$id": "8492", + "$id": "8502", "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": "8493", + "$id": "8503", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112753,13 +112876,13 @@ "decorators": [] }, { - "$id": "8494", + "$id": "8504", "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": "8495", + "$id": "8505", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -112775,7 +112898,7 @@ "decorators": [] }, { - "$id": "8496", + "$id": "8506", "kind": "method", "name": "order", "serializedName": "order", @@ -112793,7 +112916,7 @@ "decorators": [] }, { - "$id": "8497", + "$id": "8507", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -112828,7 +112951,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8484" + "$ref": "8494" }, "responseSegments": [ "last_id" @@ -112840,13 +112963,13 @@ ], "parameters": [ { - "$id": "8498", + "$id": "8508", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8499", + "$id": "8509", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -112857,7 +112980,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8500", + "$id": "8510", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -112875,35 +112998,35 @@ "crossLanguageDefinitionId": "OpenAI.Chat", "apiVersions": [], "parent": { - "$ref": "8271" + "$ref": "8281" } }, { - "$id": "8501", + "$id": "8511", "kind": "client", "name": "Containers", "namespace": "OpenAI", "methods": [ { - "$id": "8502", + "$id": "8512", "kind": "paging", "name": "listContainers", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8503", + "$id": "8513", "name": "listContainers", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8504", + "$id": "8514", "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": "8505", + "$id": "8515", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -112918,7 +113041,7 @@ "readOnly": false }, { - "$id": "8506", + "$id": "8516", "kind": "query", "name": "order", "serializedName": "order", @@ -112935,13 +113058,13 @@ "readOnly": false }, { - "$id": "8507", + "$id": "8517", "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": "8508", + "$id": "8518", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112956,7 +113079,7 @@ "readOnly": false }, { - "$id": "8509", + "$id": "8519", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -112998,13 +113121,13 @@ }, "parameters": [ { - "$id": "8510", + "$id": "8520", "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": "8511", + "$id": "8521", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -113020,7 +113143,7 @@ "decorators": [] }, { - "$id": "8512", + "$id": "8522", "kind": "method", "name": "order", "serializedName": "order", @@ -113038,13 +113161,13 @@ "decorators": [] }, { - "$id": "8513", + "$id": "8523", "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": "8514", + "$id": "8524", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113060,7 +113183,7 @@ "decorators": [] }, { - "$id": "8515", + "$id": "8525", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -113095,7 +113218,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8507" + "$ref": "8517" }, "responseSegments": [ "last_id" @@ -113105,19 +113228,19 @@ } }, { - "$id": "8516", + "$id": "8526", "kind": "basic", "name": "createContainer", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8517", + "$id": "8527", "name": "createContainer", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8518", + "$id": "8528", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -113134,7 +113257,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainer.contentType" }, { - "$id": "8519", + "$id": "8529", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -113150,7 +113273,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainer.accept" }, { - "$id": "8520", + "$id": "8530", "kind": "body", "name": "body", "serializedName": "body", @@ -113198,7 +113321,7 @@ }, "parameters": [ { - "$id": "8521", + "$id": "8531", "kind": "method", "name": "body", "serializedName": "body", @@ -113215,7 +113338,7 @@ "decorators": [] }, { - "$id": "8522", + "$id": "8532", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -113233,7 +113356,7 @@ "decorators": [] }, { - "$id": "8523", + "$id": "8533", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -113261,24 +113384,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainer" }, { - "$id": "8524", + "$id": "8534", "kind": "basic", "name": "GetContainer", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8525", + "$id": "8535", "name": "GetContainer", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8526", + "$id": "8536", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8527", + "$id": "8537", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113296,7 +113419,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainer.container_id" }, { - "$id": "8528", + "$id": "8538", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -113338,12 +113461,12 @@ }, "parameters": [ { - "$id": "8529", + "$id": "8539", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8530", + "$id": "8540", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113359,7 +113482,7 @@ "decorators": [] }, { - "$id": "8531", + "$id": "8541", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -113387,24 +113510,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainer" }, { - "$id": "8532", + "$id": "8542", "kind": "basic", "name": "deleteContainer", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8533", + "$id": "8543", "name": "deleteContainer", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8534", + "$id": "8544", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8535", + "$id": "8545", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113422,7 +113545,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainer.container_id" }, { - "$id": "8536", + "$id": "8546", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -113464,12 +113587,12 @@ }, "parameters": [ { - "$id": "8537", + "$id": "8547", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8538", + "$id": "8548", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113485,7 +113608,7 @@ "decorators": [] }, { - "$id": "8539", + "$id": "8549", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -113513,24 +113636,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainer" }, { - "$id": "8540", + "$id": "8550", "kind": "basic", "name": "createContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8541", + "$id": "8551", "name": "createContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8542", + "$id": "8552", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8543", + "$id": "8553", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113548,7 +113671,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile.container_id" }, { - "$id": "8544", + "$id": "8554", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -113564,7 +113687,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile.contentType" }, { - "$id": "8545", + "$id": "8555", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -113580,7 +113703,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile.accept" }, { - "$id": "8546", + "$id": "8556", "kind": "body", "name": "body", "serializedName": "body", @@ -113628,12 +113751,12 @@ }, "parameters": [ { - "$id": "8547", + "$id": "8557", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8548", + "$id": "8558", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113649,7 +113772,7 @@ "decorators": [] }, { - "$id": "8549", + "$id": "8559", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -113666,7 +113789,7 @@ "decorators": [] }, { - "$id": "8550", + "$id": "8560", "kind": "method", "name": "body", "serializedName": "body", @@ -113683,7 +113806,7 @@ "decorators": [] }, { - "$id": "8551", + "$id": "8561", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -113711,24 +113834,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile" }, { - "$id": "8552", + "$id": "8562", "kind": "paging", "name": "listContainerFiles", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8553", + "$id": "8563", "name": "listContainerFiles", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8554", + "$id": "8564", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8555", + "$id": "8565", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113746,13 +113869,13 @@ "crossLanguageDefinitionId": "OpenAI.Containers.listContainerFiles.container_id" }, { - "$id": "8556", + "$id": "8566", "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": "8557", + "$id": "8567", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -113767,7 +113890,7 @@ "readOnly": false }, { - "$id": "8558", + "$id": "8568", "kind": "query", "name": "order", "serializedName": "order", @@ -113784,13 +113907,13 @@ "readOnly": false }, { - "$id": "8559", + "$id": "8569", "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": "8560", + "$id": "8570", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113805,7 +113928,7 @@ "readOnly": false }, { - "$id": "8561", + "$id": "8571", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -113847,12 +113970,12 @@ }, "parameters": [ { - "$id": "8562", + "$id": "8572", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8563", + "$id": "8573", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113868,13 +113991,13 @@ "decorators": [] }, { - "$id": "8564", + "$id": "8574", "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": "8565", + "$id": "8575", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -113890,7 +114013,7 @@ "decorators": [] }, { - "$id": "8566", + "$id": "8576", "kind": "method", "name": "order", "serializedName": "order", @@ -113908,13 +114031,13 @@ "decorators": [] }, { - "$id": "8567", + "$id": "8577", "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": "8568", + "$id": "8578", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113930,7 +114053,7 @@ "decorators": [] }, { - "$id": "8569", + "$id": "8579", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -113965,7 +114088,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8559" + "$ref": "8569" }, "responseSegments": [ "last_id" @@ -113975,24 +114098,24 @@ } }, { - "$id": "8570", + "$id": "8580", "kind": "basic", "name": "GetContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8571", + "$id": "8581", "name": "GetContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8572", + "$id": "8582", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8573", + "$id": "8583", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114010,12 +114133,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFile.container_id" }, { - "$id": "8574", + "$id": "8584", "kind": "path", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8575", + "$id": "8585", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114033,7 +114156,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFile.file_id" }, { - "$id": "8576", + "$id": "8586", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -114075,12 +114198,12 @@ }, "parameters": [ { - "$id": "8577", + "$id": "8587", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8578", + "$id": "8588", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114096,12 +114219,12 @@ "decorators": [] }, { - "$id": "8579", + "$id": "8589", "kind": "method", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8580", + "$id": "8590", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114117,7 +114240,7 @@ "decorators": [] }, { - "$id": "8581", + "$id": "8591", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -114145,24 +114268,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFile" }, { - "$id": "8582", + "$id": "8592", "kind": "basic", "name": "deleteContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8583", + "$id": "8593", "name": "deleteContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8584", + "$id": "8594", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8585", + "$id": "8595", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114180,12 +114303,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainerFile.container_id" }, { - "$id": "8586", + "$id": "8596", "kind": "path", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8587", + "$id": "8597", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114203,7 +114326,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainerFile.file_id" }, { - "$id": "8588", + "$id": "8598", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -114245,12 +114368,12 @@ }, "parameters": [ { - "$id": "8589", + "$id": "8599", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8590", + "$id": "8600", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114266,12 +114389,12 @@ "decorators": [] }, { - "$id": "8591", + "$id": "8601", "kind": "method", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8592", + "$id": "8602", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114287,7 +114410,7 @@ "decorators": [] }, { - "$id": "8593", + "$id": "8603", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -114315,24 +114438,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainerFile" }, { - "$id": "8594", + "$id": "8604", "kind": "basic", "name": "DownloadContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8595", + "$id": "8605", "name": "DownloadContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8596", + "$id": "8606", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8597", + "$id": "8607", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114350,12 +114473,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFileContent.container_id" }, { - "$id": "8598", + "$id": "8608", "kind": "path", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8599", + "$id": "8609", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114373,7 +114496,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFileContent.file_id" }, { - "$id": "8600", + "$id": "8610", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -114395,7 +114518,7 @@ 200 ], "bodyType": { - "$id": "8601", + "$id": "8611", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -114420,12 +114543,12 @@ }, "parameters": [ { - "$id": "8602", + "$id": "8612", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8603", + "$id": "8613", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114441,12 +114564,12 @@ "decorators": [] }, { - "$id": "8604", + "$id": "8614", "kind": "method", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8605", + "$id": "8615", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114462,7 +114585,7 @@ "decorators": [] }, { - "$id": "8606", + "$id": "8616", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -114481,7 +114604,7 @@ ], "response": { "type": { - "$ref": "8601" + "$ref": "8611" } }, "isOverride": false, @@ -114492,13 +114615,13 @@ ], "parameters": [ { - "$id": "8607", + "$id": "8617", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8608", + "$id": "8618", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -114509,7 +114632,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8609", + "$id": "8619", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -114527,31 +114650,31 @@ "crossLanguageDefinitionId": "OpenAI.Containers", "apiVersions": [], "parent": { - "$ref": "8271" + "$ref": "8281" } }, { - "$id": "8610", + "$id": "8620", "kind": "client", "name": "Embeddings", "namespace": "OpenAI", "methods": [ { - "$id": "8611", + "$id": "8621", "kind": "basic", "name": "GenerateEmbeddings", "accessibility": "public", "apiVersions": [], "summary": "Creates an embedding vector representing the input text.", "operation": { - "$id": "8612", + "$id": "8622", "name": "GenerateEmbeddings", "resourceName": "Embeddings", "summary": "Creates an embedding vector representing the input text.", "accessibility": "public", "parameters": [ { - "$id": "8613", + "$id": "8623", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -114567,7 +114690,7 @@ "crossLanguageDefinitionId": "OpenAI.Embeddings.createEmbedding.accept" }, { - "$id": "8614", + "$id": "8624", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -114584,7 +114707,7 @@ "crossLanguageDefinitionId": "OpenAI.Embeddings.createEmbedding.contentType" }, { - "$id": "8615", + "$id": "8625", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -114632,7 +114755,7 @@ }, "parameters": [ { - "$id": "8616", + "$id": "8626", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -114649,7 +114772,7 @@ "decorators": [] }, { - "$id": "8617", + "$id": "8627", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -114666,7 +114789,7 @@ "decorators": [] }, { - "$id": "8618", + "$id": "8628", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -114697,13 +114820,13 @@ ], "parameters": [ { - "$id": "8619", + "$id": "8629", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8620", + "$id": "8630", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -114714,7 +114837,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8621", + "$id": "8631", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -114732,31 +114855,31 @@ "crossLanguageDefinitionId": "OpenAI.Embeddings", "apiVersions": [], "parent": { - "$ref": "8271" + "$ref": "8281" } }, { - "$id": "8622", + "$id": "8632", "kind": "client", "name": "Files", "namespace": "OpenAI", "methods": [ { - "$id": "8623", + "$id": "8633", "kind": "basic", "name": "GetFiles", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of files that belong to the user's organization.", "operation": { - "$id": "8624", + "$id": "8634", "name": "GetFiles", "resourceName": "Files", "summary": "Returns a list of files that belong to the user's organization.", "accessibility": "public", "parameters": [ { - "$id": "8625", + "$id": "8635", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -114772,13 +114895,13 @@ "crossLanguageDefinitionId": "OpenAI.Files.listFiles.accept" }, { - "$id": "8626", + "$id": "8636", "kind": "query", "name": "purpose", "serializedName": "purpose", "doc": "Only return files with the given purpose.", "type": { - "$id": "8627", + "$id": "8637", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114819,7 +114942,7 @@ }, "parameters": [ { - "$id": "8628", + "$id": "8638", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -114836,13 +114959,13 @@ "decorators": [] }, { - "$id": "8629", + "$id": "8639", "kind": "method", "name": "purpose", "serializedName": "purpose", "doc": "Only return files with the given purpose.", "type": { - "$id": "8630", + "$id": "8640", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114869,21 +114992,21 @@ "crossLanguageDefinitionId": "OpenAI.Files.listFiles" }, { - "$id": "8631", + "$id": "8641", "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": "8632", + "$id": "8642", "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": "8633", + "$id": "8643", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -114899,7 +115022,7 @@ "crossLanguageDefinitionId": "OpenAI.Files.createFile.accept" }, { - "$id": "8634", + "$id": "8644", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -114915,7 +115038,7 @@ "crossLanguageDefinitionId": "OpenAI.Files.createFile.contentType" }, { - "$id": "8635", + "$id": "8645", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -114963,7 +115086,7 @@ }, "parameters": [ { - "$id": "8636", + "$id": "8646", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -114980,7 +115103,7 @@ "decorators": [] }, { - "$id": "8637", + "$id": "8647", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -114997,7 +115120,7 @@ "decorators": [] }, { - "$id": "8638", + "$id": "8648", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -115025,21 +115148,21 @@ "crossLanguageDefinitionId": "OpenAI.Files.createFile" }, { - "$id": "8639", + "$id": "8649", "kind": "basic", "name": "deleteFile", "accessibility": "public", "apiVersions": [], "summary": "Delete a file", "operation": { - "$id": "8640", + "$id": "8650", "name": "deleteFile", "resourceName": "Files", "summary": "Delete a file", "accessibility": "public", "parameters": [ { - "$id": "8641", + "$id": "8651", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -115055,13 +115178,13 @@ "crossLanguageDefinitionId": "OpenAI.Files.deleteFile.accept" }, { - "$id": "8642", + "$id": "8652", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8643", + "$id": "8653", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115105,7 +115228,7 @@ }, "parameters": [ { - "$id": "8644", + "$id": "8654", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -115122,13 +115245,13 @@ "decorators": [] }, { - "$id": "8645", + "$id": "8655", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8646", + "$id": "8656", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115155,21 +115278,21 @@ "crossLanguageDefinitionId": "OpenAI.Files.deleteFile" }, { - "$id": "8647", + "$id": "8657", "kind": "basic", "name": "GetFile", "accessibility": "public", "apiVersions": [], "summary": "Returns information about a specific file.", "operation": { - "$id": "8648", + "$id": "8658", "name": "GetFile", "resourceName": "Files", "summary": "Returns information about a specific file.", "accessibility": "public", "parameters": [ { - "$id": "8649", + "$id": "8659", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -115185,13 +115308,13 @@ "crossLanguageDefinitionId": "OpenAI.Files.retrieveFile.accept" }, { - "$id": "8650", + "$id": "8660", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8651", + "$id": "8661", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115235,7 +115358,7 @@ }, "parameters": [ { - "$id": "8652", + "$id": "8662", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -115252,13 +115375,13 @@ "decorators": [] }, { - "$id": "8653", + "$id": "8663", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8654", + "$id": "8664", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115285,21 +115408,21 @@ "crossLanguageDefinitionId": "OpenAI.Files.retrieveFile" }, { - "$id": "8655", + "$id": "8665", "kind": "basic", "name": "downloadFile", "accessibility": "public", "apiVersions": [], "summary": "Returns the contents of the specified file.", "operation": { - "$id": "8656", + "$id": "8666", "name": "downloadFile", "resourceName": "Files", "summary": "Returns the contents of the specified file.", "accessibility": "public", "parameters": [ { - "$id": "8657", + "$id": "8667", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -115315,13 +115438,13 @@ "crossLanguageDefinitionId": "OpenAI.Files.downloadFile.accept" }, { - "$id": "8658", + "$id": "8668", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8659", + "$id": "8669", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115345,7 +115468,7 @@ 200 ], "bodyType": { - "$id": "8660", + "$id": "8670", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -115370,7 +115493,7 @@ }, "parameters": [ { - "$id": "8661", + "$id": "8671", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -115387,13 +115510,13 @@ "decorators": [] }, { - "$id": "8662", + "$id": "8672", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8663", + "$id": "8673", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115411,7 +115534,7 @@ ], "response": { "type": { - "$ref": "8660" + "$ref": "8670" } }, "isOverride": false, @@ -115422,13 +115545,13 @@ ], "parameters": [ { - "$id": "8664", + "$id": "8674", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8665", + "$id": "8675", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -115439,7 +115562,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8666", + "$id": "8676", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -115457,37 +115580,37 @@ "crossLanguageDefinitionId": "OpenAI.Files", "apiVersions": [], "parent": { - "$ref": "8271" + "$ref": "8281" } }, { - "$id": "8667", + "$id": "8677", "kind": "client", "name": "FineTuning", "namespace": "OpenAI", "methods": [ { - "$id": "8668", + "$id": "8678", "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": "8669", + "$id": "8679", "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": "8670", + "$id": "8680", "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": "8671", + "$id": "8681", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115505,13 +115628,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningCheckpointPermissions.fine_tuned_model_checkpoint" }, { - "$id": "8672", + "$id": "8682", "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": "8673", + "$id": "8683", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115526,13 +115649,13 @@ "readOnly": false }, { - "$id": "8674", + "$id": "8684", "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": "8675", + "$id": "8685", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -115547,7 +115670,7 @@ "readOnly": false }, { - "$id": "8676", + "$id": "8686", "kind": "query", "name": "order", "serializedName": "order", @@ -115564,13 +115687,13 @@ "readOnly": false }, { - "$id": "8677", + "$id": "8687", "kind": "query", "name": "project_id", "serializedName": "project_id", "doc": "The ID of the project to get permissions for.", "type": { - "$id": "8678", + "$id": "8688", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115585,7 +115708,7 @@ "readOnly": false }, { - "$id": "8679", + "$id": "8689", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -115627,13 +115750,13 @@ }, "parameters": [ { - "$id": "8680", + "$id": "8690", "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": "8681", + "$id": "8691", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115649,13 +115772,13 @@ "decorators": [] }, { - "$id": "8682", + "$id": "8692", "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": "8683", + "$id": "8693", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115671,13 +115794,13 @@ "decorators": [] }, { - "$id": "8684", + "$id": "8694", "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": "8685", + "$id": "8695", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -115693,7 +115816,7 @@ "decorators": [] }, { - "$id": "8686", + "$id": "8696", "kind": "method", "name": "order", "serializedName": "order", @@ -115711,13 +115834,13 @@ "decorators": [] }, { - "$id": "8687", + "$id": "8697", "kind": "method", "name": "project_id", "serializedName": "project_id", "doc": "The ID of the project to get permissions for.", "type": { - "$id": "8688", + "$id": "8698", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115733,7 +115856,7 @@ "decorators": [] }, { - "$id": "8689", + "$id": "8699", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -115761,27 +115884,27 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningCheckpointPermissions" }, { - "$id": "8690", + "$id": "8700", "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": "8691", + "$id": "8701", "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": "8692", + "$id": "8702", "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": "8693", + "$id": "8703", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115799,7 +115922,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission.fine_tuned_model_checkpoint" }, { - "$id": "8694", + "$id": "8704", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -115816,7 +115939,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission.contentType" }, { - "$id": "8695", + "$id": "8705", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -115832,7 +115955,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission.accept" }, { - "$id": "8696", + "$id": "8706", "kind": "body", "name": "createFineTuningCheckpointPermissionRequest", "serializedName": "createFineTuningCheckpointPermissionRequest", @@ -115880,13 +116003,13 @@ }, "parameters": [ { - "$id": "8697", + "$id": "8707", "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": "8698", + "$id": "8708", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115902,7 +116025,7 @@ "decorators": [] }, { - "$id": "8699", + "$id": "8709", "kind": "method", "name": "project_ids", "serializedName": "project_ids", @@ -115920,7 +116043,7 @@ "decorators": [] }, { - "$id": "8700", + "$id": "8710", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -115938,7 +116061,7 @@ "decorators": [] }, { - "$id": "8701", + "$id": "8711", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -115966,27 +116089,27 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission" }, { - "$id": "8702", + "$id": "8712", "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": "8703", + "$id": "8713", "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": "8704", + "$id": "8714", "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": "8705", + "$id": "8715", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116004,13 +116127,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.deleteFineTuningCheckpointPermission.fine_tuned_model_checkpoint" }, { - "$id": "8706", + "$id": "8716", "kind": "path", "name": "permission_id", "serializedName": "permission_id", "doc": "The ID of the permission to delete.", "type": { - "$id": "8707", + "$id": "8717", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116028,7 +116151,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.deleteFineTuningCheckpointPermission.permission_id" }, { - "$id": "8708", + "$id": "8718", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -116070,13 +116193,13 @@ }, "parameters": [ { - "$id": "8709", + "$id": "8719", "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": "8710", + "$id": "8720", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116092,13 +116215,13 @@ "decorators": [] }, { - "$id": "8711", + "$id": "8721", "kind": "method", "name": "permission_id", "serializedName": "permission_id", "doc": "The ID of the permission to delete.", "type": { - "$id": "8712", + "$id": "8722", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116114,7 +116237,7 @@ "decorators": [] }, { - "$id": "8713", + "$id": "8723", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -116142,21 +116265,21 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.deleteFineTuningCheckpointPermission" }, { - "$id": "8714", + "$id": "8724", "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": "8715", + "$id": "8725", "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": "8716", + "$id": "8726", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -116172,7 +116295,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningJob.accept" }, { - "$id": "8717", + "$id": "8727", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -116189,7 +116312,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningJob.contentType" }, { - "$id": "8718", + "$id": "8728", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -116237,7 +116360,7 @@ }, "parameters": [ { - "$id": "8719", + "$id": "8729", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -116254,7 +116377,7 @@ "decorators": [] }, { - "$id": "8720", + "$id": "8730", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -116271,7 +116394,7 @@ "decorators": [] }, { - "$id": "8721", + "$id": "8731", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -116300,21 +116423,21 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningJob" }, { - "$id": "8722", + "$id": "8732", "kind": "basic", "name": "listPaginatedFineTuningJobs", "accessibility": "public", "apiVersions": [], "summary": "List your organization's fine-tuning jobs", "operation": { - "$id": "8723", + "$id": "8733", "name": "listPaginatedFineTuningJobs", "resourceName": "FineTuning", "summary": "List your organization's fine-tuning jobs", "accessibility": "public", "parameters": [ { - "$id": "8724", + "$id": "8734", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -116330,13 +116453,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listPaginatedFineTuningJobs.accept" }, { - "$id": "8725", + "$id": "8735", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last job from the previous pagination request.", "type": { - "$id": "8726", + "$id": "8736", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116351,13 +116474,13 @@ "readOnly": false }, { - "$id": "8727", + "$id": "8737", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "Number of fine-tuning jobs to retrieve.", "type": { - "$id": "8728", + "$id": "8738", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -116398,7 +116521,7 @@ }, "parameters": [ { - "$id": "8729", + "$id": "8739", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -116415,13 +116538,13 @@ "decorators": [] }, { - "$id": "8730", + "$id": "8740", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last job from the previous pagination request.", "type": { - "$id": "8731", + "$id": "8741", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116437,13 +116560,13 @@ "decorators": [] }, { - "$id": "8732", + "$id": "8742", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "Number of fine-tuning jobs to retrieve.", "type": { - "$id": "8733", + "$id": "8743", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -116470,21 +116593,21 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listPaginatedFineTuningJobs" }, { - "$id": "8734", + "$id": "8744", "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": "8735", + "$id": "8745", "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": "8736", + "$id": "8746", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -116500,13 +116623,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.retrieveFineTuningJob.accept" }, { - "$id": "8737", + "$id": "8747", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job.", "type": { - "$id": "8738", + "$id": "8748", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116550,7 +116673,7 @@ }, "parameters": [ { - "$id": "8739", + "$id": "8749", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -116567,13 +116690,13 @@ "decorators": [] }, { - "$id": "8740", + "$id": "8750", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job.", "type": { - "$id": "8741", + "$id": "8751", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116600,21 +116723,21 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.retrieveFineTuningJob" }, { - "$id": "8742", + "$id": "8752", "kind": "basic", "name": "cancelFineTuningJob", "accessibility": "public", "apiVersions": [], "summary": "Immediately cancel a fine-tune job.", "operation": { - "$id": "8743", + "$id": "8753", "name": "cancelFineTuningJob", "resourceName": "FineTuning", "summary": "Immediately cancel a fine-tune job.", "accessibility": "public", "parameters": [ { - "$id": "8744", + "$id": "8754", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -116630,13 +116753,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.cancelFineTuningJob.accept" }, { - "$id": "8745", + "$id": "8755", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to cancel.", "type": { - "$id": "8746", + "$id": "8756", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116680,7 +116803,7 @@ }, "parameters": [ { - "$id": "8747", + "$id": "8757", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -116697,13 +116820,13 @@ "decorators": [] }, { - "$id": "8748", + "$id": "8758", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to cancel.", "type": { - "$id": "8749", + "$id": "8759", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116730,21 +116853,21 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.cancelFineTuningJob" }, { - "$id": "8750", + "$id": "8760", "kind": "basic", "name": "listFineTuningJobCheckpoints", "accessibility": "public", "apiVersions": [], "summary": "List the checkpoints for a fine-tuning job.", "operation": { - "$id": "8751", + "$id": "8761", "name": "listFineTuningJobCheckpoints", "resourceName": "FineTuning", "summary": "List the checkpoints for a fine-tuning job.", "accessibility": "public", "parameters": [ { - "$id": "8752", + "$id": "8762", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -116760,13 +116883,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningJobCheckpoints.accept" }, { - "$id": "8753", + "$id": "8763", "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": "8754", + "$id": "8764", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116784,13 +116907,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningJobCheckpoints.fine_tuning_job_id" }, { - "$id": "8755", + "$id": "8765", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last checkpoint ID from the previous pagination request.", "type": { - "$id": "8756", + "$id": "8766", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116805,13 +116928,13 @@ "readOnly": false }, { - "$id": "8757", + "$id": "8767", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "Number of checkpoints to retrieve.", "type": { - "$id": "8758", + "$id": "8768", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -116852,7 +116975,7 @@ }, "parameters": [ { - "$id": "8759", + "$id": "8769", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -116869,13 +116992,13 @@ "decorators": [] }, { - "$id": "8760", + "$id": "8770", "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": "8761", + "$id": "8771", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116891,13 +117014,13 @@ "decorators": [] }, { - "$id": "8762", + "$id": "8772", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last checkpoint ID from the previous pagination request.", "type": { - "$id": "8763", + "$id": "8773", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116913,13 +117036,13 @@ "decorators": [] }, { - "$id": "8764", + "$id": "8774", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "Number of checkpoints to retrieve.", "type": { - "$id": "8765", + "$id": "8775", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -116946,21 +117069,21 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningJobCheckpoints" }, { - "$id": "8766", + "$id": "8776", "kind": "basic", "name": "listFineTuningEvents", "accessibility": "public", "apiVersions": [], "summary": "Get status updates for a fine-tuning job.", "operation": { - "$id": "8767", + "$id": "8777", "name": "listFineTuningEvents", "resourceName": "FineTuning", "summary": "Get status updates for a fine-tuning job.", "accessibility": "public", "parameters": [ { - "$id": "8768", + "$id": "8778", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -116976,13 +117099,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningEvents.accept" }, { - "$id": "8769", + "$id": "8779", "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": "8770", + "$id": "8780", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117000,13 +117123,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningEvents.fine_tuning_job_id" }, { - "$id": "8771", + "$id": "8781", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last event from the previous pagination request.", "type": { - "$id": "8772", + "$id": "8782", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117021,13 +117144,13 @@ "readOnly": false }, { - "$id": "8773", + "$id": "8783", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "Number of events to retrieve.", "type": { - "$id": "8774", + "$id": "8784", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -117068,7 +117191,7 @@ }, "parameters": [ { - "$id": "8775", + "$id": "8785", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -117085,13 +117208,13 @@ "decorators": [] }, { - "$id": "8776", + "$id": "8786", "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": "8777", + "$id": "8787", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117107,13 +117230,13 @@ "decorators": [] }, { - "$id": "8778", + "$id": "8788", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last event from the previous pagination request.", "type": { - "$id": "8779", + "$id": "8789", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117129,13 +117252,13 @@ "decorators": [] }, { - "$id": "8780", + "$id": "8790", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "Number of events to retrieve.", "type": { - "$id": "8781", + "$id": "8791", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -117162,27 +117285,27 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningEvents" }, { - "$id": "8782", + "$id": "8792", "kind": "basic", "name": "pauseFineTuningJob", "accessibility": "public", "apiVersions": [], "summary": "Pause a fine-tune job.", "operation": { - "$id": "8783", + "$id": "8793", "name": "pauseFineTuningJob", "resourceName": "FineTuning", "summary": "Pause a fine-tune job.", "accessibility": "public", "parameters": [ { - "$id": "8784", + "$id": "8794", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to pause.", "type": { - "$id": "8785", + "$id": "8795", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117200,7 +117323,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.pauseFineTuningJob.fine_tuning_job_id" }, { - "$id": "8786", + "$id": "8796", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -117242,13 +117365,13 @@ }, "parameters": [ { - "$id": "8787", + "$id": "8797", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to pause.", "type": { - "$id": "8788", + "$id": "8798", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117264,7 +117387,7 @@ "decorators": [] }, { - "$id": "8789", + "$id": "8799", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -117292,27 +117415,27 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.pauseFineTuningJob" }, { - "$id": "8790", + "$id": "8800", "kind": "basic", "name": "resumeFineTuningJob", "accessibility": "public", "apiVersions": [], "summary": "Resume a paused fine-tune job.", "operation": { - "$id": "8791", + "$id": "8801", "name": "resumeFineTuningJob", "resourceName": "FineTuning", "summary": "Resume a paused fine-tune job.", "accessibility": "public", "parameters": [ { - "$id": "8792", + "$id": "8802", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to resume.", "type": { - "$id": "8793", + "$id": "8803", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117330,7 +117453,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.resumeFineTuningJob.fine_tuning_job_id" }, { - "$id": "8794", + "$id": "8804", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -117372,13 +117495,13 @@ }, "parameters": [ { - "$id": "8795", + "$id": "8805", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to resume.", "type": { - "$id": "8796", + "$id": "8806", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117394,7 +117517,7 @@ "decorators": [] }, { - "$id": "8797", + "$id": "8807", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -117424,13 +117547,13 @@ ], "parameters": [ { - "$id": "8798", + "$id": "8808", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8799", + "$id": "8809", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -117441,7 +117564,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8800", + "$id": "8810", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -117459,31 +117582,31 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning", "apiVersions": [], "parent": { - "$ref": "8271" + "$ref": "8281" } }, { - "$id": "8801", + "$id": "8811", "kind": "client", "name": "Graders", "namespace": "OpenAI", "methods": [ { - "$id": "8802", + "$id": "8812", "kind": "basic", "name": "runGrader", "accessibility": "public", "apiVersions": [], "summary": "Run a grader.", "operation": { - "$id": "8803", + "$id": "8813", "name": "runGrader", "resourceName": "Graders", "summary": "Run a grader.", "accessibility": "public", "parameters": [ { - "$id": "8804", + "$id": "8814", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -117500,7 +117623,7 @@ "crossLanguageDefinitionId": "OpenAI.Graders.runGrader.contentType" }, { - "$id": "8805", + "$id": "8815", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -117516,7 +117639,7 @@ "crossLanguageDefinitionId": "OpenAI.Graders.runGrader.accept" }, { - "$id": "8806", + "$id": "8816", "kind": "body", "name": "request", "serializedName": "request", @@ -117564,7 +117687,7 @@ }, "parameters": [ { - "$id": "8807", + "$id": "8817", "kind": "method", "name": "request", "serializedName": "request", @@ -117581,7 +117704,7 @@ "decorators": [] }, { - "$id": "8808", + "$id": "8818", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -117599,7 +117722,7 @@ "decorators": [] }, { - "$id": "8809", + "$id": "8819", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -117627,21 +117750,21 @@ "crossLanguageDefinitionId": "OpenAI.Graders.runGrader" }, { - "$id": "8810", + "$id": "8820", "kind": "basic", "name": "validateGrader", "accessibility": "public", "apiVersions": [], "summary": "Validate a grader.", "operation": { - "$id": "8811", + "$id": "8821", "name": "validateGrader", "resourceName": "Graders", "summary": "Validate a grader.", "accessibility": "public", "parameters": [ { - "$id": "8812", + "$id": "8822", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -117658,7 +117781,7 @@ "crossLanguageDefinitionId": "OpenAI.Graders.validateGrader.contentType" }, { - "$id": "8813", + "$id": "8823", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -117674,7 +117797,7 @@ "crossLanguageDefinitionId": "OpenAI.Graders.validateGrader.accept" }, { - "$id": "8814", + "$id": "8824", "kind": "body", "name": "request", "serializedName": "request", @@ -117722,7 +117845,7 @@ }, "parameters": [ { - "$id": "8815", + "$id": "8825", "kind": "method", "name": "request", "serializedName": "request", @@ -117739,7 +117862,7 @@ "decorators": [] }, { - "$id": "8816", + "$id": "8826", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -117757,7 +117880,7 @@ "decorators": [] }, { - "$id": "8817", + "$id": "8827", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -117787,13 +117910,13 @@ ], "parameters": [ { - "$id": "8818", + "$id": "8828", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8819", + "$id": "8829", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -117804,7 +117927,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8820", + "$id": "8830", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -117822,37 +117945,37 @@ "crossLanguageDefinitionId": "OpenAI.Graders", "apiVersions": [], "parent": { - "$ref": "8271" + "$ref": "8281" } }, { - "$id": "8821", + "$id": "8831", "kind": "client", "name": "Evals", "namespace": "OpenAI", "methods": [ { - "$id": "8822", + "$id": "8832", "kind": "basic", "name": "listEvals", "accessibility": "public", "apiVersions": [], "summary": "List evaluations for a project.", "operation": { - "$id": "8823", + "$id": "8833", "name": "listEvals", "resourceName": "Evals", "summary": "List evaluations for a project.", "accessibility": "public", "parameters": [ { - "$id": "8824", + "$id": "8834", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last eval from the previous pagination request.", "type": { - "$id": "8825", + "$id": "8835", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117867,13 +117990,13 @@ "readOnly": false }, { - "$id": "8826", + "$id": "8836", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of evals to be returned in a single pagination response.", "type": { - "$id": "8827", + "$id": "8837", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -117888,7 +118011,7 @@ "readOnly": false }, { - "$id": "8828", + "$id": "8838", "kind": "query", "name": "order", "serializedName": "order", @@ -117905,7 +118028,7 @@ "readOnly": false }, { - "$id": "8829", + "$id": "8839", "kind": "query", "name": "order_by", "serializedName": "order_by", @@ -117922,7 +118045,7 @@ "readOnly": false }, { - "$id": "8830", + "$id": "8840", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -117964,13 +118087,13 @@ }, "parameters": [ { - "$id": "8831", + "$id": "8841", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last eval from the previous pagination request.", "type": { - "$id": "8832", + "$id": "8842", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117986,13 +118109,13 @@ "decorators": [] }, { - "$id": "8833", + "$id": "8843", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of evals to be returned in a single pagination response.", "type": { - "$id": "8834", + "$id": "8844", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -118008,7 +118131,7 @@ "decorators": [] }, { - "$id": "8835", + "$id": "8845", "kind": "method", "name": "order", "serializedName": "order", @@ -118026,7 +118149,7 @@ "decorators": [] }, { - "$id": "8836", + "$id": "8846", "kind": "method", "name": "order_by", "serializedName": "order_by", @@ -118044,7 +118167,7 @@ "decorators": [] }, { - "$id": "8837", + "$id": "8847", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -118072,21 +118195,21 @@ "crossLanguageDefinitionId": "OpenAI.Evals.listEvals" }, { - "$id": "8838", + "$id": "8848", "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": "8839", + "$id": "8849", "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": "8840", + "$id": "8850", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -118103,7 +118226,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEval.contentType" }, { - "$id": "8841", + "$id": "8851", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -118119,7 +118242,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEval.accept" }, { - "$id": "8842", + "$id": "8852", "kind": "body", "name": "body", "serializedName": "body", @@ -118167,7 +118290,7 @@ }, "parameters": [ { - "$id": "8843", + "$id": "8853", "kind": "method", "name": "body", "serializedName": "body", @@ -118184,7 +118307,7 @@ "decorators": [] }, { - "$id": "8844", + "$id": "8854", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -118202,7 +118325,7 @@ "decorators": [] }, { - "$id": "8845", + "$id": "8855", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -118230,26 +118353,26 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEval" }, { - "$id": "8846", + "$id": "8856", "kind": "basic", "name": "getEval", "accessibility": "public", "apiVersions": [], "summary": "Retrieve an evaluation by its ID.", "operation": { - "$id": "8847", + "$id": "8857", "name": "getEval", "resourceName": "Evals", "summary": "Retrieve an evaluation by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8848", + "$id": "8858", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "type": { - "$id": "8849", + "$id": "8859", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118267,7 +118390,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEval.eval_id" }, { - "$id": "8850", + "$id": "8860", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -118309,12 +118432,12 @@ }, "parameters": [ { - "$id": "8851", + "$id": "8861", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "type": { - "$id": "8852", + "$id": "8862", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118330,7 +118453,7 @@ "decorators": [] }, { - "$id": "8853", + "$id": "8863", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -118358,27 +118481,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEval" }, { - "$id": "8854", + "$id": "8864", "kind": "basic", "name": "updateEval", "accessibility": "public", "apiVersions": [], "doc": "Update select, mutable properties of a specified evaluation.", "operation": { - "$id": "8855", + "$id": "8865", "name": "updateEval", "resourceName": "Evals", "doc": "Update select, mutable properties of a specified evaluation.", "accessibility": "public", "parameters": [ { - "$id": "8856", + "$id": "8866", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to update.", "type": { - "$id": "8857", + "$id": "8867", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118396,7 +118519,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.updateEval.eval_id" }, { - "$id": "8858", + "$id": "8868", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -118413,7 +118536,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.updateEval.contentType" }, { - "$id": "8859", + "$id": "8869", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -118429,7 +118552,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.updateEval.accept" }, { - "$id": "8860", + "$id": "8870", "kind": "body", "name": "body", "serializedName": "body", @@ -118477,13 +118600,13 @@ }, "parameters": [ { - "$id": "8861", + "$id": "8871", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to update.", "type": { - "$id": "8862", + "$id": "8872", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118499,7 +118622,7 @@ "decorators": [] }, { - "$id": "8863", + "$id": "8873", "kind": "method", "name": "body", "serializedName": "body", @@ -118516,7 +118639,7 @@ "decorators": [] }, { - "$id": "8864", + "$id": "8874", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -118534,7 +118657,7 @@ "decorators": [] }, { - "$id": "8865", + "$id": "8875", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -118562,27 +118685,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.updateEval" }, { - "$id": "8866", + "$id": "8876", "kind": "basic", "name": "deleteEval", "accessibility": "public", "apiVersions": [], "doc": "Delete a specified evaluation.", "operation": { - "$id": "8867", + "$id": "8877", "name": "deleteEval", "resourceName": "Evals", "doc": "Delete a specified evaluation.", "accessibility": "public", "parameters": [ { - "$id": "8868", + "$id": "8878", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to delete.", "type": { - "$id": "8869", + "$id": "8879", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118600,7 +118723,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEval.eval_id" }, { - "$id": "8870", + "$id": "8880", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -118642,13 +118765,13 @@ }, "parameters": [ { - "$id": "8871", + "$id": "8881", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to delete.", "type": { - "$id": "8872", + "$id": "8882", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118664,7 +118787,7 @@ "decorators": [] }, { - "$id": "8873", + "$id": "8883", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -118692,7 +118815,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEval" }, { - "$id": "8874", + "$id": "8884", "kind": "basic", "name": "getEvalRuns", "accessibility": "public", @@ -118700,7 +118823,7 @@ "doc": "Retrieve a list of runs for a specified evaluation.", "summary": "", "operation": { - "$id": "8875", + "$id": "8885", "name": "getEvalRuns", "resourceName": "Evals", "summary": "", @@ -118708,13 +118831,13 @@ "accessibility": "public", "parameters": [ { - "$id": "8876", + "$id": "8886", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to retrieve runs for.", "type": { - "$id": "8877", + "$id": "8887", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118732,13 +118855,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRuns.eval_id" }, { - "$id": "8878", + "$id": "8888", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last run from the previous pagination request.", "type": { - "$id": "8879", + "$id": "8889", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118753,13 +118876,13 @@ "readOnly": false }, { - "$id": "8880", + "$id": "8890", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of runs to be returned in a single pagination response.", "type": { - "$id": "8881", + "$id": "8891", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -118774,7 +118897,7 @@ "readOnly": false }, { - "$id": "8882", + "$id": "8892", "kind": "query", "name": "order", "serializedName": "order", @@ -118791,7 +118914,7 @@ "readOnly": false }, { - "$id": "8883", + "$id": "8893", "kind": "query", "name": "status", "serializedName": "status", @@ -118808,7 +118931,7 @@ "readOnly": false }, { - "$id": "8884", + "$id": "8894", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -118850,13 +118973,13 @@ }, "parameters": [ { - "$id": "8885", + "$id": "8895", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to retrieve runs for.", "type": { - "$id": "8886", + "$id": "8896", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118872,13 +118995,13 @@ "decorators": [] }, { - "$id": "8887", + "$id": "8897", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last run from the previous pagination request.", "type": { - "$id": "8888", + "$id": "8898", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118894,13 +119017,13 @@ "decorators": [] }, { - "$id": "8889", + "$id": "8899", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of runs to be returned in a single pagination response.", "type": { - "$id": "8890", + "$id": "8900", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -118916,7 +119039,7 @@ "decorators": [] }, { - "$id": "8891", + "$id": "8901", "kind": "method", "name": "order", "serializedName": "order", @@ -118934,7 +119057,7 @@ "decorators": [] }, { - "$id": "8892", + "$id": "8902", "kind": "method", "name": "status", "serializedName": "status", @@ -118952,7 +119075,7 @@ "decorators": [] }, { - "$id": "8893", + "$id": "8903", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -118980,27 +119103,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRuns" }, { - "$id": "8894", + "$id": "8904", "kind": "basic", "name": "createEvalRun", "accessibility": "public", "apiVersions": [], "doc": "Create a new evaluation run, beginning the grading process.", "operation": { - "$id": "8895", + "$id": "8905", "name": "createEvalRun", "resourceName": "Evals", "doc": "Create a new evaluation run, beginning the grading process.", "accessibility": "public", "parameters": [ { - "$id": "8896", + "$id": "8906", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to run.", "type": { - "$id": "8897", + "$id": "8907", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119018,7 +119141,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEvalRun.eval_id" }, { - "$id": "8898", + "$id": "8908", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -119035,7 +119158,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEvalRun.contentType" }, { - "$id": "8899", + "$id": "8909", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -119051,7 +119174,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEvalRun.accept" }, { - "$id": "8900", + "$id": "8910", "kind": "body", "name": "body", "serializedName": "body", @@ -119099,13 +119222,13 @@ }, "parameters": [ { - "$id": "8901", + "$id": "8911", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to run.", "type": { - "$id": "8902", + "$id": "8912", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119121,7 +119244,7 @@ "decorators": [] }, { - "$id": "8903", + "$id": "8913", "kind": "method", "name": "body", "serializedName": "body", @@ -119138,7 +119261,7 @@ "decorators": [] }, { - "$id": "8904", + "$id": "8914", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -119156,7 +119279,7 @@ "decorators": [] }, { - "$id": "8905", + "$id": "8915", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -119184,27 +119307,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEvalRun" }, { - "$id": "8906", + "$id": "8916", "kind": "basic", "name": "getEvalRun", "accessibility": "public", "apiVersions": [], "doc": "Retrieve a specific evaluation run by its ID.", "operation": { - "$id": "8907", + "$id": "8917", "name": "getEvalRun", "resourceName": "Evals", "doc": "Retrieve a specific evaluation run by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8908", + "$id": "8918", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8909", + "$id": "8919", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119222,13 +119345,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRun.eval_id" }, { - "$id": "8910", + "$id": "8920", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to retrieve.", "type": { - "$id": "8911", + "$id": "8921", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119246,7 +119369,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRun.run_id" }, { - "$id": "8912", + "$id": "8922", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -119288,13 +119411,13 @@ }, "parameters": [ { - "$id": "8913", + "$id": "8923", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8914", + "$id": "8924", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119310,13 +119433,13 @@ "decorators": [] }, { - "$id": "8915", + "$id": "8925", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to retrieve.", "type": { - "$id": "8916", + "$id": "8926", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119332,7 +119455,7 @@ "decorators": [] }, { - "$id": "8917", + "$id": "8927", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -119360,27 +119483,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRun" }, { - "$id": "8918", + "$id": "8928", "kind": "basic", "name": "cancelEvalRun", "accessibility": "public", "apiVersions": [], "doc": "Cancel a specific evaluation run by its ID.", "operation": { - "$id": "8919", + "$id": "8929", "name": "cancelEvalRun", "resourceName": "Evals", "doc": "Cancel a specific evaluation run by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8920", + "$id": "8930", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8921", + "$id": "8931", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119398,13 +119521,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.cancelEvalRun.eval_id" }, { - "$id": "8922", + "$id": "8932", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to cancel.", "type": { - "$id": "8923", + "$id": "8933", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119422,7 +119545,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.cancelEvalRun.run_id" }, { - "$id": "8924", + "$id": "8934", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -119464,13 +119587,13 @@ }, "parameters": [ { - "$id": "8925", + "$id": "8935", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8926", + "$id": "8936", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119486,13 +119609,13 @@ "decorators": [] }, { - "$id": "8927", + "$id": "8937", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to cancel.", "type": { - "$id": "8928", + "$id": "8938", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119508,7 +119631,7 @@ "decorators": [] }, { - "$id": "8929", + "$id": "8939", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -119536,27 +119659,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.cancelEvalRun" }, { - "$id": "8930", + "$id": "8940", "kind": "basic", "name": "deleteEvalRun", "accessibility": "public", "apiVersions": [], "doc": "Delete a specific evaluation run by its ID.", "operation": { - "$id": "8931", + "$id": "8941", "name": "deleteEvalRun", "resourceName": "Evals", "doc": "Delete a specific evaluation run by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8932", + "$id": "8942", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8933", + "$id": "8943", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119574,13 +119697,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEvalRun.eval_id" }, { - "$id": "8934", + "$id": "8944", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to delete.", "type": { - "$id": "8935", + "$id": "8945", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119598,7 +119721,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEvalRun.run_id" }, { - "$id": "8936", + "$id": "8946", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -119640,13 +119763,13 @@ }, "parameters": [ { - "$id": "8937", + "$id": "8947", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8938", + "$id": "8948", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119662,13 +119785,13 @@ "decorators": [] }, { - "$id": "8939", + "$id": "8949", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to delete.", "type": { - "$id": "8940", + "$id": "8950", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119684,7 +119807,7 @@ "decorators": [] }, { - "$id": "8941", + "$id": "8951", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -119712,27 +119835,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEvalRun" }, { - "$id": "8942", + "$id": "8952", "kind": "basic", "name": "getEvalRunOutputItems", "accessibility": "public", "apiVersions": [], "doc": "Get a list of output items for a specified evaluation run.", "operation": { - "$id": "8943", + "$id": "8953", "name": "getEvalRunOutputItems", "resourceName": "Evals", "doc": "Get a list of output items for a specified evaluation run.", "accessibility": "public", "parameters": [ { - "$id": "8944", + "$id": "8954", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8945", + "$id": "8955", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119750,13 +119873,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItems.eval_id" }, { - "$id": "8946", + "$id": "8956", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to retrieve output items for.", "type": { - "$id": "8947", + "$id": "8957", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119774,13 +119897,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItems.run_id" }, { - "$id": "8948", + "$id": "8958", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last output item from the previous pagination request.", "type": { - "$id": "8949", + "$id": "8959", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119795,13 +119918,13 @@ "readOnly": false }, { - "$id": "8950", + "$id": "8960", "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": "8951", + "$id": "8961", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -119816,7 +119939,7 @@ "readOnly": false }, { - "$id": "8952", + "$id": "8962", "kind": "query", "name": "status", "serializedName": "status", @@ -119833,7 +119956,7 @@ "readOnly": false }, { - "$id": "8953", + "$id": "8963", "kind": "query", "name": "order", "serializedName": "order", @@ -119850,7 +119973,7 @@ "readOnly": false }, { - "$id": "8954", + "$id": "8964", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -119892,13 +120015,13 @@ }, "parameters": [ { - "$id": "8955", + "$id": "8965", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8956", + "$id": "8966", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119914,13 +120037,13 @@ "decorators": [] }, { - "$id": "8957", + "$id": "8967", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to retrieve output items for.", "type": { - "$id": "8958", + "$id": "8968", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119936,13 +120059,13 @@ "decorators": [] }, { - "$id": "8959", + "$id": "8969", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last output item from the previous pagination request.", "type": { - "$id": "8960", + "$id": "8970", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119958,13 +120081,13 @@ "decorators": [] }, { - "$id": "8961", + "$id": "8971", "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": "8962", + "$id": "8972", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -119980,7 +120103,7 @@ "decorators": [] }, { - "$id": "8963", + "$id": "8973", "kind": "method", "name": "status", "serializedName": "status", @@ -119998,7 +120121,7 @@ "decorators": [] }, { - "$id": "8964", + "$id": "8974", "kind": "method", "name": "order", "serializedName": "order", @@ -120016,7 +120139,7 @@ "decorators": [] }, { - "$id": "8965", + "$id": "8975", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -120044,27 +120167,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItems" }, { - "$id": "8966", + "$id": "8976", "kind": "basic", "name": "getEvalRunOutputItem", "accessibility": "public", "apiVersions": [], "doc": "Retrieve a specific output item from an evaluation run by its ID.", "operation": { - "$id": "8967", + "$id": "8977", "name": "getEvalRunOutputItem", "resourceName": "Evals", "doc": "Retrieve a specific output item from an evaluation run by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8968", + "$id": "8978", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8969", + "$id": "8979", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120082,13 +120205,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItem.eval_id" }, { - "$id": "8970", + "$id": "8980", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run the output item belongs to.", "type": { - "$id": "8971", + "$id": "8981", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120106,13 +120229,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItem.run_id" }, { - "$id": "8972", + "$id": "8982", "kind": "path", "name": "output_item_id", "serializedName": "output_item_id", "doc": "The ID of the output item to retrieve.", "type": { - "$id": "8973", + "$id": "8983", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120130,7 +120253,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItem.output_item_id" }, { - "$id": "8974", + "$id": "8984", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -120172,13 +120295,13 @@ }, "parameters": [ { - "$id": "8975", + "$id": "8985", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8976", + "$id": "8986", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120194,13 +120317,13 @@ "decorators": [] }, { - "$id": "8977", + "$id": "8987", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run the output item belongs to.", "type": { - "$id": "8978", + "$id": "8988", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120216,13 +120339,13 @@ "decorators": [] }, { - "$id": "8979", + "$id": "8989", "kind": "method", "name": "output_item_id", "serializedName": "output_item_id", "doc": "The ID of the output item to retrieve.", "type": { - "$id": "8980", + "$id": "8990", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120238,7 +120361,7 @@ "decorators": [] }, { - "$id": "8981", + "$id": "8991", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -120268,13 +120391,13 @@ ], "parameters": [ { - "$id": "8982", + "$id": "8992", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8983", + "$id": "8993", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -120285,7 +120408,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8984", + "$id": "8994", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -120303,31 +120426,31 @@ "crossLanguageDefinitionId": "OpenAI.Evals", "apiVersions": [], "parent": { - "$ref": "8271" + "$ref": "8281" } }, { - "$id": "8985", + "$id": "8995", "kind": "client", "name": "Responses", "namespace": "OpenAI", "methods": [ { - "$id": "8986", + "$id": "8996", "kind": "basic", "name": "createResponse", "accessibility": "public", "apiVersions": [], "doc": "Creates a model response.", "operation": { - "$id": "8987", + "$id": "8997", "name": "createResponse", "resourceName": "Responses", "doc": "Creates a model response.", "accessibility": "public", "parameters": [ { - "$id": "8988", + "$id": "8998", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -120343,7 +120466,7 @@ "crossLanguageDefinitionId": "OpenAI.Responses.createResponse.accept" }, { - "$id": "8989", + "$id": "8999", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -120360,7 +120483,7 @@ "crossLanguageDefinitionId": "OpenAI.Responses.createResponse.contentType" }, { - "$id": "8990", + "$id": "9000", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -120385,7 +120508,7 @@ 200 ], "bodyType": { - "$id": "8991", + "$id": "9001", "kind": "union", "name": "", "variantTypes": [ @@ -120393,7 +120516,7 @@ "$ref": "5176" }, { - "$ref": "5362" + "$ref": "5372" } ], "namespace": "", @@ -120429,7 +120552,7 @@ }, "parameters": [ { - "$id": "8992", + "$id": "9002", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -120446,7 +120569,7 @@ "decorators": [] }, { - "$id": "8993", + "$id": "9003", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -120463,7 +120586,7 @@ "decorators": [] }, { - "$id": "8994", + "$id": "9004", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -120483,7 +120606,7 @@ ], "response": { "type": { - "$ref": "8991" + "$ref": "9001" } }, "isOverride": false, @@ -120492,27 +120615,27 @@ "crossLanguageDefinitionId": "OpenAI.Responses.createResponse" }, { - "$id": "8995", + "$id": "9005", "kind": "basic", "name": "getResponse", "accessibility": "public", "apiVersions": [], "doc": "Retrieves a model response with the given ID.", "operation": { - "$id": "8996", + "$id": "9006", "name": "getResponse", "resourceName": "Responses", "doc": "Retrieves a model response with the given ID.", "accessibility": "public", "parameters": [ { - "$id": "8997", + "$id": "9007", "kind": "path", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to retrieve.", "type": { - "$id": "8998", + "$id": "9008", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120530,7 +120653,7 @@ "crossLanguageDefinitionId": "OpenAI.Responses.getResponse.response_id" }, { - "$id": "8999", + "$id": "9009", "kind": "query", "name": "include", "serializedName": "include[]", @@ -120547,13 +120670,13 @@ "readOnly": false }, { - "$id": "9000", + "$id": "9010", "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": "9001", + "$id": "9011", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -120568,13 +120691,13 @@ "readOnly": false }, { - "$id": "9002", + "$id": "9012", "kind": "query", "name": "starting_after", "serializedName": "starting_after", "doc": "The sequence number of the event after which to start streaming.", "type": { - "$id": "9003", + "$id": "9013", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -120589,12 +120712,12 @@ "readOnly": false }, { - "$id": "9004", + "$id": "9014", "kind": "query", "name": "include_obfuscation", "serializedName": "include_obfuscation", "type": { - "$id": "9005", + "$id": "9015", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -120609,12 +120732,12 @@ "readOnly": false }, { - "$id": "9006", + "$id": "9016", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$id": "9007", + "$id": "9017", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120635,7 +120758,7 @@ 200 ], "bodyType": { - "$id": "9008", + "$id": "9018", "kind": "union", "name": "", "variantTypes": [ @@ -120643,7 +120766,7 @@ "$ref": "5176" }, { - "$ref": "5362" + "$ref": "5372" } ], "namespace": "", @@ -120676,13 +120799,13 @@ }, "parameters": [ { - "$id": "9009", + "$id": "9019", "kind": "method", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to retrieve.", "type": { - "$id": "9010", + "$id": "9020", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120698,7 +120821,7 @@ "decorators": [] }, { - "$id": "9011", + "$id": "9021", "kind": "method", "name": "include", "serializedName": "include[]", @@ -120716,13 +120839,13 @@ "decorators": [] }, { - "$id": "9012", + "$id": "9022", "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": "9013", + "$id": "9023", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -120738,13 +120861,13 @@ "decorators": [] }, { - "$id": "9014", + "$id": "9024", "kind": "method", "name": "starting_after", "serializedName": "starting_after", "doc": "The sequence number of the event after which to start streaming.", "type": { - "$id": "9015", + "$id": "9025", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -120760,12 +120883,12 @@ "decorators": [] }, { - "$id": "9016", + "$id": "9026", "kind": "method", "name": "include_obfuscation", "serializedName": "include_obfuscation", "type": { - "$id": "9017", + "$id": "9027", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -120781,12 +120904,12 @@ "decorators": [] }, { - "$id": "9018", + "$id": "9028", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "9007" + "$ref": "9017" }, "location": "Header", "isApiVersion": false, @@ -120800,7 +120923,7 @@ ], "response": { "type": { - "$ref": "9008" + "$ref": "9018" } }, "isOverride": false, @@ -120809,25 +120932,25 @@ "crossLanguageDefinitionId": "OpenAI.Responses.getResponse" }, { - "$id": "9019", + "$id": "9029", "kind": "basic", "name": "deleteResponse", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "9020", + "$id": "9030", "name": "deleteResponse", "resourceName": "Responses", "accessibility": "public", "parameters": [ { - "$id": "9021", + "$id": "9031", "kind": "path", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to delete.", "type": { - "$id": "9022", + "$id": "9032", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120845,7 +120968,7 @@ "crossLanguageDefinitionId": "OpenAI.Responses.deleteResponse.response_id" }, { - "$id": "9023", + "$id": "9033", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -120867,7 +120990,7 @@ 200 ], "bodyType": { - "$ref": "5848" + "$ref": "5858" }, "headers": [], "isErrorResponse": false, @@ -120887,13 +121010,13 @@ }, "parameters": [ { - "$id": "9024", + "$id": "9034", "kind": "method", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to delete.", "type": { - "$id": "9025", + "$id": "9035", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120909,7 +121032,7 @@ "decorators": [] }, { - "$id": "9026", + "$id": "9036", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -120928,7 +121051,7 @@ ], "response": { "type": { - "$ref": "5848" + "$ref": "5858" } }, "isOverride": false, @@ -120937,25 +121060,25 @@ "crossLanguageDefinitionId": "OpenAI.Responses.deleteResponse" }, { - "$id": "9027", + "$id": "9037", "kind": "basic", "name": "cancelResponse", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "9028", + "$id": "9038", "name": "cancelResponse", "resourceName": "Responses", "accessibility": "public", "parameters": [ { - "$id": "9029", + "$id": "9039", "kind": "path", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to cancel.", "type": { - "$id": "9030", + "$id": "9040", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120973,7 +121096,7 @@ "crossLanguageDefinitionId": "OpenAI.Responses.cancelResponse.response_id" }, { - "$id": "9031", + "$id": "9041", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -121015,13 +121138,13 @@ }, "parameters": [ { - "$id": "9032", + "$id": "9042", "kind": "method", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to cancel.", "type": { - "$id": "9033", + "$id": "9043", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121037,7 +121160,7 @@ "decorators": [] }, { - "$id": "9034", + "$id": "9044", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -121065,27 +121188,27 @@ "crossLanguageDefinitionId": "OpenAI.Responses.cancelResponse" }, { - "$id": "9035", + "$id": "9045", "kind": "paging", "name": "GetResponseInputItems", "accessibility": "public", "apiVersions": [], "doc": "Returns a list of input items for a given response.", "operation": { - "$id": "9036", + "$id": "9046", "name": "GetResponseInputItems", "resourceName": "Responses", "doc": "Returns a list of input items for a given response.", "accessibility": "public", "parameters": [ { - "$id": "9037", + "$id": "9047", "kind": "path", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to retrieve.", "type": { - "$id": "9038", + "$id": "9048", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121103,13 +121226,13 @@ "crossLanguageDefinitionId": "OpenAI.Responses.listInputItems.response_id" }, { - "$id": "9039", + "$id": "9049", "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": "9040", + "$id": "9050", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -121124,7 +121247,7 @@ "readOnly": false }, { - "$id": "9041", + "$id": "9051", "kind": "query", "name": "order", "serializedName": "order", @@ -121141,13 +121264,13 @@ "readOnly": false }, { - "$id": "9042", + "$id": "9052", "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": "9043", + "$id": "9053", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121162,13 +121285,13 @@ "readOnly": false }, { - "$id": "9044", + "$id": "9054", "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": "9045", + "$id": "9055", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121183,7 +121306,7 @@ "readOnly": false }, { - "$id": "9046", + "$id": "9056", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -121205,7 +121328,7 @@ 200 ], "bodyType": { - "$ref": "5853" + "$ref": "5863" }, "headers": [], "isErrorResponse": false, @@ -121225,13 +121348,13 @@ }, "parameters": [ { - "$id": "9047", + "$id": "9057", "kind": "method", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to retrieve.", "type": { - "$id": "9048", + "$id": "9058", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121247,13 +121370,13 @@ "decorators": [] }, { - "$id": "9049", + "$id": "9059", "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": "9050", + "$id": "9060", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -121269,7 +121392,7 @@ "decorators": [] }, { - "$id": "9051", + "$id": "9061", "kind": "method", "name": "order", "serializedName": "order", @@ -121287,13 +121410,13 @@ "decorators": [] }, { - "$id": "9052", + "$id": "9062", "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": "9053", + "$id": "9063", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121309,13 +121432,13 @@ "decorators": [] }, { - "$id": "9054", + "$id": "9064", "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": "9055", + "$id": "9065", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121331,7 +121454,7 @@ "decorators": [] }, { - "$id": "9056", + "$id": "9066", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -121350,7 +121473,7 @@ ], "response": { "type": { - "$ref": "5217" + "$ref": "5222" }, "resultSegments": [ "data" @@ -121366,7 +121489,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9042" + "$ref": "9052" }, "responseSegments": [ "last_id" @@ -121378,13 +121501,13 @@ ], "parameters": [ { - "$id": "9057", + "$id": "9067", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9058", + "$id": "9068", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -121395,7 +121518,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9059", + "$id": "9069", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -121413,31 +121536,31 @@ "crossLanguageDefinitionId": "OpenAI.Responses", "apiVersions": [], "parent": { - "$ref": "8271" + "$ref": "8281" } }, { - "$id": "9060", + "$id": "9070", "kind": "client", "name": "Images", "namespace": "OpenAI", "methods": [ { - "$id": "9061", + "$id": "9071", "kind": "basic", "name": "GenerateImages", "accessibility": "public", "apiVersions": [], "summary": "Creates an image given a prompt", "operation": { - "$id": "9062", + "$id": "9072", "name": "GenerateImages", "resourceName": "Images", "summary": "Creates an image given a prompt", "accessibility": "public", "parameters": [ { - "$id": "9063", + "$id": "9073", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -121453,7 +121576,7 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImage.accept" }, { - "$id": "9064", + "$id": "9074", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -121470,12 +121593,12 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImage.contentType" }, { - "$id": "9065", + "$id": "9075", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5862" + "$ref": "5872" }, "isApiVersion": false, "contentTypes": [ @@ -121495,7 +121618,7 @@ 200 ], "bodyType": { - "$ref": "5889" + "$ref": "5899" }, "headers": [], "isErrorResponse": false, @@ -121518,7 +121641,7 @@ }, "parameters": [ { - "$id": "9066", + "$id": "9076", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -121535,12 +121658,12 @@ "decorators": [] }, { - "$id": "9067", + "$id": "9077", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5862" + "$ref": "5872" }, "location": "Body", "isApiVersion": false, @@ -121552,7 +121675,7 @@ "decorators": [] }, { - "$id": "9068", + "$id": "9078", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -121572,7 +121695,7 @@ ], "response": { "type": { - "$ref": "5889" + "$ref": "5899" } }, "isOverride": false, @@ -121581,21 +121704,21 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImage" }, { - "$id": "9069", + "$id": "9079", "kind": "basic", "name": "GenerateImageEdits", "accessibility": "public", "apiVersions": [], "summary": "Creates an edited or extended image given an original image and a prompt.", "operation": { - "$id": "9070", + "$id": "9080", "name": "GenerateImageEdits", "resourceName": "Images", "summary": "Creates an edited or extended image given an original image and a prompt.", "accessibility": "public", "parameters": [ { - "$id": "9071", + "$id": "9081", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -121611,7 +121734,7 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageEdit.accept" }, { - "$id": "9072", + "$id": "9082", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -121627,12 +121750,12 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageEdit.contentType" }, { - "$id": "9073", + "$id": "9083", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5916" + "$ref": "5926" }, "isApiVersion": false, "contentTypes": [ @@ -121652,7 +121775,7 @@ 200 ], "bodyType": { - "$ref": "5889" + "$ref": "5899" }, "headers": [], "isErrorResponse": false, @@ -121675,7 +121798,7 @@ }, "parameters": [ { - "$id": "9074", + "$id": "9084", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -121692,7 +121815,7 @@ "decorators": [] }, { - "$id": "9075", + "$id": "9085", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -121709,12 +121832,12 @@ "decorators": [] }, { - "$id": "9076", + "$id": "9086", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5916" + "$ref": "5926" }, "location": "Body", "isApiVersion": false, @@ -121728,7 +121851,7 @@ ], "response": { "type": { - "$ref": "5889" + "$ref": "5899" } }, "isOverride": false, @@ -121737,21 +121860,21 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageEdit" }, { - "$id": "9077", + "$id": "9087", "kind": "basic", "name": "GenerateImageVariations", "accessibility": "public", "apiVersions": [], "summary": "Creates an edited or extended image given an original image and a prompt.", "operation": { - "$id": "9078", + "$id": "9088", "name": "GenerateImageVariations", "resourceName": "Images", "summary": "Creates an edited or extended image given an original image and a prompt.", "accessibility": "public", "parameters": [ { - "$id": "9079", + "$id": "9089", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -121767,7 +121890,7 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageVariation.accept" }, { - "$id": "9080", + "$id": "9090", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -121783,12 +121906,12 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageVariation.contentType" }, { - "$id": "9081", + "$id": "9091", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5942" + "$ref": "5952" }, "isApiVersion": false, "contentTypes": [ @@ -121808,7 +121931,7 @@ 200 ], "bodyType": { - "$ref": "5889" + "$ref": "5899" }, "headers": [], "isErrorResponse": false, @@ -121831,7 +121954,7 @@ }, "parameters": [ { - "$id": "9082", + "$id": "9092", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -121848,7 +121971,7 @@ "decorators": [] }, { - "$id": "9083", + "$id": "9093", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -121865,12 +121988,12 @@ "decorators": [] }, { - "$id": "9084", + "$id": "9094", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5942" + "$ref": "5952" }, "location": "Body", "isApiVersion": false, @@ -121884,7 +122007,7 @@ ], "response": { "type": { - "$ref": "5889" + "$ref": "5899" } }, "isOverride": false, @@ -121895,13 +122018,13 @@ ], "parameters": [ { - "$id": "9085", + "$id": "9095", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9086", + "$id": "9096", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -121912,7 +122035,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9087", + "$id": "9097", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -121930,31 +122053,31 @@ "crossLanguageDefinitionId": "OpenAI.Images", "apiVersions": [], "parent": { - "$ref": "8271" + "$ref": "8281" } }, { - "$id": "9088", + "$id": "9098", "kind": "client", "name": "Messages", "namespace": "OpenAI", "methods": [ { - "$id": "9089", + "$id": "9099", "kind": "basic", "name": "createMessage", "accessibility": "public", "apiVersions": [], "summary": "Create a message.", "operation": { - "$id": "9090", + "$id": "9100", "name": "createMessage", "resourceName": "Messages", "summary": "Create a message.", "accessibility": "public", "parameters": [ { - "$id": "9091", + "$id": "9101", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -121970,7 +122093,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage.accept" }, { - "$id": "9092", + "$id": "9102", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -121986,13 +122109,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage.openAIBeta" }, { - "$id": "9093", + "$id": "9103", "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": "9094", + "$id": "9104", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122010,7 +122133,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage.thread_id" }, { - "$id": "9095", + "$id": "9105", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -122027,12 +122150,12 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage.contentType" }, { - "$id": "9096", + "$id": "9106", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5957" + "$ref": "5967" }, "isApiVersion": false, "contentTypes": [ @@ -122052,7 +122175,7 @@ 200 ], "bodyType": { - "$ref": "6045" + "$ref": "6055" }, "headers": [], "isErrorResponse": false, @@ -122075,7 +122198,7 @@ }, "parameters": [ { - "$id": "9097", + "$id": "9107", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -122092,7 +122215,7 @@ "decorators": [] }, { - "$id": "9098", + "$id": "9108", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122109,13 +122232,13 @@ "decorators": [] }, { - "$id": "9099", + "$id": "9109", "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": "9100", + "$id": "9110", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122131,12 +122254,12 @@ "decorators": [] }, { - "$id": "9101", + "$id": "9111", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5957" + "$ref": "5967" }, "location": "Body", "isApiVersion": false, @@ -122148,7 +122271,7 @@ "decorators": [] }, { - "$id": "9102", + "$id": "9112", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -122168,7 +122291,7 @@ ], "response": { "type": { - "$ref": "6045" + "$ref": "6055" } }, "isOverride": false, @@ -122177,21 +122300,21 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage" }, { - "$id": "9103", + "$id": "9113", "kind": "paging", "name": "listMessages", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of messages for a given thread.", "operation": { - "$id": "9104", + "$id": "9114", "name": "listMessages", "resourceName": "Messages", "summary": "Returns a list of messages for a given thread.", "accessibility": "public", "parameters": [ { - "$id": "9105", + "$id": "9115", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -122207,7 +122330,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.listMessages.accept" }, { - "$id": "9106", + "$id": "9116", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122223,13 +122346,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.listMessages.openAIBeta" }, { - "$id": "9107", + "$id": "9117", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) the messages belong to.", "type": { - "$id": "9108", + "$id": "9118", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122247,13 +122370,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.listMessages.thread_id" }, { - "$id": "9109", + "$id": "9119", "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": "9110", + "$id": "9120", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -122268,7 +122391,7 @@ "readOnly": false }, { - "$id": "9111", + "$id": "9121", "kind": "query", "name": "order", "serializedName": "order", @@ -122285,13 +122408,13 @@ "readOnly": false }, { - "$id": "9112", + "$id": "9122", "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": "9113", + "$id": "9123", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122306,13 +122429,13 @@ "readOnly": false }, { - "$id": "9114", + "$id": "9124", "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": "9115", + "$id": "9125", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122333,7 +122456,7 @@ 200 ], "bodyType": { - "$ref": "6085" + "$ref": "6095" }, "headers": [], "isErrorResponse": false, @@ -122353,7 +122476,7 @@ }, "parameters": [ { - "$id": "9116", + "$id": "9126", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -122370,7 +122493,7 @@ "decorators": [] }, { - "$id": "9117", + "$id": "9127", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122387,13 +122510,13 @@ "decorators": [] }, { - "$id": "9118", + "$id": "9128", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) the messages belong to.", "type": { - "$id": "9119", + "$id": "9129", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122409,13 +122532,13 @@ "decorators": [] }, { - "$id": "9120", + "$id": "9130", "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": "9121", + "$id": "9131", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -122431,7 +122554,7 @@ "decorators": [] }, { - "$id": "9122", + "$id": "9132", "kind": "method", "name": "order", "serializedName": "order", @@ -122449,13 +122572,13 @@ "decorators": [] }, { - "$id": "9123", + "$id": "9133", "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": "9124", + "$id": "9134", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122471,13 +122594,13 @@ "decorators": [] }, { - "$id": "9125", + "$id": "9135", "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": "9126", + "$id": "9136", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122495,7 +122618,7 @@ ], "response": { "type": { - "$ref": "6088" + "$ref": "6098" }, "resultSegments": [ "data" @@ -122511,7 +122634,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9112" + "$ref": "9122" }, "responseSegments": [ "last_id" @@ -122521,21 +122644,21 @@ } }, { - "$id": "9127", + "$id": "9137", "kind": "basic", "name": "getMessage", "accessibility": "public", "apiVersions": [], "summary": "Retrieve a message.", "operation": { - "$id": "9128", + "$id": "9138", "name": "getMessage", "resourceName": "Messages", "summary": "Retrieve a message.", "accessibility": "public", "parameters": [ { - "$id": "9129", + "$id": "9139", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -122551,7 +122674,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.getMessage.accept" }, { - "$id": "9130", + "$id": "9140", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122567,13 +122690,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.getMessage.openAIBeta" }, { - "$id": "9131", + "$id": "9141", "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": "9132", + "$id": "9142", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122591,13 +122714,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.getMessage.thread_id" }, { - "$id": "9133", + "$id": "9143", "kind": "path", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to retrieve.", "type": { - "$id": "9134", + "$id": "9144", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122621,7 +122744,7 @@ 200 ], "bodyType": { - "$ref": "6045" + "$ref": "6055" }, "headers": [], "isErrorResponse": false, @@ -122641,7 +122764,7 @@ }, "parameters": [ { - "$id": "9135", + "$id": "9145", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -122658,7 +122781,7 @@ "decorators": [] }, { - "$id": "9136", + "$id": "9146", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122675,13 +122798,13 @@ "decorators": [] }, { - "$id": "9137", + "$id": "9147", "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": "9138", + "$id": "9148", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122697,13 +122820,13 @@ "decorators": [] }, { - "$id": "9139", + "$id": "9149", "kind": "method", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to retrieve.", "type": { - "$id": "9140", + "$id": "9150", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122721,7 +122844,7 @@ ], "response": { "type": { - "$ref": "6045" + "$ref": "6055" } }, "isOverride": false, @@ -122730,21 +122853,21 @@ "crossLanguageDefinitionId": "OpenAI.Messages.getMessage" }, { - "$id": "9141", + "$id": "9151", "kind": "basic", "name": "modifyMessage", "accessibility": "public", "apiVersions": [], "summary": "Modifies a message.", "operation": { - "$id": "9142", + "$id": "9152", "name": "modifyMessage", "resourceName": "Messages", "summary": "Modifies a message.", "accessibility": "public", "parameters": [ { - "$id": "9143", + "$id": "9153", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -122760,7 +122883,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.accept" }, { - "$id": "9144", + "$id": "9154", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122776,13 +122899,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.openAIBeta" }, { - "$id": "9145", + "$id": "9155", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this message belongs.", "type": { - "$id": "9146", + "$id": "9156", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122800,13 +122923,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.thread_id" }, { - "$id": "9147", + "$id": "9157", "kind": "path", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to modify.", "type": { - "$id": "9148", + "$id": "9158", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122824,7 +122947,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.message_id" }, { - "$id": "9149", + "$id": "9159", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -122841,12 +122964,12 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.contentType" }, { - "$id": "9150", + "$id": "9160", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6095" + "$ref": "6105" }, "isApiVersion": false, "contentTypes": [ @@ -122866,7 +122989,7 @@ 200 ], "bodyType": { - "$ref": "6045" + "$ref": "6055" }, "headers": [], "isErrorResponse": false, @@ -122889,7 +123012,7 @@ }, "parameters": [ { - "$id": "9151", + "$id": "9161", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -122906,7 +123029,7 @@ "decorators": [] }, { - "$id": "9152", + "$id": "9162", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122923,13 +123046,13 @@ "decorators": [] }, { - "$id": "9153", + "$id": "9163", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this message belongs.", "type": { - "$id": "9154", + "$id": "9164", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122945,13 +123068,13 @@ "decorators": [] }, { - "$id": "9155", + "$id": "9165", "kind": "method", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to modify.", "type": { - "$id": "9156", + "$id": "9166", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122967,12 +123090,12 @@ "decorators": [] }, { - "$id": "9157", + "$id": "9167", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6095" + "$ref": "6105" }, "location": "Body", "isApiVersion": false, @@ -122984,7 +123107,7 @@ "decorators": [] }, { - "$id": "9158", + "$id": "9168", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -123004,7 +123127,7 @@ ], "response": { "type": { - "$ref": "6045" + "$ref": "6055" } }, "isOverride": false, @@ -123013,21 +123136,21 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage" }, { - "$id": "9159", + "$id": "9169", "kind": "basic", "name": "deleteMessage", "accessibility": "public", "apiVersions": [], "summary": "Deletes a message.", "operation": { - "$id": "9160", + "$id": "9170", "name": "deleteMessage", "resourceName": "Messages", "summary": "Deletes a message.", "accessibility": "public", "parameters": [ { - "$id": "9161", + "$id": "9171", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -123043,7 +123166,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.deleteMessage.accept" }, { - "$id": "9162", + "$id": "9172", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123059,13 +123182,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.deleteMessage.openAIBeta" }, { - "$id": "9163", + "$id": "9173", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this message belongs.", "type": { - "$id": "9164", + "$id": "9174", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123083,13 +123206,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.deleteMessage.thread_id" }, { - "$id": "9165", + "$id": "9175", "kind": "path", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to delete.", "type": { - "$id": "9166", + "$id": "9176", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123113,7 +123236,7 @@ 200 ], "bodyType": { - "$ref": "6097" + "$ref": "6107" }, "headers": [], "isErrorResponse": false, @@ -123133,7 +123256,7 @@ }, "parameters": [ { - "$id": "9167", + "$id": "9177", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -123150,7 +123273,7 @@ "decorators": [] }, { - "$id": "9168", + "$id": "9178", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123167,13 +123290,13 @@ "decorators": [] }, { - "$id": "9169", + "$id": "9179", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this message belongs.", "type": { - "$id": "9170", + "$id": "9180", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123189,13 +123312,13 @@ "decorators": [] }, { - "$id": "9171", + "$id": "9181", "kind": "method", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to delete.", "type": { - "$id": "9172", + "$id": "9182", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123213,7 +123336,7 @@ ], "response": { "type": { - "$ref": "6097" + "$ref": "6107" } }, "isOverride": false, @@ -123224,13 +123347,13 @@ ], "parameters": [ { - "$id": "9173", + "$id": "9183", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9174", + "$id": "9184", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -123241,7 +123364,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9175", + "$id": "9185", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -123259,31 +123382,31 @@ "crossLanguageDefinitionId": "OpenAI.Messages", "apiVersions": [], "parent": { - "$ref": "8271" + "$ref": "8281" } }, { - "$id": "9176", + "$id": "9186", "kind": "client", "name": "Moderations", "namespace": "OpenAI", "methods": [ { - "$id": "9177", + "$id": "9187", "kind": "basic", "name": "ClassifyText", "accessibility": "public", "apiVersions": [], "summary": "Classifies if text is potentially harmful.", "operation": { - "$id": "9178", + "$id": "9188", "name": "ClassifyText", "resourceName": "Moderations", "summary": "Classifies if text is potentially harmful.", "accessibility": "public", "parameters": [ { - "$id": "9179", + "$id": "9189", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -123299,7 +123422,7 @@ "crossLanguageDefinitionId": "OpenAI.Moderations.createModeration.accept" }, { - "$id": "9180", + "$id": "9190", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -123316,12 +123439,12 @@ "crossLanguageDefinitionId": "OpenAI.Moderations.createModeration.contentType" }, { - "$id": "9181", + "$id": "9191", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6103" + "$ref": "6113" }, "isApiVersion": false, "contentTypes": [ @@ -123341,7 +123464,7 @@ 200 ], "bodyType": { - "$ref": "6120" + "$ref": "6130" }, "headers": [], "isErrorResponse": false, @@ -123364,7 +123487,7 @@ }, "parameters": [ { - "$id": "9182", + "$id": "9192", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -123381,12 +123504,12 @@ "decorators": [] }, { - "$id": "9183", + "$id": "9193", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6103" + "$ref": "6113" }, "location": "Body", "isApiVersion": false, @@ -123398,7 +123521,7 @@ "decorators": [] }, { - "$id": "9184", + "$id": "9194", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -123418,7 +123541,7 @@ ], "response": { "type": { - "$ref": "6120" + "$ref": "6130" } }, "isOverride": false, @@ -123429,13 +123552,13 @@ ], "parameters": [ { - "$id": "9185", + "$id": "9195", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9186", + "$id": "9196", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -123446,7 +123569,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9187", + "$id": "9197", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -123464,31 +123587,31 @@ "crossLanguageDefinitionId": "OpenAI.Moderations", "apiVersions": [], "parent": { - "$ref": "8271" + "$ref": "8281" } }, { - "$id": "9188", + "$id": "9198", "kind": "client", "name": "Runs", "namespace": "OpenAI", "methods": [ { - "$id": "9189", + "$id": "9199", "kind": "basic", "name": "createThreadAndRun", "accessibility": "public", "apiVersions": [], "summary": "Create a thread and run it in one request.", "operation": { - "$id": "9190", + "$id": "9200", "name": "createThreadAndRun", "resourceName": "Runs", "summary": "Create a thread and run it in one request.", "accessibility": "public", "parameters": [ { - "$id": "9191", + "$id": "9201", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -123504,7 +123627,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createThreadAndRun.accept" }, { - "$id": "9192", + "$id": "9202", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123520,7 +123643,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createThreadAndRun.openAIBeta" }, { - "$id": "9193", + "$id": "9203", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -123537,12 +123660,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createThreadAndRun.contentType" }, { - "$id": "9194", + "$id": "9204", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6220" + "$ref": "6230" }, "isApiVersion": false, "contentTypes": [ @@ -123562,7 +123685,7 @@ 200 ], "bodyType": { - "$ref": "6286" + "$ref": "6296" }, "headers": [], "isErrorResponse": false, @@ -123585,7 +123708,7 @@ }, "parameters": [ { - "$id": "9195", + "$id": "9205", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -123602,7 +123725,7 @@ "decorators": [] }, { - "$id": "9196", + "$id": "9206", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123619,12 +123742,12 @@ "decorators": [] }, { - "$id": "9197", + "$id": "9207", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6220" + "$ref": "6230" }, "location": "Body", "isApiVersion": false, @@ -123636,7 +123759,7 @@ "decorators": [] }, { - "$id": "9198", + "$id": "9208", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -123656,7 +123779,7 @@ ], "response": { "type": { - "$ref": "6286" + "$ref": "6296" } }, "isOverride": false, @@ -123665,21 +123788,21 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createThreadAndRun" }, { - "$id": "9199", + "$id": "9209", "kind": "basic", "name": "createRun", "accessibility": "public", "apiVersions": [], "summary": "Create a run.", "operation": { - "$id": "9200", + "$id": "9210", "name": "createRun", "resourceName": "Runs", "summary": "Create a run.", "accessibility": "public", "parameters": [ { - "$id": "9201", + "$id": "9211", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -123695,7 +123818,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun.accept" }, { - "$id": "9202", + "$id": "9212", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123711,13 +123834,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun.openAIBeta" }, { - "$id": "9203", + "$id": "9213", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to run.", "type": { - "$id": "9204", + "$id": "9214", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123735,13 +123858,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun.thread_id" }, { - "$id": "9205", + "$id": "9215", "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": "9206", + "$id": "9216", "kind": "array", "name": "ArrayIncludedRunStepProperty", "valueType": { @@ -123760,7 +123883,7 @@ "readOnly": false }, { - "$id": "9207", + "$id": "9217", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -123777,12 +123900,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun.contentType" }, { - "$id": "9208", + "$id": "9218", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6382" + "$ref": "6392" }, "isApiVersion": false, "contentTypes": [ @@ -123802,7 +123925,7 @@ 200 ], "bodyType": { - "$ref": "6286" + "$ref": "6296" }, "headers": [], "isErrorResponse": false, @@ -123825,7 +123948,7 @@ }, "parameters": [ { - "$id": "9209", + "$id": "9219", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -123842,7 +123965,7 @@ "decorators": [] }, { - "$id": "9210", + "$id": "9220", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123859,13 +123982,13 @@ "decorators": [] }, { - "$id": "9211", + "$id": "9221", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to run.", "type": { - "$id": "9212", + "$id": "9222", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123881,13 +124004,13 @@ "decorators": [] }, { - "$id": "9213", + "$id": "9223", "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": "9206" + "$ref": "9216" }, "location": "Query", "isApiVersion": false, @@ -123899,12 +124022,12 @@ "decorators": [] }, { - "$id": "9214", + "$id": "9224", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6382" + "$ref": "6392" }, "location": "Body", "isApiVersion": false, @@ -123916,7 +124039,7 @@ "decorators": [] }, { - "$id": "9215", + "$id": "9225", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -123936,7 +124059,7 @@ ], "response": { "type": { - "$ref": "6286" + "$ref": "6296" } }, "isOverride": false, @@ -123945,21 +124068,21 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun" }, { - "$id": "9216", + "$id": "9226", "kind": "paging", "name": "listRuns", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of runs belonging to a thread.", "operation": { - "$id": "9217", + "$id": "9227", "name": "listRuns", "resourceName": "Runs", "summary": "Returns a list of runs belonging to a thread.", "accessibility": "public", "parameters": [ { - "$id": "9218", + "$id": "9228", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -123975,7 +124098,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRuns.accept" }, { - "$id": "9219", + "$id": "9229", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123991,13 +124114,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRuns.openAIBeta" }, { - "$id": "9220", + "$id": "9230", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread the run belongs to.", "type": { - "$id": "9221", + "$id": "9231", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124015,13 +124138,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRuns.thread_id" }, { - "$id": "9222", + "$id": "9232", "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": "9223", + "$id": "9233", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -124036,7 +124159,7 @@ "readOnly": false }, { - "$id": "9224", + "$id": "9234", "kind": "query", "name": "order", "serializedName": "order", @@ -124053,13 +124176,13 @@ "readOnly": false }, { - "$id": "9225", + "$id": "9235", "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": "9226", + "$id": "9236", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124074,13 +124197,13 @@ "readOnly": false }, { - "$id": "9227", + "$id": "9237", "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": "9228", + "$id": "9238", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124101,7 +124224,7 @@ 200 ], "bodyType": { - "$ref": "6424" + "$ref": "6434" }, "headers": [], "isErrorResponse": false, @@ -124121,7 +124244,7 @@ }, "parameters": [ { - "$id": "9229", + "$id": "9239", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -124138,7 +124261,7 @@ "decorators": [] }, { - "$id": "9230", + "$id": "9240", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -124155,13 +124278,13 @@ "decorators": [] }, { - "$id": "9231", + "$id": "9241", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread the run belongs to.", "type": { - "$id": "9232", + "$id": "9242", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124177,13 +124300,13 @@ "decorators": [] }, { - "$id": "9233", + "$id": "9243", "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": "9234", + "$id": "9244", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -124199,7 +124322,7 @@ "decorators": [] }, { - "$id": "9235", + "$id": "9245", "kind": "method", "name": "order", "serializedName": "order", @@ -124217,13 +124340,13 @@ "decorators": [] }, { - "$id": "9236", + "$id": "9246", "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": "9237", + "$id": "9247", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124239,13 +124362,13 @@ "decorators": [] }, { - "$id": "9238", + "$id": "9248", "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": "9239", + "$id": "9249", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124263,7 +124386,7 @@ ], "response": { "type": { - "$ref": "6427" + "$ref": "6437" }, "resultSegments": [ "data" @@ -124279,7 +124402,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9225" + "$ref": "9235" }, "responseSegments": [ "last_id" @@ -124289,21 +124412,21 @@ } }, { - "$id": "9240", + "$id": "9250", "kind": "basic", "name": "getRun", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a run.", "operation": { - "$id": "9241", + "$id": "9251", "name": "getRun", "resourceName": "Runs", "summary": "Retrieves a run.", "accessibility": "public", "parameters": [ { - "$id": "9242", + "$id": "9252", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -124319,7 +124442,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRun.accept" }, { - "$id": "9243", + "$id": "9253", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -124335,13 +124458,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRun.openAIBeta" }, { - "$id": "9244", + "$id": "9254", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "9245", + "$id": "9255", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124359,13 +124482,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRun.thread_id" }, { - "$id": "9246", + "$id": "9256", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to retrieve.", "type": { - "$id": "9247", + "$id": "9257", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124389,7 +124512,7 @@ 200 ], "bodyType": { - "$ref": "6286" + "$ref": "6296" }, "headers": [], "isErrorResponse": false, @@ -124409,7 +124532,7 @@ }, "parameters": [ { - "$id": "9248", + "$id": "9258", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -124426,7 +124549,7 @@ "decorators": [] }, { - "$id": "9249", + "$id": "9259", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -124443,13 +124566,13 @@ "decorators": [] }, { - "$id": "9250", + "$id": "9260", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "9251", + "$id": "9261", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124465,13 +124588,13 @@ "decorators": [] }, { - "$id": "9252", + "$id": "9262", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to retrieve.", "type": { - "$id": "9253", + "$id": "9263", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124489,7 +124612,7 @@ ], "response": { "type": { - "$ref": "6286" + "$ref": "6296" } }, "isOverride": false, @@ -124498,21 +124621,21 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRun" }, { - "$id": "9254", + "$id": "9264", "kind": "basic", "name": "modifyRun", "accessibility": "public", "apiVersions": [], "summary": "Modifies a run.", "operation": { - "$id": "9255", + "$id": "9265", "name": "modifyRun", "resourceName": "Runs", "summary": "Modifies a run.", "accessibility": "public", "parameters": [ { - "$id": "9256", + "$id": "9266", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -124528,7 +124651,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.accept" }, { - "$id": "9257", + "$id": "9267", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -124544,13 +124667,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.openAIBeta" }, { - "$id": "9258", + "$id": "9268", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "9259", + "$id": "9269", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124568,13 +124691,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.thread_id" }, { - "$id": "9260", + "$id": "9270", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to modify.", "type": { - "$id": "9261", + "$id": "9271", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124592,7 +124715,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.run_id" }, { - "$id": "9262", + "$id": "9272", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -124609,12 +124732,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.contentType" }, { - "$id": "9263", + "$id": "9273", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6434" + "$ref": "6444" }, "isApiVersion": false, "contentTypes": [ @@ -124634,7 +124757,7 @@ 200 ], "bodyType": { - "$ref": "6286" + "$ref": "6296" }, "headers": [], "isErrorResponse": false, @@ -124657,7 +124780,7 @@ }, "parameters": [ { - "$id": "9264", + "$id": "9274", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -124674,7 +124797,7 @@ "decorators": [] }, { - "$id": "9265", + "$id": "9275", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -124691,13 +124814,13 @@ "decorators": [] }, { - "$id": "9266", + "$id": "9276", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "9267", + "$id": "9277", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124713,13 +124836,13 @@ "decorators": [] }, { - "$id": "9268", + "$id": "9278", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to modify.", "type": { - "$id": "9269", + "$id": "9279", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124735,12 +124858,12 @@ "decorators": [] }, { - "$id": "9270", + "$id": "9280", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6434" + "$ref": "6444" }, "location": "Body", "isApiVersion": false, @@ -124752,7 +124875,7 @@ "decorators": [] }, { - "$id": "9271", + "$id": "9281", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -124772,7 +124895,7 @@ ], "response": { "type": { - "$ref": "6286" + "$ref": "6296" } }, "isOverride": false, @@ -124781,21 +124904,21 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun" }, { - "$id": "9272", + "$id": "9282", "kind": "basic", "name": "cancelRun", "accessibility": "public", "apiVersions": [], "summary": "Cancels a run that is `in_progress`.", "operation": { - "$id": "9273", + "$id": "9283", "name": "cancelRun", "resourceName": "Runs", "summary": "Cancels a run that is `in_progress`.", "accessibility": "public", "parameters": [ { - "$id": "9274", + "$id": "9284", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -124811,7 +124934,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.cancelRun.accept" }, { - "$id": "9275", + "$id": "9285", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -124827,13 +124950,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.cancelRun.openAIBeta" }, { - "$id": "9276", + "$id": "9286", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this run belongs.", "type": { - "$id": "9277", + "$id": "9287", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124851,13 +124974,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.cancelRun.thread_id" }, { - "$id": "9278", + "$id": "9288", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to cancel.", "type": { - "$id": "9279", + "$id": "9289", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124881,7 +125004,7 @@ 200 ], "bodyType": { - "$ref": "6286" + "$ref": "6296" }, "headers": [], "isErrorResponse": false, @@ -124901,7 +125024,7 @@ }, "parameters": [ { - "$id": "9280", + "$id": "9290", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -124918,7 +125041,7 @@ "decorators": [] }, { - "$id": "9281", + "$id": "9291", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -124935,13 +125058,13 @@ "decorators": [] }, { - "$id": "9282", + "$id": "9292", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this run belongs.", "type": { - "$id": "9283", + "$id": "9293", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124957,13 +125080,13 @@ "decorators": [] }, { - "$id": "9284", + "$id": "9294", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to cancel.", "type": { - "$id": "9285", + "$id": "9295", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124981,7 +125104,7 @@ ], "response": { "type": { - "$ref": "6286" + "$ref": "6296" } }, "isOverride": false, @@ -124990,21 +125113,21 @@ "crossLanguageDefinitionId": "OpenAI.Runs.cancelRun" }, { - "$id": "9286", + "$id": "9296", "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": "9287", + "$id": "9297", "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": "9288", + "$id": "9298", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -125020,7 +125143,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.accept" }, { - "$id": "9289", + "$id": "9299", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -125036,13 +125159,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.openAIBeta" }, { - "$id": "9290", + "$id": "9300", "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": "9291", + "$id": "9301", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125060,13 +125183,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.thread_id" }, { - "$id": "9292", + "$id": "9302", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run that requires the tool output submission.", "type": { - "$id": "9293", + "$id": "9303", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125084,7 +125207,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.run_id" }, { - "$id": "9294", + "$id": "9304", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -125101,12 +125224,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.contentType" }, { - "$id": "9295", + "$id": "9305", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6436" + "$ref": "6446" }, "isApiVersion": false, "contentTypes": [ @@ -125126,7 +125249,7 @@ 200 ], "bodyType": { - "$ref": "6286" + "$ref": "6296" }, "headers": [], "isErrorResponse": false, @@ -125149,7 +125272,7 @@ }, "parameters": [ { - "$id": "9296", + "$id": "9306", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -125166,7 +125289,7 @@ "decorators": [] }, { - "$id": "9297", + "$id": "9307", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -125183,13 +125306,13 @@ "decorators": [] }, { - "$id": "9298", + "$id": "9308", "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": "9299", + "$id": "9309", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125205,13 +125328,13 @@ "decorators": [] }, { - "$id": "9300", + "$id": "9310", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run that requires the tool output submission.", "type": { - "$id": "9301", + "$id": "9311", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125227,12 +125350,12 @@ "decorators": [] }, { - "$id": "9302", + "$id": "9312", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6436" + "$ref": "6446" }, "location": "Body", "isApiVersion": false, @@ -125244,7 +125367,7 @@ "decorators": [] }, { - "$id": "9303", + "$id": "9313", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -125264,7 +125387,7 @@ ], "response": { "type": { - "$ref": "6286" + "$ref": "6296" } }, "isOverride": false, @@ -125273,21 +125396,21 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun" }, { - "$id": "9304", + "$id": "9314", "kind": "paging", "name": "listRunSteps", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of run steps belonging to a run.", "operation": { - "$id": "9305", + "$id": "9315", "name": "listRunSteps", "resourceName": "Runs", "summary": "Returns a list of run steps belonging to a run.", "accessibility": "public", "parameters": [ { - "$id": "9306", + "$id": "9316", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -125303,7 +125426,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRunSteps.accept" }, { - "$id": "9307", + "$id": "9317", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -125319,13 +125442,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRunSteps.openAIBeta" }, { - "$id": "9308", + "$id": "9318", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread the run and run steps belong to.", "type": { - "$id": "9309", + "$id": "9319", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125343,13 +125466,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRunSteps.thread_id" }, { - "$id": "9310", + "$id": "9320", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run the run steps belong to.", "type": { - "$id": "9311", + "$id": "9321", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125367,13 +125490,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRunSteps.run_id" }, { - "$id": "9312", + "$id": "9322", "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": "9313", + "$id": "9323", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -125388,7 +125511,7 @@ "readOnly": false }, { - "$id": "9314", + "$id": "9324", "kind": "query", "name": "order", "serializedName": "order", @@ -125405,13 +125528,13 @@ "readOnly": false }, { - "$id": "9315", + "$id": "9325", "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": "9316", + "$id": "9326", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125426,13 +125549,13 @@ "readOnly": false }, { - "$id": "9317", + "$id": "9327", "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": "9318", + "$id": "9328", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125447,13 +125570,13 @@ "readOnly": false }, { - "$id": "9319", + "$id": "9329", "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": "9206" + "$ref": "9216" }, "isApiVersion": false, "explode": false, @@ -125471,7 +125594,7 @@ 200 ], "bodyType": { - "$ref": "6447" + "$ref": "6457" }, "headers": [], "isErrorResponse": false, @@ -125491,7 +125614,7 @@ }, "parameters": [ { - "$id": "9320", + "$id": "9330", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -125508,7 +125631,7 @@ "decorators": [] }, { - "$id": "9321", + "$id": "9331", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -125525,13 +125648,13 @@ "decorators": [] }, { - "$id": "9322", + "$id": "9332", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread the run and run steps belong to.", "type": { - "$id": "9323", + "$id": "9333", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125547,13 +125670,13 @@ "decorators": [] }, { - "$id": "9324", + "$id": "9334", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run the run steps belong to.", "type": { - "$id": "9325", + "$id": "9335", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125569,13 +125692,13 @@ "decorators": [] }, { - "$id": "9326", + "$id": "9336", "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": "9327", + "$id": "9337", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -125591,7 +125714,7 @@ "decorators": [] }, { - "$id": "9328", + "$id": "9338", "kind": "method", "name": "order", "serializedName": "order", @@ -125609,13 +125732,13 @@ "decorators": [] }, { - "$id": "9329", + "$id": "9339", "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": "9330", + "$id": "9340", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125631,13 +125754,13 @@ "decorators": [] }, { - "$id": "9331", + "$id": "9341", "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": "9332", + "$id": "9342", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125653,13 +125776,13 @@ "decorators": [] }, { - "$id": "9333", + "$id": "9343", "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": "9206" + "$ref": "9216" }, "location": "Query", "isApiVersion": false, @@ -125673,7 +125796,7 @@ ], "response": { "type": { - "$ref": "6450" + "$ref": "6460" }, "resultSegments": [ "data" @@ -125689,7 +125812,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9315" + "$ref": "9325" }, "responseSegments": [ "last_id" @@ -125699,21 +125822,21 @@ } }, { - "$id": "9334", + "$id": "9344", "kind": "basic", "name": "getRunStep", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a run step.", "operation": { - "$id": "9335", + "$id": "9345", "name": "getRunStep", "resourceName": "Runs", "summary": "Retrieves a run step.", "accessibility": "public", "parameters": [ { - "$id": "9336", + "$id": "9346", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -125729,7 +125852,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.accept" }, { - "$id": "9337", + "$id": "9347", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -125745,13 +125868,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.openAIBeta" }, { - "$id": "9338", + "$id": "9348", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which the run and run step belongs.", "type": { - "$id": "9339", + "$id": "9349", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125769,13 +125892,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.thread_id" }, { - "$id": "9340", + "$id": "9350", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to which the run step belongs.", "type": { - "$id": "9341", + "$id": "9351", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125793,13 +125916,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.run_id" }, { - "$id": "9342", + "$id": "9352", "kind": "path", "name": "step_id", "serializedName": "step_id", "doc": "The ID of the run step to retrieve.", "type": { - "$id": "9343", + "$id": "9353", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125817,13 +125940,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.step_id" }, { - "$id": "9344", + "$id": "9354", "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": "9206" + "$ref": "9216" }, "isApiVersion": false, "explode": false, @@ -125841,7 +125964,7 @@ 200 ], "bodyType": { - "$ref": "6451" + "$ref": "6461" }, "headers": [], "isErrorResponse": false, @@ -125861,7 +125984,7 @@ }, "parameters": [ { - "$id": "9345", + "$id": "9355", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -125878,7 +126001,7 @@ "decorators": [] }, { - "$id": "9346", + "$id": "9356", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -125895,13 +126018,13 @@ "decorators": [] }, { - "$id": "9347", + "$id": "9357", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which the run and run step belongs.", "type": { - "$id": "9348", + "$id": "9358", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125917,13 +126040,13 @@ "decorators": [] }, { - "$id": "9349", + "$id": "9359", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to which the run step belongs.", "type": { - "$id": "9350", + "$id": "9360", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125939,13 +126062,13 @@ "decorators": [] }, { - "$id": "9351", + "$id": "9361", "kind": "method", "name": "step_id", "serializedName": "step_id", "doc": "The ID of the run step to retrieve.", "type": { - "$id": "9352", + "$id": "9362", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125961,13 +126084,13 @@ "decorators": [] }, { - "$id": "9353", + "$id": "9363", "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": "9206" + "$ref": "9216" }, "location": "Query", "isApiVersion": false, @@ -125981,7 +126104,7 @@ ], "response": { "type": { - "$ref": "6451" + "$ref": "6461" } }, "isOverride": false, @@ -125992,13 +126115,13 @@ ], "parameters": [ { - "$id": "9354", + "$id": "9364", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9355", + "$id": "9365", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -126009,7 +126132,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9356", + "$id": "9366", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -126027,31 +126150,31 @@ "crossLanguageDefinitionId": "OpenAI.Runs", "apiVersions": [], "parent": { - "$ref": "8271" + "$ref": "8281" } }, { - "$id": "9357", + "$id": "9367", "kind": "client", "name": "Threads", "namespace": "OpenAI", "methods": [ { - "$id": "9358", + "$id": "9368", "kind": "basic", "name": "createThread", "accessibility": "public", "apiVersions": [], "summary": "Create a thread.", "operation": { - "$id": "9359", + "$id": "9369", "name": "createThread", "resourceName": "Threads", "summary": "Create a thread.", "accessibility": "public", "parameters": [ { - "$id": "9360", + "$id": "9370", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -126067,7 +126190,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads.createThread.accept" }, { - "$id": "9361", + "$id": "9371", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -126083,7 +126206,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads.createThread.openAIBeta" }, { - "$id": "9362", + "$id": "9372", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -126100,12 +126223,12 @@ "crossLanguageDefinitionId": "OpenAI.Threads.createThread.contentType" }, { - "$id": "9363", + "$id": "9373", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6224" + "$ref": "6234" }, "isApiVersion": false, "contentTypes": [ @@ -126125,7 +126248,7 @@ 200 ], "bodyType": { - "$ref": "6600" + "$ref": "6610" }, "headers": [], "isErrorResponse": false, @@ -126148,7 +126271,7 @@ }, "parameters": [ { - "$id": "9364", + "$id": "9374", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -126165,7 +126288,7 @@ "decorators": [] }, { - "$id": "9365", + "$id": "9375", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -126182,12 +126305,12 @@ "decorators": [] }, { - "$id": "9366", + "$id": "9376", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6224" + "$ref": "6234" }, "location": "Body", "isApiVersion": false, @@ -126199,7 +126322,7 @@ "decorators": [] }, { - "$id": "9367", + "$id": "9377", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -126219,7 +126342,7 @@ ], "response": { "type": { - "$ref": "6600" + "$ref": "6610" } }, "isOverride": false, @@ -126228,21 +126351,21 @@ "crossLanguageDefinitionId": "OpenAI.Threads.createThread" }, { - "$id": "9368", + "$id": "9378", "kind": "basic", "name": "getThread", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a thread.", "operation": { - "$id": "9369", + "$id": "9379", "name": "getThread", "resourceName": "Threads", "summary": "Retrieves a thread.", "accessibility": "public", "parameters": [ { - "$id": "9370", + "$id": "9380", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -126258,7 +126381,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads.getThread.accept" }, { - "$id": "9371", + "$id": "9381", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -126274,13 +126397,13 @@ "crossLanguageDefinitionId": "OpenAI.Threads.getThread.openAIBeta" }, { - "$id": "9372", + "$id": "9382", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to retrieve.", "type": { - "$id": "9373", + "$id": "9383", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126304,7 +126427,7 @@ 200 ], "bodyType": { - "$ref": "6600" + "$ref": "6610" }, "headers": [], "isErrorResponse": false, @@ -126324,7 +126447,7 @@ }, "parameters": [ { - "$id": "9374", + "$id": "9384", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -126341,7 +126464,7 @@ "decorators": [] }, { - "$id": "9375", + "$id": "9385", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -126358,13 +126481,13 @@ "decorators": [] }, { - "$id": "9376", + "$id": "9386", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to retrieve.", "type": { - "$id": "9377", + "$id": "9387", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126382,7 +126505,7 @@ ], "response": { "type": { - "$ref": "6600" + "$ref": "6610" } }, "isOverride": false, @@ -126391,21 +126514,21 @@ "crossLanguageDefinitionId": "OpenAI.Threads.getThread" }, { - "$id": "9378", + "$id": "9388", "kind": "basic", "name": "modifyThread", "accessibility": "public", "apiVersions": [], "summary": "Modifies a thread.", "operation": { - "$id": "9379", + "$id": "9389", "name": "modifyThread", "resourceName": "Threads", "summary": "Modifies a thread.", "accessibility": "public", "parameters": [ { - "$id": "9380", + "$id": "9390", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -126421,7 +126544,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread.accept" }, { - "$id": "9381", + "$id": "9391", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -126437,13 +126560,13 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread.openAIBeta" }, { - "$id": "9382", + "$id": "9392", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to modify. Only the `metadata` can be modified.", "type": { - "$id": "9383", + "$id": "9393", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126461,7 +126584,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread.thread_id" }, { - "$id": "9384", + "$id": "9394", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -126478,12 +126601,12 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread.contentType" }, { - "$id": "9385", + "$id": "9395", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6617" + "$ref": "6627" }, "isApiVersion": false, "contentTypes": [ @@ -126503,7 +126626,7 @@ 200 ], "bodyType": { - "$ref": "6600" + "$ref": "6610" }, "headers": [], "isErrorResponse": false, @@ -126526,7 +126649,7 @@ }, "parameters": [ { - "$id": "9386", + "$id": "9396", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -126543,7 +126666,7 @@ "decorators": [] }, { - "$id": "9387", + "$id": "9397", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -126560,13 +126683,13 @@ "decorators": [] }, { - "$id": "9388", + "$id": "9398", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to modify. Only the `metadata` can be modified.", "type": { - "$id": "9389", + "$id": "9399", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126582,12 +126705,12 @@ "decorators": [] }, { - "$id": "9390", + "$id": "9400", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6617" + "$ref": "6627" }, "location": "Body", "isApiVersion": false, @@ -126599,7 +126722,7 @@ "decorators": [] }, { - "$id": "9391", + "$id": "9401", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -126619,7 +126742,7 @@ ], "response": { "type": { - "$ref": "6600" + "$ref": "6610" } }, "isOverride": false, @@ -126628,21 +126751,21 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread" }, { - "$id": "9392", + "$id": "9402", "kind": "basic", "name": "deleteThread", "accessibility": "public", "apiVersions": [], "summary": "Delete a thread.", "operation": { - "$id": "9393", + "$id": "9403", "name": "deleteThread", "resourceName": "Threads", "summary": "Delete a thread.", "accessibility": "public", "parameters": [ { - "$id": "9394", + "$id": "9404", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -126658,7 +126781,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads.deleteThread.accept" }, { - "$id": "9395", + "$id": "9405", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -126674,13 +126797,13 @@ "crossLanguageDefinitionId": "OpenAI.Threads.deleteThread.openAIBeta" }, { - "$id": "9396", + "$id": "9406", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to delete.", "type": { - "$id": "9397", + "$id": "9407", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126704,7 +126827,7 @@ 200 ], "bodyType": { - "$ref": "6626" + "$ref": "6636" }, "headers": [], "isErrorResponse": false, @@ -126724,7 +126847,7 @@ }, "parameters": [ { - "$id": "9398", + "$id": "9408", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -126741,7 +126864,7 @@ "decorators": [] }, { - "$id": "9399", + "$id": "9409", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -126758,13 +126881,13 @@ "decorators": [] }, { - "$id": "9400", + "$id": "9410", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to delete.", "type": { - "$id": "9401", + "$id": "9411", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126782,7 +126905,7 @@ ], "response": { "type": { - "$ref": "6626" + "$ref": "6636" } }, "isOverride": false, @@ -126793,13 +126916,13 @@ ], "parameters": [ { - "$id": "9402", + "$id": "9412", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9403", + "$id": "9413", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -126810,7 +126933,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9404", + "$id": "9414", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -126828,31 +126951,31 @@ "crossLanguageDefinitionId": "OpenAI.Threads", "apiVersions": [], "parent": { - "$ref": "8271" + "$ref": "8281" } }, { - "$id": "9405", + "$id": "9415", "kind": "client", "name": "VectorStores", "namespace": "OpenAI", "methods": [ { - "$id": "9406", + "$id": "9416", "kind": "paging", "name": "GetVectorStores", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of vector stores.", "operation": { - "$id": "9407", + "$id": "9417", "name": "GetVectorStores", "resourceName": "VectorStores", "summary": "Returns a list of vector stores.", "accessibility": "public", "parameters": [ { - "$id": "9408", + "$id": "9418", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -126868,13 +126991,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listVectorStores.accept" }, { - "$id": "9409", + "$id": "9419", "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": "9410", + "$id": "9420", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -126889,7 +127012,7 @@ "readOnly": false }, { - "$id": "9411", + "$id": "9421", "kind": "query", "name": "order", "serializedName": "order", @@ -126906,13 +127029,13 @@ "readOnly": false }, { - "$id": "9412", + "$id": "9422", "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": "9413", + "$id": "9423", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126927,13 +127050,13 @@ "readOnly": false }, { - "$id": "9414", + "$id": "9424", "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": "9415", + "$id": "9425", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126954,7 +127077,7 @@ 200 ], "bodyType": { - "$ref": "6632" + "$ref": "6642" }, "headers": [], "isErrorResponse": false, @@ -126974,7 +127097,7 @@ }, "parameters": [ { - "$id": "9416", + "$id": "9426", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -126991,13 +127114,13 @@ "decorators": [] }, { - "$id": "9417", + "$id": "9427", "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": "9418", + "$id": "9428", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -127013,7 +127136,7 @@ "decorators": [] }, { - "$id": "9419", + "$id": "9429", "kind": "method", "name": "order", "serializedName": "order", @@ -127031,13 +127154,13 @@ "decorators": [] }, { - "$id": "9420", + "$id": "9430", "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": "9421", + "$id": "9431", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127053,13 +127176,13 @@ "decorators": [] }, { - "$id": "9422", + "$id": "9432", "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": "9423", + "$id": "9433", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127077,7 +127200,7 @@ ], "response": { "type": { - "$ref": "6635" + "$ref": "6645" }, "resultSegments": [ "data" @@ -127093,7 +127216,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9412" + "$ref": "9422" }, "responseSegments": [ "last_id" @@ -127103,21 +127226,21 @@ } }, { - "$id": "9424", + "$id": "9434", "kind": "basic", "name": "createVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Creates a vector store.", "operation": { - "$id": "9425", + "$id": "9435", "name": "createVectorStore", "resourceName": "VectorStores", "summary": "Creates a vector store.", "accessibility": "public", "parameters": [ { - "$id": "9426", + "$id": "9436", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -127133,7 +127256,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStore.accept" }, { - "$id": "9427", + "$id": "9437", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -127150,12 +127273,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStore.contentType" }, { - "$id": "9428", + "$id": "9438", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6684" + "$ref": "6694" }, "isApiVersion": false, "contentTypes": [ @@ -127175,7 +127298,7 @@ 200 ], "bodyType": { - "$ref": "6636" + "$ref": "6646" }, "headers": [], "isErrorResponse": false, @@ -127198,7 +127321,7 @@ }, "parameters": [ { - "$id": "9429", + "$id": "9439", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -127215,12 +127338,12 @@ "decorators": [] }, { - "$id": "9430", + "$id": "9440", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6684" + "$ref": "6694" }, "location": "Body", "isApiVersion": false, @@ -127232,7 +127355,7 @@ "decorators": [] }, { - "$id": "9431", + "$id": "9441", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -127252,7 +127375,7 @@ ], "response": { "type": { - "$ref": "6636" + "$ref": "6646" } }, "isOverride": false, @@ -127261,21 +127384,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStore" }, { - "$id": "9432", + "$id": "9442", "kind": "basic", "name": "getVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a vector store.", "operation": { - "$id": "9433", + "$id": "9443", "name": "getVectorStore", "resourceName": "VectorStores", "summary": "Retrieves a vector store.", "accessibility": "public", "parameters": [ { - "$id": "9434", + "$id": "9444", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -127291,13 +127414,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStore.accept" }, { - "$id": "9435", + "$id": "9445", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to retrieve.", "type": { - "$id": "9436", + "$id": "9446", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127321,7 +127444,7 @@ 200 ], "bodyType": { - "$ref": "6636" + "$ref": "6646" }, "headers": [], "isErrorResponse": false, @@ -127341,7 +127464,7 @@ }, "parameters": [ { - "$id": "9437", + "$id": "9447", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -127358,13 +127481,13 @@ "decorators": [] }, { - "$id": "9438", + "$id": "9448", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to retrieve.", "type": { - "$id": "9439", + "$id": "9449", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127382,7 +127505,7 @@ ], "response": { "type": { - "$ref": "6636" + "$ref": "6646" } }, "isOverride": false, @@ -127391,21 +127514,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStore" }, { - "$id": "9440", + "$id": "9450", "kind": "basic", "name": "modifyVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Modifies a vector store.", "operation": { - "$id": "9441", + "$id": "9451", "name": "modifyVectorStore", "resourceName": "VectorStores", "summary": "Modifies a vector store.", "accessibility": "public", "parameters": [ { - "$id": "9442", + "$id": "9452", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -127421,13 +127544,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.modifyVectorStore.accept" }, { - "$id": "9443", + "$id": "9453", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to modify.", "type": { - "$id": "9444", + "$id": "9454", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127445,7 +127568,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.modifyVectorStore.vector_store_id" }, { - "$id": "9445", + "$id": "9455", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -127462,12 +127585,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.modifyVectorStore.contentType" }, { - "$id": "9446", + "$id": "9456", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6692" + "$ref": "6702" }, "isApiVersion": false, "contentTypes": [ @@ -127487,7 +127610,7 @@ 200 ], "bodyType": { - "$ref": "6636" + "$ref": "6646" }, "headers": [], "isErrorResponse": false, @@ -127510,7 +127633,7 @@ }, "parameters": [ { - "$id": "9447", + "$id": "9457", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -127527,13 +127650,13 @@ "decorators": [] }, { - "$id": "9448", + "$id": "9458", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to modify.", "type": { - "$id": "9449", + "$id": "9459", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127549,12 +127672,12 @@ "decorators": [] }, { - "$id": "9450", + "$id": "9460", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6692" + "$ref": "6702" }, "location": "Body", "isApiVersion": false, @@ -127566,7 +127689,7 @@ "decorators": [] }, { - "$id": "9451", + "$id": "9461", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -127586,7 +127709,7 @@ ], "response": { "type": { - "$ref": "6636" + "$ref": "6646" } }, "isOverride": false, @@ -127595,21 +127718,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.modifyVectorStore" }, { - "$id": "9452", + "$id": "9462", "kind": "basic", "name": "deleteVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Delete a vector store.", "operation": { - "$id": "9453", + "$id": "9463", "name": "deleteVectorStore", "resourceName": "VectorStores", "summary": "Delete a vector store.", "accessibility": "public", "parameters": [ { - "$id": "9454", + "$id": "9464", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -127625,13 +127748,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStore.accept" }, { - "$id": "9455", + "$id": "9465", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to delete.", "type": { - "$id": "9456", + "$id": "9466", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127655,7 +127778,7 @@ 200 ], "bodyType": { - "$ref": "6699" + "$ref": "6709" }, "headers": [], "isErrorResponse": false, @@ -127675,7 +127798,7 @@ }, "parameters": [ { - "$id": "9457", + "$id": "9467", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -127692,13 +127815,13 @@ "decorators": [] }, { - "$id": "9458", + "$id": "9468", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to delete.", "type": { - "$id": "9459", + "$id": "9469", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127716,7 +127839,7 @@ ], "response": { "type": { - "$ref": "6699" + "$ref": "6709" } }, "isOverride": false, @@ -127725,21 +127848,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStore" }, { - "$id": "9460", + "$id": "9470", "kind": "basic", "name": "AddFileBatchToVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Create a vector store file batch.", "operation": { - "$id": "9461", + "$id": "9471", "name": "AddFileBatchToVectorStore", "resourceName": "VectorStores", "summary": "Create a vector store file batch.", "accessibility": "public", "parameters": [ { - "$id": "9462", + "$id": "9472", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -127755,13 +127878,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFileBatch.accept" }, { - "$id": "9463", + "$id": "9473", "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": "9464", + "$id": "9474", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127779,7 +127902,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFileBatch.vector_store_id" }, { - "$id": "9465", + "$id": "9475", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -127796,12 +127919,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFileBatch.contentType" }, { - "$id": "9466", + "$id": "9476", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6705" + "$ref": "6715" }, "isApiVersion": false, "contentTypes": [ @@ -127821,7 +127944,7 @@ 200 ], "bodyType": { - "$ref": "6710" + "$ref": "6720" }, "headers": [], "isErrorResponse": false, @@ -127844,7 +127967,7 @@ }, "parameters": [ { - "$id": "9467", + "$id": "9477", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -127861,13 +127984,13 @@ "decorators": [] }, { - "$id": "9468", + "$id": "9478", "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": "9469", + "$id": "9479", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127883,12 +128006,12 @@ "decorators": [] }, { - "$id": "9470", + "$id": "9480", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6705" + "$ref": "6715" }, "location": "Body", "isApiVersion": false, @@ -127900,7 +128023,7 @@ "decorators": [] }, { - "$id": "9471", + "$id": "9481", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -127920,7 +128043,7 @@ ], "response": { "type": { - "$ref": "6710" + "$ref": "6720" } }, "isOverride": false, @@ -127929,21 +128052,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFileBatch" }, { - "$id": "9472", + "$id": "9482", "kind": "basic", "name": "getVectorStoreFileBatch", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a vector store file batch.", "operation": { - "$id": "9473", + "$id": "9483", "name": "getVectorStoreFileBatch", "resourceName": "VectorStores", "summary": "Retrieves a vector store file batch.", "accessibility": "public", "parameters": [ { - "$id": "9474", + "$id": "9484", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -127959,13 +128082,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFileBatch.accept" }, { - "$id": "9475", + "$id": "9485", "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": "9476", + "$id": "9486", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127983,13 +128106,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFileBatch.vector_store_id" }, { - "$id": "9477", + "$id": "9487", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch being retrieved.", "type": { - "$id": "9478", + "$id": "9488", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128013,7 +128136,7 @@ 200 ], "bodyType": { - "$ref": "6710" + "$ref": "6720" }, "headers": [], "isErrorResponse": false, @@ -128033,7 +128156,7 @@ }, "parameters": [ { - "$id": "9479", + "$id": "9489", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -128050,13 +128173,13 @@ "decorators": [] }, { - "$id": "9480", + "$id": "9490", "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": "9481", + "$id": "9491", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128072,13 +128195,13 @@ "decorators": [] }, { - "$id": "9482", + "$id": "9492", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch being retrieved.", "type": { - "$id": "9483", + "$id": "9493", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128096,7 +128219,7 @@ ], "response": { "type": { - "$ref": "6710" + "$ref": "6720" } }, "isOverride": false, @@ -128105,21 +128228,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFileBatch" }, { - "$id": "9484", + "$id": "9494", "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": "9485", + "$id": "9495", "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": "9486", + "$id": "9496", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -128135,13 +128258,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.cancelVectorStoreFileBatch.accept" }, { - "$id": "9487", + "$id": "9497", "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": "9488", + "$id": "9498", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128159,13 +128282,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.cancelVectorStoreFileBatch.vector_store_id" }, { - "$id": "9489", + "$id": "9499", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch to cancel.", "type": { - "$id": "9490", + "$id": "9500", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128189,7 +128312,7 @@ 200 ], "bodyType": { - "$ref": "6710" + "$ref": "6720" }, "headers": [], "isErrorResponse": false, @@ -128209,7 +128332,7 @@ }, "parameters": [ { - "$id": "9491", + "$id": "9501", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -128226,13 +128349,13 @@ "decorators": [] }, { - "$id": "9492", + "$id": "9502", "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": "9493", + "$id": "9503", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128248,13 +128371,13 @@ "decorators": [] }, { - "$id": "9494", + "$id": "9504", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch to cancel.", "type": { - "$id": "9495", + "$id": "9505", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128272,7 +128395,7 @@ ], "response": { "type": { - "$ref": "6710" + "$ref": "6720" } }, "isOverride": false, @@ -128281,21 +128404,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.cancelVectorStoreFileBatch" }, { - "$id": "9496", + "$id": "9506", "kind": "paging", "name": "GetVectorStoreFilesInBatch", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of vector store files in a batch.", "operation": { - "$id": "9497", + "$id": "9507", "name": "GetVectorStoreFilesInBatch", "resourceName": "VectorStores", "summary": "Returns a list of vector store files in a batch.", "accessibility": "public", "parameters": [ { - "$id": "9498", + "$id": "9508", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -128311,13 +128434,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listFilesInVectorStoreBatch.accept" }, { - "$id": "9499", + "$id": "9509", "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": "9500", + "$id": "9510", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128335,13 +128458,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listFilesInVectorStoreBatch.vector_store_id" }, { - "$id": "9501", + "$id": "9511", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch that the files belong to.", "type": { - "$id": "9502", + "$id": "9512", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128359,13 +128482,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listFilesInVectorStoreBatch.batch_id" }, { - "$id": "9503", + "$id": "9513", "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": "9504", + "$id": "9514", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -128380,7 +128503,7 @@ "readOnly": false }, { - "$id": "9505", + "$id": "9515", "kind": "query", "name": "order", "serializedName": "order", @@ -128397,13 +128520,13 @@ "readOnly": false }, { - "$id": "9506", + "$id": "9516", "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": "9507", + "$id": "9517", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128418,13 +128541,13 @@ "readOnly": false }, { - "$id": "9508", + "$id": "9518", "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": "9509", + "$id": "9519", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128439,7 +128562,7 @@ "readOnly": false }, { - "$id": "9510", + "$id": "9520", "kind": "query", "name": "filter", "serializedName": "filter", @@ -128462,7 +128585,7 @@ 200 ], "bodyType": { - "$ref": "6732" + "$ref": "6742" }, "headers": [], "isErrorResponse": false, @@ -128482,7 +128605,7 @@ }, "parameters": [ { - "$id": "9511", + "$id": "9521", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -128499,13 +128622,13 @@ "decorators": [] }, { - "$id": "9512", + "$id": "9522", "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": "9513", + "$id": "9523", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128521,13 +128644,13 @@ "decorators": [] }, { - "$id": "9514", + "$id": "9524", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch that the files belong to.", "type": { - "$id": "9515", + "$id": "9525", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128543,13 +128666,13 @@ "decorators": [] }, { - "$id": "9516", + "$id": "9526", "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": "9517", + "$id": "9527", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -128565,7 +128688,7 @@ "decorators": [] }, { - "$id": "9518", + "$id": "9528", "kind": "method", "name": "order", "serializedName": "order", @@ -128583,13 +128706,13 @@ "decorators": [] }, { - "$id": "9519", + "$id": "9529", "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": "9520", + "$id": "9530", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128605,13 +128728,13 @@ "decorators": [] }, { - "$id": "9521", + "$id": "9531", "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": "9522", + "$id": "9532", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128627,7 +128750,7 @@ "decorators": [] }, { - "$id": "9523", + "$id": "9533", "kind": "method", "name": "filter", "serializedName": "filter", @@ -128647,7 +128770,7 @@ ], "response": { "type": { - "$ref": "6735" + "$ref": "6745" }, "resultSegments": [ "data" @@ -128663,7 +128786,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9506" + "$ref": "9516" }, "responseSegments": [ "last_id" @@ -128673,21 +128796,21 @@ } }, { - "$id": "9524", + "$id": "9534", "kind": "paging", "name": "listVectorStoreFiles", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of vector store files.", "operation": { - "$id": "9525", + "$id": "9535", "name": "listVectorStoreFiles", "resourceName": "VectorStores", "summary": "Returns a list of vector store files.", "accessibility": "public", "parameters": [ { - "$id": "9526", + "$id": "9536", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -128703,13 +128826,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listVectorStoreFiles.accept" }, { - "$id": "9527", + "$id": "9537", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the files belong to.", "type": { - "$id": "9528", + "$id": "9538", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128727,13 +128850,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listVectorStoreFiles.vector_store_id" }, { - "$id": "9529", + "$id": "9539", "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": "9530", + "$id": "9540", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -128748,7 +128871,7 @@ "readOnly": false }, { - "$id": "9531", + "$id": "9541", "kind": "query", "name": "order", "serializedName": "order", @@ -128765,13 +128888,13 @@ "readOnly": false }, { - "$id": "9532", + "$id": "9542", "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": "9533", + "$id": "9543", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128786,13 +128909,13 @@ "readOnly": false }, { - "$id": "9534", + "$id": "9544", "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": "9535", + "$id": "9545", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128807,7 +128930,7 @@ "readOnly": false }, { - "$id": "9536", + "$id": "9546", "kind": "query", "name": "filter", "serializedName": "filter", @@ -128830,7 +128953,7 @@ 200 ], "bodyType": { - "$ref": "6732" + "$ref": "6742" }, "headers": [], "isErrorResponse": false, @@ -128850,7 +128973,7 @@ }, "parameters": [ { - "$id": "9537", + "$id": "9547", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -128867,13 +128990,13 @@ "decorators": [] }, { - "$id": "9538", + "$id": "9548", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the files belong to.", "type": { - "$id": "9539", + "$id": "9549", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128889,13 +129012,13 @@ "decorators": [] }, { - "$id": "9540", + "$id": "9550", "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": "9541", + "$id": "9551", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -128911,7 +129034,7 @@ "decorators": [] }, { - "$id": "9542", + "$id": "9552", "kind": "method", "name": "order", "serializedName": "order", @@ -128929,13 +129052,13 @@ "decorators": [] }, { - "$id": "9543", + "$id": "9553", "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": "9544", + "$id": "9554", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128951,13 +129074,13 @@ "decorators": [] }, { - "$id": "9545", + "$id": "9555", "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": "9546", + "$id": "9556", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128973,7 +129096,7 @@ "decorators": [] }, { - "$id": "9547", + "$id": "9557", "kind": "method", "name": "filter", "serializedName": "filter", @@ -128993,7 +129116,7 @@ ], "response": { "type": { - "$ref": "6735" + "$ref": "6745" }, "resultSegments": [ "data" @@ -129009,7 +129132,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9532" + "$ref": "9542" }, "responseSegments": [ "last_id" @@ -129019,21 +129142,21 @@ } }, { - "$id": "9548", + "$id": "9558", "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": "9549", + "$id": "9559", "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": "9550", + "$id": "9560", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -129049,13 +129172,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFile.accept" }, { - "$id": "9551", + "$id": "9561", "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": "9552", + "$id": "9562", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129073,7 +129196,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFile.vector_store_id" }, { - "$id": "9553", + "$id": "9563", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -129090,12 +129213,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFile.contentType" }, { - "$id": "9554", + "$id": "9564", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6776" + "$ref": "6786" }, "isApiVersion": false, "contentTypes": [ @@ -129115,7 +129238,7 @@ 200 ], "bodyType": { - "$ref": "6736" + "$ref": "6746" }, "headers": [], "isErrorResponse": false, @@ -129138,7 +129261,7 @@ }, "parameters": [ { - "$id": "9555", + "$id": "9565", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -129155,13 +129278,13 @@ "decorators": [] }, { - "$id": "9556", + "$id": "9566", "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": "9557", + "$id": "9567", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129177,12 +129300,12 @@ "decorators": [] }, { - "$id": "9558", + "$id": "9568", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6776" + "$ref": "6786" }, "location": "Body", "isApiVersion": false, @@ -129194,7 +129317,7 @@ "decorators": [] }, { - "$id": "9559", + "$id": "9569", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -129214,7 +129337,7 @@ ], "response": { "type": { - "$ref": "6736" + "$ref": "6746" } }, "isOverride": false, @@ -129223,21 +129346,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFile" }, { - "$id": "9560", + "$id": "9570", "kind": "basic", "name": "getVectorStoreFile", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a vector store file.", "operation": { - "$id": "9561", + "$id": "9571", "name": "getVectorStoreFile", "resourceName": "VectorStores", "summary": "Retrieves a vector store file.", "accessibility": "public", "parameters": [ { - "$id": "9562", + "$id": "9572", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -129253,13 +129376,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFile.accept" }, { - "$id": "9563", + "$id": "9573", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9564", + "$id": "9574", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129277,13 +129400,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFile.vector_store_id" }, { - "$id": "9565", + "$id": "9575", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file being retrieved.", "type": { - "$id": "9566", + "$id": "9576", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129307,7 +129430,7 @@ 200 ], "bodyType": { - "$ref": "6736" + "$ref": "6746" }, "headers": [], "isErrorResponse": false, @@ -129327,7 +129450,7 @@ }, "parameters": [ { - "$id": "9567", + "$id": "9577", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -129344,13 +129467,13 @@ "decorators": [] }, { - "$id": "9568", + "$id": "9578", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9569", + "$id": "9579", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129366,13 +129489,13 @@ "decorators": [] }, { - "$id": "9570", + "$id": "9580", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file being retrieved.", "type": { - "$id": "9571", + "$id": "9581", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129390,7 +129513,7 @@ ], "response": { "type": { - "$ref": "6736" + "$ref": "6746" } }, "isOverride": false, @@ -129399,21 +129522,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFile" }, { - "$id": "9572", + "$id": "9582", "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": "9573", + "$id": "9583", "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": "9574", + "$id": "9584", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -129429,13 +129552,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStoreFile.accept" }, { - "$id": "9575", + "$id": "9585", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9576", + "$id": "9586", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129453,13 +129576,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStoreFile.vector_store_id" }, { - "$id": "9577", + "$id": "9587", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to delete.", "type": { - "$id": "9578", + "$id": "9588", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129483,7 +129606,7 @@ 200 ], "bodyType": { - "$ref": "6782" + "$ref": "6792" }, "headers": [], "isErrorResponse": false, @@ -129503,7 +129626,7 @@ }, "parameters": [ { - "$id": "9579", + "$id": "9589", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -129520,13 +129643,13 @@ "decorators": [] }, { - "$id": "9580", + "$id": "9590", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9581", + "$id": "9591", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129542,13 +129665,13 @@ "decorators": [] }, { - "$id": "9582", + "$id": "9592", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to delete.", "type": { - "$id": "9583", + "$id": "9593", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129566,7 +129689,7 @@ ], "response": { "type": { - "$ref": "6782" + "$ref": "6792" } }, "isOverride": false, @@ -129575,27 +129698,27 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStoreFile" }, { - "$id": "9584", + "$id": "9594", "kind": "basic", "name": "updateVectorStoreFileAttributes", "accessibility": "public", "apiVersions": [], "summary": "Update the attributes of a vector store file.", "operation": { - "$id": "9585", + "$id": "9595", "name": "updateVectorStoreFileAttributes", "resourceName": "VectorStores", "summary": "Update the attributes of a vector store file.", "accessibility": "public", "parameters": [ { - "$id": "9586", + "$id": "9596", "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": "9587", + "$id": "9597", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129613,13 +129736,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes.vector_store_id" }, { - "$id": "9588", + "$id": "9598", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to update attributes for.", "type": { - "$id": "9589", + "$id": "9599", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129637,7 +129760,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes.file_id" }, { - "$id": "9590", + "$id": "9600", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -129654,7 +129777,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes.contentType" }, { - "$id": "9591", + "$id": "9601", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -129670,12 +129793,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes.accept" }, { - "$id": "9592", + "$id": "9602", "kind": "body", "name": "updateVectorStoreFileAttributesRequest", "serializedName": "updateVectorStoreFileAttributesRequest", "type": { - "$ref": "6788" + "$ref": "6798" }, "isApiVersion": false, "contentTypes": [ @@ -129695,7 +129818,7 @@ 200 ], "bodyType": { - "$ref": "6736" + "$ref": "6746" }, "headers": [], "isErrorResponse": false, @@ -129718,13 +129841,13 @@ }, "parameters": [ { - "$id": "9593", + "$id": "9603", "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": "9594", + "$id": "9604", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129740,13 +129863,13 @@ "decorators": [] }, { - "$id": "9595", + "$id": "9605", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to update attributes for.", "type": { - "$id": "9596", + "$id": "9606", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129762,12 +129885,12 @@ "decorators": [] }, { - "$id": "9597", + "$id": "9607", "kind": "method", "name": "attributes", "serializedName": "attributes", "type": { - "$ref": "6790" + "$ref": "6800" }, "location": "Body", "isApiVersion": false, @@ -129779,7 +129902,7 @@ "decorators": [] }, { - "$id": "9598", + "$id": "9608", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -129797,7 +129920,7 @@ "decorators": [] }, { - "$id": "9599", + "$id": "9609", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -129816,7 +129939,7 @@ ], "response": { "type": { - "$ref": "6736" + "$ref": "6746" } }, "isOverride": false, @@ -129825,27 +129948,27 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes" }, { - "$id": "9600", + "$id": "9610", "kind": "basic", "name": "retrieveVectorStoreFileContent", "accessibility": "public", "apiVersions": [], "summary": "Retrieves the content of a vector store file.", "operation": { - "$id": "9601", + "$id": "9611", "name": "retrieveVectorStoreFileContent", "resourceName": "VectorStores", "summary": "Retrieves the content of a vector store file.", "accessibility": "public", "parameters": [ { - "$id": "9602", + "$id": "9612", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9603", + "$id": "9613", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129863,13 +129986,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.retrieveVectorStoreFileContent.vector_store_id" }, { - "$id": "9604", + "$id": "9614", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file with content being retrieved.", "type": { - "$id": "9605", + "$id": "9615", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129887,7 +130010,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.retrieveVectorStoreFileContent.file_id" }, { - "$id": "9606", + "$id": "9616", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -129909,7 +130032,7 @@ 200 ], "bodyType": { - "$ref": "6791" + "$ref": "6801" }, "headers": [], "isErrorResponse": false, @@ -129929,13 +130052,13 @@ }, "parameters": [ { - "$id": "9607", + "$id": "9617", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9608", + "$id": "9618", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129951,13 +130074,13 @@ "decorators": [] }, { - "$id": "9609", + "$id": "9619", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file with content being retrieved.", "type": { - "$id": "9610", + "$id": "9620", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129973,7 +130096,7 @@ "decorators": [] }, { - "$id": "9611", + "$id": "9621", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -129992,7 +130115,7 @@ ], "response": { "type": { - "$ref": "6791" + "$ref": "6801" } }, "isOverride": false, @@ -130001,27 +130124,27 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.retrieveVectorStoreFileContent" }, { - "$id": "9612", + "$id": "9622", "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": "9613", + "$id": "9623", "name": "searchVectorStore", "resourceName": "VectorStores", "summary": "Searches a vector store for relevant chunks based on a query and file attributes filter.", "accessibility": "public", "parameters": [ { - "$id": "9614", + "$id": "9624", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to search.", "type": { - "$id": "9615", + "$id": "9625", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130039,7 +130162,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.searchVectorStore.vector_store_id" }, { - "$id": "9616", + "$id": "9626", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -130056,7 +130179,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.searchVectorStore.contentType" }, { - "$id": "9617", + "$id": "9627", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -130072,12 +130195,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.searchVectorStore.accept" }, { - "$id": "9618", + "$id": "9628", "kind": "body", "name": "vectorStoreSearchRequest", "serializedName": "vectorStoreSearchRequest", "type": { - "$ref": "6809" + "$ref": "6819" }, "isApiVersion": false, "contentTypes": [ @@ -130097,7 +130220,7 @@ 200 ], "bodyType": { - "$ref": "6820" + "$ref": "6830" }, "headers": [], "isErrorResponse": false, @@ -130120,13 +130243,13 @@ }, "parameters": [ { - "$id": "9619", + "$id": "9629", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to search.", "type": { - "$id": "9620", + "$id": "9630", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130142,13 +130265,13 @@ "decorators": [] }, { - "$id": "9621", + "$id": "9631", "kind": "method", "name": "query", "serializedName": "query", "doc": "A query string for a search", "type": { - "$ref": "6811" + "$ref": "6821" }, "location": "Body", "isApiVersion": false, @@ -130160,13 +130283,13 @@ "decorators": [] }, { - "$id": "9622", + "$id": "9632", "kind": "method", "name": "rewrite_query", "serializedName": "rewrite_query", "doc": "Whether to rewrite the natural language query for vector search.", "type": { - "$id": "9623", + "$id": "9633", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -130182,13 +130305,13 @@ "decorators": [] }, { - "$id": "9624", + "$id": "9634", "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": "9625", + "$id": "9635", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -130204,13 +130327,13 @@ "decorators": [] }, { - "$id": "9626", + "$id": "9636", "kind": "method", "name": "filters", "serializedName": "filters", "doc": "A filter to apply based on file attributes.", "type": { - "$ref": "6818" + "$ref": "6828" }, "location": "Body", "isApiVersion": false, @@ -130222,13 +130345,13 @@ "decorators": [] }, { - "$id": "9627", + "$id": "9637", "kind": "method", "name": "ranking_options", "serializedName": "ranking_options", "doc": "Ranking options for search.", "type": { - "$ref": "6805" + "$ref": "6815" }, "location": "Body", "isApiVersion": false, @@ -130240,7 +130363,7 @@ "decorators": [] }, { - "$id": "9628", + "$id": "9638", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -130258,7 +130381,7 @@ "decorators": [] }, { - "$id": "9629", + "$id": "9639", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -130277,7 +130400,7 @@ ], "response": { "type": { - "$ref": "6820" + "$ref": "6830" } }, "isOverride": false, @@ -130288,13 +130411,13 @@ ], "parameters": [ { - "$id": "9630", + "$id": "9640", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9631", + "$id": "9641", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -130305,7 +130428,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9632", + "$id": "9642", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -130323,31 +130446,31 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores", "apiVersions": [], "parent": { - "$ref": "8271" + "$ref": "8281" } }, { - "$id": "9633", + "$id": "9643", "kind": "client", "name": "Completions", "namespace": "OpenAI", "methods": [ { - "$id": "9634", + "$id": "9644", "kind": "basic", "name": "createCompletion", "accessibility": "public", "apiVersions": [], "summary": "Creates a completion for the provided prompt and parameters.", "operation": { - "$id": "9635", + "$id": "9645", "name": "createCompletion", "resourceName": "Completions", "summary": "Creates a completion for the provided prompt and parameters.", "accessibility": "public", "parameters": [ { - "$id": "9636", + "$id": "9646", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -130363,7 +130486,7 @@ "crossLanguageDefinitionId": "OpenAI.Completions.createCompletion.accept" }, { - "$id": "9637", + "$id": "9647", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -130380,12 +130503,12 @@ "crossLanguageDefinitionId": "OpenAI.Completions.createCompletion.contentType" }, { - "$id": "9638", + "$id": "9648", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6845" + "$ref": "6855" }, "isApiVersion": false, "contentTypes": [ @@ -130405,7 +130528,7 @@ 200 ], "bodyType": { - "$ref": "6895" + "$ref": "6905" }, "headers": [], "isErrorResponse": false, @@ -130428,7 +130551,7 @@ }, "parameters": [ { - "$id": "9639", + "$id": "9649", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -130445,12 +130568,12 @@ "decorators": [] }, { - "$id": "9640", + "$id": "9650", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6845" + "$ref": "6855" }, "location": "Body", "isApiVersion": false, @@ -130462,7 +130585,7 @@ "decorators": [] }, { - "$id": "9641", + "$id": "9651", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -130482,7 +130605,7 @@ ], "response": { "type": { - "$ref": "6895" + "$ref": "6905" } }, "isOverride": false, @@ -130493,13 +130616,13 @@ ], "parameters": [ { - "$id": "9642", + "$id": "9652", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9643", + "$id": "9653", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -130510,7 +130633,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9644", + "$id": "9654", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -130528,31 +130651,31 @@ "crossLanguageDefinitionId": "OpenAI.Completions", "apiVersions": [], "parent": { - "$ref": "8271" + "$ref": "8281" } }, { - "$id": "9645", + "$id": "9655", "kind": "client", "name": "Models", "namespace": "OpenAI", "methods": [ { - "$id": "9646", + "$id": "9656", "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": "9647", + "$id": "9657", "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": "9648", + "$id": "9658", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -130574,7 +130697,7 @@ 200 ], "bodyType": { - "$ref": "6926" + "$ref": "6936" }, "headers": [], "isErrorResponse": false, @@ -130594,7 +130717,7 @@ }, "parameters": [ { - "$id": "9649", + "$id": "9659", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -130613,7 +130736,7 @@ ], "response": { "type": { - "$ref": "6926" + "$ref": "6936" } }, "isOverride": false, @@ -130622,21 +130745,21 @@ "crossLanguageDefinitionId": "OpenAI.Models.listModels" }, { - "$id": "9650", + "$id": "9660", "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": "9651", + "$id": "9661", "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": "9652", + "$id": "9662", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -130652,13 +130775,13 @@ "crossLanguageDefinitionId": "OpenAI.Models.retrieveModel.accept" }, { - "$id": "9653", + "$id": "9663", "kind": "path", "name": "model", "serializedName": "model", "doc": "The ID of the model to use for this request.", "type": { - "$id": "9654", + "$id": "9664", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130682,7 +130805,7 @@ 200 ], "bodyType": { - "$ref": "6930" + "$ref": "6940" }, "headers": [], "isErrorResponse": false, @@ -130702,7 +130825,7 @@ }, "parameters": [ { - "$id": "9655", + "$id": "9665", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -130719,13 +130842,13 @@ "decorators": [] }, { - "$id": "9656", + "$id": "9666", "kind": "method", "name": "model", "serializedName": "model", "doc": "The ID of the model to use for this request.", "type": { - "$id": "9657", + "$id": "9667", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130743,7 +130866,7 @@ ], "response": { "type": { - "$ref": "6930" + "$ref": "6940" } }, "isOverride": false, @@ -130752,21 +130875,21 @@ "crossLanguageDefinitionId": "OpenAI.Models.retrieveModel" }, { - "$id": "9658", + "$id": "9668", "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": "9659", + "$id": "9669", "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": "9660", + "$id": "9670", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -130782,13 +130905,13 @@ "crossLanguageDefinitionId": "OpenAI.Models.deleteModel.accept" }, { - "$id": "9661", + "$id": "9671", "kind": "path", "name": "model", "serializedName": "model", "doc": "The model to delete", "type": { - "$id": "9662", + "$id": "9672", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130812,7 +130935,7 @@ 200 ], "bodyType": { - "$ref": "6939" + "$ref": "6949" }, "headers": [], "isErrorResponse": false, @@ -130832,7 +130955,7 @@ }, "parameters": [ { - "$id": "9663", + "$id": "9673", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -130849,13 +130972,13 @@ "decorators": [] }, { - "$id": "9664", + "$id": "9674", "kind": "method", "name": "model", "serializedName": "model", "doc": "The model to delete", "type": { - "$id": "9665", + "$id": "9675", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130873,7 +130996,7 @@ ], "response": { "type": { - "$ref": "6939" + "$ref": "6949" } }, "isOverride": false, @@ -130884,13 +131007,13 @@ ], "parameters": [ { - "$id": "9666", + "$id": "9676", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9667", + "$id": "9677", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -130901,7 +131024,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9668", + "$id": "9678", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -130919,31 +131042,31 @@ "crossLanguageDefinitionId": "OpenAI.Models", "apiVersions": [], "parent": { - "$ref": "8271" + "$ref": "8281" } }, { - "$id": "9669", + "$id": "9679", "kind": "client", "name": "Realtime", "namespace": "OpenAI", "methods": [ { - "$id": "9670", + "$id": "9680", "kind": "basic", "name": "startRealtimeSession", "accessibility": "public", "apiVersions": [], "summary": "Starts a real-time session for conversation or transcription.", "operation": { - "$id": "9671", + "$id": "9681", "name": "startRealtimeSession", "resourceName": "Realtime", "summary": "Starts a real-time session for conversation or transcription.", "accessibility": "public", "parameters": [ { - "$id": "9672", + "$id": "9682", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -130959,7 +131082,7 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.startRealtimeSession.openAIBeta" }, { - "$id": "9673", + "$id": "9683", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -130976,7 +131099,7 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.startRealtimeSession.contentType" }, { - "$id": "9674", + "$id": "9684", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -130992,16 +131115,16 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.startRealtimeSession.accept" }, { - "$id": "9675", + "$id": "9685", "kind": "body", "name": "requestMessages", "serializedName": "requestMessages", "type": { - "$id": "9676", + "$id": "9686", "kind": "array", "name": "ArrayRealtimeClientEvent", "valueType": { - "$ref": "6945" + "$ref": "6955" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -131024,11 +131147,11 @@ 200 ], "bodyType": { - "$id": "9677", + "$id": "9687", "kind": "array", "name": "ArrayRealtimeServerEvent", "valueType": { - "$ref": "7242" + "$ref": "7252" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -131054,7 +131177,7 @@ }, "parameters": [ { - "$id": "9678", + "$id": "9688", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -131071,12 +131194,12 @@ "decorators": [] }, { - "$id": "9679", + "$id": "9689", "kind": "method", "name": "requestMessages", "serializedName": "requestMessages", "type": { - "$ref": "9676" + "$ref": "9686" }, "location": "Body", "isApiVersion": false, @@ -131088,7 +131211,7 @@ "decorators": [] }, { - "$id": "9680", + "$id": "9690", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -131106,7 +131229,7 @@ "decorators": [] }, { - "$id": "9681", + "$id": "9691", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -131125,7 +131248,7 @@ ], "response": { "type": { - "$ref": "9677" + "$ref": "9687" } }, "isOverride": false, @@ -131134,21 +131257,21 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.startRealtimeSession" }, { - "$id": "9682", + "$id": "9692", "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": "9683", + "$id": "9693", "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": "9684", + "$id": "9694", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -131165,7 +131288,7 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralToken.contentType" }, { - "$id": "9685", + "$id": "9695", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -131181,12 +131304,12 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralToken.accept" }, { - "$id": "9686", + "$id": "9696", "kind": "body", "name": "request", "serializedName": "request", "type": { - "$ref": "7726" + "$ref": "7736" }, "isApiVersion": false, "contentTypes": [ @@ -131206,7 +131329,7 @@ 200 ], "bodyType": { - "$ref": "7786" + "$ref": "7796" }, "headers": [], "isErrorResponse": false, @@ -131229,12 +131352,12 @@ }, "parameters": [ { - "$id": "9687", + "$id": "9697", "kind": "method", "name": "request", "serializedName": "request", "type": { - "$ref": "7726" + "$ref": "7736" }, "location": "Body", "isApiVersion": false, @@ -131246,7 +131369,7 @@ "decorators": [] }, { - "$id": "9688", + "$id": "9698", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -131264,7 +131387,7 @@ "decorators": [] }, { - "$id": "9689", + "$id": "9699", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -131283,7 +131406,7 @@ ], "response": { "type": { - "$ref": "7786" + "$ref": "7796" } }, "isOverride": false, @@ -131292,21 +131415,21 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralToken" }, { - "$id": "9690", + "$id": "9700", "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": "9691", + "$id": "9701", "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": "9692", + "$id": "9702", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -131323,7 +131446,7 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralTranscriptionToken.contentType" }, { - "$id": "9693", + "$id": "9703", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -131339,12 +131462,12 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralTranscriptionToken.accept" }, { - "$id": "9694", + "$id": "9704", "kind": "body", "name": "request", "serializedName": "request", "type": { - "$ref": "7205" + "$ref": "7215" }, "isApiVersion": false, "contentTypes": [ @@ -131364,7 +131487,7 @@ 200 ], "bodyType": { - "$ref": "7697" + "$ref": "7707" }, "headers": [], "isErrorResponse": false, @@ -131387,12 +131510,12 @@ }, "parameters": [ { - "$id": "9695", + "$id": "9705", "kind": "method", "name": "request", "serializedName": "request", "type": { - "$ref": "7205" + "$ref": "7215" }, "location": "Body", "isApiVersion": false, @@ -131404,7 +131527,7 @@ "decorators": [] }, { - "$id": "9696", + "$id": "9706", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -131422,7 +131545,7 @@ "decorators": [] }, { - "$id": "9697", + "$id": "9707", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -131441,7 +131564,7 @@ ], "response": { "type": { - "$ref": "7697" + "$ref": "7707" } }, "isOverride": false, @@ -131452,13 +131575,13 @@ ], "parameters": [ { - "$id": "9698", + "$id": "9708", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9699", + "$id": "9709", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -131469,7 +131592,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9700", + "$id": "9710", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -131487,31 +131610,31 @@ "crossLanguageDefinitionId": "OpenAI.Realtime", "apiVersions": [], "parent": { - "$ref": "8271" + "$ref": "8281" } }, { - "$id": "9701", + "$id": "9711", "kind": "client", "name": "Uploads", "namespace": "OpenAI", "methods": [ { - "$id": "9702", + "$id": "9712", "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": "9703", + "$id": "9713", "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": "9704", + "$id": "9714", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -131527,7 +131650,7 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.createUpload.accept" }, { - "$id": "9705", + "$id": "9715", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -131544,12 +131667,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.createUpload.contentType" }, { - "$id": "9706", + "$id": "9716", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7833" + "$ref": "7843" }, "isApiVersion": false, "contentTypes": [ @@ -131569,7 +131692,7 @@ 200 ], "bodyType": { - "$ref": "7841" + "$ref": "7851" }, "headers": [], "isErrorResponse": false, @@ -131592,7 +131715,7 @@ }, "parameters": [ { - "$id": "9707", + "$id": "9717", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -131609,12 +131732,12 @@ "decorators": [] }, { - "$id": "9708", + "$id": "9718", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7833" + "$ref": "7843" }, "location": "Body", "isApiVersion": false, @@ -131626,7 +131749,7 @@ "decorators": [] }, { - "$id": "9709", + "$id": "9719", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -131646,7 +131769,7 @@ ], "response": { "type": { - "$ref": "7841" + "$ref": "7851" } }, "isOverride": false, @@ -131655,21 +131778,21 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.createUpload" }, { - "$id": "9710", + "$id": "9720", "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": "9711", + "$id": "9721", "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": "9712", + "$id": "9722", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -131685,7 +131808,7 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.addUploadPart.accept" }, { - "$id": "9713", + "$id": "9723", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -131701,12 +131824,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.addUploadPart.contentType" }, { - "$id": "9714", + "$id": "9724", "kind": "path", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9715", + "$id": "9725", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131724,12 +131847,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.addUploadPart.upload_id" }, { - "$id": "9716", + "$id": "9726", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7860" + "$ref": "7870" }, "isApiVersion": false, "contentTypes": [ @@ -131749,7 +131872,7 @@ 200 ], "bodyType": { - "$ref": "7863" + "$ref": "7873" }, "headers": [], "isErrorResponse": false, @@ -131772,7 +131895,7 @@ }, "parameters": [ { - "$id": "9717", + "$id": "9727", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -131789,7 +131912,7 @@ "decorators": [] }, { - "$id": "9718", + "$id": "9728", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -131806,12 +131929,12 @@ "decorators": [] }, { - "$id": "9719", + "$id": "9729", "kind": "method", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9720", + "$id": "9730", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131827,12 +131950,12 @@ "decorators": [] }, { - "$id": "9721", + "$id": "9731", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7860" + "$ref": "7870" }, "location": "Body", "isApiVersion": false, @@ -131846,7 +131969,7 @@ ], "response": { "type": { - "$ref": "7863" + "$ref": "7873" } }, "isOverride": false, @@ -131855,21 +131978,21 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.addUploadPart" }, { - "$id": "9722", + "$id": "9732", "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": "9723", + "$id": "9733", "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": "9724", + "$id": "9734", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -131885,12 +132008,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.completeUpload.accept" }, { - "$id": "9725", + "$id": "9735", "kind": "path", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9726", + "$id": "9736", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131908,7 +132031,7 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.completeUpload.upload_id" }, { - "$id": "9727", + "$id": "9737", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -131925,12 +132048,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.completeUpload.contentType" }, { - "$id": "9728", + "$id": "9738", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7872" + "$ref": "7882" }, "isApiVersion": false, "contentTypes": [ @@ -131950,7 +132073,7 @@ 200 ], "bodyType": { - "$ref": "7841" + "$ref": "7851" }, "headers": [], "isErrorResponse": false, @@ -131973,7 +132096,7 @@ }, "parameters": [ { - "$id": "9729", + "$id": "9739", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -131990,12 +132113,12 @@ "decorators": [] }, { - "$id": "9730", + "$id": "9740", "kind": "method", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9731", + "$id": "9741", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132011,12 +132134,12 @@ "decorators": [] }, { - "$id": "9732", + "$id": "9742", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7872" + "$ref": "7882" }, "location": "Body", "isApiVersion": false, @@ -132028,7 +132151,7 @@ "decorators": [] }, { - "$id": "9733", + "$id": "9743", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -132048,7 +132171,7 @@ ], "response": { "type": { - "$ref": "7841" + "$ref": "7851" } }, "isOverride": false, @@ -132057,21 +132180,21 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.completeUpload" }, { - "$id": "9734", + "$id": "9744", "kind": "basic", "name": "cancelUpload", "accessibility": "public", "apiVersions": [], "summary": "Cancels the Upload. No Parts may be added after an Upload is cancelled.", "operation": { - "$id": "9735", + "$id": "9745", "name": "cancelUpload", "resourceName": "Uploads", "summary": "Cancels the Upload. No Parts may be added after an Upload is cancelled.", "accessibility": "public", "parameters": [ { - "$id": "9736", + "$id": "9746", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -132087,12 +132210,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.cancelUpload.accept" }, { - "$id": "9737", + "$id": "9747", "kind": "path", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9738", + "$id": "9748", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132116,7 +132239,7 @@ 200 ], "bodyType": { - "$ref": "7841" + "$ref": "7851" }, "headers": [], "isErrorResponse": false, @@ -132136,7 +132259,7 @@ }, "parameters": [ { - "$id": "9739", + "$id": "9749", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -132153,12 +132276,12 @@ "decorators": [] }, { - "$id": "9740", + "$id": "9750", "kind": "method", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9741", + "$id": "9751", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132176,7 +132299,7 @@ ], "response": { "type": { - "$ref": "7841" + "$ref": "7851" } }, "isOverride": false, @@ -132187,13 +132310,13 @@ ], "parameters": [ { - "$id": "9742", + "$id": "9752", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9743", + "$id": "9753", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -132204,7 +132327,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9744", + "$id": "9754", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -132222,17 +132345,17 @@ "crossLanguageDefinitionId": "OpenAI.Uploads", "apiVersions": [], "parent": { - "$ref": "8271" + "$ref": "8281" } }, { - "$id": "9745", + "$id": "9755", "kind": "client", "name": "Conversations", "namespace": "OpenAI", "methods": [ { - "$id": "9746", + "$id": "9756", "kind": "paging", "name": "GetConversationItems", "accessibility": "public", @@ -132240,7 +132363,7 @@ "doc": "List all items for a conversation with the given ID.", "summary": "List items", "operation": { - "$id": "9747", + "$id": "9757", "name": "GetConversationItems", "resourceName": "OpenAI", "summary": "List items", @@ -132248,13 +132371,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9748", + "$id": "9758", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to list items for.", "type": { - "$id": "9749", + "$id": "9759", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132272,13 +132395,13 @@ "crossLanguageDefinitionId": "OpenAI.listConversationItems.conversation_id" }, { - "$id": "9750", + "$id": "9760", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of objects to be returned. Limit can range between\n1 and 100, and the default is 20.", "type": { - "$id": "9751", + "$id": "9761", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -132293,18 +132416,18 @@ "readOnly": false }, { - "$id": "9752", + "$id": "9762", "kind": "query", "name": "order", "serializedName": "order", "doc": "The order to return the input items in. Default is `desc`.\n- `asc`: Return the input items in ascending order.\n- `desc`: Return the input items in descending order.", "type": { - "$id": "9753", + "$id": "9763", "kind": "enum", "name": "ListConversationItemsRequestOrder", "crossLanguageDefinitionId": "OpenAI.listConversationItems.RequestOrder.anonymous", "valueType": { - "$id": "9754", + "$id": "9764", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132312,28 +132435,28 @@ }, "values": [ { - "$id": "9755", + "$id": "9765", "kind": "enumvalue", "name": "asc", "value": "asc", "valueType": { - "$ref": "9754" + "$ref": "9764" }, "enumType": { - "$ref": "9753" + "$ref": "9763" }, "decorators": [] }, { - "$id": "9756", + "$id": "9766", "kind": "enumvalue", "name": "desc", "value": "desc", "valueType": { - "$ref": "9754" + "$ref": "9764" }, "enumType": { - "$ref": "9753" + "$ref": "9763" }, "decorators": [] } @@ -132353,13 +132476,13 @@ "readOnly": false }, { - "$id": "9757", + "$id": "9767", "kind": "query", "name": "after", "serializedName": "after", "doc": "An item ID to list items after, used in pagination.", "type": { - "$id": "9758", + "$id": "9768", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132374,22 +132497,22 @@ "readOnly": false }, { - "$id": "9759", + "$id": "9769", "kind": "query", "name": "include", "serializedName": "include", "doc": "Specify additional output data to include in the model response. Currently supported values are:\n- `web_search_call.action.sources`: Include the sources of the web search tool call.\n- `code_interpreter_call.outputs`: Includes the outputs of python code execution in code interpreter tool call items.\n- `computer_call_output.output.image_url`: Include image urls from the computer call output.\n- `file_search_call.results`: Include the search results of the file search tool call.\n- `message.input_image.image_url`: Include image urls from the input message.\n- `message.output_text.logprobs`: Include logprobs with assistant messages.\n- `reasoning.encrypted_content`: Includes an encrypted version of reasoning tokens in reasoning item outputs. This enables reasoning items to be used in multi-turn conversations when using the Responses API statelessly (like when the `store` parameter is set to `false`, or when an organization is enrolled in the zero data retention program).", "type": { - "$id": "9760", + "$id": "9770", "kind": "array", "name": "ArrayIncludeEnum", "valueType": { - "$id": "9761", + "$id": "9771", "kind": "enum", "name": "IncludeEnum", "crossLanguageDefinitionId": "OpenAI.IncludeEnum", "valueType": { - "$id": "9762", + "$id": "9772", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132397,106 +132520,106 @@ }, "values": [ { - "$id": "9763", + "$id": "9773", "kind": "enumvalue", "name": "file_search_call.results", "value": "file_search_call.results", "valueType": { - "$ref": "9762" + "$ref": "9772" }, "enumType": { - "$ref": "9761" + "$ref": "9771" }, "decorators": [] }, { - "$id": "9764", + "$id": "9774", "kind": "enumvalue", "name": "web_search_call.results", "value": "web_search_call.results", "valueType": { - "$ref": "9762" + "$ref": "9772" }, "enumType": { - "$ref": "9761" + "$ref": "9771" }, "decorators": [] }, { - "$id": "9765", + "$id": "9775", "kind": "enumvalue", "name": "web_search_call.action.sources", "value": "web_search_call.action.sources", "valueType": { - "$ref": "9762" + "$ref": "9772" }, "enumType": { - "$ref": "9761" + "$ref": "9771" }, "decorators": [] }, { - "$id": "9766", + "$id": "9776", "kind": "enumvalue", "name": "message.input_image.image_url", "value": "message.input_image.image_url", "valueType": { - "$ref": "9762" + "$ref": "9772" }, "enumType": { - "$ref": "9761" + "$ref": "9771" }, "decorators": [] }, { - "$id": "9767", + "$id": "9777", "kind": "enumvalue", "name": "computer_call_output.output.image_url", "value": "computer_call_output.output.image_url", "valueType": { - "$ref": "9762" + "$ref": "9772" }, "enumType": { - "$ref": "9761" + "$ref": "9771" }, "decorators": [] }, { - "$id": "9768", + "$id": "9778", "kind": "enumvalue", "name": "code_interpreter_call.outputs", "value": "code_interpreter_call.outputs", "valueType": { - "$ref": "9762" + "$ref": "9772" }, "enumType": { - "$ref": "9761" + "$ref": "9771" }, "decorators": [] }, { - "$id": "9769", + "$id": "9779", "kind": "enumvalue", "name": "reasoning.encrypted_content", "value": "reasoning.encrypted_content", "valueType": { - "$ref": "9762" + "$ref": "9772" }, "enumType": { - "$ref": "9761" + "$ref": "9771" }, "decorators": [] }, { - "$id": "9770", + "$id": "9780", "kind": "enumvalue", "name": "message.output_text.logprobs", "value": "message.output_text.logprobs", "valueType": { - "$ref": "9762" + "$ref": "9772" }, "enumType": { - "$ref": "9761" + "$ref": "9771" }, "decorators": [] } @@ -132520,7 +132643,7 @@ "readOnly": false }, { - "$id": "9771", + "$id": "9781", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -132542,7 +132665,7 @@ 200 ], "bodyType": { - "$id": "9772", + "$id": "9782", "kind": "model", "name": "ConversationItemList", "namespace": "OpenAI", @@ -132553,7 +132676,7 @@ "decorators": [], "properties": [ { - "$id": "9773", + "$id": "9783", "kind": "property", "name": "object", "doc": "The type of object returned, must be `list`.", @@ -132570,12 +132693,12 @@ "isHttpMetadata": false }, { - "$id": "9774", + "$id": "9784", "kind": "property", "name": "data", "doc": "A list of conversation items.", "type": { - "$ref": "5217" + "$ref": "5222" }, "optional": false, "readOnly": false, @@ -132587,12 +132710,12 @@ "isHttpMetadata": false }, { - "$id": "9775", + "$id": "9785", "kind": "property", "name": "has_more", "doc": "Whether there are more items available.", "type": { - "$id": "9776", + "$id": "9786", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -132608,12 +132731,12 @@ "isHttpMetadata": false }, { - "$id": "9777", + "$id": "9787", "kind": "property", "name": "first_id", "doc": "The ID of the first item in the list.", "type": { - "$id": "9778", + "$id": "9788", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132629,12 +132752,12 @@ "isHttpMetadata": false }, { - "$id": "9779", + "$id": "9789", "kind": "property", "name": "last_id", "doc": "The ID of the last item in the list.", "type": { - "$id": "9780", + "$id": "9790", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132669,13 +132792,13 @@ }, "parameters": [ { - "$id": "9781", + "$id": "9791", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to list items for.", "type": { - "$id": "9782", + "$id": "9792", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132691,13 +132814,13 @@ "decorators": [] }, { - "$id": "9783", + "$id": "9793", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of objects to be returned. Limit can range between\n1 and 100, and the default is 20.", "type": { - "$id": "9784", + "$id": "9794", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -132713,13 +132836,13 @@ "decorators": [] }, { - "$id": "9785", + "$id": "9795", "kind": "method", "name": "order", "serializedName": "order", "doc": "The order to return the input items in. Default is `desc`.\n- `asc`: Return the input items in ascending order.\n- `desc`: Return the input items in descending order.", "type": { - "$ref": "9753" + "$ref": "9763" }, "location": "Query", "isApiVersion": false, @@ -132731,13 +132854,13 @@ "decorators": [] }, { - "$id": "9786", + "$id": "9796", "kind": "method", "name": "after", "serializedName": "after", "doc": "An item ID to list items after, used in pagination.", "type": { - "$id": "9787", + "$id": "9797", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132753,13 +132876,13 @@ "decorators": [] }, { - "$id": "9788", + "$id": "9798", "kind": "method", "name": "include", "serializedName": "include", "doc": "Specify additional output data to include in the model response. Currently supported values are:\n- `web_search_call.action.sources`: Include the sources of the web search tool call.\n- `code_interpreter_call.outputs`: Includes the outputs of python code execution in code interpreter tool call items.\n- `computer_call_output.output.image_url`: Include image urls from the computer call output.\n- `file_search_call.results`: Include the search results of the file search tool call.\n- `message.input_image.image_url`: Include image urls from the input message.\n- `message.output_text.logprobs`: Include logprobs with assistant messages.\n- `reasoning.encrypted_content`: Includes an encrypted version of reasoning tokens in reasoning item outputs. This enables reasoning items to be used in multi-turn conversations when using the Responses API statelessly (like when the `store` parameter is set to `false`, or when an organization is enrolled in the zero data retention program).", "type": { - "$ref": "9760" + "$ref": "9770" }, "location": "Query", "isApiVersion": false, @@ -132771,7 +132894,7 @@ "decorators": [] }, { - "$id": "9789", + "$id": "9799", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -132790,7 +132913,7 @@ ], "response": { "type": { - "$ref": "5217" + "$ref": "5222" }, "resultSegments": [ "data" @@ -132807,7 +132930,7 @@ } }, { - "$id": "9790", + "$id": "9800", "kind": "basic", "name": "createConversationItems", "accessibility": "public", @@ -132815,7 +132938,7 @@ "doc": "Create items in a conversation with the given ID.", "summary": "Create items", "operation": { - "$id": "9791", + "$id": "9801", "name": "createConversationItems", "resourceName": "OpenAI", "summary": "Create items", @@ -132823,13 +132946,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9792", + "$id": "9802", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to add the item to.", "type": { - "$id": "9793", + "$id": "9803", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132847,13 +132970,13 @@ "crossLanguageDefinitionId": "OpenAI.createConversationItems.conversation_id" }, { - "$id": "9794", + "$id": "9804", "kind": "query", "name": "include", "serializedName": "include", "doc": "Additional fields to include in the response. See the `include`\nparameter for [listing Conversation items above](https://platform.openai.com/docs/api-reference/conversations/list-items#conversations_list_items-include) for more information.", "type": { - "$ref": "9760" + "$ref": "9770" }, "isApiVersion": false, "explode": true, @@ -132864,7 +132987,7 @@ "readOnly": false }, { - "$id": "9795", + "$id": "9805", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -132881,7 +133004,7 @@ "crossLanguageDefinitionId": "OpenAI.createConversationItems.contentType" }, { - "$id": "9796", + "$id": "9806", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -132897,12 +133020,12 @@ "crossLanguageDefinitionId": "OpenAI.createConversationItems.accept" }, { - "$id": "9797", + "$id": "9807", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$id": "9798", + "$id": "9808", "kind": "model", "name": "CreateConversationItemsParametersBody", "namespace": "OpenAI", @@ -132911,11 +133034,11 @@ "decorators": [], "properties": [ { - "$id": "9799", + "$id": "9809", "kind": "property", "name": "items", "type": { - "$ref": "5217" + "$ref": "5222" }, "optional": false, "readOnly": false, @@ -132946,7 +133069,7 @@ 200 ], "bodyType": { - "$ref": "9772" + "$ref": "9782" }, "headers": [], "isErrorResponse": false, @@ -132969,13 +133092,13 @@ }, "parameters": [ { - "$id": "9800", + "$id": "9810", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to add the item to.", "type": { - "$id": "9801", + "$id": "9811", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132991,13 +133114,13 @@ "decorators": [] }, { - "$id": "9802", + "$id": "9812", "kind": "method", "name": "include", "serializedName": "include", "doc": "Additional fields to include in the response. See the `include`\nparameter for [listing Conversation items above](https://platform.openai.com/docs/api-reference/conversations/list-items#conversations_list_items-include) for more information.", "type": { - "$ref": "9760" + "$ref": "9770" }, "location": "Query", "isApiVersion": false, @@ -133009,12 +133132,12 @@ "decorators": [] }, { - "$id": "9803", + "$id": "9813", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "9798" + "$ref": "9808" }, "location": "Body", "isApiVersion": false, @@ -133026,7 +133149,7 @@ "decorators": [] }, { - "$id": "9804", + "$id": "9814", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -133044,7 +133167,7 @@ "decorators": [] }, { - "$id": "9805", + "$id": "9815", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -133063,7 +133186,7 @@ ], "response": { "type": { - "$ref": "9772" + "$ref": "9782" } }, "isOverride": false, @@ -133072,7 +133195,7 @@ "crossLanguageDefinitionId": "OpenAI.createConversationItems" }, { - "$id": "9806", + "$id": "9816", "kind": "basic", "name": "deleteConversationItem", "accessibility": "public", @@ -133080,7 +133203,7 @@ "doc": "Delete an item from a conversation with the given IDs.", "summary": "Delete an item", "operation": { - "$id": "9807", + "$id": "9817", "name": "deleteConversationItem", "resourceName": "OpenAI", "summary": "Delete an item", @@ -133088,13 +133211,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9808", + "$id": "9818", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation that contains the item.", "type": { - "$id": "9809", + "$id": "9819", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133112,13 +133235,13 @@ "crossLanguageDefinitionId": "OpenAI.deleteConversationItem.conversation_id" }, { - "$id": "9810", + "$id": "9820", "kind": "path", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to delete.", "type": { - "$id": "9811", + "$id": "9821", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133136,7 +133259,7 @@ "crossLanguageDefinitionId": "OpenAI.deleteConversationItem.item_id" }, { - "$id": "9812", + "$id": "9822", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -133158,7 +133281,7 @@ 200 ], "bodyType": { - "$id": "9813", + "$id": "9823", "kind": "model", "name": "ConversationResource", "namespace": "OpenAI", @@ -133167,12 +133290,12 @@ "decorators": [], "properties": [ { - "$id": "9814", + "$id": "9824", "kind": "property", "name": "id", "doc": "The unique ID of the conversation.", "type": { - "$id": "9815", + "$id": "9825", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133188,7 +133311,7 @@ "isHttpMetadata": false }, { - "$id": "9816", + "$id": "9826", "kind": "property", "name": "object", "doc": "The object type, which is always `conversation`.", @@ -133205,12 +133328,12 @@ "isHttpMetadata": false }, { - "$id": "9817", + "$id": "9827", "kind": "property", "name": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format, and querying for objects via API or the dashboard.\n Keys are strings with a maximum length of 64 characters. Values are strings with a maximum length of 512 characters.", "type": { - "$id": "9818", + "$id": "9828", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -133226,12 +133349,12 @@ "isHttpMetadata": false }, { - "$id": "9819", + "$id": "9829", "kind": "property", "name": "created_at", "doc": "The time at which the conversation was created, measured in seconds since the Unix epoch.", "type": { - "$id": "9820", + "$id": "9830", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -133266,13 +133389,13 @@ }, "parameters": [ { - "$id": "9821", + "$id": "9831", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation that contains the item.", "type": { - "$id": "9822", + "$id": "9832", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133288,13 +133411,13 @@ "decorators": [] }, { - "$id": "9823", + "$id": "9833", "kind": "method", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to delete.", "type": { - "$id": "9824", + "$id": "9834", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133310,7 +133433,7 @@ "decorators": [] }, { - "$id": "9825", + "$id": "9835", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -133329,7 +133452,7 @@ ], "response": { "type": { - "$ref": "9813" + "$ref": "9823" } }, "isOverride": false, @@ -133338,7 +133461,7 @@ "crossLanguageDefinitionId": "OpenAI.deleteConversationItem" }, { - "$id": "9826", + "$id": "9836", "kind": "basic", "name": "getConversationItem", "accessibility": "public", @@ -133346,7 +133469,7 @@ "doc": "Get a single item from a conversation with the given IDs.", "summary": "Retrieve an item", "operation": { - "$id": "9827", + "$id": "9837", "name": "getConversationItem", "resourceName": "OpenAI", "summary": "Retrieve an item", @@ -133354,13 +133477,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9828", + "$id": "9838", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation that contains the item.", "type": { - "$id": "9829", + "$id": "9839", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133378,13 +133501,13 @@ "crossLanguageDefinitionId": "OpenAI.getConversationItem.conversation_id" }, { - "$id": "9830", + "$id": "9840", "kind": "path", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to retrieve.", "type": { - "$id": "9831", + "$id": "9841", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133402,13 +133525,13 @@ "crossLanguageDefinitionId": "OpenAI.getConversationItem.item_id" }, { - "$id": "9832", + "$id": "9842", "kind": "query", "name": "include", "serializedName": "include", "doc": "Additional fields to include in the response. See the `include`\nparameter for [listing Conversation items above](https://platform.openai.com/docs/api-reference/conversations/list-items#conversations_list_items-include) for more information.", "type": { - "$ref": "9760" + "$ref": "9770" }, "isApiVersion": false, "explode": true, @@ -133419,7 +133542,7 @@ "readOnly": false }, { - "$id": "9833", + "$id": "9843", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -133441,7 +133564,7 @@ 200 ], "bodyType": { - "$ref": "5218" + "$ref": "5223" }, "headers": [], "isErrorResponse": false, @@ -133461,13 +133584,13 @@ }, "parameters": [ { - "$id": "9834", + "$id": "9844", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation that contains the item.", "type": { - "$id": "9835", + "$id": "9845", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133483,13 +133606,13 @@ "decorators": [] }, { - "$id": "9836", + "$id": "9846", "kind": "method", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to retrieve.", "type": { - "$id": "9837", + "$id": "9847", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133505,13 +133628,13 @@ "decorators": [] }, { - "$id": "9838", + "$id": "9848", "kind": "method", "name": "include", "serializedName": "include", "doc": "Additional fields to include in the response. See the `include`\nparameter for [listing Conversation items above](https://platform.openai.com/docs/api-reference/conversations/list-items#conversations_list_items-include) for more information.", "type": { - "$ref": "9760" + "$ref": "9770" }, "location": "Query", "isApiVersion": false, @@ -133523,7 +133646,7 @@ "decorators": [] }, { - "$id": "9839", + "$id": "9849", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -133542,7 +133665,7 @@ ], "response": { "type": { - "$ref": "5218" + "$ref": "5223" } }, "isOverride": false, @@ -133551,7 +133674,7 @@ "crossLanguageDefinitionId": "OpenAI.getConversationItem" }, { - "$id": "9840", + "$id": "9850", "kind": "basic", "name": "createConversation", "accessibility": "public", @@ -133559,7 +133682,7 @@ "doc": "Create a conversation.", "summary": "Create a conversation", "operation": { - "$id": "9841", + "$id": "9851", "name": "createConversation", "resourceName": "OpenAI", "summary": "Create a conversation", @@ -133567,7 +133690,7 @@ "accessibility": "public", "parameters": [ { - "$id": "9842", + "$id": "9852", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -133584,7 +133707,7 @@ "crossLanguageDefinitionId": "OpenAI.createConversation.contentType" }, { - "$id": "9843", + "$id": "9853", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -133600,12 +133723,12 @@ "crossLanguageDefinitionId": "OpenAI.createConversation.accept" }, { - "$id": "9844", + "$id": "9854", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$id": "9845", + "$id": "9855", "kind": "model", "name": "CreateConversationBody", "namespace": "OpenAI", @@ -133614,14 +133737,14 @@ "decorators": [], "properties": [ { - "$id": "9846", + "$id": "9856", "kind": "property", "name": "metadata", "type": { - "$id": "9847", + "$id": "9857", "kind": "nullable", "type": { - "$id": "9848", + "$id": "9858", "kind": "model", "name": "Metadata", "namespace": "OpenAI", @@ -133643,14 +133766,14 @@ "isHttpMetadata": false }, { - "$id": "9849", + "$id": "9859", "kind": "property", "name": "items", "type": { - "$id": "9850", + "$id": "9860", "kind": "nullable", "type": { - "$ref": "5217" + "$ref": "5222" }, "namespace": "OpenAI" }, @@ -133683,7 +133806,7 @@ 200 ], "bodyType": { - "$ref": "9813" + "$ref": "9823" }, "headers": [], "isErrorResponse": false, @@ -133706,12 +133829,12 @@ }, "parameters": [ { - "$id": "9851", + "$id": "9861", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "9845" + "$ref": "9855" }, "location": "Body", "isApiVersion": false, @@ -133723,7 +133846,7 @@ "decorators": [] }, { - "$id": "9852", + "$id": "9862", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -133741,7 +133864,7 @@ "decorators": [] }, { - "$id": "9853", + "$id": "9863", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -133760,7 +133883,7 @@ ], "response": { "type": { - "$ref": "9813" + "$ref": "9823" } }, "isOverride": false, @@ -133769,7 +133892,7 @@ "crossLanguageDefinitionId": "OpenAI.createConversation" }, { - "$id": "9854", + "$id": "9864", "kind": "basic", "name": "deleteConversation", "accessibility": "public", @@ -133777,7 +133900,7 @@ "doc": "Delete a conversation. Items in the conversation will not be deleted.", "summary": "Delete a conversation", "operation": { - "$id": "9855", + "$id": "9865", "name": "deleteConversation", "resourceName": "OpenAI", "summary": "Delete a conversation", @@ -133785,13 +133908,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9856", + "$id": "9866", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to delete.", "type": { - "$id": "9857", + "$id": "9867", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133809,7 +133932,7 @@ "crossLanguageDefinitionId": "OpenAI.deleteConversation.conversation_id" }, { - "$id": "9858", + "$id": "9868", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -133831,7 +133954,7 @@ 200 ], "bodyType": { - "$id": "9859", + "$id": "9869", "kind": "model", "name": "DeletedConversationResource", "namespace": "OpenAI", @@ -133840,7 +133963,7 @@ "decorators": [], "properties": [ { - "$id": "9860", + "$id": "9870", "kind": "property", "name": "object", "type": { @@ -133856,11 +133979,11 @@ "isHttpMetadata": false }, { - "$id": "9861", + "$id": "9871", "kind": "property", "name": "deleted", "type": { - "$id": "9862", + "$id": "9872", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -133876,11 +133999,11 @@ "isHttpMetadata": false }, { - "$id": "9863", + "$id": "9873", "kind": "property", "name": "id", "type": { - "$id": "9864", + "$id": "9874", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133915,13 +134038,13 @@ }, "parameters": [ { - "$id": "9865", + "$id": "9875", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to delete.", "type": { - "$id": "9866", + "$id": "9876", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133937,7 +134060,7 @@ "decorators": [] }, { - "$id": "9867", + "$id": "9877", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -133956,7 +134079,7 @@ ], "response": { "type": { - "$ref": "9859" + "$ref": "9869" } }, "isOverride": false, @@ -133965,7 +134088,7 @@ "crossLanguageDefinitionId": "OpenAI.deleteConversation" }, { - "$id": "9868", + "$id": "9878", "kind": "basic", "name": "getConversation", "accessibility": "public", @@ -133973,7 +134096,7 @@ "doc": "Get a conversation", "summary": "Retrieve a conversation", "operation": { - "$id": "9869", + "$id": "9879", "name": "getConversation", "resourceName": "OpenAI", "summary": "Retrieve a conversation", @@ -133981,13 +134104,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9870", + "$id": "9880", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to retrieve.", "type": { - "$id": "9871", + "$id": "9881", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134005,7 +134128,7 @@ "crossLanguageDefinitionId": "OpenAI.getConversation.conversation_id" }, { - "$id": "9872", + "$id": "9882", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -134027,7 +134150,7 @@ 200 ], "bodyType": { - "$ref": "9813" + "$ref": "9823" }, "headers": [], "isErrorResponse": false, @@ -134047,13 +134170,13 @@ }, "parameters": [ { - "$id": "9873", + "$id": "9883", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to retrieve.", "type": { - "$id": "9874", + "$id": "9884", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134069,7 +134192,7 @@ "decorators": [] }, { - "$id": "9875", + "$id": "9885", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -134088,7 +134211,7 @@ ], "response": { "type": { - "$ref": "9813" + "$ref": "9823" } }, "isOverride": false, @@ -134097,7 +134220,7 @@ "crossLanguageDefinitionId": "OpenAI.getConversation" }, { - "$id": "9876", + "$id": "9886", "kind": "basic", "name": "updateConversation", "accessibility": "public", @@ -134105,7 +134228,7 @@ "doc": "Update a conversation", "summary": "Update a conversation", "operation": { - "$id": "9877", + "$id": "9887", "name": "updateConversation", "resourceName": "OpenAI", "summary": "Update a conversation", @@ -134113,13 +134236,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9878", + "$id": "9888", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to update.", "type": { - "$id": "9879", + "$id": "9889", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134137,7 +134260,7 @@ "crossLanguageDefinitionId": "OpenAI.updateConversation.conversation_id" }, { - "$id": "9880", + "$id": "9890", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -134154,7 +134277,7 @@ "crossLanguageDefinitionId": "OpenAI.updateConversation.contentType" }, { - "$id": "9881", + "$id": "9891", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -134170,12 +134293,12 @@ "crossLanguageDefinitionId": "OpenAI.updateConversation.accept" }, { - "$id": "9882", + "$id": "9892", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$id": "9883", + "$id": "9893", "kind": "model", "name": "UpdateConversationBody", "namespace": "OpenAI", @@ -134184,15 +134307,15 @@ "decorators": [], "properties": [ { - "$id": "9884", + "$id": "9894", "kind": "property", "name": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format, and querying for objects via API or the dashboard.\n Keys are strings with a maximum length of 64 characters. Values are strings with a maximum length of 512 characters.", "type": { - "$id": "9885", + "$id": "9895", "kind": "nullable", "type": { - "$ref": "9848" + "$ref": "9858" }, "namespace": "OpenAI" }, @@ -134225,7 +134348,7 @@ 200 ], "bodyType": { - "$ref": "9813" + "$ref": "9823" }, "headers": [], "isErrorResponse": false, @@ -134248,13 +134371,13 @@ }, "parameters": [ { - "$id": "9886", + "$id": "9896", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to update.", "type": { - "$id": "9887", + "$id": "9897", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134270,12 +134393,12 @@ "decorators": [] }, { - "$id": "9888", + "$id": "9898", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "9883" + "$ref": "9893" }, "location": "Body", "isApiVersion": false, @@ -134287,7 +134410,7 @@ "decorators": [] }, { - "$id": "9889", + "$id": "9899", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -134305,7 +134428,7 @@ "decorators": [] }, { - "$id": "9890", + "$id": "9900", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -134324,7 +134447,7 @@ ], "response": { "type": { - "$ref": "9813" + "$ref": "9823" } }, "isOverride": false, @@ -134335,13 +134458,13 @@ ], "parameters": [ { - "$id": "9891", + "$id": "9901", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9892", + "$id": "9902", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -134352,7 +134475,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9893", + "$id": "9903", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -134370,17 +134493,17 @@ "crossLanguageDefinitionId": "OpenAI", "apiVersions": [], "parent": { - "$ref": "8271" + "$ref": "8281" } }, { - "$id": "9894", + "$id": "9904", "kind": "client", "name": "Videos", "namespace": "OpenAI", "methods": [ { - "$id": "9895", + "$id": "9905", "kind": "paging", "name": "ListVideos", "accessibility": "public", @@ -134388,7 +134511,7 @@ "doc": "List videos", "summary": "List videos", "operation": { - "$id": "9896", + "$id": "9906", "name": "ListVideos", "resourceName": "OpenAI", "summary": "List videos", @@ -134396,13 +134519,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9897", + "$id": "9907", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "Number of items to retrieve", "type": { - "$id": "9898", + "$id": "9908", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -134417,18 +134540,18 @@ "readOnly": false }, { - "$id": "9899", + "$id": "9909", "kind": "query", "name": "order", "serializedName": "order", "doc": "Sort order of results by timestamp. Use `asc` for ascending order or `desc` for descending order.", "type": { - "$id": "9900", + "$id": "9910", "kind": "enum", "name": "OrderEnum", "crossLanguageDefinitionId": "OpenAI.OrderEnum", "valueType": { - "$id": "9901", + "$id": "9911", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134436,28 +134559,28 @@ }, "values": [ { - "$id": "9902", + "$id": "9912", "kind": "enumvalue", "name": "asc", "value": "asc", "valueType": { - "$ref": "9901" + "$ref": "9911" }, "enumType": { - "$ref": "9900" + "$ref": "9910" }, "decorators": [] }, { - "$id": "9903", + "$id": "9913", "kind": "enumvalue", "name": "desc", "value": "desc", "valueType": { - "$ref": "9901" + "$ref": "9911" }, "enumType": { - "$ref": "9900" + "$ref": "9910" }, "decorators": [] } @@ -134477,13 +134600,13 @@ "readOnly": false }, { - "$id": "9904", + "$id": "9914", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last item from the previous pagination request", "type": { - "$id": "9905", + "$id": "9915", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134498,7 +134621,7 @@ "readOnly": false }, { - "$id": "9906", + "$id": "9916", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -134520,7 +134643,7 @@ 200 ], "bodyType": { - "$id": "9907", + "$id": "9917", "kind": "model", "name": "VideoListResource", "namespace": "OpenAI", @@ -134529,7 +134652,7 @@ "decorators": [], "properties": [ { - "$id": "9908", + "$id": "9918", "kind": "property", "name": "object", "doc": "The type of object returned, must be `list`.", @@ -134546,16 +134669,16 @@ "isHttpMetadata": false }, { - "$id": "9909", + "$id": "9919", "kind": "property", "name": "data", "doc": "A list of items", "type": { - "$id": "9910", + "$id": "9920", "kind": "array", "name": "ArrayVideoResource", "valueType": { - "$id": "9911", + "$id": "9921", "kind": "model", "name": "VideoResource", "namespace": "OpenAI", @@ -134566,12 +134689,12 @@ "decorators": [], "properties": [ { - "$id": "9912", + "$id": "9922", "kind": "property", "name": "id", "doc": "Unique identifier for the video job.", "type": { - "$id": "9913", + "$id": "9923", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134587,7 +134710,7 @@ "isHttpMetadata": false }, { - "$id": "9914", + "$id": "9924", "kind": "property", "name": "object", "doc": "The object type, which is always `video`.", @@ -134604,17 +134727,17 @@ "isHttpMetadata": false }, { - "$id": "9915", + "$id": "9925", "kind": "property", "name": "model", "doc": "The video generation model that produced the job.", "type": { - "$id": "9916", + "$id": "9926", "kind": "enum", "name": "VideoModel", "crossLanguageDefinitionId": "OpenAI.VideoModel", "valueType": { - "$id": "9917", + "$id": "9927", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134622,28 +134745,28 @@ }, "values": [ { - "$id": "9918", + "$id": "9928", "kind": "enumvalue", "name": "sora-2", "value": "sora-2", "valueType": { - "$ref": "9917" + "$ref": "9927" }, "enumType": { - "$ref": "9916" + "$ref": "9926" }, "decorators": [] }, { - "$id": "9919", + "$id": "9929", "kind": "enumvalue", "name": "sora-2-pro", "value": "sora-2-pro", "valueType": { - "$ref": "9917" + "$ref": "9927" }, "enumType": { - "$ref": "9916" + "$ref": "9926" }, "decorators": [] } @@ -134664,17 +134787,17 @@ "isHttpMetadata": false }, { - "$id": "9920", + "$id": "9930", "kind": "property", "name": "status", "doc": "Current lifecycle status of the video job.", "type": { - "$id": "9921", + "$id": "9931", "kind": "enum", "name": "VideoStatus", "crossLanguageDefinitionId": "OpenAI.VideoStatus", "valueType": { - "$id": "9922", + "$id": "9932", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134682,54 +134805,54 @@ }, "values": [ { - "$id": "9923", + "$id": "9933", "kind": "enumvalue", "name": "queued", "value": "queued", "valueType": { - "$ref": "9922" + "$ref": "9932" }, "enumType": { - "$ref": "9921" + "$ref": "9931" }, "decorators": [] }, { - "$id": "9924", + "$id": "9934", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "9922" + "$ref": "9932" }, "enumType": { - "$ref": "9921" + "$ref": "9931" }, "decorators": [] }, { - "$id": "9925", + "$id": "9935", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "9922" + "$ref": "9932" }, "enumType": { - "$ref": "9921" + "$ref": "9931" }, "decorators": [] }, { - "$id": "9926", + "$id": "9936", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "9922" + "$ref": "9932" }, "enumType": { - "$ref": "9921" + "$ref": "9931" }, "decorators": [] } @@ -134750,12 +134873,12 @@ "isHttpMetadata": false }, { - "$id": "9927", + "$id": "9937", "kind": "property", "name": "progress", "doc": "Approximate completion percentage for the generation task.", "type": { - "$id": "9928", + "$id": "9938", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -134771,12 +134894,12 @@ "isHttpMetadata": false }, { - "$id": "9929", + "$id": "9939", "kind": "property", "name": "created_at", "doc": "Unix timestamp (seconds) for when the job was created.", "type": { - "$id": "9930", + "$id": "9940", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -134792,14 +134915,14 @@ "isHttpMetadata": false }, { - "$id": "9931", + "$id": "9941", "kind": "property", "name": "completed_at", "type": { - "$id": "9932", + "$id": "9942", "kind": "nullable", "type": { - "$id": "9933", + "$id": "9943", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -134817,14 +134940,14 @@ "isHttpMetadata": false }, { - "$id": "9934", + "$id": "9944", "kind": "property", "name": "expires_at", "type": { - "$id": "9935", + "$id": "9945", "kind": "nullable", "type": { - "$id": "9936", + "$id": "9946", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -134842,17 +134965,17 @@ "isHttpMetadata": false }, { - "$id": "9937", + "$id": "9947", "kind": "property", "name": "size", "doc": "The resolution of the generated video.", "type": { - "$id": "9938", + "$id": "9948", "kind": "enum", "name": "VideoSize", "crossLanguageDefinitionId": "OpenAI.VideoSize", "valueType": { - "$id": "9939", + "$id": "9949", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134860,54 +134983,54 @@ }, "values": [ { - "$id": "9940", + "$id": "9950", "kind": "enumvalue", "name": "720x1280", "value": "720x1280", "valueType": { - "$ref": "9939" + "$ref": "9949" }, "enumType": { - "$ref": "9938" + "$ref": "9948" }, "decorators": [] }, { - "$id": "9941", + "$id": "9951", "kind": "enumvalue", "name": "1280x720", "value": "1280x720", "valueType": { - "$ref": "9939" + "$ref": "9949" }, "enumType": { - "$ref": "9938" + "$ref": "9948" }, "decorators": [] }, { - "$id": "9942", + "$id": "9952", "kind": "enumvalue", "name": "1024x1792", "value": "1024x1792", "valueType": { - "$ref": "9939" + "$ref": "9949" }, "enumType": { - "$ref": "9938" + "$ref": "9948" }, "decorators": [] }, { - "$id": "9943", + "$id": "9953", "kind": "enumvalue", "name": "1792x1024", "value": "1792x1024", "valueType": { - "$ref": "9939" + "$ref": "9949" }, "enumType": { - "$ref": "9938" + "$ref": "9948" }, "decorators": [] } @@ -134928,17 +135051,17 @@ "isHttpMetadata": false }, { - "$id": "9944", + "$id": "9954", "kind": "property", "name": "seconds", "doc": "Duration of the generated clip in seconds.", "type": { - "$id": "9945", + "$id": "9955", "kind": "enum", "name": "VideoSeconds", "crossLanguageDefinitionId": "OpenAI.VideoSeconds", "valueType": { - "$id": "9946", + "$id": "9956", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134946,41 +135069,41 @@ }, "values": [ { - "$id": "9947", + "$id": "9957", "kind": "enumvalue", "name": "4", "value": "4", "valueType": { - "$ref": "9946" + "$ref": "9956" }, "enumType": { - "$ref": "9945" + "$ref": "9955" }, "decorators": [] }, { - "$id": "9948", + "$id": "9958", "kind": "enumvalue", "name": "8", "value": "8", "valueType": { - "$ref": "9946" + "$ref": "9956" }, "enumType": { - "$ref": "9945" + "$ref": "9955" }, "decorators": [] }, { - "$id": "9949", + "$id": "9959", "kind": "enumvalue", "name": "12", "value": "12", "valueType": { - "$ref": "9946" + "$ref": "9956" }, "enumType": { - "$ref": "9945" + "$ref": "9955" }, "decorators": [] } @@ -135001,14 +135124,14 @@ "isHttpMetadata": false }, { - "$id": "9950", + "$id": "9960", "kind": "property", "name": "remixed_from_video_id", "type": { - "$id": "9951", + "$id": "9961", "kind": "nullable", "type": { - "$id": "9952", + "$id": "9962", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135026,14 +135149,14 @@ "isHttpMetadata": false }, { - "$id": "9953", + "$id": "9963", "kind": "property", "name": "error", "type": { - "$id": "9954", + "$id": "9964", "kind": "nullable", "type": { - "$id": "9955", + "$id": "9965", "kind": "model", "name": "Error-2", "namespace": "OpenAI", @@ -135042,11 +135165,11 @@ "decorators": [], "properties": [ { - "$id": "9956", + "$id": "9966", "kind": "property", "name": "code", "type": { - "$id": "9957", + "$id": "9967", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135062,11 +135185,11 @@ "isHttpMetadata": false }, { - "$id": "9958", + "$id": "9968", "kind": "property", "name": "message", "type": { - "$id": "9959", + "$id": "9969", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135109,11 +135232,11 @@ "isHttpMetadata": false }, { - "$id": "9960", + "$id": "9970", "kind": "property", "name": "first_id", "type": { - "$id": "9961", + "$id": "9971", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135129,11 +135252,11 @@ "isHttpMetadata": false }, { - "$id": "9962", + "$id": "9972", "kind": "property", "name": "last_id", "type": { - "$id": "9963", + "$id": "9973", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135149,12 +135272,12 @@ "isHttpMetadata": false }, { - "$id": "9964", + "$id": "9974", "kind": "property", "name": "has_more", "doc": "Whether there are more items available.", "type": { - "$id": "9965", + "$id": "9975", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -135189,13 +135312,13 @@ }, "parameters": [ { - "$id": "9966", + "$id": "9976", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "Number of items to retrieve", "type": { - "$id": "9967", + "$id": "9977", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -135211,13 +135334,13 @@ "decorators": [] }, { - "$id": "9968", + "$id": "9978", "kind": "method", "name": "order", "serializedName": "order", "doc": "Sort order of results by timestamp. Use `asc` for ascending order or `desc` for descending order.", "type": { - "$ref": "9900" + "$ref": "9910" }, "location": "Query", "isApiVersion": false, @@ -135229,13 +135352,13 @@ "decorators": [] }, { - "$id": "9969", + "$id": "9979", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last item from the previous pagination request", "type": { - "$id": "9970", + "$id": "9980", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135251,7 +135374,7 @@ "decorators": [] }, { - "$id": "9971", + "$id": "9981", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -135270,7 +135393,7 @@ ], "response": { "type": { - "$ref": "9910" + "$ref": "9920" }, "resultSegments": [ "data" @@ -135287,7 +135410,7 @@ } }, { - "$id": "9972", + "$id": "9982", "kind": "basic", "name": "createVideo", "accessibility": "public", @@ -135295,7 +135418,7 @@ "doc": "Create a video", "summary": "Create video", "operation": { - "$id": "9973", + "$id": "9983", "name": "createVideo", "resourceName": "OpenAI", "summary": "Create video", @@ -135303,7 +135426,7 @@ "accessibility": "public", "parameters": [ { - "$id": "9974", + "$id": "9984", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -135319,7 +135442,7 @@ "crossLanguageDefinitionId": "OpenAI.createVideo.contentType" }, { - "$id": "9975", + "$id": "9985", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -135335,12 +135458,12 @@ "crossLanguageDefinitionId": "OpenAI.createVideo.accept" }, { - "$id": "9976", + "$id": "9986", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$id": "9977", + "$id": "9987", "kind": "model", "name": "CreateVideoBody", "namespace": "OpenAI", @@ -135351,13 +135474,13 @@ "decorators": [], "properties": [ { - "$id": "9978", + "$id": "9988", "kind": "property", "name": "model", "serializedName": "model", "doc": "The video generation model to use. Defaults to `sora-2`.", "type": { - "$ref": "9916" + "$ref": "9926" }, "optional": true, "readOnly": false, @@ -135379,18 +135502,18 @@ "isHttpMetadata": false }, { - "$id": "9979", + "$id": "9989", "kind": "property", "name": "prompt", "serializedName": "prompt", "doc": "Text prompt that describes the video to generate.", "type": { - "$id": "9980", + "$id": "9990", "kind": "string", "name": "VideoPrompt", "crossLanguageDefinitionId": "OpenAI.VideoPrompt", "baseType": { - "$id": "9981", + "$id": "9991", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135418,13 +135541,13 @@ "isHttpMetadata": false }, { - "$id": "9982", + "$id": "9992", "kind": "property", "name": "input_reference", "serializedName": "input_reference", "doc": "Optional image reference that guides generation.", "type": { - "$id": "9983", + "$id": "9993", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -135451,13 +135574,13 @@ "isHttpMetadata": false }, { - "$id": "9984", + "$id": "9994", "kind": "property", "name": "seconds", "serializedName": "seconds", "doc": "Clip duration in seconds. Defaults to 4 seconds.", "type": { - "$ref": "9945" + "$ref": "9955" }, "optional": true, "readOnly": false, @@ -135479,13 +135602,13 @@ "isHttpMetadata": false }, { - "$id": "9985", + "$id": "9995", "kind": "property", "name": "size", "serializedName": "size", "doc": "Output resolution formatted as width x height. Defaults to 720x1280.", "type": { - "$ref": "9938" + "$ref": "9948" }, "optional": true, "readOnly": false, @@ -135526,7 +135649,7 @@ 200 ], "bodyType": { - "$ref": "9911" + "$ref": "9921" }, "headers": [], "isErrorResponse": false, @@ -135549,7 +135672,7 @@ }, "parameters": [ { - "$id": "9986", + "$id": "9996", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -135566,12 +135689,12 @@ "decorators": [] }, { - "$id": "9987", + "$id": "9997", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "9977" + "$ref": "9987" }, "location": "Body", "isApiVersion": false, @@ -135583,7 +135706,7 @@ "decorators": [] }, { - "$id": "9988", + "$id": "9998", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -135602,7 +135725,7 @@ ], "response": { "type": { - "$ref": "9911" + "$ref": "9921" } }, "isOverride": false, @@ -135611,7 +135734,7 @@ "crossLanguageDefinitionId": "OpenAI.createVideo" }, { - "$id": "9989", + "$id": "9999", "kind": "basic", "name": "DeleteVideo", "accessibility": "public", @@ -135619,7 +135742,7 @@ "doc": "Delete a video", "summary": "Delete video", "operation": { - "$id": "9990", + "$id": "10000", "name": "DeleteVideo", "resourceName": "OpenAI", "summary": "Delete video", @@ -135627,13 +135750,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9991", + "$id": "10001", "kind": "path", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the video to delete.", "type": { - "$id": "9992", + "$id": "10002", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135651,7 +135774,7 @@ "crossLanguageDefinitionId": "OpenAI.DeleteVideo.video_id" }, { - "$id": "9993", + "$id": "10003", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -135673,7 +135796,7 @@ 200 ], "bodyType": { - "$id": "9994", + "$id": "10004", "kind": "model", "name": "DeletedVideoResource", "namespace": "OpenAI", @@ -135684,7 +135807,7 @@ "decorators": [], "properties": [ { - "$id": "9995", + "$id": "10005", "kind": "property", "name": "object", "doc": "The object type that signals the deletion response.", @@ -135701,12 +135824,12 @@ "isHttpMetadata": false }, { - "$id": "9996", + "$id": "10006", "kind": "property", "name": "deleted", "doc": "Indicates that the video resource was deleted.", "type": { - "$id": "9997", + "$id": "10007", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -135722,12 +135845,12 @@ "isHttpMetadata": false }, { - "$id": "9998", + "$id": "10008", "kind": "property", "name": "id", "doc": "Identifier of the deleted video.", "type": { - "$id": "9999", + "$id": "10009", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135762,13 +135885,13 @@ }, "parameters": [ { - "$id": "10000", + "$id": "10010", "kind": "method", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the video to delete.", "type": { - "$id": "10001", + "$id": "10011", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135784,7 +135907,7 @@ "decorators": [] }, { - "$id": "10002", + "$id": "10012", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -135803,7 +135926,7 @@ ], "response": { "type": { - "$ref": "9994" + "$ref": "10004" } }, "isOverride": false, @@ -135812,7 +135935,7 @@ "crossLanguageDefinitionId": "OpenAI.DeleteVideo" }, { - "$id": "10003", + "$id": "10013", "kind": "basic", "name": "GetVideo", "accessibility": "public", @@ -135820,7 +135943,7 @@ "doc": "Retrieve a video", "summary": "Retrieve video", "operation": { - "$id": "10004", + "$id": "10014", "name": "GetVideo", "resourceName": "OpenAI", "summary": "Retrieve video", @@ -135828,13 +135951,13 @@ "accessibility": "public", "parameters": [ { - "$id": "10005", + "$id": "10015", "kind": "path", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the video to retrieve.", "type": { - "$id": "10006", + "$id": "10016", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135852,7 +135975,7 @@ "crossLanguageDefinitionId": "OpenAI.GetVideo.video_id" }, { - "$id": "10007", + "$id": "10017", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -135874,7 +135997,7 @@ 200 ], "bodyType": { - "$ref": "9911" + "$ref": "9921" }, "headers": [], "isErrorResponse": false, @@ -135894,13 +136017,13 @@ }, "parameters": [ { - "$id": "10008", + "$id": "10018", "kind": "method", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the video to retrieve.", "type": { - "$id": "10009", + "$id": "10019", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135916,7 +136039,7 @@ "decorators": [] }, { - "$id": "10010", + "$id": "10020", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -135935,7 +136058,7 @@ ], "response": { "type": { - "$ref": "9911" + "$ref": "9921" } }, "isOverride": false, @@ -135944,7 +136067,7 @@ "crossLanguageDefinitionId": "OpenAI.GetVideo" }, { - "$id": "10011", + "$id": "10021", "kind": "basic", "name": "DownloadVideo", "accessibility": "public", @@ -135952,7 +136075,7 @@ "doc": "Download video content", "summary": "Retrieve video content", "operation": { - "$id": "10012", + "$id": "10022", "name": "DownloadVideo", "resourceName": "OpenAI", "summary": "Retrieve video content", @@ -135960,13 +136083,13 @@ "accessibility": "public", "parameters": [ { - "$id": "10013", + "$id": "10023", "kind": "path", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the video whose media to download.", "type": { - "$id": "10014", + "$id": "10024", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135984,18 +136107,18 @@ "crossLanguageDefinitionId": "OpenAI.RetrieveVideoContent.video_id" }, { - "$id": "10015", + "$id": "10025", "kind": "query", "name": "variant", "serializedName": "variant", "doc": "Which downloadable asset to return. Defaults to the MP4 video.", "type": { - "$id": "10016", + "$id": "10026", "kind": "enum", "name": "VideoContentVariant", "crossLanguageDefinitionId": "OpenAI.VideoContentVariant", "valueType": { - "$id": "10017", + "$id": "10027", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -136003,41 +136126,41 @@ }, "values": [ { - "$id": "10018", + "$id": "10028", "kind": "enumvalue", "name": "video", "value": "video", "valueType": { - "$ref": "10017" + "$ref": "10027" }, "enumType": { - "$ref": "10016" + "$ref": "10026" }, "decorators": [] }, { - "$id": "10019", + "$id": "10029", "kind": "enumvalue", "name": "thumbnail", "value": "thumbnail", "valueType": { - "$ref": "10017" + "$ref": "10027" }, "enumType": { - "$ref": "10016" + "$ref": "10026" }, "decorators": [] }, { - "$id": "10020", + "$id": "10030", "kind": "enumvalue", "name": "spritesheet", "value": "spritesheet", "valueType": { - "$ref": "10017" + "$ref": "10027" }, "enumType": { - "$ref": "10016" + "$ref": "10026" }, "decorators": [] } @@ -136057,12 +136180,12 @@ "readOnly": false }, { - "$id": "10021", + "$id": "10031", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$id": "10022", + "$id": "10032", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -136083,12 +136206,12 @@ 200 ], "bodyType": { - "$id": "10023", + "$id": "10033", "kind": "union", "name": "", "variantTypes": [ { - "$id": "10024", + "$id": "10034", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -136096,7 +136219,7 @@ "decorators": [] }, { - "$id": "10025", + "$id": "10035", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -136141,13 +136264,13 @@ }, "parameters": [ { - "$id": "10026", + "$id": "10036", "kind": "method", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the video whose media to download.", "type": { - "$id": "10027", + "$id": "10037", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -136163,13 +136286,13 @@ "decorators": [] }, { - "$id": "10028", + "$id": "10038", "kind": "method", "name": "variant", "serializedName": "variant", "doc": "Which downloadable asset to return. Defaults to the MP4 video.", "type": { - "$ref": "10016" + "$ref": "10026" }, "location": "Query", "isApiVersion": false, @@ -136181,12 +136304,12 @@ "decorators": [] }, { - "$id": "10029", + "$id": "10039", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "10022" + "$ref": "10032" }, "location": "Header", "isApiVersion": false, @@ -136200,7 +136323,7 @@ ], "response": { "type": { - "$ref": "10023" + "$ref": "10033" } }, "isOverride": false, @@ -136209,7 +136332,7 @@ "crossLanguageDefinitionId": "OpenAI.RetrieveVideoContent" }, { - "$id": "10030", + "$id": "10040", "kind": "basic", "name": "CreateVideoRemix", "accessibility": "public", @@ -136217,7 +136340,7 @@ "doc": "Create a video remix", "summary": "Remix video", "operation": { - "$id": "10031", + "$id": "10041", "name": "CreateVideoRemix", "resourceName": "OpenAI", "summary": "Remix video", @@ -136225,13 +136348,13 @@ "accessibility": "public", "parameters": [ { - "$id": "10032", + "$id": "10042", "kind": "path", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the completed video to remix.", "type": { - "$id": "10033", + "$id": "10043", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -136249,7 +136372,7 @@ "crossLanguageDefinitionId": "OpenAI.CreateVideoRemix.video_id" }, { - "$id": "10034", + "$id": "10044", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -136265,7 +136388,7 @@ "crossLanguageDefinitionId": "OpenAI.CreateVideoRemix.contentType" }, { - "$id": "10035", + "$id": "10045", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -136281,12 +136404,12 @@ "crossLanguageDefinitionId": "OpenAI.CreateVideoRemix.accept" }, { - "$id": "10036", + "$id": "10046", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$id": "10037", + "$id": "10047", "kind": "model", "name": "CreateVideoRemixBody", "namespace": "OpenAI", @@ -136297,18 +136420,18 @@ "decorators": [], "properties": [ { - "$id": "10038", + "$id": "10048", "kind": "property", "name": "prompt", "serializedName": "prompt", "doc": "Updated text prompt that directs the remix generation.", "type": { - "$id": "10039", + "$id": "10049", "kind": "string", "name": "VideoPrompt", "crossLanguageDefinitionId": "OpenAI.VideoPrompt", "baseType": { - "$id": "10040", + "$id": "10050", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -136355,7 +136478,7 @@ 200 ], "bodyType": { - "$ref": "9911" + "$ref": "9921" }, "headers": [], "isErrorResponse": false, @@ -136378,13 +136501,13 @@ }, "parameters": [ { - "$id": "10041", + "$id": "10051", "kind": "method", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the completed video to remix.", "type": { - "$id": "10042", + "$id": "10052", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -136400,7 +136523,7 @@ "decorators": [] }, { - "$id": "10043", + "$id": "10053", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -136417,12 +136540,12 @@ "decorators": [] }, { - "$id": "10044", + "$id": "10054", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "10037" + "$ref": "10047" }, "location": "Body", "isApiVersion": false, @@ -136434,7 +136557,7 @@ "decorators": [] }, { - "$id": "10045", + "$id": "10055", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -136453,7 +136576,7 @@ ], "response": { "type": { - "$ref": "9911" + "$ref": "9921" } }, "isOverride": false, @@ -136464,13 +136587,13 @@ ], "parameters": [ { - "$id": "10046", + "$id": "10056", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "10047", + "$id": "10057", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -136481,7 +136604,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "10048", + "$id": "10058", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -136499,7 +136622,7 @@ "crossLanguageDefinitionId": "OpenAI", "apiVersions": [], "parent": { - "$ref": "8271" + "$ref": "8281" } } ] From 36a759dc03e3992c747c8ca4f27add825943dbeb Mon Sep 17 00:00:00 2001 From: ShivangiReja <45216704+ShivangiReja@users.noreply.github.com> Date: Tue, 25 Nov 2025 11:11:55 -0800 Subject: [PATCH 3/3] fb --- tests/Responses/ResponsesTests.cs | 29 ++++- .../ResponseUsingConversations.json | 118 ++++++++++++++---- .../ResponseUsingConversationsAsync.json | 118 ++++++++++++++---- tests/Utility/TestHelpers.cs | 2 +- 4 files changed, 221 insertions(+), 46 deletions(-) diff --git a/tests/Responses/ResponsesTests.cs b/tests/Responses/ResponsesTests.cs index 14680d93e..21bdf8bb3 100644 --- a/tests/Responses/ResponsesTests.cs +++ b/tests/Responses/ResponsesTests.cs @@ -535,20 +535,20 @@ public async Task ResponseUsingConversations() { "type": "message", "role": "user", - "content": "Say 'this is a test.'" + "content": "tell me a joke" } ] } """u8.ToArray()); using BinaryContent requestContent = BinaryContent.Create(createConversationParameters); - ClientResult conversationResult = await conversationClient.CreateConversationAsync(requestContent); + var conversationResult = await conversationClient.CreateConversationAsync(requestContent); using JsonDocument conversationResultAsJson = JsonDocument.Parse(conversationResult.GetRawResponse().Content.ToString()); string conversationId = conversationResultAsJson.RootElement.GetProperty("id"u8).GetString(); OpenAIResponseClient client = GetTestClient("gpt-4.1"); OpenAIResponse response = await client.CreateResponseAsync( - [ResponseItem.CreateUserMessageItem("Hello, model!")], + [ResponseItem.CreateUserMessageItem("tell me another")], new ResponseCreationOptions() { ConversationId = conversationId, @@ -556,6 +556,29 @@ public async Task ResponseUsingConversations() Assert.That(response, Is.Not.Null); Assert.That(response.ConversationId, Is.EqualTo(conversationId)); + + var conversationResults = conversationClient.GetConversationItemsAsync(conversationId); + var conversationItems = new List(); + await foreach (ClientResult result in conversationResults.GetRawPagesAsync()) + { + using JsonDocument getConversationItemsResultAsJson = JsonDocument.Parse(result.GetRawResponse().Content.ToString()); + foreach (JsonElement element in getConversationItemsResultAsJson.RootElement.GetProperty("data").EnumerateArray()) + { + conversationItems.Add(element.Clone()); + } + } + + Assert.That(conversationItems, Is.Not.Empty, "Expected the conversation to contain items."); + Assert.That(conversationItems.Count, Is.GreaterThanOrEqualTo(2)); + + var lastItem = conversationItems[conversationItems.Count - 1]; + var secondLastItem = conversationItems[conversationItems.Count - 2]; + + string GetContentText(JsonElement item) => + item.GetProperty("content")[0].GetProperty("text").GetString(); + + Assert.That(GetContentText(lastItem), Is.EqualTo("tell me a joke")); + Assert.That(GetContentText(secondLastItem), Is.EqualTo("tell me another")); } [RecordedTest] diff --git a/tests/SessionRecords/ResponsesTests/ResponseUsingConversations.json b/tests/SessionRecords/ResponsesTests/ResponseUsingConversations.json index e3ce18c55..429496752 100644 --- a/tests/SessionRecords/ResponsesTests/ResponseUsingConversations.json +++ b/tests/SessionRecords/ResponsesTests/ResponseUsingConversations.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "179", + "Content-Length": "172", "Content-Type": "application/json", "User-Agent": "OpenAI/2.7.0 (.NET 9.0.11; Microsoft Windows 10.0.26200)" }, @@ -18,7 +18,7 @@ { "type": "message", "role": "user", - "content": "Say 'this is a test.'" + "content": "tell me a joke" } ] }, @@ -26,7 +26,7 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9a3bfbbe89668a1a-BOM", + "CF-RAY": "9a436f20dcee4808-BOM", "Connection": "keep-alive", "Content-Length": "164", "Content-Type": "application/json", @@ -42,14 +42,14 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "432", + "x-envoy-upstream-service-time": "117", "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "conv_6924cd7745508196a24913721af0bb5e08b043bebee1496b", + "id": "conv_6925fea431bc8194a4c88c67ea2867fc03291ba5d682a10e", "object": "conversation", - "created_at": 1764019575, + "created_at": 1764097700, "metadata": { "topic": "test" } @@ -61,7 +61,7 @@ "RequestHeaders": { "Accept": "application/json, text/event-stream", "Authorization": "Sanitized", - "Content-Length": "190", + "Content-Length": "192", "Content-Type": "application/json", "User-Agent": "OpenAI/2.7.0 (.NET 9.0.11; Microsoft Windows 10.0.26200)" }, @@ -74,20 +74,20 @@ "content": [ { "type": "input_text", - "text": "Hello, model!" + "text": "tell me another" } ] } ], - "conversation": "conv_6924cd7745508196a24913721af0bb5e08b043bebee1496b" + "conversation": "conv_6925fea431bc8194a4c88c67ea2867fc03291ba5d682a10e" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9a3bfbcbc9c98a1a-BOM", + "CF-RAY": "9a436f248eae4808-BOM", "Connection": "keep-alive", - "Content-Length": "1578", + "Content-Length": "1631", "Content-Type": "application/json", "Date": "Sanitized", "openai-organization": "Sanitized", @@ -97,26 +97,26 @@ "Server": "cloudflare", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2399", + "x-envoy-upstream-service-time": "2431", "x-ratelimit-limit-requests": "10000", "x-ratelimit-limit-tokens": "30000000", "x-ratelimit-remaining-requests": "9999", - "x-ratelimit-remaining-tokens": "29999959", + "x-ratelimit-remaining-tokens": "29999963", "x-ratelimit-reset-requests": "6ms", "x-ratelimit-reset-tokens": "0s", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "resp_08b043bebee1496b006924cd7a195881969c78b7eaa7678cbe", + "id": "resp_03291ba5d682a10e006925fea4c15c8194bdc6fd8a8091dbee", "object": "response", - "created_at": 1764019578, + "created_at": 1764097700, "status": "completed", "background": false, "billing": { "payer": "developer" }, "conversation": { - "id": "conv_6924cd7745508196a24913721af0bb5e08b043bebee1496b" + "id": "conv_6925fea431bc8194a4c88c67ea2867fc03291ba5d682a10e" }, "error": null, "incomplete_details": null, @@ -126,7 +126,7 @@ "model": "gpt-4.1-2025-04-14", "output": [ { - "id": "msg_08b043bebee1496b006924cd7afd648196b3654061f11bcc6a", + "id": "msg_03291ba5d682a10e006925fea53e288194a866cc71cfc25f07", "type": "message", "status": "completed", "content": [ @@ -134,7 +134,7 @@ "type": "output_text", "annotations": [], "logprobs": [], - "text": "Hello! This is a test. How can I help you today?" + "text": "Sure! Here you go:\n\nWhy did the scarecrow win an award?\n\nBecause he was outstanding in his field!" } ], "role": "assistant" @@ -164,19 +164,95 @@ "top_p": 1.0, "truncation": "disabled", "usage": { - "input_tokens": 22, + "input_tokens": 18, "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 15, + "output_tokens": 24, "output_tokens_details": { "reasoning_tokens": 0 }, - "total_tokens": 37 + "total_tokens": 42 }, "user": null, "metadata": {} } + }, + { + "RequestUri": "https://api.openai.com/v1/conversations/conv_6925fea431bc8194a4c88c67ea2867fc03291ba5d682a10e/items", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "OpenAI/2.7.0 (.NET 9.0.11; Microsoft Windows 10.0.26200)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Alt-Svc": "h3=\":443\"", + "cf-cache-status": "DYNAMIC", + "CF-RAY": "9a436f38bf734808-BOM", + "Connection": "keep-alive", + "Content-Length": "1166", + "Content-Type": "application/json", + "Date": "Sanitized", + "openai-organization": "Sanitized", + "openai-processing-ms": "Sanitized", + "openai-project": "Sanitized", + "openai-version": "2020-10-01", + "Server": "cloudflare", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "105", + "x-openai-proxy-wasm": "v0.1", + "X-Request-ID": "Sanitized" + }, + "ResponseBody": { + "object": "list", + "data": [ + { + "id": "msg_03291ba5d682a10e006925fea53e288194a866cc71cfc25f07", + "type": "message", + "status": "completed", + "content": [ + { + "type": "output_text", + "annotations": [], + "logprobs": [], + "text": "Sure! Here you go:\n\nWhy did the scarecrow win an award?\n\nBecause he was outstanding in his field!" + } + ], + "role": "assistant" + }, + { + "id": "msg_03291ba5d682a10e006925fea4ee788194a1f1ebb8a90e72ac", + "type": "message", + "status": "completed", + "content": [ + { + "type": "input_text", + "text": "tell me another" + } + ], + "role": "user" + }, + { + "id": "msg_6925fea432288194bfac5ae77facf13a03291ba5d682a10e", + "type": "message", + "status": "completed", + "content": [ + { + "type": "input_text", + "text": "tell me a joke" + } + ], + "role": "user" + } + ], + "first_id": "msg_03291ba5d682a10e006925fea53e288194a866cc71cfc25f07", + "has_more": false, + "last_id": "msg_6925fea432288194bfac5ae77facf13a03291ba5d682a10e" + } } ], "Variables": { diff --git a/tests/SessionRecords/ResponsesTests/ResponseUsingConversationsAsync.json b/tests/SessionRecords/ResponsesTests/ResponseUsingConversationsAsync.json index 9d16c7a47..807ec4a87 100644 --- a/tests/SessionRecords/ResponsesTests/ResponseUsingConversationsAsync.json +++ b/tests/SessionRecords/ResponsesTests/ResponseUsingConversationsAsync.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "179", + "Content-Length": "172", "Content-Type": "application/json", "User-Agent": "OpenAI/2.7.0 (.NET 9.0.11; Microsoft Windows 10.0.26200)" }, @@ -18,7 +18,7 @@ { "type": "message", "role": "user", - "content": "Say 'this is a test.'" + "content": "tell me a joke" } ] }, @@ -26,7 +26,7 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9a3bfbee688e8a1a-BOM", + "CF-RAY": "9a436f3efa914808-BOM", "Connection": "keep-alive", "Content-Length": "164", "Content-Type": "application/json", @@ -38,14 +38,14 @@ "Server": "cloudflare", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "150", + "x-envoy-upstream-service-time": "127", "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "conv_6924cd7e1d4881979082cfaf6b644b630a01ba2bba6d673c", + "id": "conv_6925fea8f6608193873c1eed5d053c9401bf3930200ca79a", "object": "conversation", - "created_at": 1764019582, + "created_at": 1764097704, "metadata": { "topic": "test" } @@ -57,7 +57,7 @@ "RequestHeaders": { "Accept": "application/json, text/event-stream", "Authorization": "Sanitized", - "Content-Length": "190", + "Content-Length": "192", "Content-Type": "application/json", "User-Agent": "OpenAI/2.7.0 (.NET 9.0.11; Microsoft Windows 10.0.26200)" }, @@ -70,20 +70,20 @@ "content": [ { "type": "input_text", - "text": "Hello, model!" + "text": "tell me another" } ] } ], - "conversation": "conv_6924cd7e1d4881979082cfaf6b644b630a01ba2bba6d673c" + "conversation": "conv_6925fea8f6608193873c1eed5d053c9401bf3930200ca79a" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9a3bfbf66e658a1a-BOM", + "CF-RAY": "9a436f439d494808-BOM", "Connection": "keep-alive", - "Content-Length": "1578", + "Content-Length": "1631", "Content-Type": "application/json", "Date": "Sanitized", "openai-organization": "Sanitized", @@ -93,26 +93,26 @@ "Server": "cloudflare", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2415", + "x-envoy-upstream-service-time": "2425", "x-ratelimit-limit-requests": "10000", "x-ratelimit-limit-tokens": "30000000", "x-ratelimit-remaining-requests": "9999", - "x-ratelimit-remaining-tokens": "29999959", + "x-ratelimit-remaining-tokens": "29999963", "x-ratelimit-reset-requests": "6ms", "x-ratelimit-reset-tokens": "0s", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "resp_0a01ba2bba6d673c006924cd7f1f0c8197aa9fe22701896c9a", + "id": "resp_01bf3930200ca79a006925fea9b5cc81939886422636ada7fb", "object": "response", - "created_at": 1764019583, + "created_at": 1764097705, "status": "completed", "background": false, "billing": { "payer": "developer" }, "conversation": { - "id": "conv_6924cd7e1d4881979082cfaf6b644b630a01ba2bba6d673c" + "id": "conv_6925fea8f6608193873c1eed5d053c9401bf3930200ca79a" }, "error": null, "incomplete_details": null, @@ -122,7 +122,7 @@ "model": "gpt-4.1-2025-04-14", "output": [ { - "id": "msg_0a01ba2bba6d673c006924cd7f98fc8197b6fecf0e216eb4c3", + "id": "msg_01bf3930200ca79a006925feaa59dc8193a568ed2d08b18a74", "type": "message", "status": "completed", "content": [ @@ -130,7 +130,7 @@ "type": "output_text", "annotations": [], "logprobs": [], - "text": "Hello! This is a test. How can I help you today?" + "text": "Sure! Here you go:\n\nWhy did the scarecrow win an award? \nBecause he was outstanding in his field!" } ], "role": "assistant" @@ -160,19 +160,95 @@ "top_p": 1.0, "truncation": "disabled", "usage": { - "input_tokens": 22, + "input_tokens": 18, "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 15, + "output_tokens": 25, "output_tokens_details": { "reasoning_tokens": 0 }, - "total_tokens": 37 + "total_tokens": 43 }, "user": null, "metadata": {} } + }, + { + "RequestUri": "https://api.openai.com/v1/conversations/conv_6925fea8f6608193873c1eed5d053c9401bf3930200ca79a/items", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "OpenAI/2.7.0 (.NET 9.0.11; Microsoft Windows 10.0.26200)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Alt-Svc": "h3=\":443\"", + "cf-cache-status": "DYNAMIC", + "CF-RAY": "9a436f54db7e4808-BOM", + "Connection": "keep-alive", + "Content-Length": "1166", + "Content-Type": "application/json", + "Date": "Sanitized", + "openai-organization": "Sanitized", + "openai-processing-ms": "Sanitized", + "openai-project": "Sanitized", + "openai-version": "2020-10-01", + "Server": "cloudflare", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "141", + "x-openai-proxy-wasm": "v0.1", + "X-Request-ID": "Sanitized" + }, + "ResponseBody": { + "object": "list", + "data": [ + { + "id": "msg_01bf3930200ca79a006925feaa59dc8193a568ed2d08b18a74", + "type": "message", + "status": "completed", + "content": [ + { + "type": "output_text", + "annotations": [], + "logprobs": [], + "text": "Sure! Here you go:\n\nWhy did the scarecrow win an award? \nBecause he was outstanding in his field!" + } + ], + "role": "assistant" + }, + { + "id": "msg_01bf3930200ca79a006925fea9dc64819391e2a1481f3dd223", + "type": "message", + "status": "completed", + "content": [ + { + "type": "input_text", + "text": "tell me another" + } + ], + "role": "user" + }, + { + "id": "msg_6925fea8f6808193b67b32d7f28aeb1101bf3930200ca79a", + "type": "message", + "status": "completed", + "content": [ + { + "type": "input_text", + "text": "tell me a joke" + } + ], + "role": "user" + } + ], + "first_id": "msg_01bf3930200ca79a006925feaa59dc8193a568ed2d08b18a74", + "has_more": false, + "last_id": "msg_6925fea8f6808193b67b32d7f28aeb1101bf3930200ca79a" + } } ], "Variables": { diff --git a/tests/Utility/TestHelpers.cs b/tests/Utility/TestHelpers.cs index 76472b777..8750b9159 100644 --- a/tests/Utility/TestHelpers.cs +++ b/tests/Utility/TestHelpers.cs @@ -72,7 +72,7 @@ public enum TestScenario TestScenario.Realtime => "gpt-4o-realtime-preview-2024-10-01", TestScenario.Responses => "gpt-4o-mini", TestScenario.Containers => "gpt-4o-mini", - TestScenario.Conversations => "gpt-4o-mini", + TestScenario.Conversations => null, _ => throw new NotImplementedException(), };