diff --git a/api/OpenAI.net8.0.cs b/api/OpenAI.net8.0.cs index eb58847b9..49d31a650 100644 --- a/api/OpenAI.net8.0.cs +++ b/api/OpenAI.net8.0.cs @@ -6058,7 +6058,8 @@ public class ResponseTool : IJsonModel, IPersistableModel headers = null, McpToolFilter allowedTools = null, McpToolCallApprovalPolicy toolCallApprovalPolicy = null); public static McpTool CreateMcpTool(string serverLabel, Uri serverUri, string authorizationToken = null, string serverDescription = null, IDictionary headers = null, McpToolFilter allowedTools = null, McpToolCallApprovalPolicy toolCallApprovalPolicy = null); - public static WebSearchTool CreateWebSearchTool(WebSearchToolLocation userLocation = null, WebSearchToolContextSize? searchContextSize = null); + public static WebSearchPreviewTool CreateWebSearchPreviewTool(WebSearchToolLocation userLocation = null, WebSearchToolContextSize? searchContextSize = null); + public static WebSearchTool CreateWebSearchTool(WebSearchToolLocation userLocation = null, WebSearchToolContextSize? searchContextSize = null, WebSearchToolFilters filters = null); protected virtual ResponseTool JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); protected virtual void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options); protected virtual ResponseTool PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options); @@ -6597,8 +6598,19 @@ public enum WebSearchCallStatus { Failed = 3 } [Experimental("OPENAI001")] + public class WebSearchPreviewTool : ResponseTool, IJsonModel, IPersistableModel { + public WebSearchPreviewTool(); + public WebSearchToolContextSize? SearchContextSize { get; set; } + public WebSearchToolLocation UserLocation { get; set; } + protected override ResponseTool JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); + protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options); + protected override ResponseTool PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options); + protected override BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options); + } + [Experimental("OPENAI001")] public class WebSearchTool : ResponseTool, IJsonModel, IPersistableModel { public WebSearchTool(); + public WebSearchToolFilters Filters { get; set; } public WebSearchToolContextSize? SearchContextSize { get; set; } public WebSearchToolLocation UserLocation { get; set; } protected override ResponseTool JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); @@ -6636,6 +6648,17 @@ public class WebSearchToolApproximateLocation : WebSearchToolLocation, IJsonMode public override readonly string ToString(); } [Experimental("OPENAI001")] + public class WebSearchToolFilters : IJsonModel, IPersistableModel { + public IList AllowedDomains { get; set; } + [EditorBrowsable(EditorBrowsableState.Never)] + [Experimental("SCME0001")] + public ref JsonPatch Patch { get; } + protected virtual WebSearchToolFilters JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); + protected virtual void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options); + protected virtual WebSearchToolFilters PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options); + protected virtual BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options); + } + [Experimental("OPENAI001")] public class WebSearchToolLocation : IJsonModel, IPersistableModel { [EditorBrowsable(EditorBrowsableState.Never)] [Experimental("SCME0001")] diff --git a/api/OpenAI.netstandard2.0.cs b/api/OpenAI.netstandard2.0.cs index 776ad49be..6c0838506 100644 --- a/api/OpenAI.netstandard2.0.cs +++ b/api/OpenAI.netstandard2.0.cs @@ -5320,7 +5320,8 @@ public class ResponseTool : IJsonModel, IPersistableModel headers = null, McpToolFilter allowedTools = null, McpToolCallApprovalPolicy toolCallApprovalPolicy = null); public static McpTool CreateMcpTool(string serverLabel, Uri serverUri, string authorizationToken = null, string serverDescription = null, IDictionary headers = null, McpToolFilter allowedTools = null, McpToolCallApprovalPolicy toolCallApprovalPolicy = null); - public static WebSearchTool CreateWebSearchTool(WebSearchToolLocation userLocation = null, WebSearchToolContextSize? searchContextSize = null); + public static WebSearchPreviewTool CreateWebSearchPreviewTool(WebSearchToolLocation userLocation = null, WebSearchToolContextSize? searchContextSize = null); + public static WebSearchTool CreateWebSearchTool(WebSearchToolLocation userLocation = null, WebSearchToolContextSize? searchContextSize = null, WebSearchToolFilters filters = null); protected virtual ResponseTool JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); protected virtual void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options); protected virtual ResponseTool PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options); @@ -5802,8 +5803,18 @@ public enum WebSearchCallStatus { Completed = 2, Failed = 3 } + public class WebSearchPreviewTool : ResponseTool, IJsonModel, IPersistableModel { + public WebSearchPreviewTool(); + public WebSearchToolContextSize? SearchContextSize { get; set; } + public WebSearchToolLocation UserLocation { get; set; } + protected override ResponseTool JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); + protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options); + protected override ResponseTool PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options); + protected override BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options); + } public class WebSearchTool : ResponseTool, IJsonModel, IPersistableModel { public WebSearchTool(); + public WebSearchToolFilters Filters { get; set; } public WebSearchToolContextSize? SearchContextSize { get; set; } public WebSearchToolLocation UserLocation { get; set; } protected override ResponseTool JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); @@ -5838,6 +5849,15 @@ public class WebSearchToolApproximateLocation : WebSearchToolLocation, IJsonMode public static bool operator !=(WebSearchToolContextSize left, WebSearchToolContextSize right); public override readonly string ToString(); } + public class WebSearchToolFilters : IJsonModel, IPersistableModel { + public IList AllowedDomains { get; set; } + [EditorBrowsable(EditorBrowsableState.Never)] + public ref JsonPatch Patch { get; } + protected virtual WebSearchToolFilters JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); + protected virtual void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options); + protected virtual WebSearchToolFilters PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options); + protected virtual BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options); + } public class WebSearchToolLocation : IJsonModel, IPersistableModel { [EditorBrowsable(EditorBrowsableState.Never)] public ref JsonPatch Patch { get; } diff --git a/specification/base/typespec/responses/models.tsp b/specification/base/typespec/responses/models.tsp index d1406e718..6d3461a9e 100644 --- a/specification/base/typespec/responses/models.tsp +++ b/specification/base/typespec/responses/models.tsp @@ -459,6 +459,7 @@ union ToolType { file_search: "file_search", function: "function", computer_use_preview: "computer_use_preview", + web_search: "web_search", web_search_preview: "web_search_preview", mcp: "mcp", code_interpreter: "code_interpreter", @@ -613,7 +614,31 @@ model WebSearchPreviewTool extends Tool { @doc(""" High level guidance for the amount of context window space to use for the search. One of `low`, `medium`, or `high`. `medium` is the default. """) - search_context_size?: "low" | "medium" | "high"; + search_context_size?: SearchContextSize; +} + +// Tool customization (apply_discriminator): Apply discriminated type base for tools +/** This tool searches the web for relevant results to use in a response. Learn more about the [web search tool](https://platform.openai.com/docs/guides/tools-web-search). */ +model WebSearchTool extends Tool { + /** The type of the web search tool. One of `web_search` or `web_search_2025_08_26`. */ + type: ToolType.web_search; + + filters?: WebSearchToolFilters | null; + + user_location?: Location | null; + + /** High level guidance for the amount of context window space to use for the search. One of `low`, `medium`, or `high`. `medium` is the default. */ + search_context_size?: SearchContextSize; +} + +enum SearchContextSize { + low, + medium, + high, +} + +model WebSearchToolFilters { + allowed_domains?: string[] | null; } // Tool customization: Establish a discriminated base for location approximation diff --git a/specification/client/responses.client.tsp b/specification/client/responses.client.tsp index 3d75bd492..dbccf3478 100644 --- a/specification/client/responses.client.tsp +++ b/specification/client/responses.client.tsp @@ -214,6 +214,7 @@ using TypeSpec.HttpClient.CSharp; @@dynamicModel(ResponseCodeInterpreterCallInterpretingEvent); @@dynamicModel(TopLogProb); @@dynamicModel(LogProb); +@@dynamicModel(WebSearchToolFilters); // custom.tsp models @@dynamicModel(ResponseErrorResponse); @@dynamicModel(DeleteResponseResponse); diff --git a/src/Custom/Responses/Tools/ResponseTool.cs b/src/Custom/Responses/Tools/ResponseTool.cs index d01aacd20..7369895cc 100644 --- a/src/Custom/Responses/Tools/ResponseTool.cs +++ b/src/Custom/Responses/Tools/ResponseTool.cs @@ -50,9 +50,20 @@ public static FileSearchTool CreateFileSearchTool(IEnumerable vectorStor } // CUSTOM: Added factory method as a convenience. - public static WebSearchTool CreateWebSearchTool(WebSearchToolLocation userLocation = null, WebSearchToolContextSize? searchContextSize = null) + public static WebSearchTool CreateWebSearchTool(WebSearchToolLocation userLocation = null, WebSearchToolContextSize? searchContextSize = null, WebSearchToolFilters filters = null) { return new WebSearchTool( + kind: InternalToolType.WebSearch, + patch: default, + userLocation: userLocation, + searchContextSize: searchContextSize, + filters: filters); + } + + // CUSTOM: Added factory method as a convenience. + public static WebSearchPreviewTool CreateWebSearchPreviewTool(WebSearchToolLocation userLocation = null, WebSearchToolContextSize? searchContextSize = null) + { + return new WebSearchPreviewTool( kind: InternalToolType.WebSearchPreview, patch: default, userLocation: userLocation, diff --git a/src/Custom/Responses/Tools/WebSearchPreviewTool.cs b/src/Custom/Responses/Tools/WebSearchPreviewTool.cs new file mode 100644 index 000000000..f658bc298 --- /dev/null +++ b/src/Custom/Responses/Tools/WebSearchPreviewTool.cs @@ -0,0 +1,7 @@ +namespace OpenAI.Responses; + +// CUSTOM: Renamed. +[CodeGenType("WebSearchPreviewTool")] +public partial class WebSearchPreviewTool +{ +} diff --git a/src/Custom/Responses/Tools/WebSearchTool.cs b/src/Custom/Responses/Tools/WebSearchTool.cs index 7b69068f1..525a5ccb7 100644 --- a/src/Custom/Responses/Tools/WebSearchTool.cs +++ b/src/Custom/Responses/Tools/WebSearchTool.cs @@ -1,7 +1,7 @@ namespace OpenAI.Responses; // CUSTOM: Renamed. -[CodeGenType("WebSearchPreviewTool")] +[CodeGenType("WebSearchTool")] public partial class WebSearchTool { -} \ No newline at end of file +} diff --git a/src/Custom/Responses/Tools/WebSearchToolContextSize.cs b/src/Custom/Responses/Tools/WebSearchToolContextSize.cs index c9fd67483..6c80fbce8 100644 --- a/src/Custom/Responses/Tools/WebSearchToolContextSize.cs +++ b/src/Custom/Responses/Tools/WebSearchToolContextSize.cs @@ -1,7 +1,7 @@ namespace OpenAI.Responses; // CUSTOM: Renamed. -[CodeGenType("WebSearchPreviewToolSearchContextSize")] +[CodeGenType("SearchContextSize")] public readonly partial struct WebSearchToolContextSize { } diff --git a/src/Custom/Responses/Tools/WebSearchToolFilters.cs b/src/Custom/Responses/Tools/WebSearchToolFilters.cs new file mode 100644 index 000000000..c94558653 --- /dev/null +++ b/src/Custom/Responses/Tools/WebSearchToolFilters.cs @@ -0,0 +1,7 @@ +namespace OpenAI.Responses; + +// CUSTOM: Renamed. +[CodeGenType("WebSearchToolFilters")] +public partial class WebSearchToolFilters +{ +} diff --git a/src/Generated/Models/OpenAIContext.cs b/src/Generated/Models/OpenAIContext.cs index 00061588e..5d1b262c2 100644 --- a/src/Generated/Models/OpenAIContext.cs +++ b/src/Generated/Models/OpenAIContext.cs @@ -817,8 +817,10 @@ namespace OpenAI [ModelReaderWriterBuildable(typeof(VectorStoreFileError))] [ModelReaderWriterBuildable(typeof(VectorStoreModificationOptions))] [ModelReaderWriterBuildable(typeof(WebSearchCallResponseItem))] + [ModelReaderWriterBuildable(typeof(WebSearchPreviewTool))] [ModelReaderWriterBuildable(typeof(WebSearchTool))] [ModelReaderWriterBuildable(typeof(WebSearchToolApproximateLocation))] + [ModelReaderWriterBuildable(typeof(WebSearchToolFilters))] [ModelReaderWriterBuildable(typeof(WebSearchToolLocation))] [ModelReaderWriterBuildable(typeof(WeightsAndBiasesIntegration))] public partial class OpenAIContext : ModelReaderWriterContext diff --git a/src/Generated/Models/Responses/InternalToolType.cs b/src/Generated/Models/Responses/InternalToolType.cs index cfd98ad1f..29ffedf22 100644 --- a/src/Generated/Models/Responses/InternalToolType.cs +++ b/src/Generated/Models/Responses/InternalToolType.cs @@ -14,6 +14,7 @@ namespace OpenAI.Responses private const string FileSearchValue = "file_search"; private const string FunctionValue = "function"; private const string ComputerUsePreviewValue = "computer_use_preview"; + private const string WebSearchValue = "web_search"; private const string WebSearchPreviewValue = "web_search_preview"; private const string McpValue = "mcp"; private const string CodeInterpreterValue = "code_interpreter"; @@ -33,6 +34,8 @@ public InternalToolType(string value) internal static InternalToolType ComputerUsePreview { get; } = new InternalToolType(ComputerUsePreviewValue); + internal static InternalToolType WebSearch { get; } = new InternalToolType(WebSearchValue); + internal static InternalToolType WebSearchPreview { get; } = new InternalToolType(WebSearchPreviewValue); internal static InternalToolType Mcp { get; } = new InternalToolType(McpValue); diff --git a/src/Generated/Models/Responses/ResponseTool.Serialization.cs b/src/Generated/Models/Responses/ResponseTool.Serialization.cs index ac8de0e2e..e21d03694 100644 --- a/src/Generated/Models/Responses/ResponseTool.Serialization.cs +++ b/src/Generated/Models/Responses/ResponseTool.Serialization.cs @@ -77,6 +77,8 @@ internal static ResponseTool DeserializeResponseTool(JsonElement element, Binary case "computer_use_preview": return ComputerTool.DeserializeComputerTool(element, data, options); case "web_search_preview": + return WebSearchPreviewTool.DeserializeWebSearchPreviewTool(element, data, options); + case "web_search": return WebSearchTool.DeserializeWebSearchTool(element, data, options); case "code_interpreter": return CodeInterpreterTool.DeserializeCodeInterpreterTool(element, data, options); diff --git a/src/Generated/Models/Responses/WebSearchPreviewTool.Serialization.cs b/src/Generated/Models/Responses/WebSearchPreviewTool.Serialization.cs new file mode 100644 index 000000000..b26e930df --- /dev/null +++ b/src/Generated/Models/Responses/WebSearchPreviewTool.Serialization.cs @@ -0,0 +1,171 @@ +// + +#nullable disable + +using System; +using System.ClientModel.Primitives; +using System.Text; +using System.Text.Json; +using OpenAI; + +namespace OpenAI.Responses +{ + public partial class WebSearchPreviewTool : ResponseTool, IJsonModel + { + 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 override 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(WebSearchPreviewTool)} does not support writing '{format}' format."); + } + base.JsonModelWriteCore(writer, options); +#pragma warning disable SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. + if (Optional.IsDefined(UserLocation) && !Patch.Contains("$.user_location"u8)) + { + writer.WritePropertyName("user_location"u8); + writer.WriteObjectValue(UserLocation, options); + } + if (Optional.IsDefined(SearchContextSize) && !Patch.Contains("$.search_context_size"u8)) + { + writer.WritePropertyName("search_context_size"u8); + writer.WriteStringValue(SearchContextSize.Value.ToString()); + } + + Patch.WriteTo(writer); +#pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. + } + + WebSearchPreviewTool IJsonModel.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options) => (WebSearchPreviewTool)JsonModelCreateCore(ref reader, options); + + protected override ResponseTool 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(WebSearchPreviewTool)} does not support reading '{format}' format."); + } + using JsonDocument document = JsonDocument.ParseValue(ref reader); + return DeserializeWebSearchPreviewTool(document.RootElement, null, options); + } + + internal static WebSearchPreviewTool DeserializeWebSearchPreviewTool(JsonElement element, BinaryData data, ModelReaderWriterOptions options) + { + if (element.ValueKind == JsonValueKind.Null) + { + return null; + } + InternalToolType kind = 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. + WebSearchToolLocation userLocation = default; + WebSearchToolContextSize? searchContextSize = default; + foreach (var prop in element.EnumerateObject()) + { + if (prop.NameEquals("type"u8)) + { + kind = new InternalToolType(prop.Value.GetString()); + continue; + } + if (prop.NameEquals("user_location"u8)) + { + if (prop.Value.ValueKind == JsonValueKind.Null) + { + userLocation = null; + continue; + } + userLocation = WebSearchToolLocation.DeserializeWebSearchToolLocation(prop.Value, prop.Value.GetUtf8Bytes(), options); + continue; + } + if (prop.NameEquals("search_context_size"u8)) + { + if (prop.Value.ValueKind == JsonValueKind.Null) + { + continue; + } + searchContextSize = new WebSearchToolContextSize(prop.Value.GetString()); + continue; + } + patch.Set([.. "$."u8, .. Encoding.UTF8.GetBytes(prop.Name)], prop.Value.GetUtf8Bytes()); + } + return new WebSearchPreviewTool(kind, patch, userLocation, searchContextSize); + } + + BinaryData IPersistableModel.Write(ModelReaderWriterOptions options) => PersistableModelWriteCore(options); + + protected override 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(WebSearchPreviewTool)} does not support writing '{options.Format}' format."); + } + } + + WebSearchPreviewTool IPersistableModel.Create(BinaryData data, ModelReaderWriterOptions options) => (WebSearchPreviewTool)PersistableModelCreateCore(data, options); + + protected override ResponseTool 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)) + { + return DeserializeWebSearchPreviewTool(document.RootElement, data, options); + } + default: + throw new FormatException($"The model {nameof(WebSearchPreviewTool)} does not support reading '{options.Format}' format."); + } + } + + string IPersistableModel.GetFormatFromOptions(ModelReaderWriterOptions options) => "J"; + +#pragma warning disable SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. + private bool PropagateGet(ReadOnlySpan jsonPath, out JsonPatch.EncodedValue value) + { + ReadOnlySpan local = jsonPath.SliceToStartOfPropertyName(); + value = default; + + if (local.StartsWith("user_location"u8)) + { + return UserLocation.Patch.TryGetEncodedValue([.. "$"u8, .. local.Slice("user_location"u8.Length)], out value); + } + return false; + } +#pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. + +#pragma warning disable SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. + private bool PropagateSet(ReadOnlySpan jsonPath, JsonPatch.EncodedValue value) + { + ReadOnlySpan local = jsonPath.SliceToStartOfPropertyName(); + + if (local.StartsWith("user_location"u8)) + { + UserLocation.Patch.Set([.. "$"u8, .. local.Slice("user_location"u8.Length)], value); + return true; + } + return false; + } +#pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. + } +} diff --git a/src/Generated/Models/Responses/WebSearchPreviewTool.cs b/src/Generated/Models/Responses/WebSearchPreviewTool.cs new file mode 100644 index 000000000..2b1147c75 --- /dev/null +++ b/src/Generated/Models/Responses/WebSearchPreviewTool.cs @@ -0,0 +1,29 @@ +// + +#nullable disable + +using System.ClientModel.Primitives; +using System.Diagnostics.CodeAnalysis; + +namespace OpenAI.Responses +{ + [Experimental("OPENAI001")] + public partial class WebSearchPreviewTool : ResponseTool + { + public WebSearchPreviewTool() : this(InternalToolType.WebSearchPreview, default, null, default) + { + } + +#pragma warning disable SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. + internal WebSearchPreviewTool(InternalToolType kind, in JsonPatch patch, WebSearchToolLocation userLocation, WebSearchToolContextSize? searchContextSize) : base(kind, patch) + { + UserLocation = userLocation; + SearchContextSize = searchContextSize; + } +#pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. + + public WebSearchToolLocation UserLocation { get; set; } + + public WebSearchToolContextSize? SearchContextSize { get; set; } + } +} diff --git a/src/Generated/Models/Responses/WebSearchTool.Serialization.cs b/src/Generated/Models/Responses/WebSearchTool.Serialization.cs index 5d9ebceb3..768b6db00 100644 --- a/src/Generated/Models/Responses/WebSearchTool.Serialization.cs +++ b/src/Generated/Models/Responses/WebSearchTool.Serialization.cs @@ -36,6 +36,11 @@ protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWri } base.JsonModelWriteCore(writer, options); #pragma warning disable SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. + if (Optional.IsDefined(Filters) && !Patch.Contains("$.filters"u8)) + { + writer.WritePropertyName("filters"u8); + writer.WriteObjectValue(Filters, options); + } if (Optional.IsDefined(UserLocation) && !Patch.Contains("$.user_location"u8)) { writer.WritePropertyName("user_location"u8); @@ -74,6 +79,7 @@ internal static WebSearchTool DeserializeWebSearchTool(JsonElement element, Bina #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. + WebSearchToolFilters filters = default; WebSearchToolLocation userLocation = default; WebSearchToolContextSize? searchContextSize = default; foreach (var prop in element.EnumerateObject()) @@ -83,6 +89,16 @@ internal static WebSearchTool DeserializeWebSearchTool(JsonElement element, Bina kind = new InternalToolType(prop.Value.GetString()); continue; } + if (prop.NameEquals("filters"u8)) + { + if (prop.Value.ValueKind == JsonValueKind.Null) + { + filters = null; + continue; + } + filters = WebSearchToolFilters.DeserializeWebSearchToolFilters(prop.Value, prop.Value.GetUtf8Bytes(), options); + continue; + } if (prop.NameEquals("user_location"u8)) { if (prop.Value.ValueKind == JsonValueKind.Null) @@ -104,7 +120,7 @@ internal static WebSearchTool DeserializeWebSearchTool(JsonElement element, Bina } patch.Set([.. "$."u8, .. Encoding.UTF8.GetBytes(prop.Name)], prop.Value.GetUtf8Bytes()); } - return new WebSearchTool(kind, patch, userLocation, searchContextSize); + return new WebSearchTool(kind, patch, filters, userLocation, searchContextSize); } BinaryData IPersistableModel.Write(ModelReaderWriterOptions options) => PersistableModelWriteCore(options); @@ -139,33 +155,5 @@ protected override ResponseTool PersistableModelCreateCore(BinaryData data, Mode } string IPersistableModel.GetFormatFromOptions(ModelReaderWriterOptions options) => "J"; - -#pragma warning disable SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. - private bool PropagateGet(ReadOnlySpan jsonPath, out JsonPatch.EncodedValue value) - { - ReadOnlySpan local = jsonPath.SliceToStartOfPropertyName(); - value = default; - - if (local.StartsWith("user_location"u8)) - { - return UserLocation.Patch.TryGetEncodedValue([.. "$"u8, .. local.Slice("user_location"u8.Length)], out value); - } - return false; - } -#pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. - -#pragma warning disable SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. - private bool PropagateSet(ReadOnlySpan jsonPath, JsonPatch.EncodedValue value) - { - ReadOnlySpan local = jsonPath.SliceToStartOfPropertyName(); - - if (local.StartsWith("user_location"u8)) - { - UserLocation.Patch.Set([.. "$"u8, .. local.Slice("user_location"u8.Length)], value); - return true; - } - return false; - } -#pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. } } diff --git a/src/Generated/Models/Responses/WebSearchTool.cs b/src/Generated/Models/Responses/WebSearchTool.cs index f37bcf5e8..a6e0b4ec3 100644 --- a/src/Generated/Models/Responses/WebSearchTool.cs +++ b/src/Generated/Models/Responses/WebSearchTool.cs @@ -10,18 +10,21 @@ namespace OpenAI.Responses [Experimental("OPENAI001")] public partial class WebSearchTool : ResponseTool { - public WebSearchTool() : this(InternalToolType.WebSearchPreview, default, null, default) + public WebSearchTool() : this(InternalToolType.WebSearch, default, null, null, default) { } #pragma warning disable SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. - internal WebSearchTool(InternalToolType kind, in JsonPatch patch, WebSearchToolLocation userLocation, WebSearchToolContextSize? searchContextSize) : base(kind, patch) + internal WebSearchTool(InternalToolType kind, in JsonPatch patch, WebSearchToolFilters filters, WebSearchToolLocation userLocation, WebSearchToolContextSize? searchContextSize) : base(kind, patch) { + Filters = filters; UserLocation = userLocation; SearchContextSize = searchContextSize; } #pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. + public WebSearchToolFilters Filters { get; set; } + public WebSearchToolLocation UserLocation { get; set; } public WebSearchToolContextSize? SearchContextSize { get; set; } diff --git a/src/Generated/Models/Responses/WebSearchToolFilters.Serialization.cs b/src/Generated/Models/Responses/WebSearchToolFilters.Serialization.cs new file mode 100644 index 000000000..49962f54c --- /dev/null +++ b/src/Generated/Models/Responses/WebSearchToolFilters.Serialization.cs @@ -0,0 +1,156 @@ +// + +#nullable disable + +using System; +using System.ClientModel.Primitives; +using System.Collections.Generic; +using System.Text; +using System.Text.Json; +using OpenAI; + +namespace OpenAI.Responses +{ + public partial class WebSearchToolFilters : IJsonModel + { + 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(WebSearchToolFilters)} 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("$.allowed_domains"u8)) + { + if (!Patch.IsRemoved("$.allowed_domains"u8)) + { + writer.WritePropertyName("allowed_domains"u8); + writer.WriteRawValue(Patch.GetJson("$.allowed_domains"u8)); + } + } + else if (Optional.IsCollectionDefined(AllowedDomains)) + { + writer.WritePropertyName("allowed_domains"u8); + writer.WriteStartArray(); + for (int i = 0; i < AllowedDomains.Count; i++) + { + if (Patch.IsRemoved(Encoding.UTF8.GetBytes($"$.allowed_domains[{i}]"))) + { + continue; + } + if (AllowedDomains[i] == null) + { + writer.WriteNullValue(); + continue; + } + writer.WriteStringValue(AllowedDomains[i]); + } + Patch.WriteTo(writer, "$.allowed_domains"u8); + writer.WriteEndArray(); + } + + Patch.WriteTo(writer); +#pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. + } + + WebSearchToolFilters IJsonModel.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options) => JsonModelCreateCore(ref reader, options); + + protected virtual WebSearchToolFilters 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(WebSearchToolFilters)} does not support reading '{format}' format."); + } + using JsonDocument document = JsonDocument.ParseValue(ref reader); + return DeserializeWebSearchToolFilters(document.RootElement, null, options); + } + + internal static WebSearchToolFilters DeserializeWebSearchToolFilters(JsonElement element, BinaryData data, ModelReaderWriterOptions options) + { + if (element.ValueKind == JsonValueKind.Null) + { + return null; + } + IList allowedDomains = 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("allowed_domains"u8)) + { + if (prop.Value.ValueKind == JsonValueKind.Null) + { + continue; + } + List array = new List(); + foreach (var item in prop.Value.EnumerateArray()) + { + if (item.ValueKind == JsonValueKind.Null) + { + array.Add(null); + } + else + { + array.Add(item.GetString()); + } + } + allowedDomains = array; + continue; + } + patch.Set([.. "$."u8, .. Encoding.UTF8.GetBytes(prop.Name)], prop.Value.GetUtf8Bytes()); + } + return new WebSearchToolFilters(allowedDomains ?? new ChangeTrackingList(), 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(WebSearchToolFilters)} does not support writing '{options.Format}' format."); + } + } + + WebSearchToolFilters IPersistableModel.Create(BinaryData data, ModelReaderWriterOptions options) => PersistableModelCreateCore(data, options); + + protected virtual WebSearchToolFilters 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)) + { + return DeserializeWebSearchToolFilters(document.RootElement, data, options); + } + default: + throw new FormatException($"The model {nameof(WebSearchToolFilters)} does not support reading '{options.Format}' format."); + } + } + + string IPersistableModel.GetFormatFromOptions(ModelReaderWriterOptions options) => "J"; + } +} diff --git a/src/Generated/Models/Responses/WebSearchToolFilters.cs b/src/Generated/Models/Responses/WebSearchToolFilters.cs new file mode 100644 index 000000000..c3620585f --- /dev/null +++ b/src/Generated/Models/Responses/WebSearchToolFilters.cs @@ -0,0 +1,38 @@ +// + +#nullable disable + +using System.ClientModel.Primitives; +using System.Collections.Generic; +using System.ComponentModel; +using System.Diagnostics.CodeAnalysis; +using OpenAI; + +namespace OpenAI.Responses +{ + [Experimental("OPENAI001")] + public partial class WebSearchToolFilters + { + [Experimental("SCME0001")] + private JsonPatch _patch; + + public WebSearchToolFilters() : this(null, default) + { + } + +#pragma warning disable SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. + internal WebSearchToolFilters(IList allowedDomains, in JsonPatch patch) + { + // Plugin customization: ensure initialization of collections + AllowedDomains = allowedDomains ?? new ChangeTrackingList(); + _patch = patch; + } +#pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. + + [EditorBrowsable(EditorBrowsableState.Never)] + [Experimental("SCME0001")] + public ref JsonPatch Patch => ref _patch; + + public IList AllowedDomains { get; set; } + } +} diff --git a/src/Generated/OpenAIModelFactory.cs b/src/Generated/OpenAIModelFactory.cs index dd942fb56..d5c162cc0 100644 --- a/src/Generated/OpenAIModelFactory.cs +++ b/src/Generated/OpenAIModelFactory.cs @@ -562,6 +562,13 @@ public static FileSearchToolRankingOptions FileSearchToolRankingOptions(FileSear return new FileSearchToolRankingOptions(ranker, scoreThreshold, default); } + public static WebSearchToolFilters WebSearchToolFilters(IEnumerable allowedDomains = default) + { + allowedDomains ??= new ChangeTrackingList(); + + return new WebSearchToolFilters(allowedDomains.ToList(), default); + } + public static ImageGenerationToolInputImageMask ImageGenerationToolInputImageMask(string imageUrl = default, string fileId = default) { return new ImageGenerationToolInputImageMask(imageUrl, fileId, default); diff --git a/tests/Responses/ResponsesTests.cs b/tests/Responses/ResponsesTests.cs index cecde07da..dfa68ba77 100644 --- a/tests/Responses/ResponsesTests.cs +++ b/tests/Responses/ResponsesTests.cs @@ -158,6 +158,36 @@ public async Task WebSearchCall() Assert.That(message.Content[0].Kind, Is.EqualTo(ResponseContentPartKind.OutputText)); Assert.That(message.Content[0].Text, Is.Not.Null.And.Not.Empty); Assert.That(message.Content[0].OutputTextAnnotations, Has.Count.GreaterThan(0)); + + Assert.That(response.Tools.FirstOrDefault(), Is.TypeOf()); + } + + [RecordedTest] + public async Task WebSearchCallPreview() + { + OpenAIResponseClient client = GetTestClient(); + OpenAIResponse response = await client.CreateResponseAsync( + "What was a positive news story from today?", + new ResponseCreationOptions() + { + Tools = + { + ResponseTool.CreateWebSearchPreviewTool() + }, + ToolChoice = ResponseToolChoice.CreateWebSearchChoice() + }); + + Assert.That(response.OutputItems, Has.Count.EqualTo(2)); + Assert.That(response.OutputItems[0], Is.InstanceOf()); + Assert.That(response.OutputItems[1], Is.InstanceOf()); + + MessageResponseItem message = (MessageResponseItem)response.OutputItems[1]; + Assert.That(message.Content, Has.Count.GreaterThan(0)); + Assert.That(message.Content[0].Kind, Is.EqualTo(ResponseContentPartKind.OutputText)); + Assert.That(message.Content[0].Text, Is.Not.Null.And.Not.Empty); + Assert.That(message.Content[0].OutputTextAnnotations, Has.Count.GreaterThan(0)); + + Assert.That(response.Tools.FirstOrDefault(), Is.TypeOf()); } [RecordedTest] diff --git a/tests/SessionRecords/ResponsesTests/WebSearchCall.json b/tests/SessionRecords/ResponsesTests/WebSearchCall.json index e6d1c4f6b..1a26acd48 100644 --- a/tests/SessionRecords/ResponsesTests/WebSearchCall.json +++ b/tests/SessionRecords/ResponsesTests/WebSearchCall.json @@ -6,15 +6,15 @@ "RequestHeaders": { "Accept": "application/json, text/event-stream", "Authorization": "Sanitized", - "Content-Length": "236", + "Content-Length": "228", "Content-Type": "application/json", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.6.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "model": "gpt-4o-mini", "tools": [ { - "type": "web_search_preview" + "type": "web_search" } ], "tool_choice": { @@ -37,27 +37,34 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "98040fceddbcba46-SEA", + "CF-RAY": "99ab6fe7eb84a32e-SEA", "Connection": "keep-alive", - "Content-Length": "4945", + "Content-Length": "5449", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 23:14:48 GMT", + "Date": "Fri, 07 Nov 2025 08:25:01 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "4434", + "openai-processing-ms": "4391", "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": "4438", + "x-envoy-upstream-service-time": "4398", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "resp_08daec5da3ea01920068c9ef63b59881939f16cb89ba475b15", + "id": "resp_067cacb5b60efb0c00690dacd8eca88196a3b37dfcfa945aaa", "object": "response", - "created_at": 1758064483, + "created_at": 1762503896, "status": "completed", "background": false, + "billing": { + "payer": "developer" + }, "error": null, "incomplete_details": null, "instructions": null, @@ -66,7 +73,7 @@ "model": "gpt-4o-mini-2024-07-18", "output": [ { - "id": "ws_08daec5da3ea01920068c9ef63cef48193b088fe2431d5c527", + "id": "ws_067cacb5b60efb0c00690dacd903188196b73a2a55a1527bb8", "type": "web_search_call", "status": "completed", "action": { @@ -75,7 +82,7 @@ } }, { - "id": "msg_08daec5da3ea01920068c9ef64aebc8193bde7c1b30f0dd5ac", + "id": "msg_067cacb5b60efb0c00690dacdab0f0819681e663b03fd451ff", "type": "message", "status": "completed", "content": [ @@ -84,28 +91,35 @@ "annotations": [ { "type": "url_citation", - "end_index": 761, - "start_index": 648, - "title": "Good News This Week: September 13, 2025 - LEGO, Koalas, & Scientists", - "url": "https://www.goodgoodgood.co/articles/good-news-this-week-september-13-2025?utm_source=openai" + "end_index": 466, + "start_index": 334, + "title": "School Assembly News Headlines – 7 November 2025 | Today’s Top Updates » Uniapply Blog", + "url": "https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai" + }, + { + "type": "url_citation", + "end_index": 899, + "start_index": 767, + "title": "School Assembly News Headlines – 7 November 2025 | Today’s Top Updates » Uniapply Blog", + "url": "https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai" }, { "type": "url_citation", - "end_index": 1334, - "start_index": 1191, - "title": "GNR for Tuesday, September 16, 2025 — More and more good news!", - "url": "https://www.dailykos.com/story/2025/9/16/2342576/-GNR-for-Tuesday-September-16-2025-More-and-more-good-news?utm_source=openai" + "end_index": 1259, + "start_index": 1127, + "title": "School Assembly News Headlines – 7 November 2025 | Today’s Top Updates » Uniapply Blog", + "url": "https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai" }, { "type": "url_citation", - "end_index": 1873, - "start_index": 1791, - "title": "The Christian Science Monitor Daily for September 16, 2025", - "url": "https://www.csmonitor.com/Daily/2025/20250916?utm_source=openai" + "end_index": 1690, + "start_index": 1558, + "title": "School Assembly News Headlines – 7 November 2025 | Today’s Top Updates » Uniapply Blog", + "url": "https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai" } ], "logprobs": [], - "text": "On September 16, 2025, several positive news stories emerged:\n\n**Environmental Conservation in Australia**\n\nThe New South Wales government in Australia announced the creation of a significant national park to protect thousands of koalas and halt logging activities. This initiative adds 176,000 hectares of forest to existing reserves, forming one of the state's largest national parks. The park aims to safeguard over 12,000 koalas and includes an immediate moratorium on logging within its boundaries. This decision follows months of advocacy from local environmental groups concerned about ongoing logging and the need for conservation efforts. ([goodgoodgood.co](https://www.goodgoodgood.co/articles/good-news-this-week-september-13-2025?utm_source=openai))\n\n**Advancements in Renewable Energy**\n\nSingapore is set to begin constructing an 86-megawatt floating solar farm on the country's largest reservoir. This project will be the third such floating solar farm in Singapore, joining two others already operational on different reservoirs. The initiative is part of Singapore's efforts to decarbonize the city-state and generate clean energy in an urban environment with limited space. ([dailykos.com](https://www.dailykos.com/story/2025/9/16/2342576/-GNR-for-Tuesday-September-16-2025-More-and-more-good-news?utm_source=openai))\n\n**Global Agreement to Curb Overfishing**\n\nA global agreement to curb overfishing took effect, requiring governments to cut subsidies to fishing fleets to help protect dwindling stocks. The World Trade Organization deal entered into force after Brazil, Kenya, Tonga, and Vietnam signed on, bringing the total to 112 countries. The organization touts the deal as its first environmental pact and the first binding multilateral deal on ocean sustainability. ([csmonitor.com](https://www.csmonitor.com/Daily/2025/20250916?utm_source=openai))\n\nThese stories highlight significant strides in environmental conservation and sustainable development worldwide. " + "text": "On November 7, 2025, several positive news stories emerged:\n\n**India's Environmental Initiatives**\n\nIn a significant environmental effort, citizens across 10 states in India planted over 5 million saplings as part of the \"Clean Air, Green Future\" campaign. This initiative aims to combat air pollution and promote sustainable living. ([uniapply.com](https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai))\n\n**Advancements in Space Exploration**\n\nThe Indian Space Research Organisation (ISRO) successfully tested a prototype of its reusable rocket, marking a major milestone in cost-effective space missions. This achievement is expected to reduce the cost of launching satellites and other space missions. ([uniapply.com](https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai))\n\n**Technological Innovations**\n\nApple launched the iPhone 17 Pro, featuring a new AI-driven camera system and a titanium frame. Pre-orders began in India today, reflecting the country's growing interest in advanced technology. ([uniapply.com](https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai))\n\n**Community Engagement**\n\nIn Mumbai, over 2,000 students participated in a beach cleanup drive at Juhu Beach, collecting nearly 10 tonnes of plastic waste in one day. This event set a record for community-led cleanliness efforts and highlights the city's commitment to environmental conservation. ([uniapply.com](https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai))\n\nThese stories reflect positive developments in environmental conservation, technological innovation, and community engagement. " } ], "role": "assistant" @@ -114,6 +128,7 @@ "parallel_tool_calls": true, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": null, "summary": null @@ -133,7 +148,8 @@ }, "tools": [ { - "type": "web_search_preview", + "type": "web_search", + "filters": null, "search_context_size": "medium", "user_location": { "type": "approximate", @@ -148,15 +164,15 @@ "top_p": 1.0, "truncation": "disabled", "usage": { - "input_tokens": 312, + "input_tokens": 8504, "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 400, + "output_tokens": 388, "output_tokens_details": { "reasoning_tokens": 0 }, - "total_tokens": 712 + "total_tokens": 8892 }, "user": null, "metadata": {} diff --git a/tests/SessionRecords/ResponsesTests/WebSearchCallAsync.json b/tests/SessionRecords/ResponsesTests/WebSearchCallAsync.json index ed43fdd2c..c562864f3 100644 --- a/tests/SessionRecords/ResponsesTests/WebSearchCallAsync.json +++ b/tests/SessionRecords/ResponsesTests/WebSearchCallAsync.json @@ -6,15 +6,15 @@ "RequestHeaders": { "Accept": "application/json, text/event-stream", "Authorization": "Sanitized", - "Content-Length": "236", + "Content-Length": "228", "Content-Type": "application/json", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.6.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "model": "gpt-4o-mini", "tools": [ { - "type": "web_search_preview" + "type": "web_search" } ], "tool_choice": { @@ -37,27 +37,30 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "980411430b9eba46-SEA", + "CF-RAY": "99ab7009189ea32e-SEA", "Connection": "keep-alive", - "Content-Length": "4732", + "Content-Length": "6258", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 23:15:46 GMT", + "Date": "Fri, 07 Nov 2025 08:25:06 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "3158", + "openai-processing-ms": "4550", "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": "3163", + "x-envoy-upstream-service-time": "4557", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "resp_0371fa63edfcc1ef0068c9ef9f47cc8193966cbe9073775d43", + "id": "resp_0a15556125c31cd100690dacddb33881979f34d4711c627252", "object": "response", - "created_at": 1758064543, + "created_at": 1762503901, "status": "completed", "background": false, + "billing": { + "payer": "developer" + }, "error": null, "incomplete_details": null, "instructions": null, @@ -66,7 +69,7 @@ "model": "gpt-4o-mini-2024-07-18", "output": [ { - "id": "ws_0371fa63edfcc1ef0068c9ef9f5a888193974c26f9a550a83d", + "id": "ws_0a15556125c31cd100690dacddcec08197af7eb3658e79cea1", "type": "web_search_call", "status": "completed", "action": { @@ -75,7 +78,7 @@ } }, { - "id": "msg_0371fa63edfcc1ef0068c9ef9ff7ec81939c7464b3909d564a", + "id": "msg_0a15556125c31cd100690dacdebabc819798905687644cbbc2", "type": "message", "status": "completed", "content": [ @@ -84,28 +87,42 @@ "annotations": [ { "type": "url_citation", - "end_index": 595, - "start_index": 482, - "title": "Good News This Week: September 13, 2025 - LEGO, Koalas, & Scientists", - "url": "https://www.goodgoodgood.co/articles/good-news-this-week-september-13-2025?utm_source=openai" + "end_index": 463, + "start_index": 331, + "title": "School Assembly News Headlines – 7 November 2025 | Today’s Top Updates » Uniapply Blog", + "url": "https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai" + }, + { + "type": "url_citation", + "end_index": 854, + "start_index": 722, + "title": "School Assembly News Headlines – 7 November 2025 | Today’s Top Updates » Uniapply Blog", + "url": "https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai" + }, + { + "type": "url_citation", + "end_index": 1269, + "start_index": 1133, + "title": "School Assembly News Headlines: 7 November 2025 - Leverage Edu Discover", + "url": "https://leverageedu.com/discover/school-education/school-assembly-news-headlines-7-november-2025/?utm_source=openai" }, { "type": "url_citation", - "end_index": 1069, - "start_index": 926, - "title": "GNR for Tuesday, September 16, 2025 — More and more good news!", - "url": "https://www.dailykos.com/story/2025/9/16/2342576/-GNR-for-Tuesday-September-16-2025-More-and-more-good-news?utm_source=openai" + "end_index": 1702, + "start_index": 1566, + "title": "School Assembly News Headlines: 7 November 2025 - Leverage Edu Discover", + "url": "https://leverageedu.com/discover/school-education/school-assembly-news-headlines-7-november-2025/?utm_source=openai" }, { "type": "url_citation", - "end_index": 1608, - "start_index": 1526, - "title": "The Christian Science Monitor Daily for September 16, 2025", - "url": "https://www.csmonitor.com/Daily/2025/20250916?utm_source=openai" + "end_index": 2105, + "start_index": 1973, + "title": "School Assembly News Headlines – 7 November 2025 | Today’s Top Updates » Uniapply Blog", + "url": "https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai" } ], "logprobs": [], - "text": "On September 16, 2025, several positive news stories emerged:\n\n**Environmental Conservation in Australia**\n\nThe New South Wales government in Australia announced the creation of a significant national park to protect over 12,000 koalas. This initiative adds 176,000 hectares of forest to existing reserves, making it one of the state's largest national parks. The park will also impose an immediate ban on logging within its boundaries, safeguarding critical biodiversity hotspots. ([goodgoodgood.co](https://www.goodgoodgood.co/articles/good-news-this-week-september-13-2025?utm_source=openai))\n\n**Advancements in Renewable Energy**\n\nSingapore is set to begin constructing an 86-megawatt floating solar farm on the Pandan Reservoir, its largest reservoir. This project aims to generate 296 megawatts of clean energy, contributing significantly to the country's efforts to decarbonize and meet its energy demands sustainably. ([dailykos.com](https://www.dailykos.com/story/2025/9/16/2342576/-GNR-for-Tuesday-September-16-2025-More-and-more-good-news?utm_source=openai))\n\n**Global Efforts to Combat Overfishing**\n\nA global agreement to curb overfishing took effect, requiring governments to cut subsidies to fishing fleets to help protect dwindling stocks. The World Trade Organization deal entered into force after Brazil, Kenya, Tonga, and Vietnam signed on, bringing the total to 112 countries. The organization touts the deal as its first environmental pact and the first binding multilateral deal on ocean sustainability. ([csmonitor.com](https://www.csmonitor.com/Daily/2025/20250916?utm_source=openai))\n\nThese stories highlight significant strides in environmental conservation and sustainable energy, reflecting a global commitment to addressing ecological challenges. " + "text": "Here are some positive news stories from today, November 7, 2025:\n\n**1. India Plants 5 Million Trees for Clean Air Campaign**\n\nAs part of the \"Clean Air, Green Future\" initiative, citizens across 10 states in India planted over 5 million saplings today. This campaign encourages sustainable living and aims to improve air quality. ([uniapply.com](https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai))\n\n**2. Mumbai Students Lead Beach Cleanup Drive**\n\nOver 2,000 students participated in a beach cleanup drive at Juhu Beach in Mumbai, collecting nearly 10 tonnes of plastic waste in one day. This effort set a record for community-led cleanliness initiatives. ([uniapply.com](https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai))\n\n**3. India’s Wealthiest Donate Record Rs 10,380 Crore in 2025**\n\nAccording to the EdelGive Hurun India Philanthropy List 2025, top donors contributed Rs 10,380 crore. The list includes 191 philanthropists, with 12 newcomers, reflecting the rise of large-scale giving in India. ([leverageedu.com](https://leverageedu.com/discover/school-education/school-assembly-news-headlines-7-november-2025/?utm_source=openai))\n\n**4. India’s Solar Module Capacity to Exceed 125 GW by 2025**\n\nIndia’s solar manufacturing capacity is projected to reach 125 GW by 2025, surpassing domestic demand. This growth is fueled by Production-Linked Incentive (PLI) incentives, contributing to the country's renewable energy expansion. ([leverageedu.com](https://leverageedu.com/discover/school-education/school-assembly-news-headlines-7-november-2025/?utm_source=openai))\n\n**5. AI-Based Education Tools Gain Popularity in Schools**\n\nSchools across India are adopting AI-powered learning platforms to personalize education and track student progress. This integration is set to reshape traditional classrooms and enhance learning experiences. ([uniapply.com](https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai))\n\nThese stories highlight positive developments in environmental conservation, community engagement, philanthropy, renewable energy, and educational innovation. " } ], "role": "assistant" @@ -114,6 +131,7 @@ "parallel_tool_calls": true, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": null, "summary": null @@ -133,7 +151,8 @@ }, "tools": [ { - "type": "web_search_preview", + "type": "web_search", + "filters": null, "search_context_size": "medium", "user_location": { "type": "approximate", @@ -148,15 +167,15 @@ "top_p": 1.0, "truncation": "disabled", "usage": { - "input_tokens": 312, + "input_tokens": 8504, "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 368, + "output_tokens": 519, "output_tokens_details": { "reasoning_tokens": 0 }, - "total_tokens": 680 + "total_tokens": 9023 }, "user": null, "metadata": {} diff --git a/tests/SessionRecords/ResponsesTests/WebSearchCallPreview.json b/tests/SessionRecords/ResponsesTests/WebSearchCallPreview.json new file mode 100644 index 000000000..e8903377c --- /dev/null +++ b/tests/SessionRecords/ResponsesTests/WebSearchCallPreview.json @@ -0,0 +1,191 @@ +{ + "Entries": [ + { + "RequestUri": "https://api.openai.com/v1/responses", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/event-stream", + "Authorization": "Sanitized", + "Content-Length": "236", + "Content-Type": "application/json", + "User-Agent": "OpenAI/2.6.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" + }, + "RequestBody": { + "model": "gpt-4o-mini", + "tools": [ + { + "type": "web_search_preview" + } + ], + "tool_choice": { + "type": "web_search_preview" + }, + "input": [ + { + "type": "message", + "role": "user", + "content": [ + { + "type": "input_text", + "text": "What was a positive news story from today?" + } + ] + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "Alt-Svc": "h3=\":443\"", + "cf-cache-status": "DYNAMIC", + "CF-RAY": "99ab70b48c8c6841-SEA", + "Connection": "keep-alive", + "Content-Length": "6236", + "Content-Type": "application/json", + "Date": "Fri, 07 Nov 2025 08:25:35 GMT", + "openai-organization": "Sanitized", + "openai-processing-ms": "6549", + "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": "6554", + "X-Request-ID": "Sanitized" + }, + "ResponseBody": { + "id": "resp_056b55c61ddc70ad00690dacf91da08193a10d51aa3276e4e2", + "object": "response", + "created_at": 1762503929, + "status": "completed", + "background": false, + "billing": { + "payer": "developer" + }, + "error": null, + "incomplete_details": null, + "instructions": null, + "max_output_tokens": null, + "max_tool_calls": null, + "model": "gpt-4o-mini-2024-07-18", + "output": [ + { + "id": "ws_056b55c61ddc70ad00690dacf9317c8193a3032562dc43beeb", + "type": "web_search_call", + "status": "completed", + "action": { + "type": "search", + "query": "What was a positive news story from today?" + } + }, + { + "id": "msg_056b55c61ddc70ad00690dacfb0b50819382b918f7c025690f", + "type": "message", + "status": "completed", + "content": [ + { + "type": "output_text", + "annotations": [ + { + "type": "url_citation", + "end_index": 463, + "start_index": 331, + "title": "School Assembly News Headlines – 7 November 2025 | Today’s Top Updates » Uniapply Blog", + "url": "https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai" + }, + { + "type": "url_citation", + "end_index": 854, + "start_index": 722, + "title": "School Assembly News Headlines – 7 November 2025 | Today’s Top Updates » Uniapply Blog", + "url": "https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai" + }, + { + "type": "url_citation", + "end_index": 1269, + "start_index": 1133, + "title": "School Assembly News Headlines: 7 November 2025 - Leverage Edu Discover", + "url": "https://leverageedu.com/discover/school-education/school-assembly-news-headlines-7-november-2025/?utm_source=openai" + }, + { + "type": "url_citation", + "end_index": 1702, + "start_index": 1566, + "title": "School Assembly News Headlines: 7 November 2025 - Leverage Edu Discover", + "url": "https://leverageedu.com/discover/school-education/school-assembly-news-headlines-7-november-2025/?utm_source=openai" + }, + { + "type": "url_citation", + "end_index": 2105, + "start_index": 1973, + "title": "School Assembly News Headlines – 7 November 2025 | Today’s Top Updates » Uniapply Blog", + "url": "https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai" + } + ], + "logprobs": [], + "text": "Here are some positive news stories from today, November 7, 2025:\n\n**1. India Plants 5 Million Trees for Clean Air Campaign**\n\nAs part of the \"Clean Air, Green Future\" initiative, citizens across 10 states in India planted over 5 million saplings today. This campaign encourages sustainable living and aims to improve air quality. ([uniapply.com](https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai))\n\n**2. Mumbai Students Lead Beach Cleanup Drive**\n\nOver 2,000 students participated in a beach cleanup drive at Juhu Beach in Mumbai, collecting nearly 10 tonnes of plastic waste in one day. This effort set a record for community-led cleanliness initiatives. ([uniapply.com](https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai))\n\n**3. India’s Wealthiest Donate Record Rs 10,380 Crore in 2025**\n\nAccording to the EdelGive Hurun India Philanthropy List 2025, top donors contributed Rs 10,380 crore. The list includes 191 philanthropists, with 12 newcomers, reflecting the rise of large-scale giving in India. ([leverageedu.com](https://leverageedu.com/discover/school-education/school-assembly-news-headlines-7-november-2025/?utm_source=openai))\n\n**4. India’s Solar Module Capacity to Exceed 125 GW by 2025**\n\nIndia's solar manufacturing capacity is projected to reach 125 GW by 2025, surpassing domestic demand. This growth is fueled by Production-Linked Incentive (PLI) incentives, contributing to the country's renewable energy expansion. ([leverageedu.com](https://leverageedu.com/discover/school-education/school-assembly-news-headlines-7-november-2025/?utm_source=openai))\n\n**5. AI-Based Education Tools Gain Popularity in Schools**\n\nSchools across India are adopting AI-powered learning platforms to personalize education and track student progress. This integration is set to reshape traditional classrooms and enhance learning experiences. ([uniapply.com](https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai))\n\nThese stories highlight positive developments in environmental conservation, community engagement, philanthropy, renewable energy, and educational innovation. " + } + ], + "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": "auto", + "store": true, + "temperature": 1.0, + "text": { + "format": { + "type": "text" + }, + "verbosity": "medium" + }, + "tool_choice": { + "type": "web_search_preview" + }, + "tools": [ + { + "type": "web_search_preview", + "search_context_size": "medium", + "user_location": { + "type": "approximate", + "city": null, + "country": "US", + "region": null, + "timezone": null + } + } + ], + "top_logprobs": 0, + "top_p": 1.0, + "truncation": "disabled", + "usage": { + "input_tokens": 312, + "input_tokens_details": { + "cached_tokens": 0 + }, + "output_tokens": 519, + "output_tokens_details": { + "reasoning_tokens": 0 + }, + "total_tokens": 831 + }, + "user": null, + "metadata": {} + } + } + ], + "Variables": { + "OPEN-API-KEY": "api-key" + } +} diff --git a/tests/SessionRecords/ResponsesTests/WebSearchCallPreviewAsync.json b/tests/SessionRecords/ResponsesTests/WebSearchCallPreviewAsync.json new file mode 100644 index 000000000..15a924fa0 --- /dev/null +++ b/tests/SessionRecords/ResponsesTests/WebSearchCallPreviewAsync.json @@ -0,0 +1,187 @@ +{ + "Entries": [ + { + "RequestUri": "https://api.openai.com/v1/responses", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/event-stream", + "Authorization": "Sanitized", + "Content-Length": "236", + "Content-Type": "application/json", + "User-Agent": "OpenAI/2.6.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" + }, + "RequestBody": { + "model": "gpt-4o-mini", + "tools": [ + { + "type": "web_search_preview" + } + ], + "tool_choice": { + "type": "web_search_preview" + }, + "input": [ + { + "type": "message", + "role": "user", + "content": [ + { + "type": "input_text", + "text": "What was a positive news story from today?" + } + ] + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "Alt-Svc": "h3=\":443\"", + "cf-cache-status": "DYNAMIC", + "CF-RAY": "99ab70e018846841-SEA", + "Connection": "keep-alive", + "Content-Length": "6066", + "Content-Type": "application/json", + "Date": "Fri, 07 Nov 2025 08:25:40 GMT", + "openai-organization": "Sanitized", + "openai-processing-ms": "4312", + "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": "4318", + "X-Request-ID": "Sanitized" + }, + "ResponseBody": { + "id": "resp_094b57a7293b3f1600690dad0015dc8190a46a0a24d34c77f1", + "object": "response", + "created_at": 1762503936, + "status": "completed", + "background": false, + "billing": { + "payer": "developer" + }, + "error": null, + "incomplete_details": null, + "instructions": null, + "max_output_tokens": null, + "max_tool_calls": null, + "model": "gpt-4o-mini-2024-07-18", + "output": [ + { + "id": "ws_094b57a7293b3f1600690dad002dcc8190bcbd2997182c65c6", + "type": "web_search_call", + "status": "completed", + "action": { + "type": "search", + "query": "What was a positive news story from today?" + } + }, + { + "id": "msg_094b57a7293b3f1600690dad010420819086151a26b82f51c6", + "type": "message", + "status": "completed", + "content": [ + { + "type": "output_text", + "annotations": [ + { + "type": "url_citation", + "end_index": 463, + "start_index": 331, + "title": "School Assembly News Headlines – 7 November 2025 | Today’s Top Updates » Uniapply Blog", + "url": "https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai" + }, + { + "type": "url_citation", + "end_index": 855, + "start_index": 723, + "title": "School Assembly News Headlines – 7 November 2025 | Today’s Top Updates » Uniapply Blog", + "url": "https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai" + }, + { + "type": "url_citation", + "end_index": 1230, + "start_index": 1098, + "title": "School Assembly News Headlines – 7 November 2025 | Today’s Top Updates » Uniapply Blog", + "url": "https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai" + }, + { + "type": "url_citation", + "end_index": 1645, + "start_index": 1509, + "title": "School Assembly News Headlines: 7 November 2025 - Leverage Edu Discover", + "url": "https://leverageedu.com/discover/school-education/school-assembly-news-headlines-7-november-2025/?utm_source=openai" + }, + { + "type": "url_citation", + "end_index": 1949, + "start_index": 1817, + "title": "School Assembly News Headlines – 7 November 2025 | Today’s Top Updates » Uniapply Blog", + "url": "https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai" + } + ], + "logprobs": [], + "text": "Here are some positive news stories from today, November 7, 2025:\n\n**1. India Plants 5 Million Trees for Clean Air Campaign**\n\nAs part of the \"Clean Air, Green Future\" initiative, citizens across 10 states in India planted over 5 million saplings today. This campaign encourages sustainable living and aims to improve air quality. ([uniapply.com](https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai))\n\n**2. Mumbai Students Lead Beach Cleanup Drive**\n\nOver 2,000 students participated in a beach cleanup drive at Juhu Beach in Mumbai, collecting nearly 10 tonnes of plastic waste in one day. This effort sets a record for community-led cleanliness initiatives. ([uniapply.com](https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai))\n\n**3. IIT Delhi Develops Low-Cost Air Purifier**\n\nResearchers at IIT Delhi have developed a low-cost air purifier capable of removing 98% of particulate matter. This affordable solution aims to improve air quality in households across India. ([uniapply.com](https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai))\n\n**4. India’s Wealthiest Donate Record Rs 10,380 Crore in 2025**\n\nAccording to the EdelGive Hurun India Philanthropy List 2025, top donors contributed Rs 10,380 crore. The list includes 191 philanthropists, with 12 newcomers, reflecting the rise of large-scale giving in India. ([leverageedu.com](https://leverageedu.com/discover/school-education/school-assembly-news-headlines-7-november-2025/?utm_source=openai))\n\n**5. Apple Launches iPhone 17 Pro**\n\nApple has launched the iPhone 17 Pro, featuring a new AI-driven camera system and a titanium frame. Pre-orders began in India today. ([uniapply.com](https://www.uniapply.com/blog/school-assembly-news-headlines-7-november-2025-todays-top-updates/?utm_source=openai))\n\nThese stories highlight positive developments in environmental conservation, technological innovation, and philanthropy. " + } + ], + "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": "auto", + "store": true, + "temperature": 1.0, + "text": { + "format": { + "type": "text" + }, + "verbosity": "medium" + }, + "tool_choice": { + "type": "web_search_preview" + }, + "tools": [ + { + "type": "web_search_preview", + "search_context_size": "medium", + "user_location": { + "type": "approximate", + "city": null, + "country": "US", + "region": null, + "timezone": null + } + } + ], + "top_logprobs": 0, + "top_p": 1.0, + "truncation": "disabled", + "usage": { + "input_tokens": 312, + "input_tokens_details": { + "cached_tokens": 0 + }, + "output_tokens": 495, + "output_tokens_details": { + "reasoning_tokens": 0 + }, + "total_tokens": 807 + }, + "user": null, + "metadata": {} + } + } + ], + "Variables": { + "OPEN-API-KEY": "api-key" + } +} diff --git a/tspCodeModel.json b/tspCodeModel.json index a79680477..e7249c08b 100644 --- a/tspCodeModel.json +++ b/tspCodeModel.json @@ -4984,6 +4984,19 @@ { "$id": "413", "kind": "enumvalue", + "name": "web_search", + "value": "web_search", + "valueType": { + "$ref": "409" + }, + "enumType": { + "$ref": "408" + }, + "decorators": [] + }, + { + "$id": "414", + "kind": "enumvalue", "name": "web_search_preview", "value": "web_search_preview", "valueType": { @@ -4995,7 +5008,7 @@ "decorators": [] }, { - "$id": "414", + "$id": "415", "kind": "enumvalue", "name": "mcp", "value": "mcp", @@ -5008,7 +5021,7 @@ "decorators": [] }, { - "$id": "415", + "$id": "416", "kind": "enumvalue", "name": "code_interpreter", "value": "code_interpreter", @@ -5021,7 +5034,7 @@ "decorators": [] }, { - "$id": "416", + "$id": "417", "kind": "enumvalue", "name": "image_generation", "value": "image_generation", @@ -5034,7 +5047,7 @@ "decorators": [] }, { - "$id": "417", + "$id": "418", "kind": "enumvalue", "name": "local_shell", "value": "local_shell", @@ -5055,12 +5068,12 @@ "decorators": [] }, { - "$id": "418", + "$id": "419", "kind": "enum", "name": "RankingOptionsRanker", "crossLanguageDefinitionId": "OpenAI.RankingOptions.ranker.anonymous", "valueType": { - "$id": "419", + "$id": "420", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5068,28 +5081,28 @@ }, "values": [ { - "$id": "420", + "$id": "421", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "419" + "$ref": "420" }, "enumType": { - "$ref": "418" + "$ref": "419" }, "decorators": [] }, { - "$id": "421", + "$id": "422", "kind": "enumvalue", "name": "default-2024-11-15", "value": "default-2024-11-15", "valueType": { - "$ref": "419" + "$ref": "420" }, "enumType": { - "$ref": "418" + "$ref": "419" }, "decorators": [] } @@ -5101,12 +5114,12 @@ "decorators": [] }, { - "$id": "422", + "$id": "423", "kind": "enum", "name": "ComparisonFilterType", "crossLanguageDefinitionId": "OpenAI.ComparisonFilter.type.anonymous", "valueType": { - "$id": "423", + "$id": "424", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5114,80 +5127,80 @@ }, "values": [ { - "$id": "424", + "$id": "425", "kind": "enumvalue", "name": "eq", "value": "eq", "valueType": { - "$ref": "423" + "$ref": "424" }, "enumType": { - "$ref": "422" + "$ref": "423" }, "decorators": [] }, { - "$id": "425", + "$id": "426", "kind": "enumvalue", "name": "ne", "value": "ne", "valueType": { - "$ref": "423" + "$ref": "424" }, "enumType": { - "$ref": "422" + "$ref": "423" }, "decorators": [] }, { - "$id": "426", + "$id": "427", "kind": "enumvalue", "name": "gt", "value": "gt", "valueType": { - "$ref": "423" + "$ref": "424" }, "enumType": { - "$ref": "422" + "$ref": "423" }, "decorators": [] }, { - "$id": "427", + "$id": "428", "kind": "enumvalue", "name": "gte", "value": "gte", "valueType": { - "$ref": "423" + "$ref": "424" }, "enumType": { - "$ref": "422" + "$ref": "423" }, "decorators": [] }, { - "$id": "428", + "$id": "429", "kind": "enumvalue", "name": "lt", "value": "lt", "valueType": { - "$ref": "423" + "$ref": "424" }, "enumType": { - "$ref": "422" + "$ref": "423" }, "decorators": [] }, { - "$id": "429", + "$id": "430", "kind": "enumvalue", "name": "lte", "value": "lte", "valueType": { - "$ref": "423" + "$ref": "424" }, "enumType": { - "$ref": "422" + "$ref": "423" }, "decorators": [] } @@ -5199,12 +5212,12 @@ "decorators": [] }, { - "$id": "430", + "$id": "431", "kind": "enum", "name": "CompoundFilterType", "crossLanguageDefinitionId": "OpenAI.CompoundFilter.type.anonymous", "valueType": { - "$id": "431", + "$id": "432", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5212,28 +5225,28 @@ }, "values": [ { - "$id": "432", + "$id": "433", "kind": "enumvalue", "name": "and", "value": "and", "valueType": { - "$ref": "431" + "$ref": "432" }, "enumType": { - "$ref": "430" + "$ref": "431" }, "decorators": [] }, { - "$id": "433", + "$id": "434", "kind": "enumvalue", "name": "or", "value": "or", "valueType": { - "$ref": "431" + "$ref": "432" }, "enumType": { - "$ref": "430" + "$ref": "431" }, "decorators": [] } @@ -5245,12 +5258,12 @@ "decorators": [] }, { - "$id": "434", + "$id": "435", "kind": "enum", "name": "ComputerUsePreviewToolEnvironment", "crossLanguageDefinitionId": "OpenAI.ComputerUsePreviewTool.environment.anonymous", "valueType": { - "$id": "435", + "$id": "436", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5258,67 +5271,67 @@ }, "values": [ { - "$id": "436", + "$id": "437", "kind": "enumvalue", "name": "windows", "value": "windows", "valueType": { - "$ref": "435" + "$ref": "436" }, "enumType": { - "$ref": "434" + "$ref": "435" }, "decorators": [] }, { - "$id": "437", + "$id": "438", "kind": "enumvalue", "name": "mac", "value": "mac", "valueType": { - "$ref": "435" + "$ref": "436" }, "enumType": { - "$ref": "434" + "$ref": "435" }, "decorators": [] }, { - "$id": "438", + "$id": "439", "kind": "enumvalue", "name": "linux", "value": "linux", "valueType": { - "$ref": "435" + "$ref": "436" }, "enumType": { - "$ref": "434" + "$ref": "435" }, "decorators": [] }, { - "$id": "439", + "$id": "440", "kind": "enumvalue", "name": "ubuntu", "value": "ubuntu", "valueType": { - "$ref": "435" + "$ref": "436" }, "enumType": { - "$ref": "434" + "$ref": "435" }, "decorators": [] }, { - "$id": "440", + "$id": "441", "kind": "enumvalue", "name": "browser", "value": "browser", "valueType": { - "$ref": "435" + "$ref": "436" }, "enumType": { - "$ref": "434" + "$ref": "435" }, "decorators": [] } @@ -5330,12 +5343,12 @@ "decorators": [] }, { - "$id": "441", + "$id": "442", "kind": "enum", "name": "LocationType", "crossLanguageDefinitionId": "OpenAI.LocationType", "valueType": { - "$id": "442", + "$id": "443", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5343,15 +5356,15 @@ }, "values": [ { - "$id": "443", + "$id": "444", "kind": "enumvalue", "name": "approximate", "value": "approximate", "valueType": { - "$ref": "442" + "$ref": "443" }, "enumType": { - "$ref": "441" + "$ref": "442" }, "decorators": [] } @@ -5363,12 +5376,12 @@ "decorators": [] }, { - "$id": "444", + "$id": "445", "kind": "enum", - "name": "WebSearchPreviewToolSearchContextSize", - "crossLanguageDefinitionId": "OpenAI.WebSearchPreviewTool.search_context_size.anonymous", + "name": "SearchContextSize", + "crossLanguageDefinitionId": "OpenAI.SearchContextSize", "valueType": { - "$id": "445", + "$id": "446", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5376,41 +5389,41 @@ }, "values": [ { - "$id": "446", + "$id": "447", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "445" + "$ref": "446" }, "enumType": { - "$ref": "444" + "$ref": "445" }, "decorators": [] }, { - "$id": "447", + "$id": "448", "kind": "enumvalue", "name": "medium", "value": "medium", "valueType": { - "$ref": "445" + "$ref": "446" }, "enumType": { - "$ref": "444" + "$ref": "445" }, "decorators": [] }, { - "$id": "448", + "$id": "449", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "445" + "$ref": "446" }, "enumType": { - "$ref": "444" + "$ref": "445" }, "decorators": [] } @@ -5422,12 +5435,12 @@ "decorators": [] }, { - "$id": "449", + "$id": "450", "kind": "enum", "name": "CodeInterpreterContainerConfigurationType", "crossLanguageDefinitionId": "OpenAI.CodeInterpreterContainerConfigurationType", "valueType": { - "$id": "450", + "$id": "451", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5435,15 +5448,15 @@ }, "values": [ { - "$id": "451", + "$id": "452", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "450" + "$ref": "451" }, "enumType": { - "$ref": "449" + "$ref": "450" }, "decorators": [] } @@ -5460,12 +5473,12 @@ ] }, { - "$id": "452", + "$id": "453", "kind": "enum", "name": "ImageGenToolModel", "crossLanguageDefinitionId": "", "valueType": { - "$id": "453", + "$id": "454", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5473,12 +5486,12 @@ }, "values": [ { - "$id": "454", + "$id": "455", "kind": "enumvalue", "name": "gpt-image-1", "value": "gpt-image-1", "valueType": { - "$id": "455", + "$id": "456", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -5486,7 +5499,7 @@ "crossLanguageDefinitionId": "TypeSpec.string" }, "enumType": { - "$ref": "452" + "$ref": "453" }, "decorators": [] } @@ -5498,12 +5511,12 @@ "decorators": [] }, { - "$id": "456", + "$id": "457", "kind": "enum", "name": "ImageGenToolQuality", "crossLanguageDefinitionId": "OpenAI.ImageGenTool.quality.anonymous", "valueType": { - "$id": "457", + "$id": "458", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5511,54 +5524,54 @@ }, "values": [ { - "$id": "458", + "$id": "459", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "457" + "$ref": "458" }, "enumType": { - "$ref": "456" + "$ref": "457" }, "decorators": [] }, { - "$id": "459", + "$id": "460", "kind": "enumvalue", "name": "medium", "value": "medium", "valueType": { - "$ref": "457" + "$ref": "458" }, "enumType": { - "$ref": "456" + "$ref": "457" }, "decorators": [] }, { - "$id": "460", + "$id": "461", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "457" + "$ref": "458" }, "enumType": { - "$ref": "456" + "$ref": "457" }, "decorators": [] }, { - "$id": "461", + "$id": "462", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "457" + "$ref": "458" }, "enumType": { - "$ref": "456" + "$ref": "457" }, "decorators": [] } @@ -5570,12 +5583,12 @@ "decorators": [] }, { - "$id": "462", + "$id": "463", "kind": "enum", "name": "ImageGenToolSize", "crossLanguageDefinitionId": "OpenAI.ImageGenTool.size.anonymous", "valueType": { - "$id": "463", + "$id": "464", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5583,54 +5596,54 @@ }, "values": [ { - "$id": "464", + "$id": "465", "kind": "enumvalue", "name": "1024x1024", "value": "1024x1024", "valueType": { - "$ref": "463" + "$ref": "464" }, "enumType": { - "$ref": "462" + "$ref": "463" }, "decorators": [] }, { - "$id": "465", + "$id": "466", "kind": "enumvalue", "name": "1024x1536", "value": "1024x1536", "valueType": { - "$ref": "463" + "$ref": "464" }, "enumType": { - "$ref": "462" + "$ref": "463" }, "decorators": [] }, { - "$id": "466", + "$id": "467", "kind": "enumvalue", "name": "1536x1024", "value": "1536x1024", "valueType": { - "$ref": "463" + "$ref": "464" }, "enumType": { - "$ref": "462" + "$ref": "463" }, "decorators": [] }, { - "$id": "467", + "$id": "468", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "463" + "$ref": "464" }, "enumType": { - "$ref": "462" + "$ref": "463" }, "decorators": [] } @@ -5642,12 +5655,12 @@ "decorators": [] }, { - "$id": "468", + "$id": "469", "kind": "enum", "name": "ImageGenToolOutputFormat", "crossLanguageDefinitionId": "OpenAI.ImageGenTool.output_format.anonymous", "valueType": { - "$id": "469", + "$id": "470", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5655,41 +5668,41 @@ }, "values": [ { - "$id": "470", + "$id": "471", "kind": "enumvalue", "name": "png", "value": "png", "valueType": { - "$ref": "469" + "$ref": "470" }, "enumType": { - "$ref": "468" + "$ref": "469" }, "decorators": [] }, { - "$id": "471", + "$id": "472", "kind": "enumvalue", "name": "webp", "value": "webp", "valueType": { - "$ref": "469" + "$ref": "470" }, "enumType": { - "$ref": "468" + "$ref": "469" }, "decorators": [] }, { - "$id": "472", + "$id": "473", "kind": "enumvalue", "name": "jpeg", "value": "jpeg", "valueType": { - "$ref": "469" + "$ref": "470" }, "enumType": { - "$ref": "468" + "$ref": "469" }, "decorators": [] } @@ -5701,12 +5714,12 @@ "decorators": [] }, { - "$id": "473", + "$id": "474", "kind": "enum", "name": "ImageGenToolModeration", "crossLanguageDefinitionId": "OpenAI.ImageGenTool.moderation.anonymous", "valueType": { - "$id": "474", + "$id": "475", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5714,28 +5727,28 @@ }, "values": [ { - "$id": "475", + "$id": "476", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "474" + "$ref": "475" }, "enumType": { - "$ref": "473" + "$ref": "474" }, "decorators": [] }, { - "$id": "476", + "$id": "477", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "474" + "$ref": "475" }, "enumType": { - "$ref": "473" + "$ref": "474" }, "decorators": [] } @@ -5747,12 +5760,12 @@ "decorators": [] }, { - "$id": "477", + "$id": "478", "kind": "enum", "name": "ImageGenToolBackground", "crossLanguageDefinitionId": "OpenAI.ImageGenTool.background.anonymous", "valueType": { - "$id": "478", + "$id": "479", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5760,41 +5773,41 @@ }, "values": [ { - "$id": "479", + "$id": "480", "kind": "enumvalue", "name": "transparent", "value": "transparent", "valueType": { - "$ref": "478" + "$ref": "479" }, "enumType": { - "$ref": "477" + "$ref": "478" }, "decorators": [] }, { - "$id": "480", + "$id": "481", "kind": "enumvalue", "name": "opaque", "value": "opaque", "valueType": { - "$ref": "478" + "$ref": "479" }, "enumType": { - "$ref": "477" + "$ref": "478" }, "decorators": [] }, { - "$id": "481", + "$id": "482", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "478" + "$ref": "479" }, "enumType": { - "$ref": "477" + "$ref": "478" }, "decorators": [] } @@ -5806,12 +5819,12 @@ "decorators": [] }, { - "$id": "482", + "$id": "483", "kind": "enum", "name": "ImageGenToolInputFidelity", "crossLanguageDefinitionId": "OpenAI.ImageGenTool.input_fidelity.anonymous", "valueType": { - "$id": "483", + "$id": "484", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5819,28 +5832,28 @@ }, "values": [ { - "$id": "484", + "$id": "485", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "483" + "$ref": "484" }, "enumType": { - "$ref": "482" + "$ref": "483" }, "decorators": [] }, { - "$id": "485", + "$id": "486", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "483" + "$ref": "484" }, "enumType": { - "$ref": "482" + "$ref": "483" }, "decorators": [] } @@ -5852,12 +5865,12 @@ "decorators": [] }, { - "$id": "486", + "$id": "487", "kind": "enum", "name": "MCPToolConnectorId", "crossLanguageDefinitionId": "OpenAI.MCPTool.connector_id.anonymous", "valueType": { - "$id": "487", + "$id": "488", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5865,106 +5878,106 @@ }, "values": [ { - "$id": "488", + "$id": "489", "kind": "enumvalue", "name": "connector_dropbox", "value": "connector_dropbox", "valueType": { - "$ref": "487" + "$ref": "488" }, "enumType": { - "$ref": "486" + "$ref": "487" }, "decorators": [] }, { - "$id": "489", + "$id": "490", "kind": "enumvalue", "name": "connector_gmail", "value": "connector_gmail", "valueType": { - "$ref": "487" + "$ref": "488" }, "enumType": { - "$ref": "486" + "$ref": "487" }, "decorators": [] }, { - "$id": "490", + "$id": "491", "kind": "enumvalue", "name": "connector_googlecalendar", "value": "connector_googlecalendar", "valueType": { - "$ref": "487" + "$ref": "488" }, "enumType": { - "$ref": "486" + "$ref": "487" }, "decorators": [] }, { - "$id": "491", + "$id": "492", "kind": "enumvalue", "name": "connector_googledrive", "value": "connector_googledrive", "valueType": { - "$ref": "487" + "$ref": "488" }, "enumType": { - "$ref": "486" + "$ref": "487" }, "decorators": [] }, { - "$id": "492", + "$id": "493", "kind": "enumvalue", "name": "connector_microsoftteams", "value": "connector_microsoftteams", "valueType": { - "$ref": "487" + "$ref": "488" }, "enumType": { - "$ref": "486" + "$ref": "487" }, "decorators": [] }, { - "$id": "493", + "$id": "494", "kind": "enumvalue", "name": "connector_outlookcalendar", "value": "connector_outlookcalendar", "valueType": { - "$ref": "487" + "$ref": "488" }, "enumType": { - "$ref": "486" + "$ref": "487" }, "decorators": [] }, { - "$id": "494", + "$id": "495", "kind": "enumvalue", "name": "connector_outlookemail", "value": "connector_outlookemail", "valueType": { - "$ref": "487" + "$ref": "488" }, "enumType": { - "$ref": "486" + "$ref": "487" }, "decorators": [] }, { - "$id": "495", + "$id": "496", "kind": "enumvalue", "name": "connector_sharepoint", "value": "connector_sharepoint", "valueType": { - "$ref": "487" + "$ref": "488" }, "enumType": { - "$ref": "486" + "$ref": "487" }, "decorators": [] } @@ -5976,12 +5989,12 @@ "decorators": [] }, { - "$id": "496", + "$id": "497", "kind": "enum", "name": "DotNetResponseServiceTier", "crossLanguageDefinitionId": "OpenAI.DotNetResponseServiceTier", "valueType": { - "$id": "497", + "$id": "498", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5989,54 +6002,54 @@ }, "values": [ { - "$id": "498", + "$id": "499", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "497" + "$ref": "498" }, "enumType": { - "$ref": "496" + "$ref": "497" }, "decorators": [] }, { - "$id": "499", + "$id": "500", "kind": "enumvalue", "name": "default", "value": "default", "valueType": { - "$ref": "497" + "$ref": "498" }, "enumType": { - "$ref": "496" + "$ref": "497" }, "decorators": [] }, { - "$id": "500", + "$id": "501", "kind": "enumvalue", "name": "flex", "value": "flex", "valueType": { - "$ref": "497" + "$ref": "498" }, "enumType": { - "$ref": "496" + "$ref": "497" }, "decorators": [] }, { - "$id": "501", + "$id": "502", "kind": "enumvalue", "name": "scale", "value": "scale", "valueType": { - "$ref": "497" + "$ref": "498" }, "enumType": { - "$ref": "496" + "$ref": "497" }, "decorators": [] } @@ -6053,12 +6066,12 @@ ] }, { - "$id": "502", + "$id": "503", "kind": "enum", "name": "ModelIdsResponses", "crossLanguageDefinitionId": "OpenAI.ModelIdsResponses", "valueType": { - "$id": "503", + "$id": "504", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -6066,795 +6079,795 @@ }, "values": [ { - "$id": "504", + "$id": "505", "kind": "enumvalue", "name": "gpt-4.1", "value": "gpt-4.1", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "505", + "$id": "506", "kind": "enumvalue", "name": "gpt-4.1-mini", "value": "gpt-4.1-mini", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "506", + "$id": "507", "kind": "enumvalue", "name": "gpt-4.1-nano", "value": "gpt-4.1-nano", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "507", + "$id": "508", "kind": "enumvalue", "name": "gpt-4.1-2025-04-14", "value": "gpt-4.1-2025-04-14", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "508", + "$id": "509", "kind": "enumvalue", "name": "gpt-4.1-mini-2025-04-14", "value": "gpt-4.1-mini-2025-04-14", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "509", + "$id": "510", "kind": "enumvalue", "name": "gpt-4.1-nano-2025-04-14", "value": "gpt-4.1-nano-2025-04-14", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "510", + "$id": "511", "kind": "enumvalue", "name": "o4-mini", "value": "o4-mini", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "511", + "$id": "512", "kind": "enumvalue", "name": "o4-mini-2025-04-16", "value": "o4-mini-2025-04-16", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "512", + "$id": "513", "kind": "enumvalue", "name": "o3", "value": "o3", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "513", + "$id": "514", "kind": "enumvalue", "name": "o3-2025-04-16", "value": "o3-2025-04-16", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "514", + "$id": "515", "kind": "enumvalue", "name": "o3-mini", "value": "o3-mini", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "515", + "$id": "516", "kind": "enumvalue", "name": "o3-mini-2025-01-31", "value": "o3-mini-2025-01-31", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "516", + "$id": "517", "kind": "enumvalue", "name": "o1", "value": "o1", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "517", + "$id": "518", "kind": "enumvalue", "name": "o1-2024-12-17", "value": "o1-2024-12-17", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "518", + "$id": "519", "kind": "enumvalue", "name": "o1-preview", "value": "o1-preview", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "519", + "$id": "520", "kind": "enumvalue", "name": "o1-preview-2024-09-12", "value": "o1-preview-2024-09-12", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "520", + "$id": "521", "kind": "enumvalue", "name": "o1-mini", "value": "o1-mini", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "521", + "$id": "522", "kind": "enumvalue", "name": "o1-mini-2024-09-12", "value": "o1-mini-2024-09-12", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "522", + "$id": "523", "kind": "enumvalue", "name": "gpt-4o", "value": "gpt-4o", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "523", + "$id": "524", "kind": "enumvalue", "name": "gpt-4o-2024-11-20", "value": "gpt-4o-2024-11-20", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "524", + "$id": "525", "kind": "enumvalue", "name": "gpt-4o-2024-08-06", "value": "gpt-4o-2024-08-06", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "525", + "$id": "526", "kind": "enumvalue", "name": "gpt-4o-2024-05-13", "value": "gpt-4o-2024-05-13", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "526", + "$id": "527", "kind": "enumvalue", "name": "gpt-4o-audio-preview", "value": "gpt-4o-audio-preview", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "527", + "$id": "528", "kind": "enumvalue", "name": "gpt-4o-audio-preview-2024-10-01", "value": "gpt-4o-audio-preview-2024-10-01", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "528", + "$id": "529", "kind": "enumvalue", "name": "gpt-4o-audio-preview-2024-12-17", "value": "gpt-4o-audio-preview-2024-12-17", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "529", + "$id": "530", "kind": "enumvalue", "name": "gpt-4o-audio-preview-2025-06-03", "value": "gpt-4o-audio-preview-2025-06-03", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "530", + "$id": "531", "kind": "enumvalue", "name": "gpt-4o-mini-audio-preview", "value": "gpt-4o-mini-audio-preview", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "531", + "$id": "532", "kind": "enumvalue", "name": "gpt-4o-mini-audio-preview-2024-12-17", "value": "gpt-4o-mini-audio-preview-2024-12-17", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "532", + "$id": "533", "kind": "enumvalue", "name": "gpt-4o-search-preview", "value": "gpt-4o-search-preview", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "533", + "$id": "534", "kind": "enumvalue", "name": "gpt-4o-mini-search-preview", "value": "gpt-4o-mini-search-preview", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "534", + "$id": "535", "kind": "enumvalue", "name": "gpt-4o-search-preview-2025-03-11", "value": "gpt-4o-search-preview-2025-03-11", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "535", + "$id": "536", "kind": "enumvalue", "name": "gpt-4o-mini-search-preview-2025-03-11", "value": "gpt-4o-mini-search-preview-2025-03-11", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "536", + "$id": "537", "kind": "enumvalue", "name": "chatgpt-4o-latest", "value": "chatgpt-4o-latest", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "537", + "$id": "538", "kind": "enumvalue", "name": "codex-mini-latest", "value": "codex-mini-latest", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "538", + "$id": "539", "kind": "enumvalue", "name": "gpt-4o-mini", "value": "gpt-4o-mini", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "539", + "$id": "540", "kind": "enumvalue", "name": "gpt-4o-mini-2024-07-18", "value": "gpt-4o-mini-2024-07-18", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "540", + "$id": "541", "kind": "enumvalue", "name": "gpt-4-turbo", "value": "gpt-4-turbo", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "541", + "$id": "542", "kind": "enumvalue", "name": "gpt-4-turbo-2024-04-09", "value": "gpt-4-turbo-2024-04-09", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "542", + "$id": "543", "kind": "enumvalue", "name": "gpt-4-0125-preview", "value": "gpt-4-0125-preview", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "543", + "$id": "544", "kind": "enumvalue", "name": "gpt-4-turbo-preview", "value": "gpt-4-turbo-preview", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "544", + "$id": "545", "kind": "enumvalue", "name": "gpt-4-1106-preview", "value": "gpt-4-1106-preview", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "545", + "$id": "546", "kind": "enumvalue", "name": "gpt-4-vision-preview", "value": "gpt-4-vision-preview", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "546", + "$id": "547", "kind": "enumvalue", "name": "gpt-4", "value": "gpt-4", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "547", + "$id": "548", "kind": "enumvalue", "name": "gpt-4-0314", "value": "gpt-4-0314", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "548", + "$id": "549", "kind": "enumvalue", "name": "gpt-4-0613", "value": "gpt-4-0613", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "549", + "$id": "550", "kind": "enumvalue", "name": "gpt-4-32k", "value": "gpt-4-32k", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "550", + "$id": "551", "kind": "enumvalue", "name": "gpt-4-32k-0314", "value": "gpt-4-32k-0314", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "551", + "$id": "552", "kind": "enumvalue", "name": "gpt-4-32k-0613", "value": "gpt-4-32k-0613", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "552", + "$id": "553", "kind": "enumvalue", "name": "gpt-3.5-turbo", "value": "gpt-3.5-turbo", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "553", + "$id": "554", "kind": "enumvalue", "name": "gpt-3.5-turbo-16k", "value": "gpt-3.5-turbo-16k", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "554", + "$id": "555", "kind": "enumvalue", "name": "gpt-3.5-turbo-0301", "value": "gpt-3.5-turbo-0301", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "555", + "$id": "556", "kind": "enumvalue", "name": "gpt-3.5-turbo-0613", "value": "gpt-3.5-turbo-0613", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "556", + "$id": "557", "kind": "enumvalue", "name": "gpt-3.5-turbo-1106", "value": "gpt-3.5-turbo-1106", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "557", + "$id": "558", "kind": "enumvalue", "name": "gpt-3.5-turbo-0125", "value": "gpt-3.5-turbo-0125", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "558", + "$id": "559", "kind": "enumvalue", "name": "gpt-3.5-turbo-16k-0613", "value": "gpt-3.5-turbo-16k-0613", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "559", + "$id": "560", "kind": "enumvalue", "name": "o1-pro", "value": "o1-pro", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "560", + "$id": "561", "kind": "enumvalue", "name": "o1-pro-2025-03-19", "value": "o1-pro-2025-03-19", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "561", + "$id": "562", "kind": "enumvalue", "name": "o3-pro", "value": "o3-pro", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "562", + "$id": "563", "kind": "enumvalue", "name": "o3-pro-2025-06-10", "value": "o3-pro-2025-06-10", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "563", + "$id": "564", "kind": "enumvalue", "name": "computer-use-preview", "value": "computer-use-preview", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] }, { - "$id": "564", + "$id": "565", "kind": "enumvalue", "name": "computer-use-preview-2025-03-11", "value": "computer-use-preview-2025-03-11", "valueType": { - "$ref": "503" + "$ref": "504" }, "enumType": { - "$ref": "502" + "$ref": "503" }, "decorators": [] } @@ -6866,12 +6879,12 @@ "decorators": [] }, { - "$id": "565", + "$id": "566", "kind": "enum", "name": "ReasoningSummary", "crossLanguageDefinitionId": "OpenAI.Reasoning.summary.anonymous", "valueType": { - "$id": "566", + "$id": "567", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -6879,41 +6892,41 @@ }, "values": [ { - "$id": "567", + "$id": "568", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "566" + "$ref": "567" }, "enumType": { - "$ref": "565" + "$ref": "566" }, "decorators": [] }, { - "$id": "568", + "$id": "569", "kind": "enumvalue", "name": "concise", "value": "concise", "valueType": { - "$ref": "566" + "$ref": "567" }, "enumType": { - "$ref": "565" + "$ref": "566" }, "decorators": [] }, { - "$id": "569", + "$id": "570", "kind": "enumvalue", "name": "detailed", "value": "detailed", "valueType": { - "$ref": "566" + "$ref": "567" }, "enumType": { - "$ref": "565" + "$ref": "566" }, "decorators": [] } @@ -6925,12 +6938,12 @@ "decorators": [] }, { - "$id": "570", + "$id": "571", "kind": "enum", "name": "ReasoningGenerateSummary", "crossLanguageDefinitionId": "OpenAI.Reasoning.generate_summary.anonymous", "valueType": { - "$id": "571", + "$id": "572", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -6938,41 +6951,41 @@ }, "values": [ { - "$id": "572", + "$id": "573", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "571" + "$ref": "572" }, "enumType": { - "$ref": "570" + "$ref": "571" }, "decorators": [] }, { - "$id": "573", + "$id": "574", "kind": "enumvalue", "name": "concise", "value": "concise", "valueType": { - "$ref": "571" + "$ref": "572" }, "enumType": { - "$ref": "570" + "$ref": "571" }, "decorators": [] }, { - "$id": "574", + "$id": "575", "kind": "enumvalue", "name": "detailed", "value": "detailed", "valueType": { - "$ref": "571" + "$ref": "572" }, "enumType": { - "$ref": "570" + "$ref": "571" }, "decorators": [] } @@ -6984,12 +6997,12 @@ "decorators": [] }, { - "$id": "575", + "$id": "576", "kind": "enum", "name": "ToolChoiceOptions", "crossLanguageDefinitionId": "OpenAI.ToolChoiceOptions", "valueType": { - "$id": "576", + "$id": "577", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -6997,41 +7010,41 @@ }, "values": [ { - "$id": "577", + "$id": "578", "kind": "enumvalue", "name": "none", "value": "none", "valueType": { - "$ref": "576" + "$ref": "577" }, "enumType": { - "$ref": "575" + "$ref": "576" }, "decorators": [] }, { - "$id": "578", + "$id": "579", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "576" + "$ref": "577" }, "enumType": { - "$ref": "575" + "$ref": "576" }, "decorators": [] }, { - "$id": "579", + "$id": "580", "kind": "enumvalue", "name": "required", "value": "required", "valueType": { - "$ref": "576" + "$ref": "577" }, "enumType": { - "$ref": "575" + "$ref": "576" }, "decorators": [] } @@ -7044,12 +7057,12 @@ "decorators": [] }, { - "$id": "580", + "$id": "581", "kind": "enum", "name": "ToolChoiceObjectType", "crossLanguageDefinitionId": "OpenAI.ToolChoiceObjectType", "valueType": { - "$id": "581", + "$id": "582", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7057,93 +7070,93 @@ }, "values": [ { - "$id": "582", + "$id": "583", "kind": "enumvalue", "name": "file_search", "value": "file_search", "valueType": { - "$ref": "581" + "$ref": "582" }, "enumType": { - "$ref": "580" + "$ref": "581" }, "decorators": [] }, { - "$id": "583", + "$id": "584", "kind": "enumvalue", "name": "function", "value": "function", "valueType": { - "$ref": "581" + "$ref": "582" }, "enumType": { - "$ref": "580" + "$ref": "581" }, "decorators": [] }, { - "$id": "584", + "$id": "585", "kind": "enumvalue", "name": "computer", "value": "computer_use_preview", "valueType": { - "$ref": "581" + "$ref": "582" }, "enumType": { - "$ref": "580" + "$ref": "581" }, "decorators": [] }, { - "$id": "585", + "$id": "586", "kind": "enumvalue", "name": "web_search", "value": "web_search_preview", "valueType": { - "$ref": "581" + "$ref": "582" }, "enumType": { - "$ref": "580" + "$ref": "581" }, "decorators": [] }, { - "$id": "586", + "$id": "587", "kind": "enumvalue", "name": "image_generation", "value": "image_generation", "valueType": { - "$ref": "581" + "$ref": "582" }, "enumType": { - "$ref": "580" + "$ref": "581" }, "decorators": [] }, { - "$id": "587", + "$id": "588", "kind": "enumvalue", "name": "code_interpreter", "value": "code_interpreter", "valueType": { - "$ref": "581" + "$ref": "582" }, "enumType": { - "$ref": "580" + "$ref": "581" }, "decorators": [] }, { - "$id": "588", + "$id": "589", "kind": "enumvalue", "name": "mcp", "value": "mcp", "valueType": { - "$ref": "581" + "$ref": "582" }, "enumType": { - "$ref": "580" + "$ref": "581" }, "decorators": [] } @@ -7156,12 +7169,12 @@ "decorators": [] }, { - "$id": "589", + "$id": "590", "kind": "enum", "name": "CreateResponseTruncation", "crossLanguageDefinitionId": "OpenAI.CreateResponse.truncation.anonymous", "valueType": { - "$id": "590", + "$id": "591", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7169,28 +7182,28 @@ }, "values": [ { - "$id": "591", + "$id": "592", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "590" + "$ref": "591" }, "enumType": { - "$ref": "589" + "$ref": "590" }, "decorators": [] }, { - "$id": "592", + "$id": "593", "kind": "enumvalue", "name": "disabled", "value": "disabled", "valueType": { - "$ref": "590" + "$ref": "591" }, "enumType": { - "$ref": "589" + "$ref": "590" }, "decorators": [] } @@ -7202,12 +7215,12 @@ "decorators": [] }, { - "$id": "593", + "$id": "594", "kind": "enum", "name": "ItemContentType", "crossLanguageDefinitionId": "OpenAI.ItemContentType", "valueType": { - "$id": "594", + "$id": "595", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7215,93 +7228,93 @@ }, "values": [ { - "$id": "595", + "$id": "596", "kind": "enumvalue", "name": "input_text", "value": "input_text", "valueType": { - "$ref": "594" + "$ref": "595" }, "enumType": { - "$ref": "593" + "$ref": "594" }, "decorators": [] }, { - "$id": "596", + "$id": "597", "kind": "enumvalue", "name": "input_audio", "value": "input_audio", "valueType": { - "$ref": "594" + "$ref": "595" }, "enumType": { - "$ref": "593" + "$ref": "594" }, "decorators": [] }, { - "$id": "597", + "$id": "598", "kind": "enumvalue", "name": "input_image", "value": "input_image", "valueType": { - "$ref": "594" + "$ref": "595" }, "enumType": { - "$ref": "593" + "$ref": "594" }, "decorators": [] }, { - "$id": "598", + "$id": "599", "kind": "enumvalue", "name": "input_file", "value": "input_file", "valueType": { - "$ref": "594" + "$ref": "595" }, "enumType": { - "$ref": "593" + "$ref": "594" }, "decorators": [] }, { - "$id": "599", + "$id": "600", "kind": "enumvalue", "name": "output_text", "value": "output_text", "valueType": { - "$ref": "594" + "$ref": "595" }, "enumType": { - "$ref": "593" + "$ref": "594" }, "decorators": [] }, { - "$id": "600", + "$id": "601", "kind": "enumvalue", "name": "output_audio", "value": "output_audio", "valueType": { - "$ref": "594" + "$ref": "595" }, "enumType": { - "$ref": "593" + "$ref": "594" }, "decorators": [] }, { - "$id": "601", + "$id": "602", "kind": "enumvalue", "name": "refusal", "value": "refusal", "valueType": { - "$ref": "594" + "$ref": "595" }, "enumType": { - "$ref": "593" + "$ref": "594" }, "decorators": [] } @@ -7314,12 +7327,12 @@ "decorators": [] }, { - "$id": "602", + "$id": "603", "kind": "enum", "name": "ItemContentInputAudioFormat", "crossLanguageDefinitionId": "OpenAI.ItemContentInputAudio.format.anonymous", "valueType": { - "$id": "603", + "$id": "604", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7327,28 +7340,28 @@ }, "values": [ { - "$id": "604", + "$id": "605", "kind": "enumvalue", "name": "mp3", "value": "mp3", "valueType": { - "$ref": "603" + "$ref": "604" }, "enumType": { - "$ref": "602" + "$ref": "603" }, "decorators": [] }, { - "$id": "605", + "$id": "606", "kind": "enumvalue", "name": "wav", "value": "wav", "valueType": { - "$ref": "603" + "$ref": "604" }, "enumType": { - "$ref": "602" + "$ref": "603" }, "decorators": [] } @@ -7360,12 +7373,12 @@ "decorators": [] }, { - "$id": "606", + "$id": "607", "kind": "enum", "name": "ItemContentInputImageDetail", "crossLanguageDefinitionId": "OpenAI.ItemContentInputImage.detail.anonymous", "valueType": { - "$id": "607", + "$id": "608", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7373,41 +7386,41 @@ }, "values": [ { - "$id": "608", + "$id": "609", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "607" + "$ref": "608" }, "enumType": { - "$ref": "606" + "$ref": "607" }, "decorators": [] }, { - "$id": "609", + "$id": "610", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "607" + "$ref": "608" }, "enumType": { - "$ref": "606" + "$ref": "607" }, "decorators": [] }, { - "$id": "610", + "$id": "611", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "607" + "$ref": "608" }, "enumType": { - "$ref": "606" + "$ref": "607" }, "decorators": [] } @@ -7419,12 +7432,12 @@ "decorators": [] }, { - "$id": "611", + "$id": "612", "kind": "enum", "name": "AnnotationType", "crossLanguageDefinitionId": "OpenAI.AnnotationType", "valueType": { - "$id": "612", + "$id": "613", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7432,54 +7445,54 @@ }, "values": [ { - "$id": "613", + "$id": "614", "kind": "enumvalue", "name": "file_citation", "value": "file_citation", "valueType": { - "$ref": "612" + "$ref": "613" }, "enumType": { - "$ref": "611" + "$ref": "612" }, "decorators": [] }, { - "$id": "614", + "$id": "615", "kind": "enumvalue", "name": "url_citation", "value": "url_citation", "valueType": { - "$ref": "612" + "$ref": "613" }, "enumType": { - "$ref": "611" + "$ref": "612" }, "decorators": [] }, { - "$id": "615", + "$id": "616", "kind": "enumvalue", "name": "file_path", "value": "file_path", "valueType": { - "$ref": "612" + "$ref": "613" }, "enumType": { - "$ref": "611" + "$ref": "612" }, "decorators": [] }, { - "$id": "616", + "$id": "617", "kind": "enumvalue", "name": "container_file_citation", "value": "container_file_citation", "valueType": { - "$ref": "612" + "$ref": "613" }, "enumType": { - "$ref": "611" + "$ref": "612" }, "decorators": [] } @@ -7491,12 +7504,12 @@ "decorators": [] }, { - "$id": "617", + "$id": "618", "kind": "enum", "name": "ItemType", "crossLanguageDefinitionId": "OpenAI.ItemType", "valueType": { - "$id": "618", + "$id": "619", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7504,223 +7517,223 @@ }, "values": [ { - "$id": "619", + "$id": "620", "kind": "enumvalue", "name": "message", "value": "message", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "617" + "$ref": "618" }, "decorators": [] }, { - "$id": "620", + "$id": "621", "kind": "enumvalue", "name": "file_search_call", "value": "file_search_call", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "617" + "$ref": "618" }, "decorators": [] }, { - "$id": "621", + "$id": "622", "kind": "enumvalue", "name": "function_call", "value": "function_call", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "617" + "$ref": "618" }, "decorators": [] }, { - "$id": "622", + "$id": "623", "kind": "enumvalue", "name": "function_call_output", "value": "function_call_output", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "617" + "$ref": "618" }, "decorators": [] }, { - "$id": "623", + "$id": "624", "kind": "enumvalue", "name": "computer_call", "value": "computer_call", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "617" + "$ref": "618" }, "decorators": [] }, { - "$id": "624", + "$id": "625", "kind": "enumvalue", "name": "computer_call_output", "value": "computer_call_output", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "617" + "$ref": "618" }, "decorators": [] }, { - "$id": "625", + "$id": "626", "kind": "enumvalue", "name": "web_search_call", "value": "web_search_call", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "617" + "$ref": "618" }, "decorators": [] }, { - "$id": "626", + "$id": "627", "kind": "enumvalue", "name": "reasoning", "value": "reasoning", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "617" + "$ref": "618" }, "decorators": [] }, { - "$id": "627", + "$id": "628", "kind": "enumvalue", "name": "item_reference", "value": "item_reference", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "617" + "$ref": "618" }, "decorators": [] }, { - "$id": "628", + "$id": "629", "kind": "enumvalue", "name": "image_generation_call", "value": "image_generation_call", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "617" + "$ref": "618" }, "decorators": [] }, { - "$id": "629", + "$id": "630", "kind": "enumvalue", "name": "code_interpreter_call", "value": "code_interpreter_call", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "617" + "$ref": "618" }, "decorators": [] }, { - "$id": "630", + "$id": "631", "kind": "enumvalue", "name": "local_shell_call", "value": "local_shell_call", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "617" + "$ref": "618" }, "decorators": [] }, { - "$id": "631", + "$id": "632", "kind": "enumvalue", "name": "local_shell_call_output", "value": "local_shell_call_output", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "617" + "$ref": "618" }, "decorators": [] }, { - "$id": "632", + "$id": "633", "kind": "enumvalue", "name": "mcp_list_tools", "value": "mcp_list_tools", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "617" + "$ref": "618" }, "decorators": [] }, { - "$id": "633", + "$id": "634", "kind": "enumvalue", "name": "mcp_approval_request", "value": "mcp_approval_request", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "617" + "$ref": "618" }, "decorators": [] }, { - "$id": "634", + "$id": "635", "kind": "enumvalue", "name": "mcp_approval_response", "value": "mcp_approval_response", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "617" + "$ref": "618" }, "decorators": [] }, { - "$id": "635", + "$id": "636", "kind": "enumvalue", "name": "mcp_call", "value": "mcp_call", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "617" + "$ref": "618" }, "decorators": [] } @@ -7732,12 +7745,12 @@ "decorators": [] }, { - "$id": "636", + "$id": "637", "kind": "enum", "name": "ResponsesMessageRole", "crossLanguageDefinitionId": "OpenAI.ResponsesMessageRole", "valueType": { - "$id": "637", + "$id": "638", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7745,54 +7758,54 @@ }, "values": [ { - "$id": "638", + "$id": "639", "kind": "enumvalue", "name": "system", "value": "system", "valueType": { - "$ref": "637" + "$ref": "638" }, "enumType": { - "$ref": "636" + "$ref": "637" }, "decorators": [] }, { - "$id": "639", + "$id": "640", "kind": "enumvalue", "name": "developer", "value": "developer", "valueType": { - "$ref": "637" + "$ref": "638" }, "enumType": { - "$ref": "636" + "$ref": "637" }, "decorators": [] }, { - "$id": "640", + "$id": "641", "kind": "enumvalue", "name": "user", "value": "user", "valueType": { - "$ref": "637" + "$ref": "638" }, "enumType": { - "$ref": "636" + "$ref": "637" }, "decorators": [] }, { - "$id": "641", + "$id": "642", "kind": "enumvalue", "name": "assistant", "value": "assistant", "valueType": { - "$ref": "637" + "$ref": "638" }, "enumType": { - "$ref": "636" + "$ref": "637" }, "decorators": [] } @@ -7805,12 +7818,12 @@ "decorators": [] }, { - "$id": "642", + "$id": "643", "kind": "enum", "name": "ComputerActionType", "crossLanguageDefinitionId": "OpenAI.ComputerActionType", "valueType": { - "$id": "643", + "$id": "644", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7818,119 +7831,119 @@ }, "values": [ { - "$id": "644", + "$id": "645", "kind": "enumvalue", "name": "screenshot", "value": "screenshot", "valueType": { - "$ref": "643" + "$ref": "644" }, "enumType": { - "$ref": "642" + "$ref": "643" }, "decorators": [] }, { - "$id": "645", + "$id": "646", "kind": "enumvalue", "name": "click", "value": "click", "valueType": { - "$ref": "643" + "$ref": "644" }, "enumType": { - "$ref": "642" + "$ref": "643" }, "decorators": [] }, { - "$id": "646", + "$id": "647", "kind": "enumvalue", "name": "double_click", "value": "double_click", "valueType": { - "$ref": "643" + "$ref": "644" }, "enumType": { - "$ref": "642" + "$ref": "643" }, "decorators": [] }, { - "$id": "647", + "$id": "648", "kind": "enumvalue", "name": "scroll", "value": "scroll", "valueType": { - "$ref": "643" + "$ref": "644" }, "enumType": { - "$ref": "642" + "$ref": "643" }, "decorators": [] }, { - "$id": "648", + "$id": "649", "kind": "enumvalue", "name": "type", "value": "type", "valueType": { - "$ref": "643" + "$ref": "644" }, "enumType": { - "$ref": "642" + "$ref": "643" }, "decorators": [] }, { - "$id": "649", + "$id": "650", "kind": "enumvalue", "name": "wait", "value": "wait", "valueType": { - "$ref": "643" + "$ref": "644" }, "enumType": { - "$ref": "642" + "$ref": "643" }, "decorators": [] }, { - "$id": "650", + "$id": "651", "kind": "enumvalue", "name": "keypress", "value": "keypress", "valueType": { - "$ref": "643" + "$ref": "644" }, "enumType": { - "$ref": "642" + "$ref": "643" }, "decorators": [] }, { - "$id": "651", + "$id": "652", "kind": "enumvalue", "name": "drag", "value": "drag", "valueType": { - "$ref": "643" + "$ref": "644" }, "enumType": { - "$ref": "642" + "$ref": "643" }, "decorators": [] }, { - "$id": "652", + "$id": "653", "kind": "enumvalue", "name": "move", "value": "move", "valueType": { - "$ref": "643" + "$ref": "644" }, "enumType": { - "$ref": "642" + "$ref": "643" }, "decorators": [] } @@ -7942,12 +7955,12 @@ "decorators": [] }, { - "$id": "653", + "$id": "654", "kind": "enum", "name": "ComputerActionClickButton", "crossLanguageDefinitionId": "OpenAI.ComputerActionClick.button.anonymous", "valueType": { - "$id": "654", + "$id": "655", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7955,67 +7968,67 @@ }, "values": [ { - "$id": "655", + "$id": "656", "kind": "enumvalue", "name": "left", "value": "left", "valueType": { - "$ref": "654" + "$ref": "655" }, "enumType": { - "$ref": "653" + "$ref": "654" }, "decorators": [] }, { - "$id": "656", + "$id": "657", "kind": "enumvalue", "name": "right", "value": "right", "valueType": { - "$ref": "654" + "$ref": "655" }, "enumType": { - "$ref": "653" + "$ref": "654" }, "decorators": [] }, { - "$id": "657", + "$id": "658", "kind": "enumvalue", "name": "wheel", "value": "wheel", "valueType": { - "$ref": "654" + "$ref": "655" }, "enumType": { - "$ref": "653" + "$ref": "654" }, "decorators": [] }, { - "$id": "658", + "$id": "659", "kind": "enumvalue", "name": "back", "value": "back", "valueType": { - "$ref": "654" + "$ref": "655" }, "enumType": { - "$ref": "653" + "$ref": "654" }, "decorators": [] }, { - "$id": "659", + "$id": "660", "kind": "enumvalue", "name": "forward", "value": "forward", "valueType": { - "$ref": "654" + "$ref": "655" }, "enumType": { - "$ref": "653" + "$ref": "654" }, "decorators": [] } @@ -8027,12 +8040,12 @@ "decorators": [] }, { - "$id": "660", + "$id": "661", "kind": "enum", "name": "ComputerToolCallOutputItemOutputType", "crossLanguageDefinitionId": "OpenAI.ComputerToolCallOutputItemOutputType", "valueType": { - "$id": "661", + "$id": "662", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8040,15 +8053,15 @@ }, "values": [ { - "$id": "662", + "$id": "663", "kind": "enumvalue", "name": "screenshot", "value": "computer_screenshot", "valueType": { - "$ref": "661" + "$ref": "662" }, "enumType": { - "$ref": "660" + "$ref": "661" }, "decorators": [] } @@ -8061,12 +8074,12 @@ "decorators": [] }, { - "$id": "663", + "$id": "664", "kind": "enum", "name": "ReasoningItemSummaryPartType", "crossLanguageDefinitionId": "OpenAI.ReasoningItemSummaryPartType", "valueType": { - "$id": "664", + "$id": "665", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8074,15 +8087,15 @@ }, "values": [ { - "$id": "665", + "$id": "666", "kind": "enumvalue", "name": "summary_text", "value": "summary_text", "valueType": { - "$ref": "664" + "$ref": "665" }, "enumType": { - "$ref": "663" + "$ref": "664" }, "decorators": [] } @@ -8099,12 +8112,12 @@ ] }, { - "$id": "666", + "$id": "667", "kind": "enum", "name": "CodeInterpreterToolOutputType", "crossLanguageDefinitionId": "OpenAI.CodeInterpreterToolOutputType", "valueType": { - "$id": "667", + "$id": "668", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8112,28 +8125,28 @@ }, "values": [ { - "$id": "668", + "$id": "669", "kind": "enumvalue", "name": "logs", "value": "logs", "valueType": { - "$ref": "667" + "$ref": "668" }, "enumType": { - "$ref": "666" + "$ref": "667" }, "decorators": [] }, { - "$id": "669", + "$id": "670", "kind": "enumvalue", "name": "image", "value": "image", "valueType": { - "$ref": "667" + "$ref": "668" }, "enumType": { - "$ref": "666" + "$ref": "667" }, "decorators": [] } @@ -8150,12 +8163,12 @@ ] }, { - "$id": "670", + "$id": "671", "kind": "enum", "name": "Includable", "crossLanguageDefinitionId": "OpenAI.Includable", "valueType": { - "$id": "671", + "$id": "672", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8163,67 +8176,67 @@ }, "values": [ { - "$id": "672", + "$id": "673", "kind": "enumvalue", "name": "file_search_call.results", "value": "file_search_call.results", "valueType": { - "$ref": "671" + "$ref": "672" }, "enumType": { - "$ref": "670" + "$ref": "671" }, "decorators": [] }, { - "$id": "673", + "$id": "674", "kind": "enumvalue", "name": "message.input_image.image_url", "value": "message.input_image.image_url", "valueType": { - "$ref": "671" + "$ref": "672" }, "enumType": { - "$ref": "670" + "$ref": "671" }, "decorators": [] }, { - "$id": "674", + "$id": "675", "kind": "enumvalue", "name": "computer_call_output.output.image_url", "value": "computer_call_output.output.image_url", "valueType": { - "$ref": "671" + "$ref": "672" }, "enumType": { - "$ref": "670" + "$ref": "671" }, "decorators": [] }, { - "$id": "675", + "$id": "676", "kind": "enumvalue", "name": "reasoning.encrypted_content", "value": "reasoning.encrypted_content", "valueType": { - "$ref": "671" + "$ref": "672" }, "enumType": { - "$ref": "670" + "$ref": "671" }, "decorators": [] }, { - "$id": "676", + "$id": "677", "kind": "enumvalue", "name": "code_interpreter_call.outputs", "value": "code_interpreter_call.outputs", "valueType": { - "$ref": "671" + "$ref": "672" }, "enumType": { - "$ref": "670" + "$ref": "671" }, "decorators": [] } @@ -8236,12 +8249,12 @@ "decorators": [] }, { - "$id": "677", + "$id": "678", "kind": "enum", "name": "ResponseStatus", "crossLanguageDefinitionId": "OpenAI.Response.status.anonymous", "valueType": { - "$id": "678", + "$id": "679", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8249,80 +8262,80 @@ }, "values": [ { - "$id": "679", + "$id": "680", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "678" + "$ref": "679" }, "enumType": { - "$ref": "677" + "$ref": "678" }, "decorators": [] }, { - "$id": "680", + "$id": "681", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "678" + "$ref": "679" }, "enumType": { - "$ref": "677" + "$ref": "678" }, "decorators": [] }, { - "$id": "681", + "$id": "682", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "678" + "$ref": "679" }, "enumType": { - "$ref": "677" + "$ref": "678" }, "decorators": [] }, { - "$id": "682", + "$id": "683", "kind": "enumvalue", "name": "cancelled", "value": "cancelled", "valueType": { - "$ref": "678" + "$ref": "679" }, "enumType": { - "$ref": "677" + "$ref": "678" }, "decorators": [] }, { - "$id": "683", + "$id": "684", "kind": "enumvalue", "name": "queued", "value": "queued", "valueType": { - "$ref": "678" + "$ref": "679" }, "enumType": { - "$ref": "677" + "$ref": "678" }, "decorators": [] }, { - "$id": "684", + "$id": "685", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "678" + "$ref": "679" }, "enumType": { - "$ref": "677" + "$ref": "678" }, "decorators": [] } @@ -8334,12 +8347,12 @@ "decorators": [] }, { - "$id": "685", + "$id": "686", "kind": "enum", "name": "ResponseErrorCode", "crossLanguageDefinitionId": "OpenAI.ResponseErrorCode", "valueType": { - "$id": "686", + "$id": "687", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8347,236 +8360,236 @@ }, "values": [ { - "$id": "687", + "$id": "688", "kind": "enumvalue", "name": "server_error", "value": "server_error", "valueType": { - "$ref": "686" + "$ref": "687" }, "enumType": { - "$ref": "685" + "$ref": "686" }, "decorators": [] }, { - "$id": "688", + "$id": "689", "kind": "enumvalue", "name": "rate_limit_exceeded", "value": "rate_limit_exceeded", "valueType": { - "$ref": "686" + "$ref": "687" }, "enumType": { - "$ref": "685" + "$ref": "686" }, "decorators": [] }, { - "$id": "689", + "$id": "690", "kind": "enumvalue", "name": "invalid_prompt", "value": "invalid_prompt", "valueType": { - "$ref": "686" + "$ref": "687" }, "enumType": { - "$ref": "685" + "$ref": "686" }, "decorators": [] }, { - "$id": "690", + "$id": "691", "kind": "enumvalue", "name": "vector_store_timeout", "value": "vector_store_timeout", "valueType": { - "$ref": "686" + "$ref": "687" }, "enumType": { - "$ref": "685" + "$ref": "686" }, "decorators": [] }, { - "$id": "691", + "$id": "692", "kind": "enumvalue", "name": "invalid_image", "value": "invalid_image", "valueType": { - "$ref": "686" + "$ref": "687" }, "enumType": { - "$ref": "685" + "$ref": "686" }, "decorators": [] }, { - "$id": "692", + "$id": "693", "kind": "enumvalue", "name": "invalid_image_format", "value": "invalid_image_format", "valueType": { - "$ref": "686" + "$ref": "687" }, "enumType": { - "$ref": "685" + "$ref": "686" }, "decorators": [] }, { - "$id": "693", + "$id": "694", "kind": "enumvalue", "name": "invalid_base64_image", "value": "invalid_base64_image", "valueType": { - "$ref": "686" + "$ref": "687" }, "enumType": { - "$ref": "685" + "$ref": "686" }, "decorators": [] }, { - "$id": "694", + "$id": "695", "kind": "enumvalue", "name": "invalid_image_url", "value": "invalid_image_url", "valueType": { - "$ref": "686" + "$ref": "687" }, "enumType": { - "$ref": "685" + "$ref": "686" }, "decorators": [] }, { - "$id": "695", + "$id": "696", "kind": "enumvalue", "name": "image_too_large", "value": "image_too_large", "valueType": { - "$ref": "686" + "$ref": "687" }, "enumType": { - "$ref": "685" + "$ref": "686" }, "decorators": [] }, { - "$id": "696", + "$id": "697", "kind": "enumvalue", "name": "image_too_small", "value": "image_too_small", "valueType": { - "$ref": "686" + "$ref": "687" }, "enumType": { - "$ref": "685" + "$ref": "686" }, "decorators": [] }, { - "$id": "697", + "$id": "698", "kind": "enumvalue", "name": "image_parse_error", "value": "image_parse_error", "valueType": { - "$ref": "686" + "$ref": "687" }, "enumType": { - "$ref": "685" + "$ref": "686" }, "decorators": [] }, { - "$id": "698", + "$id": "699", "kind": "enumvalue", "name": "image_content_policy_violation", "value": "image_content_policy_violation", "valueType": { - "$ref": "686" + "$ref": "687" }, "enumType": { - "$ref": "685" + "$ref": "686" }, "decorators": [] }, { - "$id": "699", + "$id": "700", "kind": "enumvalue", "name": "invalid_image_mode", "value": "invalid_image_mode", "valueType": { - "$ref": "686" + "$ref": "687" }, "enumType": { - "$ref": "685" + "$ref": "686" }, "decorators": [] }, { - "$id": "700", + "$id": "701", "kind": "enumvalue", "name": "image_file_too_large", "value": "image_file_too_large", "valueType": { - "$ref": "686" + "$ref": "687" }, "enumType": { - "$ref": "685" + "$ref": "686" }, "decorators": [] }, { - "$id": "701", + "$id": "702", "kind": "enumvalue", "name": "unsupported_image_media_type", "value": "unsupported_image_media_type", "valueType": { - "$ref": "686" + "$ref": "687" }, "enumType": { - "$ref": "685" + "$ref": "686" }, "decorators": [] }, { - "$id": "702", + "$id": "703", "kind": "enumvalue", "name": "empty_image_file", "value": "empty_image_file", "valueType": { - "$ref": "686" + "$ref": "687" }, "enumType": { - "$ref": "685" + "$ref": "686" }, "decorators": [] }, { - "$id": "703", + "$id": "704", "kind": "enumvalue", "name": "failed_to_download_image", "value": "failed_to_download_image", "valueType": { - "$ref": "686" + "$ref": "687" }, "enumType": { - "$ref": "685" + "$ref": "686" }, "decorators": [] }, { - "$id": "704", + "$id": "705", "kind": "enumvalue", "name": "image_file_not_found", "value": "image_file_not_found", "valueType": { - "$ref": "686" + "$ref": "687" }, "enumType": { - "$ref": "685" + "$ref": "686" }, "decorators": [] } @@ -8589,12 +8602,12 @@ "decorators": [] }, { - "$id": "705", + "$id": "706", "kind": "enum", "name": "ResponseIncompleteDetailsReason", "crossLanguageDefinitionId": "OpenAI.Response.incomplete_details.reason.anonymous", "valueType": { - "$id": "706", + "$id": "707", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8602,28 +8615,28 @@ }, "values": [ { - "$id": "707", + "$id": "708", "kind": "enumvalue", "name": "max_output_tokens", "value": "max_output_tokens", "valueType": { - "$ref": "706" + "$ref": "707" }, "enumType": { - "$ref": "705" + "$ref": "706" }, "decorators": [] }, { - "$id": "708", + "$id": "709", "kind": "enumvalue", "name": "content_filter", "value": "content_filter", "valueType": { - "$ref": "706" + "$ref": "707" }, "enumType": { - "$ref": "705" + "$ref": "706" }, "decorators": [] } @@ -8635,12 +8648,12 @@ "decorators": [] }, { - "$id": "709", + "$id": "710", "kind": "enum", "name": "ResponsesMessageItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.ResponsesMessageItemResource.status.anonymous", "valueType": { - "$id": "710", + "$id": "711", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8648,41 +8661,41 @@ }, "values": [ { - "$id": "711", + "$id": "712", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "710" + "$ref": "711" }, "enumType": { - "$ref": "709" + "$ref": "710" }, "decorators": [] }, { - "$id": "712", + "$id": "713", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "710" + "$ref": "711" }, "enumType": { - "$ref": "709" + "$ref": "710" }, "decorators": [] }, { - "$id": "713", + "$id": "714", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "710" + "$ref": "711" }, "enumType": { - "$ref": "709" + "$ref": "710" }, "decorators": [] } @@ -8694,12 +8707,12 @@ "decorators": [] }, { - "$id": "714", + "$id": "715", "kind": "enum", "name": "ComputerToolCallOutputItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.ComputerToolCallOutputItemResource.status.anonymous", "valueType": { - "$id": "715", + "$id": "716", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8707,41 +8720,41 @@ }, "values": [ { - "$id": "716", + "$id": "717", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "715" + "$ref": "716" }, "enumType": { - "$ref": "714" + "$ref": "715" }, "decorators": [] }, { - "$id": "717", + "$id": "718", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "715" + "$ref": "716" }, "enumType": { - "$ref": "714" + "$ref": "715" }, "decorators": [] }, { - "$id": "718", + "$id": "719", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "715" + "$ref": "716" }, "enumType": { - "$ref": "714" + "$ref": "715" }, "decorators": [] } @@ -8753,12 +8766,12 @@ "decorators": [] }, { - "$id": "719", + "$id": "720", "kind": "enum", "name": "FunctionToolCallItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.FunctionToolCallItemResource.status.anonymous", "valueType": { - "$id": "720", + "$id": "721", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8766,41 +8779,41 @@ }, "values": [ { - "$id": "721", + "$id": "722", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "720" + "$ref": "721" }, "enumType": { - "$ref": "719" + "$ref": "720" }, "decorators": [] }, { - "$id": "722", + "$id": "723", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "720" + "$ref": "721" }, "enumType": { - "$ref": "719" + "$ref": "720" }, "decorators": [] }, { - "$id": "723", + "$id": "724", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "720" + "$ref": "721" }, "enumType": { - "$ref": "719" + "$ref": "720" }, "decorators": [] } @@ -8812,12 +8825,12 @@ "decorators": [] }, { - "$id": "724", + "$id": "725", "kind": "enum", "name": "FunctionToolCallOutputItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.FunctionToolCallOutputItemResource.status.anonymous", "valueType": { - "$id": "725", + "$id": "726", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8825,41 +8838,41 @@ }, "values": [ { - "$id": "726", + "$id": "727", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "725" + "$ref": "726" }, "enumType": { - "$ref": "724" + "$ref": "725" }, "decorators": [] }, { - "$id": "727", + "$id": "728", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "725" + "$ref": "726" }, "enumType": { - "$ref": "724" + "$ref": "725" }, "decorators": [] }, { - "$id": "728", + "$id": "729", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "725" + "$ref": "726" }, "enumType": { - "$ref": "724" + "$ref": "725" }, "decorators": [] } @@ -8871,12 +8884,12 @@ "decorators": [] }, { - "$id": "729", + "$id": "730", "kind": "enum", "name": "FileSearchToolCallItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.FileSearchToolCallItemResource.status.anonymous", "valueType": { - "$id": "730", + "$id": "731", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8884,67 +8897,67 @@ }, "values": [ { - "$id": "731", + "$id": "732", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "730" + "$ref": "731" }, "enumType": { - "$ref": "729" + "$ref": "730" }, "decorators": [] }, { - "$id": "732", + "$id": "733", "kind": "enumvalue", "name": "searching", "value": "searching", "valueType": { - "$ref": "730" + "$ref": "731" }, "enumType": { - "$ref": "729" + "$ref": "730" }, "decorators": [] }, { - "$id": "733", + "$id": "734", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "730" + "$ref": "731" }, "enumType": { - "$ref": "729" + "$ref": "730" }, "decorators": [] }, { - "$id": "734", + "$id": "735", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "730" + "$ref": "731" }, "enumType": { - "$ref": "729" + "$ref": "730" }, "decorators": [] }, { - "$id": "735", + "$id": "736", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "730" + "$ref": "731" }, "enumType": { - "$ref": "729" + "$ref": "730" }, "decorators": [] } @@ -8956,12 +8969,12 @@ "decorators": [] }, { - "$id": "736", + "$id": "737", "kind": "enum", "name": "ComputerToolCallItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.ComputerToolCallItemResource.status.anonymous", "valueType": { - "$id": "737", + "$id": "738", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8969,41 +8982,41 @@ }, "values": [ { - "$id": "738", + "$id": "739", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "737" + "$ref": "738" }, "enumType": { - "$ref": "736" + "$ref": "737" }, "decorators": [] }, { - "$id": "739", + "$id": "740", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "737" + "$ref": "738" }, "enumType": { - "$ref": "736" + "$ref": "737" }, "decorators": [] }, { - "$id": "740", + "$id": "741", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "737" + "$ref": "738" }, "enumType": { - "$ref": "736" + "$ref": "737" }, "decorators": [] } @@ -9015,12 +9028,12 @@ "decorators": [] }, { - "$id": "741", + "$id": "742", "kind": "enum", "name": "WebSearchToolCallItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.WebSearchToolCallItemResource.status.anonymous", "valueType": { - "$id": "742", + "$id": "743", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -9028,54 +9041,54 @@ }, "values": [ { - "$id": "743", + "$id": "744", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "742" + "$ref": "743" }, "enumType": { - "$ref": "741" + "$ref": "742" }, "decorators": [] }, { - "$id": "744", + "$id": "745", "kind": "enumvalue", "name": "searching", "value": "searching", "valueType": { - "$ref": "742" + "$ref": "743" }, "enumType": { - "$ref": "741" + "$ref": "742" }, "decorators": [] }, { - "$id": "745", + "$id": "746", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "742" + "$ref": "743" }, "enumType": { - "$ref": "741" + "$ref": "742" }, "decorators": [] }, { - "$id": "746", + "$id": "747", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "742" + "$ref": "743" }, "enumType": { - "$ref": "741" + "$ref": "742" }, "decorators": [] } @@ -9087,12 +9100,12 @@ "decorators": [] }, { - "$id": "747", + "$id": "748", "kind": "enum", "name": "ReasoningItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.ReasoningItemResource.status.anonymous", "valueType": { - "$id": "748", + "$id": "749", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -9100,41 +9113,41 @@ }, "values": [ { - "$id": "749", + "$id": "750", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "748" + "$ref": "749" }, "enumType": { - "$ref": "747" + "$ref": "748" }, "decorators": [] }, { - "$id": "750", + "$id": "751", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "748" + "$ref": "749" }, "enumType": { - "$ref": "747" + "$ref": "748" }, "decorators": [] }, { - "$id": "751", + "$id": "752", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "748" + "$ref": "749" }, "enumType": { - "$ref": "747" + "$ref": "748" }, "decorators": [] } @@ -9146,12 +9159,12 @@ "decorators": [] }, { - "$id": "752", + "$id": "753", "kind": "enum", "name": "ImageGenToolCallItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.ImageGenToolCallItemResource.status.anonymous", "valueType": { - "$id": "753", + "$id": "754", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -9159,54 +9172,54 @@ }, "values": [ { - "$id": "754", + "$id": "755", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "753" + "$ref": "754" }, "enumType": { - "$ref": "752" + "$ref": "753" }, "decorators": [] }, { - "$id": "755", + "$id": "756", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "753" + "$ref": "754" }, "enumType": { - "$ref": "752" + "$ref": "753" }, "decorators": [] }, { - "$id": "756", + "$id": "757", "kind": "enumvalue", "name": "generating", "value": "generating", "valueType": { - "$ref": "753" + "$ref": "754" }, "enumType": { - "$ref": "752" + "$ref": "753" }, "decorators": [] }, { - "$id": "757", + "$id": "758", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "753" + "$ref": "754" }, "enumType": { - "$ref": "752" + "$ref": "753" }, "decorators": [] } @@ -9218,12 +9231,12 @@ "decorators": [] }, { - "$id": "758", + "$id": "759", "kind": "enum", "name": "CodeInterpreterToolCallItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.CodeInterpreterToolCallItemResource.status.anonymous", "valueType": { - "$id": "759", + "$id": "760", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -9231,41 +9244,41 @@ }, "values": [ { - "$id": "760", + "$id": "761", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "759" + "$ref": "760" }, "enumType": { - "$ref": "758" + "$ref": "759" }, "decorators": [] }, { - "$id": "761", + "$id": "762", "kind": "enumvalue", "name": "interpreting", "value": "interpreting", "valueType": { - "$ref": "759" + "$ref": "760" }, "enumType": { - "$ref": "758" + "$ref": "759" }, "decorators": [] }, { - "$id": "762", + "$id": "763", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "759" + "$ref": "760" }, "enumType": { - "$ref": "758" + "$ref": "759" }, "decorators": [] } @@ -9277,12 +9290,12 @@ "decorators": [] }, { - "$id": "763", + "$id": "764", "kind": "enum", "name": "LocalShellToolCallItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.LocalShellToolCallItemResource.status.anonymous", "valueType": { - "$id": "764", + "$id": "765", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -9290,41 +9303,41 @@ }, "values": [ { - "$id": "765", + "$id": "766", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "764" + "$ref": "765" }, "enumType": { - "$ref": "763" + "$ref": "764" }, "decorators": [] }, { - "$id": "766", + "$id": "767", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "764" + "$ref": "765" }, "enumType": { - "$ref": "763" + "$ref": "764" }, "decorators": [] }, { - "$id": "767", + "$id": "768", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "764" + "$ref": "765" }, "enumType": { - "$ref": "763" + "$ref": "764" }, "decorators": [] } @@ -9336,12 +9349,12 @@ "decorators": [] }, { - "$id": "768", + "$id": "769", "kind": "enum", "name": "LocalShellToolCallOutputItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.LocalShellToolCallOutputItemResource.status.anonymous", "valueType": { - "$id": "769", + "$id": "770", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -9349,41 +9362,41 @@ }, "values": [ { - "$id": "770", + "$id": "771", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "769" + "$ref": "770" }, "enumType": { - "$ref": "768" + "$ref": "769" }, "decorators": [] }, { - "$id": "771", + "$id": "772", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "769" + "$ref": "770" }, "enumType": { - "$ref": "768" + "$ref": "769" }, "decorators": [] }, { - "$id": "772", + "$id": "773", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "769" + "$ref": "770" }, "enumType": { - "$ref": "768" + "$ref": "769" }, "decorators": [] } @@ -9395,12 +9408,12 @@ "decorators": [] }, { - "$id": "773", + "$id": "774", "kind": "enum", "name": "ResponseStreamEventType", "crossLanguageDefinitionId": "OpenAI.ResponseStreamEventType", "valueType": { - "$id": "774", + "$id": "775", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -9408,717 +9421,717 @@ }, "values": [ { - "$id": "775", + "$id": "776", "kind": "enumvalue", "name": "response_audio_delta", "value": "response.audio.delta", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "776", + "$id": "777", "kind": "enumvalue", "name": "response_audio_done", "value": "response.audio.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "777", + "$id": "778", "kind": "enumvalue", "name": "response_audio_transcript_delta", "value": "response.audio_transcript.delta", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "778", + "$id": "779", "kind": "enumvalue", "name": "response_audio_transcript_done", "value": "response.audio_transcript.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "779", + "$id": "780", "kind": "enumvalue", "name": "response_code_interpreter_call_code_delta", "value": "response.code_interpreter_call_code.delta", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "780", + "$id": "781", "kind": "enumvalue", "name": "response_code_interpreter_call_code_done", "value": "response.code_interpreter_call_code.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "781", + "$id": "782", "kind": "enumvalue", "name": "response_code_interpreter_call_completed", "value": "response.code_interpreter_call.completed", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "782", + "$id": "783", "kind": "enumvalue", "name": "response_code_interpreter_call_in_progress", "value": "response.code_interpreter_call.in_progress", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "783", + "$id": "784", "kind": "enumvalue", "name": "response_code_interpreter_call_interpreting", "value": "response.code_interpreter_call.interpreting", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "784", + "$id": "785", "kind": "enumvalue", "name": "response_completed", "value": "response.completed", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "785", + "$id": "786", "kind": "enumvalue", "name": "response_content_part_added", "value": "response.content_part.added", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "786", + "$id": "787", "kind": "enumvalue", "name": "response_content_part_done", "value": "response.content_part.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "787", + "$id": "788", "kind": "enumvalue", "name": "response_created", "value": "response.created", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "788", + "$id": "789", "kind": "enumvalue", "name": "error", "value": "error", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "789", + "$id": "790", "kind": "enumvalue", "name": "response_file_search_call_completed", "value": "response.file_search_call.completed", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "790", + "$id": "791", "kind": "enumvalue", "name": "response_file_search_call_in_progress", "value": "response.file_search_call.in_progress", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "791", + "$id": "792", "kind": "enumvalue", "name": "response_file_search_call_searching", "value": "response.file_search_call.searching", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "792", + "$id": "793", "kind": "enumvalue", "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "793", + "$id": "794", "kind": "enumvalue", "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "794", + "$id": "795", "kind": "enumvalue", "name": "response_in_progress", "value": "response.in_progress", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "795", + "$id": "796", "kind": "enumvalue", "name": "response_failed", "value": "response.failed", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "796", + "$id": "797", "kind": "enumvalue", "name": "response_incomplete", "value": "response.incomplete", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "797", + "$id": "798", "kind": "enumvalue", "name": "response_output_item_added", "value": "response.output_item.added", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "798", + "$id": "799", "kind": "enumvalue", "name": "response_output_item_done", "value": "response.output_item.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "799", + "$id": "800", "kind": "enumvalue", "name": "response_refusal_delta", "value": "response.refusal.delta", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "800", + "$id": "801", "kind": "enumvalue", "name": "response_refusal_done", "value": "response.refusal.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "801", + "$id": "802", "kind": "enumvalue", "name": "response_output_text_annotation_added", "value": "response.output_text.annotation.added", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "802", + "$id": "803", "kind": "enumvalue", "name": "response_output_text_delta", "value": "response.output_text.delta", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "803", + "$id": "804", "kind": "enumvalue", "name": "response_output_text_done", "value": "response.output_text.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "804", + "$id": "805", "kind": "enumvalue", "name": "response_reasoning_summary_part_added", "value": "response.reasoning_summary_part.added", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "805", + "$id": "806", "kind": "enumvalue", "name": "response_reasoning_summary_part_done", "value": "response.reasoning_summary_part.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "806", + "$id": "807", "kind": "enumvalue", "name": "response_reasoning_summary_text_delta", "value": "response.reasoning_summary_text.delta", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "807", + "$id": "808", "kind": "enumvalue", "name": "response_reasoning_summary_text_done", "value": "response.reasoning_summary_text.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "808", + "$id": "809", "kind": "enumvalue", "name": "response_web_search_call_completed", "value": "response.web_search_call.completed", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "809", + "$id": "810", "kind": "enumvalue", "name": "response_web_search_call_in_progress", "value": "response.web_search_call.in_progress", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "810", + "$id": "811", "kind": "enumvalue", "name": "response_web_search_call_searching", "value": "response.web_search_call.searching", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "811", + "$id": "812", "kind": "enumvalue", "name": "response_image_generation_call_completed", "value": "response.image_generation_call.completed", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "812", + "$id": "813", "kind": "enumvalue", "name": "response_image_generation_call_generating", "value": "response.image_generation_call.generating", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "813", + "$id": "814", "kind": "enumvalue", "name": "response_image_generation_call_in_progress", "value": "response.image_generation_call.in_progress", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "814", + "$id": "815", "kind": "enumvalue", "name": "response_image_generation_call_partial_image", "value": "response.image_generation_call.partial_image", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "815", + "$id": "816", "kind": "enumvalue", "name": "response_mcp_call_arguments_delta", "value": "response.mcp_call_arguments.delta", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "816", + "$id": "817", "kind": "enumvalue", "name": "response_mcp_call_arguments_done", "value": "response.mcp_call_arguments.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "817", + "$id": "818", "kind": "enumvalue", "name": "response_mcp_call_completed", "value": "response.mcp_call.completed", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "818", + "$id": "819", "kind": "enumvalue", "name": "response_mcp_call_failed", "value": "response.mcp_call.failed", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "819", + "$id": "820", "kind": "enumvalue", "name": "response_mcp_call_in_progress", "value": "response.mcp_call.in_progress", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "820", + "$id": "821", "kind": "enumvalue", "name": "response_mcp_list_tools_completed", "value": "response.mcp_list_tools.completed", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "821", + "$id": "822", "kind": "enumvalue", "name": "response_mcp_list_tools_failed", "value": "response.mcp_list_tools.failed", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "822", + "$id": "823", "kind": "enumvalue", "name": "response_mcp_list_tools_in_progress", "value": "response.mcp_list_tools.in_progress", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "823", + "$id": "824", "kind": "enumvalue", "name": "response_queued", "value": "response.queued", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "824", + "$id": "825", "kind": "enumvalue", "name": "response_reasoning_delta", "value": "response.reasoning.delta", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "825", + "$id": "826", "kind": "enumvalue", "name": "response_reasoning_done", "value": "response.reasoning.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "826", + "$id": "827", "kind": "enumvalue", "name": "response_reasoning_summary_delta", "value": "response.reasoning_summary.delta", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "827", + "$id": "828", "kind": "enumvalue", "name": "response_reasoning_summary_done", "value": "response.reasoning_summary.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "828", + "$id": "829", "kind": "enumvalue", "name": "response_reasoning_text_delta", "value": "response.reasoning_text.delta", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] }, { - "$id": "829", + "$id": "830", "kind": "enumvalue", "name": "response_reasoning_text_done", "value": "response.reasoning_text.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "773" + "$ref": "774" }, "decorators": [] } @@ -10130,12 +10143,12 @@ "decorators": [] }, { - "$id": "830", + "$id": "831", "kind": "enum", "name": "CreateImageRequestModel", "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.model.anonymous", "valueType": { - "$id": "831", + "$id": "832", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10143,41 +10156,41 @@ }, "values": [ { - "$id": "832", + "$id": "833", "kind": "enumvalue", "name": "dall-e-2", "value": "dall-e-2", "valueType": { - "$ref": "831" + "$ref": "832" }, "enumType": { - "$ref": "830" + "$ref": "831" }, "decorators": [] }, { - "$id": "833", + "$id": "834", "kind": "enumvalue", "name": "dall-e-3", "value": "dall-e-3", "valueType": { - "$ref": "831" + "$ref": "832" }, "enumType": { - "$ref": "830" + "$ref": "831" }, "decorators": [] }, { - "$id": "834", + "$id": "835", "kind": "enumvalue", "name": "gpt-image-1", "value": "gpt-image-1", "valueType": { - "$ref": "831" + "$ref": "832" }, "enumType": { - "$ref": "830" + "$ref": "831" }, "decorators": [] } @@ -10189,12 +10202,12 @@ "decorators": [] }, { - "$id": "835", + "$id": "836", "kind": "enum", "name": "CreateImageRequestQuality", "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.quality.anonymous", "valueType": { - "$id": "836", + "$id": "837", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10202,80 +10215,80 @@ }, "values": [ { - "$id": "837", + "$id": "838", "kind": "enumvalue", "name": "standard", "value": "standard", "valueType": { - "$ref": "836" + "$ref": "837" }, "enumType": { - "$ref": "835" + "$ref": "836" }, "decorators": [] }, { - "$id": "838", + "$id": "839", "kind": "enumvalue", "name": "hd", "value": "hd", "valueType": { - "$ref": "836" + "$ref": "837" }, "enumType": { - "$ref": "835" + "$ref": "836" }, "decorators": [] }, { - "$id": "839", + "$id": "840", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "836" + "$ref": "837" }, "enumType": { - "$ref": "835" + "$ref": "836" }, "decorators": [] }, { - "$id": "840", + "$id": "841", "kind": "enumvalue", "name": "medium", "value": "medium", "valueType": { - "$ref": "836" + "$ref": "837" }, "enumType": { - "$ref": "835" + "$ref": "836" }, "decorators": [] }, { - "$id": "841", + "$id": "842", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "836" + "$ref": "837" }, "enumType": { - "$ref": "835" + "$ref": "836" }, "decorators": [] }, { - "$id": "842", + "$id": "843", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "836" + "$ref": "837" }, "enumType": { - "$ref": "835" + "$ref": "836" }, "decorators": [] } @@ -10287,12 +10300,12 @@ "decorators": [] }, { - "$id": "843", + "$id": "844", "kind": "enum", "name": "CreateImageRequestResponseFormat", "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.response_format.anonymous", "valueType": { - "$id": "844", + "$id": "845", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10300,28 +10313,28 @@ }, "values": [ { - "$id": "845", + "$id": "846", "kind": "enumvalue", "name": "url", "value": "url", "valueType": { - "$ref": "844" + "$ref": "845" }, "enumType": { - "$ref": "843" + "$ref": "844" }, "decorators": [] }, { - "$id": "846", + "$id": "847", "kind": "enumvalue", "name": "b64_json", "value": "b64_json", "valueType": { - "$ref": "844" + "$ref": "845" }, "enumType": { - "$ref": "843" + "$ref": "844" }, "decorators": [] } @@ -10333,12 +10346,12 @@ "decorators": [] }, { - "$id": "847", + "$id": "848", "kind": "enum", "name": "CreateImageRequestOutputFormat", "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.output_format.anonymous", "valueType": { - "$id": "848", + "$id": "849", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10346,41 +10359,41 @@ }, "values": [ { - "$id": "849", + "$id": "850", "kind": "enumvalue", "name": "png", "value": "png", "valueType": { - "$ref": "848" + "$ref": "849" }, "enumType": { - "$ref": "847" + "$ref": "848" }, "decorators": [] }, { - "$id": "850", + "$id": "851", "kind": "enumvalue", "name": "jpeg", "value": "jpeg", "valueType": { - "$ref": "848" + "$ref": "849" }, "enumType": { - "$ref": "847" + "$ref": "848" }, "decorators": [] }, { - "$id": "851", + "$id": "852", "kind": "enumvalue", "name": "webp", "value": "webp", "valueType": { - "$ref": "848" + "$ref": "849" }, "enumType": { - "$ref": "847" + "$ref": "848" }, "decorators": [] } @@ -10392,12 +10405,12 @@ "decorators": [] }, { - "$id": "852", + "$id": "853", "kind": "enum", "name": "CreateImageRequestSize", "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.size.anonymous", "valueType": { - "$id": "853", + "$id": "854", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10405,106 +10418,106 @@ }, "values": [ { - "$id": "854", + "$id": "855", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "853" + "$ref": "854" }, "enumType": { - "$ref": "852" + "$ref": "853" }, "decorators": [] }, { - "$id": "855", + "$id": "856", "kind": "enumvalue", "name": "1024x1024", "value": "1024x1024", "valueType": { - "$ref": "853" + "$ref": "854" }, "enumType": { - "$ref": "852" + "$ref": "853" }, "decorators": [] }, { - "$id": "856", + "$id": "857", "kind": "enumvalue", "name": "1536x1024", "value": "1536x1024", "valueType": { - "$ref": "853" + "$ref": "854" }, "enumType": { - "$ref": "852" + "$ref": "853" }, "decorators": [] }, { - "$id": "857", + "$id": "858", "kind": "enumvalue", "name": "1024x1536", "value": "1024x1536", "valueType": { - "$ref": "853" + "$ref": "854" }, "enumType": { - "$ref": "852" + "$ref": "853" }, "decorators": [] }, { - "$id": "858", + "$id": "859", "kind": "enumvalue", "name": "256x256", "value": "256x256", "valueType": { - "$ref": "853" + "$ref": "854" }, "enumType": { - "$ref": "852" + "$ref": "853" }, "decorators": [] }, { - "$id": "859", + "$id": "860", "kind": "enumvalue", "name": "512x512", "value": "512x512", "valueType": { - "$ref": "853" + "$ref": "854" }, "enumType": { - "$ref": "852" + "$ref": "853" }, "decorators": [] }, { - "$id": "860", + "$id": "861", "kind": "enumvalue", "name": "1792x1024", "value": "1792x1024", "valueType": { - "$ref": "853" + "$ref": "854" }, "enumType": { - "$ref": "852" + "$ref": "853" }, "decorators": [] }, { - "$id": "861", + "$id": "862", "kind": "enumvalue", "name": "1024x1792", "value": "1024x1792", "valueType": { - "$ref": "853" + "$ref": "854" }, "enumType": { - "$ref": "852" + "$ref": "853" }, "decorators": [] } @@ -10516,12 +10529,12 @@ "decorators": [] }, { - "$id": "862", + "$id": "863", "kind": "enum", "name": "CreateImageRequestModeration", "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.moderation.anonymous", "valueType": { - "$id": "863", + "$id": "864", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10529,28 +10542,28 @@ }, "values": [ { - "$id": "864", + "$id": "865", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "863" + "$ref": "864" }, "enumType": { - "$ref": "862" + "$ref": "863" }, "decorators": [] }, { - "$id": "865", + "$id": "866", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "863" + "$ref": "864" }, "enumType": { - "$ref": "862" + "$ref": "863" }, "decorators": [] } @@ -10562,12 +10575,12 @@ "decorators": [] }, { - "$id": "866", + "$id": "867", "kind": "enum", "name": "CreateImageRequestBackground", "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.background.anonymous", "valueType": { - "$id": "867", + "$id": "868", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10575,41 +10588,41 @@ }, "values": [ { - "$id": "868", + "$id": "869", "kind": "enumvalue", "name": "transparent", "value": "transparent", "valueType": { - "$ref": "867" + "$ref": "868" }, "enumType": { - "$ref": "866" + "$ref": "867" }, "decorators": [] }, { - "$id": "869", + "$id": "870", "kind": "enumvalue", "name": "opaque", "value": "opaque", "valueType": { - "$ref": "867" + "$ref": "868" }, "enumType": { - "$ref": "866" + "$ref": "867" }, "decorators": [] }, { - "$id": "870", + "$id": "871", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "867" + "$ref": "868" }, "enumType": { - "$ref": "866" + "$ref": "867" }, "decorators": [] } @@ -10621,12 +10634,12 @@ "decorators": [] }, { - "$id": "871", + "$id": "872", "kind": "enum", "name": "CreateImageRequestStyle", "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.style.anonymous", "valueType": { - "$id": "872", + "$id": "873", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10634,28 +10647,28 @@ }, "values": [ { - "$id": "873", + "$id": "874", "kind": "enumvalue", "name": "vivid", "value": "vivid", "valueType": { - "$ref": "872" + "$ref": "873" }, "enumType": { - "$ref": "871" + "$ref": "872" }, "decorators": [] }, { - "$id": "874", + "$id": "875", "kind": "enumvalue", "name": "natural", "value": "natural", "valueType": { - "$ref": "872" + "$ref": "873" }, "enumType": { - "$ref": "871" + "$ref": "872" }, "decorators": [] } @@ -10667,12 +10680,12 @@ "decorators": [] }, { - "$id": "875", + "$id": "876", "kind": "enum", "name": "CreateImageEditRequestBackground", "crossLanguageDefinitionId": "OpenAI.CreateImageEditRequest.background.anonymous", "valueType": { - "$id": "876", + "$id": "877", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10680,41 +10693,41 @@ }, "values": [ { - "$id": "877", + "$id": "878", "kind": "enumvalue", "name": "transparent", "value": "transparent", "valueType": { - "$ref": "876" + "$ref": "877" }, "enumType": { - "$ref": "875" + "$ref": "876" }, "decorators": [] }, { - "$id": "878", + "$id": "879", "kind": "enumvalue", "name": "opaque", "value": "opaque", "valueType": { - "$ref": "876" + "$ref": "877" }, "enumType": { - "$ref": "875" + "$ref": "876" }, "decorators": [] }, { - "$id": "879", + "$id": "880", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "876" + "$ref": "877" }, "enumType": { - "$ref": "875" + "$ref": "876" }, "decorators": [] } @@ -10726,12 +10739,12 @@ "decorators": [] }, { - "$id": "880", + "$id": "881", "kind": "enum", "name": "CreateImageEditRequestModel", "crossLanguageDefinitionId": "OpenAI.CreateImageEditRequest.model.anonymous", "valueType": { - "$id": "881", + "$id": "882", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10739,28 +10752,28 @@ }, "values": [ { - "$id": "882", + "$id": "883", "kind": "enumvalue", "name": "dall-e-2", "value": "dall-e-2", "valueType": { - "$ref": "881" + "$ref": "882" }, "enumType": { - "$ref": "880" + "$ref": "881" }, "decorators": [] }, { - "$id": "883", + "$id": "884", "kind": "enumvalue", "name": "gpt-image-1", "value": "gpt-image-1", "valueType": { - "$ref": "881" + "$ref": "882" }, "enumType": { - "$ref": "880" + "$ref": "881" }, "decorators": [] } @@ -10772,12 +10785,12 @@ "decorators": [] }, { - "$id": "884", + "$id": "885", "kind": "enum", "name": "CreateImageEditRequestSize", "crossLanguageDefinitionId": "OpenAI.CreateImageEditRequest.size.anonymous", "valueType": { - "$id": "885", + "$id": "886", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10785,80 +10798,80 @@ }, "values": [ { - "$id": "886", + "$id": "887", "kind": "enumvalue", "name": "256x256", "value": "256x256", "valueType": { - "$ref": "885" + "$ref": "886" }, "enumType": { - "$ref": "884" + "$ref": "885" }, "decorators": [] }, { - "$id": "887", + "$id": "888", "kind": "enumvalue", "name": "512x512", "value": "512x512", "valueType": { - "$ref": "885" + "$ref": "886" }, "enumType": { - "$ref": "884" + "$ref": "885" }, "decorators": [] }, { - "$id": "888", + "$id": "889", "kind": "enumvalue", "name": "1024x1024", "value": "1024x1024", "valueType": { - "$ref": "885" + "$ref": "886" }, "enumType": { - "$ref": "884" + "$ref": "885" }, "decorators": [] }, { - "$id": "889", + "$id": "890", "kind": "enumvalue", "name": "1536x1024", "value": "1536x1024", "valueType": { - "$ref": "885" + "$ref": "886" }, "enumType": { - "$ref": "884" + "$ref": "885" }, "decorators": [] }, { - "$id": "890", + "$id": "891", "kind": "enumvalue", "name": "1024x1536", "value": "1024x1536", "valueType": { - "$ref": "885" + "$ref": "886" }, "enumType": { - "$ref": "884" + "$ref": "885" }, "decorators": [] }, { - "$id": "891", + "$id": "892", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "885" + "$ref": "886" }, "enumType": { - "$ref": "884" + "$ref": "885" }, "decorators": [] } @@ -10870,12 +10883,12 @@ "decorators": [] }, { - "$id": "892", + "$id": "893", "kind": "enum", "name": "CreateImageEditRequestResponseFormat", "crossLanguageDefinitionId": "OpenAI.CreateImageEditRequest.response_format.anonymous", "valueType": { - "$id": "893", + "$id": "894", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10883,28 +10896,28 @@ }, "values": [ { - "$id": "894", + "$id": "895", "kind": "enumvalue", "name": "url", "value": "url", "valueType": { - "$ref": "893" + "$ref": "894" }, "enumType": { - "$ref": "892" + "$ref": "893" }, "decorators": [] }, { - "$id": "895", + "$id": "896", "kind": "enumvalue", "name": "b64_json", "value": "b64_json", "valueType": { - "$ref": "893" + "$ref": "894" }, "enumType": { - "$ref": "892" + "$ref": "893" }, "decorators": [] } @@ -10916,12 +10929,12 @@ "decorators": [] }, { - "$id": "896", + "$id": "897", "kind": "enum", "name": "CreateImageEditRequestQuality", "crossLanguageDefinitionId": "OpenAI.CreateImageEditRequest.quality.anonymous", "valueType": { - "$id": "897", + "$id": "898", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10929,67 +10942,67 @@ }, "values": [ { - "$id": "898", + "$id": "899", "kind": "enumvalue", "name": "standard", "value": "standard", "valueType": { - "$ref": "897" + "$ref": "898" }, "enumType": { - "$ref": "896" + "$ref": "897" }, "decorators": [] }, { - "$id": "899", + "$id": "900", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "897" + "$ref": "898" }, "enumType": { - "$ref": "896" + "$ref": "897" }, "decorators": [] }, { - "$id": "900", + "$id": "901", "kind": "enumvalue", "name": "medium", "value": "medium", "valueType": { - "$ref": "897" + "$ref": "898" }, "enumType": { - "$ref": "896" + "$ref": "897" }, "decorators": [] }, { - "$id": "901", + "$id": "902", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "897" + "$ref": "898" }, "enumType": { - "$ref": "896" + "$ref": "897" }, "decorators": [] }, { - "$id": "902", + "$id": "903", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "897" + "$ref": "898" }, "enumType": { - "$ref": "896" + "$ref": "897" }, "decorators": [] } @@ -11001,12 +11014,12 @@ "decorators": [] }, { - "$id": "903", + "$id": "904", "kind": "enum", "name": "CreateImageVariationRequestModel", "crossLanguageDefinitionId": "OpenAI.CreateImageVariationRequest.model.anonymous", "valueType": { - "$id": "904", + "$id": "905", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11014,15 +11027,15 @@ }, "values": [ { - "$id": "905", + "$id": "906", "kind": "enumvalue", "name": "dall-e-2", "value": "dall-e-2", "valueType": { - "$ref": "904" + "$ref": "905" }, "enumType": { - "$ref": "903" + "$ref": "904" }, "decorators": [] } @@ -11034,12 +11047,12 @@ "decorators": [] }, { - "$id": "906", + "$id": "907", "kind": "enum", "name": "CreateImageVariationRequestResponseFormat", "crossLanguageDefinitionId": "OpenAI.CreateImageVariationRequest.response_format.anonymous", "valueType": { - "$id": "907", + "$id": "908", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11047,28 +11060,28 @@ }, "values": [ { - "$id": "908", + "$id": "909", "kind": "enumvalue", "name": "url", "value": "url", "valueType": { - "$ref": "907" + "$ref": "908" }, "enumType": { - "$ref": "906" + "$ref": "907" }, "decorators": [] }, { - "$id": "909", + "$id": "910", "kind": "enumvalue", "name": "b64_json", "value": "b64_json", "valueType": { - "$ref": "907" + "$ref": "908" }, "enumType": { - "$ref": "906" + "$ref": "907" }, "decorators": [] } @@ -11080,12 +11093,12 @@ "decorators": [] }, { - "$id": "910", + "$id": "911", "kind": "enum", "name": "CreateImageVariationRequestSize", "crossLanguageDefinitionId": "OpenAI.CreateImageVariationRequest.size.anonymous", "valueType": { - "$id": "911", + "$id": "912", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11093,41 +11106,41 @@ }, "values": [ { - "$id": "912", + "$id": "913", "kind": "enumvalue", "name": "256x256", "value": "256x256", "valueType": { - "$ref": "911" + "$ref": "912" }, "enumType": { - "$ref": "910" + "$ref": "911" }, "decorators": [] }, { - "$id": "913", + "$id": "914", "kind": "enumvalue", "name": "512x512", "value": "512x512", "valueType": { - "$ref": "911" + "$ref": "912" }, "enumType": { - "$ref": "910" + "$ref": "911" }, "decorators": [] }, { - "$id": "914", + "$id": "915", "kind": "enumvalue", "name": "1024x1024", "value": "1024x1024", "valueType": { - "$ref": "911" + "$ref": "912" }, "enumType": { - "$ref": "910" + "$ref": "911" }, "decorators": [] } @@ -11139,12 +11152,12 @@ "decorators": [] }, { - "$id": "915", + "$id": "916", "kind": "enum", "name": "CreateMessageRequestRole", "crossLanguageDefinitionId": "OpenAI.CreateMessageRequest.role.anonymous", "valueType": { - "$id": "916", + "$id": "917", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11152,28 +11165,28 @@ }, "values": [ { - "$id": "917", + "$id": "918", "kind": "enumvalue", "name": "user", "value": "user", "valueType": { - "$ref": "916" + "$ref": "917" }, "enumType": { - "$ref": "915" + "$ref": "916" }, "decorators": [] }, { - "$id": "918", + "$id": "919", "kind": "enumvalue", "name": "assistant", "value": "assistant", "valueType": { - "$ref": "916" + "$ref": "917" }, "enumType": { - "$ref": "915" + "$ref": "916" }, "decorators": [] } @@ -11185,12 +11198,12 @@ "decorators": [] }, { - "$id": "919", + "$id": "920", "kind": "enum", "name": "MessageContentType", "crossLanguageDefinitionId": "OpenAI.MessageContentType", "valueType": { - "$id": "920", + "$id": "921", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11198,57 +11211,57 @@ }, "values": [ { - "$id": "921", + "$id": "922", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "920" + "$ref": "921" }, "enumType": { - "$ref": "919" + "$ref": "920" }, "doc": "The content is a text message.", "decorators": [] }, { - "$id": "922", + "$id": "923", "kind": "enumvalue", "name": "image_file", "value": "image_file", "valueType": { - "$ref": "920" + "$ref": "921" }, "enumType": { - "$ref": "919" + "$ref": "920" }, "doc": "The content is an image file.", "decorators": [] }, { - "$id": "923", + "$id": "924", "kind": "enumvalue", "name": "image_url", "value": "image_url", "valueType": { - "$ref": "920" + "$ref": "921" }, "enumType": { - "$ref": "919" + "$ref": "920" }, "doc": "The content is an image URL.", "decorators": [] }, { - "$id": "924", + "$id": "925", "kind": "enumvalue", "name": "refusal", "value": "refusal", "valueType": { - "$ref": "920" + "$ref": "921" }, "enumType": { - "$ref": "919" + "$ref": "920" }, "doc": "The content is a refusal message.", "decorators": [] @@ -11261,12 +11274,12 @@ "decorators": [] }, { - "$id": "925", + "$id": "926", "kind": "enum", "name": "MessageContentImageFileObjectImageFileDetail", "crossLanguageDefinitionId": "OpenAI.MessageContentImageFileObject.image_file.detail.anonymous", "valueType": { - "$id": "926", + "$id": "927", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11274,41 +11287,41 @@ }, "values": [ { - "$id": "927", + "$id": "928", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "926" + "$ref": "927" }, "enumType": { - "$ref": "925" + "$ref": "926" }, "decorators": [] }, { - "$id": "928", + "$id": "929", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "926" + "$ref": "927" }, "enumType": { - "$ref": "925" + "$ref": "926" }, "decorators": [] }, { - "$id": "929", + "$id": "930", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "926" + "$ref": "927" }, "enumType": { - "$ref": "925" + "$ref": "926" }, "decorators": [] } @@ -11320,12 +11333,12 @@ "decorators": [] }, { - "$id": "930", + "$id": "931", "kind": "enum", "name": "MessageContentTextAnnotationType", "crossLanguageDefinitionId": "OpenAI.MessageContentTextAnnotationType", "valueType": { - "$id": "931", + "$id": "932", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11333,28 +11346,28 @@ }, "values": [ { - "$id": "932", + "$id": "933", "kind": "enumvalue", "name": "file_citation", "value": "file_citation", "valueType": { - "$ref": "931" + "$ref": "932" }, "enumType": { - "$ref": "930" + "$ref": "931" }, "decorators": [] }, { - "$id": "933", + "$id": "934", "kind": "enumvalue", "name": "file_path", "value": "file_path", "valueType": { - "$ref": "931" + "$ref": "932" }, "enumType": { - "$ref": "930" + "$ref": "931" }, "decorators": [] } @@ -11366,12 +11379,12 @@ "decorators": [] }, { - "$id": "934", + "$id": "935", "kind": "enum", "name": "MessageContentImageUrlObjectImageUrlDetail", "crossLanguageDefinitionId": "OpenAI.MessageContentImageUrlObject.image_url.detail.anonymous", "valueType": { - "$id": "935", + "$id": "936", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11379,41 +11392,41 @@ }, "values": [ { - "$id": "936", + "$id": "937", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "935" + "$ref": "936" }, "enumType": { - "$ref": "934" + "$ref": "935" }, "decorators": [] }, { - "$id": "937", + "$id": "938", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "935" + "$ref": "936" }, "enumType": { - "$ref": "934" + "$ref": "935" }, "decorators": [] }, { - "$id": "938", + "$id": "939", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "935" + "$ref": "936" }, "enumType": { - "$ref": "934" + "$ref": "935" }, "decorators": [] } @@ -11425,12 +11438,12 @@ "decorators": [] }, { - "$id": "939", + "$id": "940", "kind": "enum", "name": "MessageObjectStatus", "crossLanguageDefinitionId": "OpenAI.MessageObject.status.anonymous", "valueType": { - "$id": "940", + "$id": "941", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11438,41 +11451,41 @@ }, "values": [ { - "$id": "941", + "$id": "942", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "940" + "$ref": "941" }, "enumType": { - "$ref": "939" + "$ref": "940" }, "decorators": [] }, { - "$id": "942", + "$id": "943", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "940" + "$ref": "941" }, "enumType": { - "$ref": "939" + "$ref": "940" }, "decorators": [] }, { - "$id": "943", + "$id": "944", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "940" + "$ref": "941" }, "enumType": { - "$ref": "939" + "$ref": "940" }, "decorators": [] } @@ -11484,12 +11497,12 @@ "decorators": [] }, { - "$id": "944", + "$id": "945", "kind": "enum", "name": "MessageObjectIncompleteDetailsReason", "crossLanguageDefinitionId": "OpenAI.MessageObject.incomplete_details.reason.anonymous", "valueType": { - "$id": "945", + "$id": "946", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11497,67 +11510,67 @@ }, "values": [ { - "$id": "946", + "$id": "947", "kind": "enumvalue", "name": "content_filter", "value": "content_filter", "valueType": { - "$ref": "945" + "$ref": "946" }, "enumType": { - "$ref": "944" + "$ref": "945" }, "decorators": [] }, { - "$id": "947", + "$id": "948", "kind": "enumvalue", "name": "max_tokens", "value": "max_tokens", "valueType": { - "$ref": "945" + "$ref": "946" }, "enumType": { - "$ref": "944" + "$ref": "945" }, "decorators": [] }, { - "$id": "948", + "$id": "949", "kind": "enumvalue", "name": "run_cancelled", "value": "run_cancelled", "valueType": { - "$ref": "945" + "$ref": "946" }, "enumType": { - "$ref": "944" + "$ref": "945" }, "decorators": [] }, { - "$id": "949", + "$id": "950", "kind": "enumvalue", "name": "run_expired", "value": "run_expired", "valueType": { - "$ref": "945" + "$ref": "946" }, "enumType": { - "$ref": "944" + "$ref": "945" }, "decorators": [] }, { - "$id": "950", + "$id": "951", "kind": "enumvalue", "name": "run_failed", "value": "run_failed", "valueType": { - "$ref": "945" + "$ref": "946" }, "enumType": { - "$ref": "944" + "$ref": "945" }, "decorators": [] } @@ -11569,12 +11582,12 @@ "decorators": [] }, { - "$id": "951", + "$id": "952", "kind": "enum", "name": "MessageObjectRole", "crossLanguageDefinitionId": "OpenAI.MessageObject.role.anonymous", "valueType": { - "$id": "952", + "$id": "953", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11582,28 +11595,28 @@ }, "values": [ { - "$id": "953", + "$id": "954", "kind": "enumvalue", "name": "user", "value": "user", "valueType": { - "$ref": "952" + "$ref": "953" }, "enumType": { - "$ref": "951" + "$ref": "952" }, "decorators": [] }, { - "$id": "954", + "$id": "955", "kind": "enumvalue", "name": "assistant", "value": "assistant", "valueType": { - "$ref": "952" + "$ref": "953" }, "enumType": { - "$ref": "951" + "$ref": "952" }, "decorators": [] } @@ -11615,12 +11628,12 @@ "decorators": [] }, { - "$id": "955", + "$id": "956", "kind": "enum", "name": "CreateModerationRequestModel", "crossLanguageDefinitionId": "OpenAI.CreateModerationRequest.model.anonymous", "valueType": { - "$id": "956", + "$id": "957", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11628,54 +11641,54 @@ }, "values": [ { - "$id": "957", + "$id": "958", "kind": "enumvalue", "name": "omni-moderation-latest", "value": "omni-moderation-latest", "valueType": { - "$ref": "956" + "$ref": "957" }, "enumType": { - "$ref": "955" + "$ref": "956" }, "decorators": [] }, { - "$id": "958", + "$id": "959", "kind": "enumvalue", "name": "omni-moderation-2024-09-26", "value": "omni-moderation-2024-09-26", "valueType": { - "$ref": "956" + "$ref": "957" }, "enumType": { - "$ref": "955" + "$ref": "956" }, "decorators": [] }, { - "$id": "959", + "$id": "960", "kind": "enumvalue", "name": "text-moderation-latest", "value": "text-moderation-latest", "valueType": { - "$ref": "956" + "$ref": "957" }, "enumType": { - "$ref": "955" + "$ref": "956" }, "decorators": [] }, { - "$id": "960", + "$id": "961", "kind": "enumvalue", "name": "text-moderation-stable", "value": "text-moderation-stable", "valueType": { - "$ref": "956" + "$ref": "957" }, "enumType": { - "$ref": "955" + "$ref": "956" }, "decorators": [] } @@ -11687,12 +11700,12 @@ "decorators": [] }, { - "$id": "961", + "$id": "962", "kind": "enum", "name": "CreateThreadAndRunRequestModel", "crossLanguageDefinitionId": "OpenAI.CreateThreadAndRunRequest.model.anonymous", "valueType": { - "$id": "962", + "$id": "963", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11700,418 +11713,418 @@ }, "values": [ { - "$id": "963", + "$id": "964", "kind": "enumvalue", "name": "gpt-4.1", "value": "gpt-4.1", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "964", + "$id": "965", "kind": "enumvalue", "name": "gpt-4.1-mini", "value": "gpt-4.1-mini", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "965", + "$id": "966", "kind": "enumvalue", "name": "gpt-4.1-nano", "value": "gpt-4.1-nano", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "966", + "$id": "967", "kind": "enumvalue", "name": "gpt-4.1-2025-04-14", "value": "gpt-4.1-2025-04-14", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "967", + "$id": "968", "kind": "enumvalue", "name": "gpt-4.1-mini-2025-04-14", "value": "gpt-4.1-mini-2025-04-14", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "968", + "$id": "969", "kind": "enumvalue", "name": "gpt-4.1-nano-2025-04-14", "value": "gpt-4.1-nano-2025-04-14", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "969", + "$id": "970", "kind": "enumvalue", "name": "gpt-4o", "value": "gpt-4o", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "970", + "$id": "971", "kind": "enumvalue", "name": "gpt-4o-2024-11-20", "value": "gpt-4o-2024-11-20", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "971", + "$id": "972", "kind": "enumvalue", "name": "gpt-4o-2024-08-06", "value": "gpt-4o-2024-08-06", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "972", + "$id": "973", "kind": "enumvalue", "name": "gpt-4o-2024-05-13", "value": "gpt-4o-2024-05-13", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "973", + "$id": "974", "kind": "enumvalue", "name": "gpt-4o-mini", "value": "gpt-4o-mini", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "974", + "$id": "975", "kind": "enumvalue", "name": "gpt-4o-mini-2024-07-18", "value": "gpt-4o-mini-2024-07-18", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "975", + "$id": "976", "kind": "enumvalue", "name": "gpt-4.5-preview", "value": "gpt-4.5-preview", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "976", + "$id": "977", "kind": "enumvalue", "name": "gpt-4.5-preview-2025-02-27", "value": "gpt-4.5-preview-2025-02-27", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "977", + "$id": "978", "kind": "enumvalue", "name": "gpt-4-turbo", "value": "gpt-4-turbo", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "978", + "$id": "979", "kind": "enumvalue", "name": "gpt-4-turbo-2024-04-09", "value": "gpt-4-turbo-2024-04-09", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "979", + "$id": "980", "kind": "enumvalue", "name": "gpt-4-0125-preview", "value": "gpt-4-0125-preview", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "980", + "$id": "981", "kind": "enumvalue", "name": "gpt-4-turbo-preview", "value": "gpt-4-turbo-preview", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "981", + "$id": "982", "kind": "enumvalue", "name": "gpt-4-1106-preview", "value": "gpt-4-1106-preview", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "982", + "$id": "983", "kind": "enumvalue", "name": "gpt-4-vision-preview", "value": "gpt-4-vision-preview", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "983", + "$id": "984", "kind": "enumvalue", "name": "gpt-4", "value": "gpt-4", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "984", + "$id": "985", "kind": "enumvalue", "name": "gpt-4-0314", "value": "gpt-4-0314", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "985", + "$id": "986", "kind": "enumvalue", "name": "gpt-4-0613", "value": "gpt-4-0613", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "986", + "$id": "987", "kind": "enumvalue", "name": "gpt-4-32k", "value": "gpt-4-32k", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "987", + "$id": "988", "kind": "enumvalue", "name": "gpt-4-32k-0314", "value": "gpt-4-32k-0314", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "988", + "$id": "989", "kind": "enumvalue", "name": "gpt-4-32k-0613", "value": "gpt-4-32k-0613", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "989", + "$id": "990", "kind": "enumvalue", "name": "gpt-3.5-turbo", "value": "gpt-3.5-turbo", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "990", + "$id": "991", "kind": "enumvalue", "name": "gpt-3.5-turbo-16k", "value": "gpt-3.5-turbo-16k", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "991", + "$id": "992", "kind": "enumvalue", "name": "gpt-3.5-turbo-0613", "value": "gpt-3.5-turbo-0613", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "992", + "$id": "993", "kind": "enumvalue", "name": "gpt-3.5-turbo-1106", "value": "gpt-3.5-turbo-1106", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "993", + "$id": "994", "kind": "enumvalue", "name": "gpt-3.5-turbo-0125", "value": "gpt-3.5-turbo-0125", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] }, { - "$id": "994", + "$id": "995", "kind": "enumvalue", "name": "gpt-3.5-turbo-16k-0613", "value": "gpt-3.5-turbo-16k-0613", "valueType": { - "$ref": "962" + "$ref": "963" }, "enumType": { - "$ref": "961" + "$ref": "962" }, "decorators": [] } @@ -12123,12 +12136,12 @@ "decorators": [] }, { - "$id": "995", + "$id": "996", "kind": "enum", "name": "TruncationObjectType", "crossLanguageDefinitionId": "OpenAI.TruncationObject.type.anonymous", "valueType": { - "$id": "996", + "$id": "997", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12136,28 +12149,28 @@ }, "values": [ { - "$id": "997", + "$id": "998", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "996" + "$ref": "997" }, "enumType": { - "$ref": "995" + "$ref": "996" }, "decorators": [] }, { - "$id": "998", + "$id": "999", "kind": "enumvalue", "name": "last_messages", "value": "last_messages", "valueType": { - "$ref": "996" + "$ref": "997" }, "enumType": { - "$ref": "995" + "$ref": "996" }, "decorators": [] } @@ -12169,12 +12182,12 @@ "decorators": [] }, { - "$id": "999", + "$id": "1000", "kind": "enum", "name": "CreateThreadAndRunRequestToolChoice1", "crossLanguageDefinitionId": "OpenAI.CreateThreadAndRunRequest.tool_choice.anonymous", "valueType": { - "$id": "1000", + "$id": "1001", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12182,41 +12195,41 @@ }, "values": [ { - "$id": "1001", + "$id": "1002", "kind": "enumvalue", "name": "none", "value": "none", "valueType": { - "$ref": "1000" + "$ref": "1001" }, "enumType": { - "$ref": "999" + "$ref": "1000" }, "decorators": [] }, { - "$id": "1002", + "$id": "1003", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1000" + "$ref": "1001" }, "enumType": { - "$ref": "999" + "$ref": "1000" }, "decorators": [] }, { - "$id": "1003", + "$id": "1004", "kind": "enumvalue", "name": "required", "value": "required", "valueType": { - "$ref": "1000" + "$ref": "1001" }, "enumType": { - "$ref": "999" + "$ref": "1000" }, "decorators": [] } @@ -12228,12 +12241,12 @@ "decorators": [] }, { - "$id": "1004", + "$id": "1005", "kind": "enum", "name": "AssistantsNamedToolChoiceType", "crossLanguageDefinitionId": "OpenAI.AssistantsNamedToolChoice.type.anonymous", "valueType": { - "$id": "1005", + "$id": "1006", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12241,41 +12254,41 @@ }, "values": [ { - "$id": "1006", + "$id": "1007", "kind": "enumvalue", "name": "function", "value": "function", "valueType": { - "$ref": "1005" + "$ref": "1006" }, "enumType": { - "$ref": "1004" + "$ref": "1005" }, "decorators": [] }, { - "$id": "1007", + "$id": "1008", "kind": "enumvalue", "name": "code_interpreter", "value": "code_interpreter", "valueType": { - "$ref": "1005" + "$ref": "1006" }, "enumType": { - "$ref": "1004" + "$ref": "1005" }, "decorators": [] }, { - "$id": "1008", + "$id": "1009", "kind": "enumvalue", "name": "file_search", "value": "file_search", "valueType": { - "$ref": "1005" + "$ref": "1006" }, "enumType": { - "$ref": "1004" + "$ref": "1005" }, "decorators": [] } @@ -12287,12 +12300,12 @@ "decorators": [] }, { - "$id": "1009", + "$id": "1010", "kind": "enum", "name": "RunObjectStatus", "crossLanguageDefinitionId": "OpenAI.RunObject.status.anonymous", "valueType": { - "$id": "1010", + "$id": "1011", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12300,119 +12313,119 @@ }, "values": [ { - "$id": "1011", + "$id": "1012", "kind": "enumvalue", "name": "queued", "value": "queued", "valueType": { - "$ref": "1010" + "$ref": "1011" }, "enumType": { - "$ref": "1009" + "$ref": "1010" }, "decorators": [] }, { - "$id": "1012", + "$id": "1013", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "1010" + "$ref": "1011" }, "enumType": { - "$ref": "1009" + "$ref": "1010" }, "decorators": [] }, { - "$id": "1013", + "$id": "1014", "kind": "enumvalue", "name": "requires_action", "value": "requires_action", "valueType": { - "$ref": "1010" + "$ref": "1011" }, "enumType": { - "$ref": "1009" + "$ref": "1010" }, "decorators": [] }, { - "$id": "1014", + "$id": "1015", "kind": "enumvalue", "name": "cancelling", "value": "cancelling", "valueType": { - "$ref": "1010" + "$ref": "1011" }, "enumType": { - "$ref": "1009" + "$ref": "1010" }, "decorators": [] }, { - "$id": "1015", + "$id": "1016", "kind": "enumvalue", "name": "cancelled", "value": "cancelled", "valueType": { - "$ref": "1010" + "$ref": "1011" }, "enumType": { - "$ref": "1009" + "$ref": "1010" }, "decorators": [] }, { - "$id": "1016", + "$id": "1017", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "1010" + "$ref": "1011" }, "enumType": { - "$ref": "1009" + "$ref": "1010" }, "decorators": [] }, { - "$id": "1017", + "$id": "1018", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "1010" + "$ref": "1011" }, "enumType": { - "$ref": "1009" + "$ref": "1010" }, "decorators": [] }, { - "$id": "1018", + "$id": "1019", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "1010" + "$ref": "1011" }, "enumType": { - "$ref": "1009" + "$ref": "1010" }, "decorators": [] }, { - "$id": "1019", + "$id": "1020", "kind": "enumvalue", "name": "expired", "value": "expired", "valueType": { - "$ref": "1010" + "$ref": "1011" }, "enumType": { - "$ref": "1009" + "$ref": "1010" }, "decorators": [] } @@ -12424,12 +12437,12 @@ "decorators": [] }, { - "$id": "1020", + "$id": "1021", "kind": "enum", "name": "RunObjectLastErrorCode", "crossLanguageDefinitionId": "OpenAI.RunObject.last_error.code.anonymous", "valueType": { - "$id": "1021", + "$id": "1022", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12437,41 +12450,41 @@ }, "values": [ { - "$id": "1022", + "$id": "1023", "kind": "enumvalue", "name": "server_error", "value": "server_error", "valueType": { - "$ref": "1021" + "$ref": "1022" }, "enumType": { - "$ref": "1020" + "$ref": "1021" }, "decorators": [] }, { - "$id": "1023", + "$id": "1024", "kind": "enumvalue", "name": "rate_limit_exceeded", "value": "rate_limit_exceeded", "valueType": { - "$ref": "1021" + "$ref": "1022" }, "enumType": { - "$ref": "1020" + "$ref": "1021" }, "decorators": [] }, { - "$id": "1024", + "$id": "1025", "kind": "enumvalue", "name": "invalid_prompt", "value": "invalid_prompt", "valueType": { - "$ref": "1021" + "$ref": "1022" }, "enumType": { - "$ref": "1020" + "$ref": "1021" }, "decorators": [] } @@ -12483,12 +12496,12 @@ "decorators": [] }, { - "$id": "1025", + "$id": "1026", "kind": "enum", "name": "RunObjectIncompleteDetailsReason", "crossLanguageDefinitionId": "OpenAI.RunObject.incomplete_details.reason.anonymous", "valueType": { - "$id": "1026", + "$id": "1027", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12496,28 +12509,28 @@ }, "values": [ { - "$id": "1027", + "$id": "1028", "kind": "enumvalue", "name": "max_completion_tokens", "value": "max_completion_tokens", "valueType": { - "$ref": "1026" + "$ref": "1027" }, "enumType": { - "$ref": "1025" + "$ref": "1026" }, "decorators": [] }, { - "$id": "1028", + "$id": "1029", "kind": "enumvalue", "name": "max_prompt_tokens", "value": "max_prompt_tokens", "valueType": { - "$ref": "1026" + "$ref": "1027" }, "enumType": { - "$ref": "1025" + "$ref": "1026" }, "decorators": [] } @@ -12529,12 +12542,12 @@ "decorators": [] }, { - "$id": "1029", + "$id": "1030", "kind": "enum", "name": "RunStepObjectType", "crossLanguageDefinitionId": "OpenAI.RunStepObject.type.anonymous", "valueType": { - "$id": "1030", + "$id": "1031", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12542,28 +12555,28 @@ }, "values": [ { - "$id": "1031", + "$id": "1032", "kind": "enumvalue", "name": "message_creation", "value": "message_creation", "valueType": { - "$ref": "1030" + "$ref": "1031" }, "enumType": { - "$ref": "1029" + "$ref": "1030" }, "decorators": [] }, { - "$id": "1032", + "$id": "1033", "kind": "enumvalue", "name": "tool_calls", "value": "tool_calls", "valueType": { - "$ref": "1030" + "$ref": "1031" }, "enumType": { - "$ref": "1029" + "$ref": "1030" }, "decorators": [] } @@ -12575,12 +12588,12 @@ "decorators": [] }, { - "$id": "1033", + "$id": "1034", "kind": "enum", "name": "RunStepObjectStatus", "crossLanguageDefinitionId": "OpenAI.RunStepObject.status.anonymous", "valueType": { - "$id": "1034", + "$id": "1035", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12588,67 +12601,67 @@ }, "values": [ { - "$id": "1035", + "$id": "1036", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "1034" + "$ref": "1035" }, "enumType": { - "$ref": "1033" + "$ref": "1034" }, "decorators": [] }, { - "$id": "1036", + "$id": "1037", "kind": "enumvalue", "name": "cancelled", "value": "cancelled", "valueType": { - "$ref": "1034" + "$ref": "1035" }, "enumType": { - "$ref": "1033" + "$ref": "1034" }, "decorators": [] }, { - "$id": "1037", + "$id": "1038", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "1034" + "$ref": "1035" }, "enumType": { - "$ref": "1033" + "$ref": "1034" }, "decorators": [] }, { - "$id": "1038", + "$id": "1039", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "1034" + "$ref": "1035" }, "enumType": { - "$ref": "1033" + "$ref": "1034" }, "decorators": [] }, { - "$id": "1039", + "$id": "1040", "kind": "enumvalue", "name": "expired", "value": "expired", "valueType": { - "$ref": "1034" + "$ref": "1035" }, "enumType": { - "$ref": "1033" + "$ref": "1034" }, "decorators": [] } @@ -12660,12 +12673,12 @@ "decorators": [] }, { - "$id": "1040", + "$id": "1041", "kind": "enum", "name": "RunStepDetailsType", "crossLanguageDefinitionId": "OpenAI.RunStepDetailsType", "valueType": { - "$id": "1041", + "$id": "1042", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12673,28 +12686,28 @@ }, "values": [ { - "$id": "1042", + "$id": "1043", "kind": "enumvalue", "name": "message_creation", "value": "message_creation", "valueType": { - "$ref": "1041" + "$ref": "1042" }, "enumType": { - "$ref": "1040" + "$ref": "1041" }, "decorators": [] }, { - "$id": "1043", + "$id": "1044", "kind": "enumvalue", "name": "tool_calls", "value": "tool_calls", "valueType": { - "$ref": "1041" + "$ref": "1042" }, "enumType": { - "$ref": "1040" + "$ref": "1041" }, "decorators": [] } @@ -12706,12 +12719,12 @@ "decorators": [] }, { - "$id": "1044", + "$id": "1045", "kind": "enum", "name": "RunStepDetailsToolCallType", "crossLanguageDefinitionId": "OpenAI.RunStepDetailsToolCallType", "valueType": { - "$id": "1045", + "$id": "1046", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12719,41 +12732,41 @@ }, "values": [ { - "$id": "1046", + "$id": "1047", "kind": "enumvalue", "name": "code_interpreter", "value": "code_interpreter", "valueType": { - "$ref": "1045" + "$ref": "1046" }, "enumType": { - "$ref": "1044" + "$ref": "1045" }, "decorators": [] }, { - "$id": "1047", + "$id": "1048", "kind": "enumvalue", "name": "file_search", "value": "file_search", "valueType": { - "$ref": "1045" + "$ref": "1046" }, "enumType": { - "$ref": "1044" + "$ref": "1045" }, "decorators": [] }, { - "$id": "1048", + "$id": "1049", "kind": "enumvalue", "name": "function", "value": "function", "valueType": { - "$ref": "1045" + "$ref": "1046" }, "enumType": { - "$ref": "1044" + "$ref": "1045" }, "decorators": [] } @@ -12765,12 +12778,12 @@ "decorators": [] }, { - "$id": "1049", + "$id": "1050", "kind": "enum", "name": "RunStepDetailsCodeInterpreterOutputType", "crossLanguageDefinitionId": "OpenAI.RunStepDetailsCodeInterpreterOutputType", "valueType": { - "$id": "1050", + "$id": "1051", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12778,28 +12791,28 @@ }, "values": [ { - "$id": "1051", + "$id": "1052", "kind": "enumvalue", "name": "logs", "value": "logs", "valueType": { - "$ref": "1050" + "$ref": "1051" }, "enumType": { - "$ref": "1049" + "$ref": "1050" }, "decorators": [] }, { - "$id": "1052", + "$id": "1053", "kind": "enumvalue", "name": "image", "value": "image", "valueType": { - "$ref": "1050" + "$ref": "1051" }, "enumType": { - "$ref": "1049" + "$ref": "1050" }, "decorators": [] } @@ -12811,12 +12824,12 @@ "decorators": [] }, { - "$id": "1053", + "$id": "1054", "kind": "enum", "name": "RunStepObjectLastErrorCode", "crossLanguageDefinitionId": "OpenAI.RunStepObject.last_error.code.anonymous", "valueType": { - "$id": "1054", + "$id": "1055", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12824,28 +12837,28 @@ }, "values": [ { - "$id": "1055", + "$id": "1056", "kind": "enumvalue", "name": "server_error", "value": "server_error", "valueType": { - "$ref": "1054" + "$ref": "1055" }, "enumType": { - "$ref": "1053" + "$ref": "1054" }, "decorators": [] }, { - "$id": "1056", + "$id": "1057", "kind": "enumvalue", "name": "rate_limit_exceeded", "value": "rate_limit_exceeded", "valueType": { - "$ref": "1054" + "$ref": "1055" }, "enumType": { - "$ref": "1053" + "$ref": "1054" }, "decorators": [] } @@ -12857,12 +12870,12 @@ "decorators": [] }, { - "$id": "1057", + "$id": "1058", "kind": "enum", "name": "VectorStoreObjectStatus", "crossLanguageDefinitionId": "OpenAI.VectorStoreObject.status.anonymous", "valueType": { - "$id": "1058", + "$id": "1059", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12870,41 +12883,41 @@ }, "values": [ { - "$id": "1059", + "$id": "1060", "kind": "enumvalue", "name": "expired", "value": "expired", "valueType": { - "$ref": "1058" + "$ref": "1059" }, "enumType": { - "$ref": "1057" + "$ref": "1058" }, "decorators": [] }, { - "$id": "1060", + "$id": "1061", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "1058" + "$ref": "1059" }, "enumType": { - "$ref": "1057" + "$ref": "1058" }, "decorators": [] }, { - "$id": "1061", + "$id": "1062", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "1058" + "$ref": "1059" }, "enumType": { - "$ref": "1057" + "$ref": "1058" }, "decorators": [] } @@ -12916,12 +12929,12 @@ "decorators": [] }, { - "$id": "1062", + "$id": "1063", "kind": "enum", "name": "VectorStoreFileBatchObjectStatus", "crossLanguageDefinitionId": "OpenAI.VectorStoreFileBatchObject.status.anonymous", "valueType": { - "$id": "1063", + "$id": "1064", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12929,54 +12942,54 @@ }, "values": [ { - "$id": "1064", + "$id": "1065", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "1063" + "$ref": "1064" }, "enumType": { - "$ref": "1062" + "$ref": "1063" }, "decorators": [] }, { - "$id": "1065", + "$id": "1066", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "1063" + "$ref": "1064" }, "enumType": { - "$ref": "1062" + "$ref": "1063" }, "decorators": [] }, { - "$id": "1066", + "$id": "1067", "kind": "enumvalue", "name": "cancelled", "value": "cancelled", "valueType": { - "$ref": "1063" + "$ref": "1064" }, "enumType": { - "$ref": "1062" + "$ref": "1063" }, "decorators": [] }, { - "$id": "1067", + "$id": "1068", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "1063" + "$ref": "1064" }, "enumType": { - "$ref": "1062" + "$ref": "1063" }, "decorators": [] } @@ -12988,12 +13001,12 @@ "decorators": [] }, { - "$id": "1068", + "$id": "1069", "kind": "enum", "name": "VectorStoreFileObjectStatus", "crossLanguageDefinitionId": "OpenAI.VectorStoreFileObject.status.anonymous", "valueType": { - "$id": "1069", + "$id": "1070", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13001,54 +13014,54 @@ }, "values": [ { - "$id": "1070", + "$id": "1071", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "1069" + "$ref": "1070" }, "enumType": { - "$ref": "1068" + "$ref": "1069" }, "decorators": [] }, { - "$id": "1071", + "$id": "1072", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "1069" + "$ref": "1070" }, "enumType": { - "$ref": "1068" + "$ref": "1069" }, "decorators": [] }, { - "$id": "1072", + "$id": "1073", "kind": "enumvalue", "name": "cancelled", "value": "cancelled", "valueType": { - "$ref": "1069" + "$ref": "1070" }, "enumType": { - "$ref": "1068" + "$ref": "1069" }, "decorators": [] }, { - "$id": "1073", + "$id": "1074", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "1069" + "$ref": "1070" }, "enumType": { - "$ref": "1068" + "$ref": "1069" }, "decorators": [] } @@ -13060,12 +13073,12 @@ "decorators": [] }, { - "$id": "1074", + "$id": "1075", "kind": "enum", "name": "VectorStoreFileObjectLastErrorCode", "crossLanguageDefinitionId": "OpenAI.VectorStoreFileObject.last_error.code.anonymous", "valueType": { - "$id": "1075", + "$id": "1076", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13073,41 +13086,41 @@ }, "values": [ { - "$id": "1076", + "$id": "1077", "kind": "enumvalue", "name": "server_error", "value": "server_error", "valueType": { - "$ref": "1075" + "$ref": "1076" }, "enumType": { - "$ref": "1074" + "$ref": "1075" }, "decorators": [] }, { - "$id": "1077", + "$id": "1078", "kind": "enumvalue", "name": "unsupported_file", "value": "unsupported_file", "valueType": { - "$ref": "1075" + "$ref": "1076" }, "enumType": { - "$ref": "1074" + "$ref": "1075" }, "decorators": [] }, { - "$id": "1078", + "$id": "1079", "kind": "enumvalue", "name": "invalid_file", "value": "invalid_file", "valueType": { - "$ref": "1075" + "$ref": "1076" }, "enumType": { - "$ref": "1074" + "$ref": "1075" }, "decorators": [] } @@ -13119,12 +13132,12 @@ "decorators": [] }, { - "$id": "1079", + "$id": "1080", "kind": "enum", "name": "ChunkingStrategyResponseParamType", "crossLanguageDefinitionId": "OpenAI.ChunkingStrategyResponseParam.type.anonymous", "valueType": { - "$id": "1080", + "$id": "1081", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13132,28 +13145,28 @@ }, "values": [ { - "$id": "1081", + "$id": "1082", "kind": "enumvalue", "name": "static", "value": "static", "valueType": { - "$ref": "1080" + "$ref": "1081" }, "enumType": { - "$ref": "1079" + "$ref": "1080" }, "decorators": [] }, { - "$id": "1082", + "$id": "1083", "kind": "enumvalue", "name": "other", "value": "other", "valueType": { - "$ref": "1080" + "$ref": "1081" }, "enumType": { - "$ref": "1079" + "$ref": "1080" }, "decorators": [] } @@ -13165,12 +13178,12 @@ "decorators": [] }, { - "$id": "1083", + "$id": "1084", "kind": "enum", "name": "VectorStoreSearchRequestRankingOptionsRanker", "crossLanguageDefinitionId": "OpenAI.VectorStoreSearchRequest.ranking_options.ranker.anonymous", "valueType": { - "$id": "1084", + "$id": "1085", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13178,28 +13191,28 @@ }, "values": [ { - "$id": "1085", + "$id": "1086", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1084" + "$ref": "1085" }, "enumType": { - "$ref": "1083" + "$ref": "1084" }, "decorators": [] }, { - "$id": "1086", + "$id": "1087", "kind": "enumvalue", "name": "default-2024-11-15", "value": "default-2024-11-15", "valueType": { - "$ref": "1084" + "$ref": "1085" }, "enumType": { - "$ref": "1083" + "$ref": "1084" }, "decorators": [] } @@ -13211,12 +13224,12 @@ "decorators": [] }, { - "$id": "1087", + "$id": "1088", "kind": "enum", "name": "CreateCompletionRequestModel", "crossLanguageDefinitionId": "OpenAI.CreateCompletionRequest.model.anonymous", "valueType": { - "$id": "1088", + "$id": "1089", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13224,41 +13237,41 @@ }, "values": [ { - "$id": "1089", + "$id": "1090", "kind": "enumvalue", "name": "gpt-3.5-turbo-instruct", "value": "gpt-3.5-turbo-instruct", "valueType": { - "$ref": "1088" + "$ref": "1089" }, "enumType": { - "$ref": "1087" + "$ref": "1088" }, "decorators": [] }, { - "$id": "1090", + "$id": "1091", "kind": "enumvalue", "name": "davinci-002", "value": "davinci-002", "valueType": { - "$ref": "1088" + "$ref": "1089" }, "enumType": { - "$ref": "1087" + "$ref": "1088" }, "decorators": [] }, { - "$id": "1091", + "$id": "1092", "kind": "enumvalue", "name": "babbage-002", "value": "babbage-002", "valueType": { - "$ref": "1088" + "$ref": "1089" }, "enumType": { - "$ref": "1087" + "$ref": "1088" }, "decorators": [] } @@ -13270,12 +13283,12 @@ "decorators": [] }, { - "$id": "1092", + "$id": "1093", "kind": "enum", "name": "CreateCompletionResponseChoiceFinishReason", "crossLanguageDefinitionId": "OpenAI.CreateCompletionResponse.choice.finish_reason.anonymous", "valueType": { - "$id": "1093", + "$id": "1094", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13283,41 +13296,41 @@ }, "values": [ { - "$id": "1094", + "$id": "1095", "kind": "enumvalue", "name": "stop", "value": "stop", "valueType": { - "$ref": "1093" + "$ref": "1094" }, "enumType": { - "$ref": "1092" + "$ref": "1093" }, "decorators": [] }, { - "$id": "1095", + "$id": "1096", "kind": "enumvalue", "name": "length", "value": "length", "valueType": { - "$ref": "1093" + "$ref": "1094" }, "enumType": { - "$ref": "1092" + "$ref": "1093" }, "decorators": [] }, { - "$id": "1096", + "$id": "1097", "kind": "enumvalue", "name": "content_filter", "value": "content_filter", "valueType": { - "$ref": "1093" + "$ref": "1094" }, "enumType": { - "$ref": "1092" + "$ref": "1093" }, "decorators": [] } @@ -13329,12 +13342,12 @@ "decorators": [] }, { - "$id": "1097", + "$id": "1098", "kind": "enum", "name": "RealtimeClientEventType", "crossLanguageDefinitionId": "OpenAI.RealtimeClientEventType", "valueType": { - "$id": "1098", + "$id": "1099", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13342,158 +13355,158 @@ }, "values": [ { - "$id": "1099", + "$id": "1100", "kind": "enumvalue", "name": "session_update", "value": "session.update", "valueType": { - "$ref": "1098" + "$ref": "1099" }, "enumType": { - "$ref": "1097" + "$ref": "1098" }, "decorators": [] }, { - "$id": "1100", + "$id": "1101", "kind": "enumvalue", "name": "input_audio_buffer_append", "value": "input_audio_buffer.append", "valueType": { - "$ref": "1098" + "$ref": "1099" }, "enumType": { - "$ref": "1097" + "$ref": "1098" }, "decorators": [] }, { - "$id": "1101", + "$id": "1102", "kind": "enumvalue", "name": "input_audio_buffer_commit", "value": "input_audio_buffer.commit", "valueType": { - "$ref": "1098" + "$ref": "1099" }, "enumType": { - "$ref": "1097" + "$ref": "1098" }, "decorators": [] }, { - "$id": "1102", + "$id": "1103", "kind": "enumvalue", "name": "input_audio_buffer_clear", "value": "input_audio_buffer.clear", "valueType": { - "$ref": "1098" + "$ref": "1099" }, "enumType": { - "$ref": "1097" + "$ref": "1098" }, "decorators": [] }, { - "$id": "1103", + "$id": "1104", "kind": "enumvalue", "name": "output_audio_buffer_clear", "value": "output_audio_buffer.clear", "valueType": { - "$ref": "1098" + "$ref": "1099" }, "enumType": { - "$ref": "1097" + "$ref": "1098" }, "decorators": [] }, { - "$id": "1104", + "$id": "1105", "kind": "enumvalue", "name": "conversation_item_create", "value": "conversation.item.create", "valueType": { - "$ref": "1098" + "$ref": "1099" }, "enumType": { - "$ref": "1097" + "$ref": "1098" }, "decorators": [] }, { - "$id": "1105", + "$id": "1106", "kind": "enumvalue", "name": "conversation_item_retrieve", "value": "conversation.item.retrieve", "valueType": { - "$ref": "1098" + "$ref": "1099" }, "enumType": { - "$ref": "1097" + "$ref": "1098" }, "decorators": [] }, { - "$id": "1106", + "$id": "1107", "kind": "enumvalue", "name": "conversation_item_truncate", "value": "conversation.item.truncate", "valueType": { - "$ref": "1098" + "$ref": "1099" }, "enumType": { - "$ref": "1097" + "$ref": "1098" }, "decorators": [] }, { - "$id": "1107", + "$id": "1108", "kind": "enumvalue", "name": "conversation_item_delete", "value": "conversation.item.delete", "valueType": { - "$ref": "1098" + "$ref": "1099" }, "enumType": { - "$ref": "1097" + "$ref": "1098" }, "decorators": [] }, { - "$id": "1108", + "$id": "1109", "kind": "enumvalue", "name": "response_create", "value": "response.create", "valueType": { - "$ref": "1098" + "$ref": "1099" }, "enumType": { - "$ref": "1097" + "$ref": "1098" }, "decorators": [] }, { - "$id": "1109", + "$id": "1110", "kind": "enumvalue", "name": "response_cancel", "value": "response.cancel", "valueType": { - "$ref": "1098" + "$ref": "1099" }, "enumType": { - "$ref": "1097" + "$ref": "1098" }, "decorators": [] }, { - "$id": "1110", + "$id": "1111", "kind": "enumvalue", "name": "transcription_session_update", "value": "transcription_session.update", "valueType": { - "$ref": "1098" + "$ref": "1099" }, "enumType": { - "$ref": "1097" + "$ref": "1098" }, "decorators": [] } @@ -13505,12 +13518,12 @@ "decorators": [] }, { - "$id": "1111", + "$id": "1112", "kind": "enum", "name": "RealtimeModality", "crossLanguageDefinitionId": "OpenAI.RealtimeModality", "valueType": { - "$id": "1112", + "$id": "1113", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13518,28 +13531,28 @@ }, "values": [ { - "$id": "1113", + "$id": "1114", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "1112" + "$ref": "1113" }, "enumType": { - "$ref": "1111" + "$ref": "1112" }, "decorators": [] }, { - "$id": "1114", + "$id": "1115", "kind": "enumvalue", "name": "audio", "value": "audio", "valueType": { - "$ref": "1112" + "$ref": "1113" }, "enumType": { - "$ref": "1111" + "$ref": "1112" }, "decorators": [] } @@ -13551,12 +13564,12 @@ "decorators": [] }, { - "$id": "1115", + "$id": "1116", "kind": "enum", "name": "RealtimeRequestSessionModel", "crossLanguageDefinitionId": "OpenAI.RealtimeRequestSession.model.anonymous", "valueType": { - "$id": "1116", + "$id": "1117", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13564,67 +13577,67 @@ }, "values": [ { - "$id": "1117", + "$id": "1118", "kind": "enumvalue", "name": "gpt-4o-realtime-preview", "value": "gpt-4o-realtime-preview", "valueType": { - "$ref": "1116" + "$ref": "1117" }, "enumType": { - "$ref": "1115" + "$ref": "1116" }, "decorators": [] }, { - "$id": "1118", + "$id": "1119", "kind": "enumvalue", "name": "gpt-4o-realtime-preview-2024-10-01", "value": "gpt-4o-realtime-preview-2024-10-01", "valueType": { - "$ref": "1116" + "$ref": "1117" }, "enumType": { - "$ref": "1115" + "$ref": "1116" }, "decorators": [] }, { - "$id": "1119", + "$id": "1120", "kind": "enumvalue", "name": "gpt-4o-realtime-preview-2024-12-17", "value": "gpt-4o-realtime-preview-2024-12-17", "valueType": { - "$ref": "1116" + "$ref": "1117" }, "enumType": { - "$ref": "1115" + "$ref": "1116" }, "decorators": [] }, { - "$id": "1120", + "$id": "1121", "kind": "enumvalue", "name": "gpt-4o-mini-realtime-preview", "value": "gpt-4o-mini-realtime-preview", "valueType": { - "$ref": "1116" + "$ref": "1117" }, "enumType": { - "$ref": "1115" + "$ref": "1116" }, "decorators": [] }, { - "$id": "1121", + "$id": "1122", "kind": "enumvalue", "name": "gpt-4o-mini-realtime-preview-2024-12-17", "value": "gpt-4o-mini-realtime-preview-2024-12-17", "valueType": { - "$ref": "1116" + "$ref": "1117" }, "enumType": { - "$ref": "1115" + "$ref": "1116" }, "decorators": [] } @@ -13636,12 +13649,12 @@ "decorators": [] }, { - "$id": "1122", + "$id": "1123", "kind": "enum", "name": "RealtimeAudioFormat", "crossLanguageDefinitionId": "OpenAI.RealtimeAudioFormat", "valueType": { - "$id": "1123", + "$id": "1124", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13649,41 +13662,41 @@ }, "values": [ { - "$id": "1124", + "$id": "1125", "kind": "enumvalue", "name": "pcm16", "value": "pcm16", "valueType": { - "$ref": "1123" + "$ref": "1124" }, "enumType": { - "$ref": "1122" + "$ref": "1123" }, "decorators": [] }, { - "$id": "1125", + "$id": "1126", "kind": "enumvalue", "name": "g711_ulaw", "value": "g711_ulaw", "valueType": { - "$ref": "1123" + "$ref": "1124" }, "enumType": { - "$ref": "1122" + "$ref": "1123" }, "decorators": [] }, { - "$id": "1126", + "$id": "1127", "kind": "enumvalue", "name": "g711_alaw", "value": "g711_alaw", "valueType": { - "$ref": "1123" + "$ref": "1124" }, "enumType": { - "$ref": "1122" + "$ref": "1123" }, "decorators": [] } @@ -13695,12 +13708,12 @@ "decorators": [] }, { - "$id": "1127", + "$id": "1128", "kind": "enum", "name": "RealtimeAudioInputTranscriptionModel", "crossLanguageDefinitionId": "OpenAI.RealtimeAudioInputTranscriptionModel", "valueType": { - "$id": "1128", + "$id": "1129", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13708,15 +13721,15 @@ }, "values": [ { - "$id": "1129", + "$id": "1130", "kind": "enumvalue", "name": "whisper_1", "value": "whisper-1", "valueType": { - "$ref": "1128" + "$ref": "1129" }, "enumType": { - "$ref": "1127" + "$ref": "1128" }, "decorators": [] } @@ -13728,12 +13741,12 @@ "decorators": [] }, { - "$id": "1130", + "$id": "1131", "kind": "enum", "name": "RealtimeTurnDetectionType", "crossLanguageDefinitionId": "OpenAI.RealtimeTurnDetectionType", "valueType": { - "$id": "1131", + "$id": "1132", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13741,29 +13754,29 @@ }, "values": [ { - "$id": "1132", + "$id": "1133", "kind": "enumvalue", "name": "server_vad", "value": "server_vad", "valueType": { - "$ref": "1131" + "$ref": "1132" }, "enumType": { - "$ref": "1130" + "$ref": "1131" }, "doc": "Indicates that server-side voice activity detection (VAD) should be enabled, allowing the server to determine when\nadd_user_audio commands present ends of speech and should be automatically committed.\n\nThe API will also detect when the user begins talking, sending a generation_canceled command.", "decorators": [] }, { - "$id": "1133", + "$id": "1134", "kind": "enumvalue", "name": "semantic_vad", "value": "semantic_vad", "valueType": { - "$ref": "1131" + "$ref": "1132" }, "enumType": { - "$ref": "1130" + "$ref": "1131" }, "decorators": [] } @@ -13775,12 +13788,12 @@ "decorators": [] }, { - "$id": "1134", + "$id": "1135", "kind": "enum", "name": "RealtimeSemanticVadTurnDetectionEagerness", "crossLanguageDefinitionId": "OpenAI.RealtimeSemanticVadTurnDetection.eagerness.anonymous", "valueType": { - "$id": "1135", + "$id": "1136", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13788,54 +13801,54 @@ }, "values": [ { - "$id": "1136", + "$id": "1137", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "1135" + "$ref": "1136" }, "enumType": { - "$ref": "1134" + "$ref": "1135" }, "decorators": [] }, { - "$id": "1137", + "$id": "1138", "kind": "enumvalue", "name": "medium", "value": "medium", "valueType": { - "$ref": "1135" + "$ref": "1136" }, "enumType": { - "$ref": "1134" + "$ref": "1135" }, "decorators": [] }, { - "$id": "1138", + "$id": "1139", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "1135" + "$ref": "1136" }, "enumType": { - "$ref": "1134" + "$ref": "1135" }, "decorators": [] }, { - "$id": "1139", + "$id": "1140", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1135" + "$ref": "1136" }, "enumType": { - "$ref": "1134" + "$ref": "1135" }, "decorators": [] } @@ -13847,12 +13860,12 @@ "decorators": [] }, { - "$id": "1140", + "$id": "1141", "kind": "enum", "name": "RealtimeAudioNoiseReductionType", "crossLanguageDefinitionId": "OpenAI.RealtimeAudioNoiseReductionType", "valueType": { - "$id": "1141", + "$id": "1142", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13860,28 +13873,28 @@ }, "values": [ { - "$id": "1142", + "$id": "1143", "kind": "enumvalue", "name": "near_field", "value": "near_field", "valueType": { - "$ref": "1141" + "$ref": "1142" }, "enumType": { - "$ref": "1140" + "$ref": "1141" }, "decorators": [] }, { - "$id": "1143", + "$id": "1144", "kind": "enumvalue", "name": "far_field", "value": "far_field", "valueType": { - "$ref": "1141" + "$ref": "1142" }, "enumType": { - "$ref": "1140" + "$ref": "1141" }, "decorators": [] } @@ -13893,12 +13906,12 @@ "decorators": [] }, { - "$id": "1144", + "$id": "1145", "kind": "enum", "name": "RealtimeToolType", "crossLanguageDefinitionId": "OpenAI.RealtimeToolType", "valueType": { - "$id": "1145", + "$id": "1146", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13906,15 +13919,15 @@ }, "values": [ { - "$id": "1146", + "$id": "1147", "kind": "enumvalue", "name": "function", "value": "function", "valueType": { - "$ref": "1145" + "$ref": "1146" }, "enumType": { - "$ref": "1144" + "$ref": "1145" }, "decorators": [] } @@ -13927,12 +13940,12 @@ "decorators": [] }, { - "$id": "1147", + "$id": "1148", "kind": "enum", "name": "RealtimeToolChoiceLiteral", "crossLanguageDefinitionId": "OpenAI.RealtimeToolChoiceLiteral", "valueType": { - "$id": "1148", + "$id": "1149", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13940,43 +13953,43 @@ }, "values": [ { - "$id": "1149", + "$id": "1150", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1148" + "$ref": "1149" }, "enumType": { - "$ref": "1147" + "$ref": "1148" }, "doc": "Specifies that the model should freely determine which tool or tools, if any, to call.", "decorators": [] }, { - "$id": "1150", + "$id": "1151", "kind": "enumvalue", "name": "none", "value": "none", "valueType": { - "$ref": "1148" + "$ref": "1149" }, "enumType": { - "$ref": "1147" + "$ref": "1148" }, "doc": "Specifies that the model should call no tools whatsoever.", "decorators": [] }, { - "$id": "1151", + "$id": "1152", "kind": "enumvalue", "name": "required", "value": "required", "valueType": { - "$ref": "1148" + "$ref": "1149" }, "enumType": { - "$ref": "1147" + "$ref": "1148" }, "doc": "Specifies that the model should call at least one tool.", "decorators": [] @@ -13990,12 +14003,12 @@ "decorators": [] }, { - "$id": "1152", + "$id": "1153", "kind": "enum", "name": "RealtimeItemType", "crossLanguageDefinitionId": "OpenAI.RealtimeItemType", "valueType": { - "$id": "1153", + "$id": "1154", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14003,41 +14016,41 @@ }, "values": [ { - "$id": "1154", + "$id": "1155", "kind": "enumvalue", "name": "message", "value": "message", "valueType": { - "$ref": "1153" + "$ref": "1154" }, "enumType": { - "$ref": "1152" + "$ref": "1153" }, "decorators": [] }, { - "$id": "1155", + "$id": "1156", "kind": "enumvalue", "name": "function_call", "value": "function_call", "valueType": { - "$ref": "1153" + "$ref": "1154" }, "enumType": { - "$ref": "1152" + "$ref": "1153" }, "decorators": [] }, { - "$id": "1156", + "$id": "1157", "kind": "enumvalue", "name": "function_call_output", "value": "function_call_output", "valueType": { - "$ref": "1153" + "$ref": "1154" }, "enumType": { - "$ref": "1152" + "$ref": "1153" }, "decorators": [] } @@ -14049,12 +14062,12 @@ "decorators": [] }, { - "$id": "1157", + "$id": "1158", "kind": "enum", "name": "RealtimeMessageRole", "crossLanguageDefinitionId": "OpenAI.RealtimeMessageRole", "valueType": { - "$id": "1158", + "$id": "1159", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14062,41 +14075,41 @@ }, "values": [ { - "$id": "1159", + "$id": "1160", "kind": "enumvalue", "name": "system", "value": "system", "valueType": { - "$ref": "1158" + "$ref": "1159" }, "enumType": { - "$ref": "1157" + "$ref": "1158" }, "decorators": [] }, { - "$id": "1160", + "$id": "1161", "kind": "enumvalue", "name": "user", "value": "user", "valueType": { - "$ref": "1158" + "$ref": "1159" }, "enumType": { - "$ref": "1157" + "$ref": "1158" }, "decorators": [] }, { - "$id": "1161", + "$id": "1162", "kind": "enumvalue", "name": "assistant", "value": "assistant", "valueType": { - "$ref": "1158" + "$ref": "1159" }, "enumType": { - "$ref": "1157" + "$ref": "1158" }, "decorators": [] } @@ -14108,12 +14121,12 @@ "decorators": [] }, { - "$id": "1162", + "$id": "1163", "kind": "enum", "name": "RealtimeItemStatus", "crossLanguageDefinitionId": "OpenAI.RealtimeItemStatus", "valueType": { - "$id": "1163", + "$id": "1164", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14121,41 +14134,41 @@ }, "values": [ { - "$id": "1164", + "$id": "1165", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "1163" + "$ref": "1164" }, "enumType": { - "$ref": "1162" + "$ref": "1163" }, "decorators": [] }, { - "$id": "1165", + "$id": "1166", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "1163" + "$ref": "1164" }, "enumType": { - "$ref": "1162" + "$ref": "1163" }, "decorators": [] }, { - "$id": "1166", + "$id": "1167", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "1163" + "$ref": "1164" }, "enumType": { - "$ref": "1162" + "$ref": "1163" }, "decorators": [] } @@ -14167,12 +14180,12 @@ "decorators": [] }, { - "$id": "1167", + "$id": "1168", "kind": "enum", "name": "RealtimeContentPartType", "crossLanguageDefinitionId": "OpenAI.RealtimeContentPartType", "valueType": { - "$id": "1168", + "$id": "1169", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14180,54 +14193,54 @@ }, "values": [ { - "$id": "1169", + "$id": "1170", "kind": "enumvalue", "name": "input_text", "value": "input_text", "valueType": { - "$ref": "1168" + "$ref": "1169" }, "enumType": { - "$ref": "1167" + "$ref": "1168" }, "decorators": [] }, { - "$id": "1170", + "$id": "1171", "kind": "enumvalue", "name": "input_audio", "value": "input_audio", "valueType": { - "$ref": "1168" + "$ref": "1169" }, "enumType": { - "$ref": "1167" + "$ref": "1168" }, "decorators": [] }, { - "$id": "1171", + "$id": "1172", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "1168" + "$ref": "1169" }, "enumType": { - "$ref": "1167" + "$ref": "1168" }, "decorators": [] }, { - "$id": "1172", + "$id": "1173", "kind": "enumvalue", "name": "audio", "value": "audio", "valueType": { - "$ref": "1168" + "$ref": "1169" }, "enumType": { - "$ref": "1167" + "$ref": "1168" }, "decorators": [] } @@ -14239,12 +14252,12 @@ "decorators": [] }, { - "$id": "1173", + "$id": "1174", "kind": "enum", "name": "RealtimeResponseCreateParamsConversation", "crossLanguageDefinitionId": "OpenAI.RealtimeResponseCreateParams.conversation.anonymous", "valueType": { - "$id": "1174", + "$id": "1175", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14252,28 +14265,28 @@ }, "values": [ { - "$id": "1175", + "$id": "1176", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1174" + "$ref": "1175" }, "enumType": { - "$ref": "1173" + "$ref": "1174" }, "decorators": [] }, { - "$id": "1176", + "$id": "1177", "kind": "enumvalue", "name": "none", "value": "none", "valueType": { - "$ref": "1174" + "$ref": "1175" }, "enumType": { - "$ref": "1173" + "$ref": "1174" }, "decorators": [] } @@ -14285,12 +14298,12 @@ "decorators": [] }, { - "$id": "1177", + "$id": "1178", "kind": "enum", "name": "RealtimeTranscriptionSessionCreateRequestModality", "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateRequest.modality.anonymous", "valueType": { - "$id": "1178", + "$id": "1179", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14298,28 +14311,28 @@ }, "values": [ { - "$id": "1179", + "$id": "1180", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "1178" + "$ref": "1179" }, "enumType": { - "$ref": "1177" + "$ref": "1178" }, "decorators": [] }, { - "$id": "1180", + "$id": "1181", "kind": "enumvalue", "name": "audio", "value": "audio", "valueType": { - "$ref": "1178" + "$ref": "1179" }, "enumType": { - "$ref": "1177" + "$ref": "1178" }, "decorators": [] } @@ -14331,12 +14344,12 @@ "decorators": [] }, { - "$id": "1181", + "$id": "1182", "kind": "enum", "name": "RealtimeTranscriptionSessionCreateRequestInputAudioFormat", "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateRequest.input_audio_format.anonymous", "valueType": { - "$id": "1182", + "$id": "1183", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14344,41 +14357,41 @@ }, "values": [ { - "$id": "1183", + "$id": "1184", "kind": "enumvalue", "name": "pcm16", "value": "pcm16", "valueType": { - "$ref": "1182" + "$ref": "1183" }, "enumType": { - "$ref": "1181" + "$ref": "1182" }, "decorators": [] }, { - "$id": "1184", + "$id": "1185", "kind": "enumvalue", "name": "g711_ulaw", "value": "g711_ulaw", "valueType": { - "$ref": "1182" + "$ref": "1183" }, "enumType": { - "$ref": "1181" + "$ref": "1182" }, "decorators": [] }, { - "$id": "1185", + "$id": "1186", "kind": "enumvalue", "name": "g711_alaw", "value": "g711_alaw", "valueType": { - "$ref": "1182" + "$ref": "1183" }, "enumType": { - "$ref": "1181" + "$ref": "1182" }, "decorators": [] } @@ -14390,12 +14403,12 @@ "decorators": [] }, { - "$id": "1186", + "$id": "1187", "kind": "enum", "name": "RealtimeTranscriptionSessionCreateRequestInputAudioTranscriptionModel", "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateRequest.input_audio_transcription.model.anonymous", "valueType": { - "$id": "1187", + "$id": "1188", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14403,41 +14416,41 @@ }, "values": [ { - "$id": "1188", + "$id": "1189", "kind": "enumvalue", "name": "gpt-4o-transcribe", "value": "gpt-4o-transcribe", "valueType": { - "$ref": "1187" + "$ref": "1188" }, "enumType": { - "$ref": "1186" + "$ref": "1187" }, "decorators": [] }, { - "$id": "1189", + "$id": "1190", "kind": "enumvalue", "name": "gpt-4o-mini-transcribe", "value": "gpt-4o-mini-transcribe", "valueType": { - "$ref": "1187" + "$ref": "1188" }, "enumType": { - "$ref": "1186" + "$ref": "1187" }, "decorators": [] }, { - "$id": "1190", + "$id": "1191", "kind": "enumvalue", "name": "whisper-1", "value": "whisper-1", "valueType": { - "$ref": "1187" + "$ref": "1188" }, "enumType": { - "$ref": "1186" + "$ref": "1187" }, "decorators": [] } @@ -14449,12 +14462,12 @@ "decorators": [] }, { - "$id": "1191", + "$id": "1192", "kind": "enum", "name": "RealtimeTranscriptionSessionCreateRequestTurnDetectionType", "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateRequest.turn_detection.type.anonymous", "valueType": { - "$id": "1192", + "$id": "1193", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14462,28 +14475,28 @@ }, "values": [ { - "$id": "1193", + "$id": "1194", "kind": "enumvalue", "name": "server_vad", "value": "server_vad", "valueType": { - "$ref": "1192" + "$ref": "1193" }, "enumType": { - "$ref": "1191" + "$ref": "1192" }, "decorators": [] }, { - "$id": "1194", + "$id": "1195", "kind": "enumvalue", "name": "semantic_vad", "value": "semantic_vad", "valueType": { - "$ref": "1192" + "$ref": "1193" }, "enumType": { - "$ref": "1191" + "$ref": "1192" }, "decorators": [] } @@ -14495,12 +14508,12 @@ "decorators": [] }, { - "$id": "1195", + "$id": "1196", "kind": "enum", "name": "RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness", "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateRequest.turn_detection.eagerness.anonymous", "valueType": { - "$id": "1196", + "$id": "1197", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14508,54 +14521,54 @@ }, "values": [ { - "$id": "1197", + "$id": "1198", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "1196" + "$ref": "1197" }, "enumType": { - "$ref": "1195" + "$ref": "1196" }, "decorators": [] }, { - "$id": "1198", + "$id": "1199", "kind": "enumvalue", "name": "medium", "value": "medium", "valueType": { - "$ref": "1196" + "$ref": "1197" }, "enumType": { - "$ref": "1195" + "$ref": "1196" }, "decorators": [] }, { - "$id": "1199", + "$id": "1200", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "1196" + "$ref": "1197" }, "enumType": { - "$ref": "1195" + "$ref": "1196" }, "decorators": [] }, { - "$id": "1200", + "$id": "1201", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1196" + "$ref": "1197" }, "enumType": { - "$ref": "1195" + "$ref": "1196" }, "decorators": [] } @@ -14567,12 +14580,12 @@ "decorators": [] }, { - "$id": "1201", + "$id": "1202", "kind": "enum", "name": "RealtimeTranscriptionSessionCreateRequestInputAudioNoiseReductionType", "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateRequest.input_audio_noise_reduction.type.anonymous", "valueType": { - "$id": "1202", + "$id": "1203", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14580,28 +14593,28 @@ }, "values": [ { - "$id": "1203", + "$id": "1204", "kind": "enumvalue", "name": "near_field", "value": "near_field", "valueType": { - "$ref": "1202" + "$ref": "1203" }, "enumType": { - "$ref": "1201" + "$ref": "1202" }, "decorators": [] }, { - "$id": "1204", + "$id": "1205", "kind": "enumvalue", "name": "far_field", "value": "far_field", "valueType": { - "$ref": "1202" + "$ref": "1203" }, "enumType": { - "$ref": "1201" + "$ref": "1202" }, "decorators": [] } @@ -14613,12 +14626,12 @@ "decorators": [] }, { - "$id": "1205", + "$id": "1206", "kind": "enum", "name": "RealtimeTranscriptionSessionCreateRequestClientSecretExpiresAtAnchor", "crossLanguageDefinitionId": "", "valueType": { - "$id": "1206", + "$id": "1207", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14626,12 +14639,12 @@ }, "values": [ { - "$id": "1207", + "$id": "1208", "kind": "enumvalue", "name": "created_at", "value": "created_at", "valueType": { - "$id": "1208", + "$id": "1209", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -14639,7 +14652,7 @@ "crossLanguageDefinitionId": "TypeSpec.string" }, "enumType": { - "$ref": "1205" + "$ref": "1206" }, "decorators": [] } @@ -14651,12 +14664,12 @@ "decorators": [] }, { - "$id": "1209", + "$id": "1210", "kind": "enum", "name": "RealtimeServerEventType", "crossLanguageDefinitionId": "OpenAI.RealtimeServerEventType", "valueType": { - "$id": "1210", + "$id": "1211", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14664,444 +14677,444 @@ }, "values": [ { - "$id": "1211", + "$id": "1212", "kind": "enumvalue", "name": "error", "value": "error", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1212", + "$id": "1213", "kind": "enumvalue", "name": "session_created", "value": "session.created", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1213", + "$id": "1214", "kind": "enumvalue", "name": "session_updated", "value": "session.updated", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1214", + "$id": "1215", "kind": "enumvalue", "name": "conversation_created", "value": "conversation.created", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1215", + "$id": "1216", "kind": "enumvalue", "name": "conversation_item_input_audio_transcription_completed", "value": "conversation.item.input_audio_transcription.completed", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1216", + "$id": "1217", "kind": "enumvalue", "name": "conversation_item_input_audio_transcription_delta", "value": "conversation.item.input_audio_transcription.delta", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1217", + "$id": "1218", "kind": "enumvalue", "name": "conversation_item_input_audio_transcription_failed", "value": "conversation.item.input_audio_transcription.failed", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1218", + "$id": "1219", "kind": "enumvalue", "name": "conversation_item_created", "value": "conversation.item.created", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1219", + "$id": "1220", "kind": "enumvalue", "name": "conversation_item_retrieved", "value": "conversation.item.retrieved", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1220", + "$id": "1221", "kind": "enumvalue", "name": "conversation_item_truncated", "value": "conversation.item.truncated", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1221", + "$id": "1222", "kind": "enumvalue", "name": "conversation_item_deleted", "value": "conversation.item.deleted", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1222", + "$id": "1223", "kind": "enumvalue", "name": "input_audio_buffer_committed", "value": "input_audio_buffer.committed", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1223", + "$id": "1224", "kind": "enumvalue", "name": "input_audio_buffer_cleared", "value": "input_audio_buffer.cleared", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1224", + "$id": "1225", "kind": "enumvalue", "name": "input_audio_buffer_speech_started", "value": "input_audio_buffer.speech_started", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1225", + "$id": "1226", "kind": "enumvalue", "name": "input_audio_buffer_speech_stopped", "value": "input_audio_buffer.speech_stopped", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1226", + "$id": "1227", "kind": "enumvalue", "name": "output_audio_buffer_cleared", "value": "output_audio_buffer.cleared", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1227", + "$id": "1228", "kind": "enumvalue", "name": "output_audio_buffer_started", "value": "output_audio_buffer.started", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1228", + "$id": "1229", "kind": "enumvalue", "name": "output_audio_buffer_stopped", "value": "output_audio_buffer.stopped", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1229", + "$id": "1230", "kind": "enumvalue", "name": "response_created", "value": "response.created", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1230", + "$id": "1231", "kind": "enumvalue", "name": "response_done", "value": "response.done", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1231", + "$id": "1232", "kind": "enumvalue", "name": "response_output_item_added", "value": "response.output_item.added", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1232", + "$id": "1233", "kind": "enumvalue", "name": "response_output_item_done", "value": "response.output_item.done", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1233", + "$id": "1234", "kind": "enumvalue", "name": "response_content_part_added", "value": "response.content_part.added", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1234", + "$id": "1235", "kind": "enumvalue", "name": "response_content_part_done", "value": "response.content_part.done", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1235", + "$id": "1236", "kind": "enumvalue", "name": "response_text_delta", "value": "response.text.delta", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1236", + "$id": "1237", "kind": "enumvalue", "name": "response_text_done", "value": "response.text.done", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1237", + "$id": "1238", "kind": "enumvalue", "name": "response_audio_transcript_delta", "value": "response.audio_transcript.delta", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1238", + "$id": "1239", "kind": "enumvalue", "name": "response_audio_transcript_done", "value": "response.audio_transcript.done", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1239", + "$id": "1240", "kind": "enumvalue", "name": "response_audio_delta", "value": "response.audio.delta", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1240", + "$id": "1241", "kind": "enumvalue", "name": "response_audio_done", "value": "response.audio.done", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1241", + "$id": "1242", "kind": "enumvalue", "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1242", + "$id": "1243", "kind": "enumvalue", "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1243", + "$id": "1244", "kind": "enumvalue", "name": "transcription_session_updated", "value": "transcription_session.updated", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] }, { - "$id": "1244", + "$id": "1245", "kind": "enumvalue", "name": "rate_limits_updated", "value": "rate_limits.updated", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "1209" + "$ref": "1210" }, "decorators": [] } @@ -15113,12 +15126,12 @@ "decorators": [] }, { - "$id": "1245", + "$id": "1246", "kind": "enum", "name": "RealtimeResponseObject", "crossLanguageDefinitionId": "", "valueType": { - "$id": "1246", + "$id": "1247", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15126,12 +15139,12 @@ }, "values": [ { - "$id": "1247", + "$id": "1248", "kind": "enumvalue", "name": "realtime.response", "value": "realtime.response", "valueType": { - "$id": "1248", + "$id": "1249", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -15139,7 +15152,7 @@ "crossLanguageDefinitionId": "TypeSpec.string" }, "enumType": { - "$ref": "1245" + "$ref": "1246" }, "decorators": [] } @@ -15151,12 +15164,12 @@ "decorators": [] }, { - "$id": "1249", + "$id": "1250", "kind": "enum", "name": "RealtimeResponseStatus", "crossLanguageDefinitionId": "OpenAI.RealtimeResponse.status.anonymous", "valueType": { - "$id": "1250", + "$id": "1251", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15164,54 +15177,54 @@ }, "values": [ { - "$id": "1251", + "$id": "1252", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "1250" + "$ref": "1251" }, "enumType": { - "$ref": "1249" + "$ref": "1250" }, "decorators": [] }, { - "$id": "1252", + "$id": "1253", "kind": "enumvalue", "name": "cancelled", "value": "cancelled", "valueType": { - "$ref": "1250" + "$ref": "1251" }, "enumType": { - "$ref": "1249" + "$ref": "1250" }, "decorators": [] }, { - "$id": "1253", + "$id": "1254", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "1250" + "$ref": "1251" }, "enumType": { - "$ref": "1249" + "$ref": "1250" }, "decorators": [] }, { - "$id": "1254", + "$id": "1255", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "1250" + "$ref": "1251" }, "enumType": { - "$ref": "1249" + "$ref": "1250" }, "decorators": [] } @@ -15223,12 +15236,12 @@ "decorators": [] }, { - "$id": "1255", + "$id": "1256", "kind": "enum", "name": "RealtimeResponseStatusDetailsType", "crossLanguageDefinitionId": "OpenAI.RealtimeResponse.status_details.type.anonymous", "valueType": { - "$id": "1256", + "$id": "1257", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15236,54 +15249,54 @@ }, "values": [ { - "$id": "1257", + "$id": "1258", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "1256" + "$ref": "1257" }, "enumType": { - "$ref": "1255" + "$ref": "1256" }, "decorators": [] }, { - "$id": "1258", + "$id": "1259", "kind": "enumvalue", "name": "cancelled", "value": "cancelled", "valueType": { - "$ref": "1256" + "$ref": "1257" }, "enumType": { - "$ref": "1255" + "$ref": "1256" }, "decorators": [] }, { - "$id": "1259", + "$id": "1260", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "1256" + "$ref": "1257" }, "enumType": { - "$ref": "1255" + "$ref": "1256" }, "decorators": [] }, { - "$id": "1260", + "$id": "1261", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "1256" + "$ref": "1257" }, "enumType": { - "$ref": "1255" + "$ref": "1256" }, "decorators": [] } @@ -15295,12 +15308,12 @@ "decorators": [] }, { - "$id": "1261", + "$id": "1262", "kind": "enum", "name": "RealtimeResponseStatusDetailsReason", "crossLanguageDefinitionId": "OpenAI.RealtimeResponse.status_details.reason.anonymous", "valueType": { - "$id": "1262", + "$id": "1263", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15308,54 +15321,54 @@ }, "values": [ { - "$id": "1263", + "$id": "1264", "kind": "enumvalue", "name": "turn_detected", "value": "turn_detected", "valueType": { - "$ref": "1262" + "$ref": "1263" }, "enumType": { - "$ref": "1261" + "$ref": "1262" }, "decorators": [] }, { - "$id": "1264", + "$id": "1265", "kind": "enumvalue", "name": "client_cancelled", "value": "client_cancelled", "valueType": { - "$ref": "1262" + "$ref": "1263" }, "enumType": { - "$ref": "1261" + "$ref": "1262" }, "decorators": [] }, { - "$id": "1265", + "$id": "1266", "kind": "enumvalue", "name": "max_output_tokens", "value": "max_output_tokens", "valueType": { - "$ref": "1262" + "$ref": "1263" }, "enumType": { - "$ref": "1261" + "$ref": "1262" }, "decorators": [] }, { - "$id": "1266", + "$id": "1267", "kind": "enumvalue", "name": "content_filter", "value": "content_filter", "valueType": { - "$ref": "1262" + "$ref": "1263" }, "enumType": { - "$ref": "1261" + "$ref": "1262" }, "decorators": [] } @@ -15367,12 +15380,12 @@ "decorators": [] }, { - "$id": "1267", + "$id": "1268", "kind": "enum", "name": "RealtimeResponseModality", "crossLanguageDefinitionId": "OpenAI.RealtimeResponse.modality.anonymous", "valueType": { - "$id": "1268", + "$id": "1269", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15380,28 +15393,28 @@ }, "values": [ { - "$id": "1269", + "$id": "1270", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "1268" + "$ref": "1269" }, "enumType": { - "$ref": "1267" + "$ref": "1268" }, "decorators": [] }, { - "$id": "1270", + "$id": "1271", "kind": "enumvalue", "name": "audio", "value": "audio", "valueType": { - "$ref": "1268" + "$ref": "1269" }, "enumType": { - "$ref": "1267" + "$ref": "1268" }, "decorators": [] } @@ -15413,12 +15426,12 @@ "decorators": [] }, { - "$id": "1271", + "$id": "1272", "kind": "enum", "name": "RealtimeResponseOutputAudioFormat", "crossLanguageDefinitionId": "OpenAI.RealtimeResponse.output_audio_format.anonymous", "valueType": { - "$id": "1272", + "$id": "1273", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15426,41 +15439,41 @@ }, "values": [ { - "$id": "1273", + "$id": "1274", "kind": "enumvalue", "name": "pcm16", "value": "pcm16", "valueType": { - "$ref": "1272" + "$ref": "1273" }, "enumType": { - "$ref": "1271" + "$ref": "1272" }, "decorators": [] }, { - "$id": "1274", + "$id": "1275", "kind": "enumvalue", "name": "g711_ulaw", "value": "g711_ulaw", "valueType": { - "$ref": "1272" + "$ref": "1273" }, "enumType": { - "$ref": "1271" + "$ref": "1272" }, "decorators": [] }, { - "$id": "1275", + "$id": "1276", "kind": "enumvalue", "name": "g711_alaw", "value": "g711_alaw", "valueType": { - "$ref": "1272" + "$ref": "1273" }, "enumType": { - "$ref": "1271" + "$ref": "1272" }, "decorators": [] } @@ -15472,12 +15485,12 @@ "decorators": [] }, { - "$id": "1276", + "$id": "1277", "kind": "enum", "name": "RealtimeTranscriptionSessionCreateResponseModality", "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateResponse.modality.anonymous", "valueType": { - "$id": "1277", + "$id": "1278", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15485,28 +15498,28 @@ }, "values": [ { - "$id": "1278", + "$id": "1279", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "1277" + "$ref": "1278" }, "enumType": { - "$ref": "1276" + "$ref": "1277" }, "decorators": [] }, { - "$id": "1279", + "$id": "1280", "kind": "enumvalue", "name": "audio", "value": "audio", "valueType": { - "$ref": "1277" + "$ref": "1278" }, "enumType": { - "$ref": "1276" + "$ref": "1277" }, "decorators": [] } @@ -15518,12 +15531,12 @@ "decorators": [] }, { - "$id": "1280", + "$id": "1281", "kind": "enum", "name": "RealtimeTranscriptionSessionCreateResponseInputAudioTranscriptionModel", "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateResponse.input_audio_transcription.model.anonymous", "valueType": { - "$id": "1281", + "$id": "1282", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15531,41 +15544,41 @@ }, "values": [ { - "$id": "1282", + "$id": "1283", "kind": "enumvalue", "name": "gpt-4o-transcribe", "value": "gpt-4o-transcribe", "valueType": { - "$ref": "1281" + "$ref": "1282" }, "enumType": { - "$ref": "1280" + "$ref": "1281" }, "decorators": [] }, { - "$id": "1283", + "$id": "1284", "kind": "enumvalue", "name": "gpt-4o-mini-transcribe", "value": "gpt-4o-mini-transcribe", "valueType": { - "$ref": "1281" + "$ref": "1282" }, "enumType": { - "$ref": "1280" + "$ref": "1281" }, "decorators": [] }, { - "$id": "1284", + "$id": "1285", "kind": "enumvalue", "name": "whisper-1", "value": "whisper-1", "valueType": { - "$ref": "1281" + "$ref": "1282" }, "enumType": { - "$ref": "1280" + "$ref": "1281" }, "decorators": [] } @@ -15577,12 +15590,12 @@ "decorators": [] }, { - "$id": "1285", + "$id": "1286", "kind": "enum", "name": "RealtimeSessionCreateRequestModel", "crossLanguageDefinitionId": "OpenAI.RealtimeSessionCreateRequest.model.anonymous", "valueType": { - "$id": "1286", + "$id": "1287", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15590,80 +15603,80 @@ }, "values": [ { - "$id": "1287", + "$id": "1288", "kind": "enumvalue", "name": "gpt-4o-realtime-preview", "value": "gpt-4o-realtime-preview", "valueType": { - "$ref": "1286" + "$ref": "1287" }, "enumType": { - "$ref": "1285" + "$ref": "1286" }, "decorators": [] }, { - "$id": "1288", + "$id": "1289", "kind": "enumvalue", "name": "gpt-4o-realtime-preview-2024-10-01", "value": "gpt-4o-realtime-preview-2024-10-01", "valueType": { - "$ref": "1286" + "$ref": "1287" }, "enumType": { - "$ref": "1285" + "$ref": "1286" }, "decorators": [] }, { - "$id": "1289", + "$id": "1290", "kind": "enumvalue", "name": "gpt-4o-realtime-preview-2024-12-17", "value": "gpt-4o-realtime-preview-2024-12-17", "valueType": { - "$ref": "1286" + "$ref": "1287" }, "enumType": { - "$ref": "1285" + "$ref": "1286" }, "decorators": [] }, { - "$id": "1290", + "$id": "1291", "kind": "enumvalue", "name": "gpt-4o-realtime-preview-2025-06-03", "value": "gpt-4o-realtime-preview-2025-06-03", "valueType": { - "$ref": "1286" + "$ref": "1287" }, "enumType": { - "$ref": "1285" + "$ref": "1286" }, "decorators": [] }, { - "$id": "1291", + "$id": "1292", "kind": "enumvalue", "name": "gpt-4o-mini-realtime-preview", "value": "gpt-4o-mini-realtime-preview", "valueType": { - "$ref": "1286" + "$ref": "1287" }, "enumType": { - "$ref": "1285" + "$ref": "1286" }, "decorators": [] }, { - "$id": "1292", + "$id": "1293", "kind": "enumvalue", "name": "gpt-4o-mini-realtime-preview-2024-12-17", "value": "gpt-4o-mini-realtime-preview-2024-12-17", "valueType": { - "$ref": "1286" + "$ref": "1287" }, "enumType": { - "$ref": "1285" + "$ref": "1286" }, "decorators": [] } @@ -15675,12 +15688,12 @@ "decorators": [] }, { - "$id": "1293", + "$id": "1294", "kind": "enum", "name": "RealtimeSessionCreateRequestTurnDetectionType", "crossLanguageDefinitionId": "OpenAI.RealtimeSessionCreateRequest.turn_detection.type.anonymous", "valueType": { - "$id": "1294", + "$id": "1295", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15688,28 +15701,28 @@ }, "values": [ { - "$id": "1295", + "$id": "1296", "kind": "enumvalue", "name": "server_vad", "value": "server_vad", "valueType": { - "$ref": "1294" + "$ref": "1295" }, "enumType": { - "$ref": "1293" + "$ref": "1294" }, "decorators": [] }, { - "$id": "1296", + "$id": "1297", "kind": "enumvalue", "name": "semantic_vad", "value": "semantic_vad", "valueType": { - "$ref": "1294" + "$ref": "1295" }, "enumType": { - "$ref": "1293" + "$ref": "1294" }, "decorators": [] } @@ -15721,12 +15734,12 @@ "decorators": [] }, { - "$id": "1297", + "$id": "1298", "kind": "enum", "name": "RealtimeSessionCreateRequestTurnDetectionEagerness", "crossLanguageDefinitionId": "OpenAI.RealtimeSessionCreateRequest.turn_detection.eagerness.anonymous", "valueType": { - "$id": "1298", + "$id": "1299", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15734,54 +15747,54 @@ }, "values": [ { - "$id": "1299", + "$id": "1300", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "1298" + "$ref": "1299" }, "enumType": { - "$ref": "1297" + "$ref": "1298" }, "decorators": [] }, { - "$id": "1300", + "$id": "1301", "kind": "enumvalue", "name": "medium", "value": "medium", "valueType": { - "$ref": "1298" + "$ref": "1299" }, "enumType": { - "$ref": "1297" + "$ref": "1298" }, "decorators": [] }, { - "$id": "1301", + "$id": "1302", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "1298" + "$ref": "1299" }, "enumType": { - "$ref": "1297" + "$ref": "1298" }, "decorators": [] }, { - "$id": "1302", + "$id": "1303", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1298" + "$ref": "1299" }, "enumType": { - "$ref": "1297" + "$ref": "1298" }, "decorators": [] } @@ -15793,12 +15806,12 @@ "decorators": [] }, { - "$id": "1303", + "$id": "1304", "kind": "enum", "name": "RealtimeSessionCreateRequestInputAudioNoiseReductionType", "crossLanguageDefinitionId": "OpenAI.RealtimeSessionCreateRequest.input_audio_noise_reduction.type.anonymous", "valueType": { - "$id": "1304", + "$id": "1305", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15806,28 +15819,28 @@ }, "values": [ { - "$id": "1305", + "$id": "1306", "kind": "enumvalue", "name": "near_field", "value": "near_field", "valueType": { - "$ref": "1304" + "$ref": "1305" }, "enumType": { - "$ref": "1303" + "$ref": "1304" }, "decorators": [] }, { - "$id": "1306", + "$id": "1307", "kind": "enumvalue", "name": "far_field", "value": "far_field", "valueType": { - "$ref": "1304" + "$ref": "1305" }, "enumType": { - "$ref": "1303" + "$ref": "1304" }, "decorators": [] } @@ -15839,12 +15852,12 @@ "decorators": [] }, { - "$id": "1307", + "$id": "1308", "kind": "enum", "name": "RealtimeSessionCreateRequestClientSecretExpiresAtAnchor", "crossLanguageDefinitionId": "", "valueType": { - "$id": "1308", + "$id": "1309", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15852,12 +15865,12 @@ }, "values": [ { - "$id": "1309", + "$id": "1310", "kind": "enumvalue", "name": "created_at", "value": "created_at", "valueType": { - "$id": "1310", + "$id": "1311", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -15865,7 +15878,7 @@ "crossLanguageDefinitionId": "TypeSpec.string" }, "enumType": { - "$ref": "1307" + "$ref": "1308" }, "decorators": [] } @@ -15877,12 +15890,12 @@ "decorators": [] }, { - "$id": "1311", + "$id": "1312", "kind": "enum", "name": "CreateUploadRequestPurpose", "crossLanguageDefinitionId": "OpenAI.CreateUploadRequest.purpose.anonymous", "valueType": { - "$id": "1312", + "$id": "1313", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15890,54 +15903,54 @@ }, "values": [ { - "$id": "1313", + "$id": "1314", "kind": "enumvalue", "name": "assistants", "value": "assistants", "valueType": { - "$ref": "1312" + "$ref": "1313" }, "enumType": { - "$ref": "1311" + "$ref": "1312" }, "decorators": [] }, { - "$id": "1314", + "$id": "1315", "kind": "enumvalue", "name": "batch", "value": "batch", "valueType": { - "$ref": "1312" + "$ref": "1313" }, "enumType": { - "$ref": "1311" + "$ref": "1312" }, "decorators": [] }, { - "$id": "1315", + "$id": "1316", "kind": "enumvalue", "name": "fine-tune", "value": "fine-tune", "valueType": { - "$ref": "1312" + "$ref": "1313" }, "enumType": { - "$ref": "1311" + "$ref": "1312" }, "decorators": [] }, { - "$id": "1316", + "$id": "1317", "kind": "enumvalue", "name": "vision", "value": "vision", "valueType": { - "$ref": "1312" + "$ref": "1313" }, "enumType": { - "$ref": "1311" + "$ref": "1312" }, "decorators": [] } @@ -15949,12 +15962,12 @@ "decorators": [] }, { - "$id": "1317", + "$id": "1318", "kind": "enum", "name": "UploadStatus", "crossLanguageDefinitionId": "OpenAI.Upload.status.anonymous", "valueType": { - "$id": "1318", + "$id": "1319", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15962,54 +15975,54 @@ }, "values": [ { - "$id": "1319", + "$id": "1320", "kind": "enumvalue", "name": "pending", "value": "pending", "valueType": { - "$ref": "1318" + "$ref": "1319" }, "enumType": { - "$ref": "1317" + "$ref": "1318" }, "decorators": [] }, { - "$id": "1320", + "$id": "1321", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "1318" + "$ref": "1319" }, "enumType": { - "$ref": "1317" + "$ref": "1318" }, "decorators": [] }, { - "$id": "1321", + "$id": "1322", "kind": "enumvalue", "name": "cancelled", "value": "cancelled", "valueType": { - "$ref": "1318" + "$ref": "1319" }, "enumType": { - "$ref": "1317" + "$ref": "1318" }, "decorators": [] }, { - "$id": "1322", + "$id": "1323", "kind": "enumvalue", "name": "expired", "value": "expired", "valueType": { - "$ref": "1318" + "$ref": "1319" }, "enumType": { - "$ref": "1317" + "$ref": "1318" }, "decorators": [] } @@ -16021,12 +16034,12 @@ "decorators": [] }, { - "$id": "1323", + "$id": "1324", "kind": "enum", "name": "UploadObject", "crossLanguageDefinitionId": "", "valueType": { - "$id": "1324", + "$id": "1325", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16034,12 +16047,12 @@ }, "values": [ { - "$id": "1325", + "$id": "1326", "kind": "enumvalue", "name": "upload", "value": "upload", "valueType": { - "$id": "1326", + "$id": "1327", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -16047,7 +16060,7 @@ "crossLanguageDefinitionId": "TypeSpec.string" }, "enumType": { - "$ref": "1323" + "$ref": "1324" }, "decorators": [] } @@ -16059,12 +16072,12 @@ "decorators": [] }, { - "$id": "1327", + "$id": "1328", "kind": "enum", "name": "BatchRequestInputMethod", "crossLanguageDefinitionId": "", "valueType": { - "$id": "1328", + "$id": "1329", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16072,12 +16085,12 @@ }, "values": [ { - "$id": "1329", + "$id": "1330", "kind": "enumvalue", "name": "POST", "value": "POST", "valueType": { - "$id": "1330", + "$id": "1331", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -16085,7 +16098,7 @@ "crossLanguageDefinitionId": "TypeSpec.string" }, "enumType": { - "$ref": "1327" + "$ref": "1328" }, "decorators": [] } @@ -16098,12 +16111,12 @@ "decorators": [] }, { - "$id": "1331", + "$id": "1332", "kind": "enum", "name": "FineTuneChatCompletionRequestAssistantMessageWeight", "crossLanguageDefinitionId": "OpenAI.FineTuneChatCompletionRequestAssistantMessage.weight.anonymous", "valueType": { - "$id": "1332", + "$id": "1333", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16111,28 +16124,28 @@ }, "values": [ { - "$id": "1333", + "$id": "1334", "kind": "enumvalue", "name": "0", "value": "0", "valueType": { - "$ref": "1332" + "$ref": "1333" }, "enumType": { - "$ref": "1331" + "$ref": "1332" }, "decorators": [] }, { - "$id": "1334", + "$id": "1335", "kind": "enumvalue", "name": "1", "value": "1", "valueType": { - "$ref": "1332" + "$ref": "1333" }, "enumType": { - "$ref": "1331" + "$ref": "1332" }, "decorators": [] } @@ -16144,12 +16157,12 @@ "decorators": [] }, { - "$id": "1335", + "$id": "1336", "kind": "enum", "name": "MessageDeltaContentImageFileObjectImageFileDetail", "crossLanguageDefinitionId": "OpenAI.MessageDeltaContentImageFileObject.image_file.detail.anonymous", "valueType": { - "$id": "1336", + "$id": "1337", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16157,41 +16170,41 @@ }, "values": [ { - "$id": "1337", + "$id": "1338", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1336" + "$ref": "1337" }, "enumType": { - "$ref": "1335" + "$ref": "1336" }, "decorators": [] }, { - "$id": "1338", + "$id": "1339", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "1336" + "$ref": "1337" }, "enumType": { - "$ref": "1335" + "$ref": "1336" }, "decorators": [] }, { - "$id": "1339", + "$id": "1340", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "1336" + "$ref": "1337" }, "enumType": { - "$ref": "1335" + "$ref": "1336" }, "decorators": [] } @@ -16203,12 +16216,12 @@ "decorators": [] }, { - "$id": "1340", + "$id": "1341", "kind": "enum", "name": "MessageDeltaContentImageUrlObjectImageUrlDetail", "crossLanguageDefinitionId": "OpenAI.MessageDeltaContentImageUrlObject.image_url.detail.anonymous", "valueType": { - "$id": "1341", + "$id": "1342", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16216,41 +16229,41 @@ }, "values": [ { - "$id": "1342", + "$id": "1343", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1341" + "$ref": "1342" }, "enumType": { - "$ref": "1340" + "$ref": "1341" }, "decorators": [] }, { - "$id": "1343", + "$id": "1344", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "1341" + "$ref": "1342" }, "enumType": { - "$ref": "1340" + "$ref": "1341" }, "decorators": [] }, { - "$id": "1344", + "$id": "1345", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "1341" + "$ref": "1342" }, "enumType": { - "$ref": "1340" + "$ref": "1341" }, "decorators": [] } @@ -16262,12 +16275,12 @@ "decorators": [] }, { - "$id": "1345", + "$id": "1346", "kind": "enum", "name": "MessageDeltaObjectDeltaRole", "crossLanguageDefinitionId": "OpenAI.MessageDeltaObject.delta.role.anonymous", "valueType": { - "$id": "1346", + "$id": "1347", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16275,28 +16288,28 @@ }, "values": [ { - "$id": "1347", + "$id": "1348", "kind": "enumvalue", "name": "user", "value": "user", "valueType": { - "$ref": "1346" + "$ref": "1347" }, "enumType": { - "$ref": "1345" + "$ref": "1346" }, "decorators": [] }, { - "$id": "1348", + "$id": "1349", "kind": "enumvalue", "name": "assistant", "value": "assistant", "valueType": { - "$ref": "1346" + "$ref": "1347" }, "enumType": { - "$ref": "1345" + "$ref": "1346" }, "decorators": [] } @@ -16308,12 +16321,12 @@ "decorators": [] }, { - "$id": "1349", + "$id": "1350", "kind": "enum", "name": "AssistantCollectionOrder", "crossLanguageDefinitionId": "OpenAI.AssistantCollectionOrder", "valueType": { - "$id": "1350", + "$id": "1351", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16321,28 +16334,28 @@ }, "values": [ { - "$id": "1351", + "$id": "1352", "kind": "enumvalue", "name": "Ascending", "value": "asc", "valueType": { - "$ref": "1350" + "$ref": "1351" }, "enumType": { - "$ref": "1349" + "$ref": "1350" }, "decorators": [] }, { - "$id": "1352", + "$id": "1353", "kind": "enumvalue", "name": "Descending", "value": "desc", "valueType": { - "$ref": "1350" + "$ref": "1351" }, "enumType": { - "$ref": "1349" + "$ref": "1350" }, "decorators": [] } @@ -16354,12 +16367,12 @@ "decorators": [] }, { - "$id": "1353", + "$id": "1354", "kind": "enum", "name": "MessageCollectionOrder", "crossLanguageDefinitionId": "OpenAI.MessageCollectionOrder", "valueType": { - "$id": "1354", + "$id": "1355", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16367,28 +16380,28 @@ }, "values": [ { - "$id": "1355", + "$id": "1356", "kind": "enumvalue", "name": "Ascending", "value": "asc", "valueType": { - "$ref": "1354" + "$ref": "1355" }, "enumType": { - "$ref": "1353" + "$ref": "1354" }, "decorators": [] }, { - "$id": "1356", + "$id": "1357", "kind": "enumvalue", "name": "Descending", "value": "desc", "valueType": { - "$ref": "1354" + "$ref": "1355" }, "enumType": { - "$ref": "1353" + "$ref": "1354" }, "decorators": [] } @@ -16400,12 +16413,12 @@ "decorators": [] }, { - "$id": "1357", + "$id": "1358", "kind": "enum", "name": "RunCollectionOrder", "crossLanguageDefinitionId": "OpenAI.RunCollectionOrder", "valueType": { - "$id": "1358", + "$id": "1359", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16413,28 +16426,28 @@ }, "values": [ { - "$id": "1359", + "$id": "1360", "kind": "enumvalue", "name": "Ascending", "value": "asc", "valueType": { - "$ref": "1358" + "$ref": "1359" }, "enumType": { - "$ref": "1357" + "$ref": "1358" }, "decorators": [] }, { - "$id": "1360", + "$id": "1361", "kind": "enumvalue", "name": "Descending", "value": "desc", "valueType": { - "$ref": "1358" + "$ref": "1359" }, "enumType": { - "$ref": "1357" + "$ref": "1358" }, "decorators": [] } @@ -16446,12 +16459,12 @@ "decorators": [] }, { - "$id": "1361", + "$id": "1362", "kind": "enum", "name": "RunStepCollectionOrder", "crossLanguageDefinitionId": "OpenAI.RunStepCollectionOrder", "valueType": { - "$id": "1362", + "$id": "1363", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16459,28 +16472,28 @@ }, "values": [ { - "$id": "1363", + "$id": "1364", "kind": "enumvalue", "name": "Ascending", "value": "asc", "valueType": { - "$ref": "1362" + "$ref": "1363" }, "enumType": { - "$ref": "1361" + "$ref": "1362" }, "decorators": [] }, { - "$id": "1364", + "$id": "1365", "kind": "enumvalue", "name": "Descending", "value": "desc", "valueType": { - "$ref": "1362" + "$ref": "1363" }, "enumType": { - "$ref": "1361" + "$ref": "1362" }, "decorators": [] } @@ -16492,12 +16505,12 @@ "decorators": [] }, { - "$id": "1365", + "$id": "1366", "kind": "enum", "name": "ChatCompletionCollectionOrder", "crossLanguageDefinitionId": "OpenAI.ChatCompletionCollectionOrder", "valueType": { - "$id": "1366", + "$id": "1367", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16505,28 +16518,28 @@ }, "values": [ { - "$id": "1367", + "$id": "1368", "kind": "enumvalue", "name": "Ascending", "value": "asc", "valueType": { - "$ref": "1366" + "$ref": "1367" }, "enumType": { - "$ref": "1365" + "$ref": "1366" }, "decorators": [] }, { - "$id": "1368", + "$id": "1369", "kind": "enumvalue", "name": "Descending", "value": "desc", "valueType": { - "$ref": "1366" + "$ref": "1367" }, "enumType": { - "$ref": "1365" + "$ref": "1366" }, "decorators": [] } @@ -16543,12 +16556,12 @@ ] }, { - "$id": "1369", + "$id": "1370", "kind": "enum", "name": "ChatCompletionMessageCollectionOrder", "crossLanguageDefinitionId": "OpenAI.ChatCompletionMessageCollectionOrder", "valueType": { - "$id": "1370", + "$id": "1371", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16556,28 +16569,28 @@ }, "values": [ { - "$id": "1371", + "$id": "1372", "kind": "enumvalue", "name": "Ascending", "value": "asc", "valueType": { - "$ref": "1370" + "$ref": "1371" }, "enumType": { - "$ref": "1369" + "$ref": "1370" }, "decorators": [] }, { - "$id": "1372", + "$id": "1373", "kind": "enumvalue", "name": "Descending", "value": "desc", "valueType": { - "$ref": "1370" + "$ref": "1371" }, "enumType": { - "$ref": "1369" + "$ref": "1370" }, "decorators": [] } @@ -16594,12 +16607,12 @@ ] }, { - "$id": "1373", + "$id": "1374", "kind": "enum", "name": "ContainerCollectionOrder", "crossLanguageDefinitionId": "OpenAI.ContainerCollectionOrder", "valueType": { - "$id": "1374", + "$id": "1375", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16607,28 +16620,28 @@ }, "values": [ { - "$id": "1375", + "$id": "1376", "kind": "enumvalue", "name": "Ascending", "value": "asc", "valueType": { - "$ref": "1374" + "$ref": "1375" }, "enumType": { - "$ref": "1373" + "$ref": "1374" }, "decorators": [] }, { - "$id": "1376", + "$id": "1377", "kind": "enumvalue", "name": "Descending", "value": "desc", "valueType": { - "$ref": "1374" + "$ref": "1375" }, "enumType": { - "$ref": "1373" + "$ref": "1374" }, "decorators": [] } @@ -16640,12 +16653,12 @@ "decorators": [] }, { - "$id": "1377", + "$id": "1378", "kind": "enum", "name": "ConversationItemCollectionOrder", "crossLanguageDefinitionId": "OpenAI.ConversationItemCollectionOrder", "valueType": { - "$id": "1378", + "$id": "1379", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16653,28 +16666,28 @@ }, "values": [ { - "$id": "1379", + "$id": "1380", "kind": "enumvalue", "name": "Ascending", "value": "asc", "valueType": { - "$ref": "1378" + "$ref": "1379" }, "enumType": { - "$ref": "1377" + "$ref": "1378" }, "decorators": [] }, { - "$id": "1380", + "$id": "1381", "kind": "enumvalue", "name": "Descending", "value": "desc", "valueType": { - "$ref": "1378" + "$ref": "1379" }, "enumType": { - "$ref": "1377" + "$ref": "1378" }, "decorators": [] } @@ -16686,12 +16699,12 @@ "decorators": [] }, { - "$id": "1381", + "$id": "1382", "kind": "enum", "name": "ResponseItemCollectionOrder", "crossLanguageDefinitionId": "OpenAI.ResponseItemCollectionOrder", "valueType": { - "$id": "1382", + "$id": "1383", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16699,28 +16712,28 @@ }, "values": [ { - "$id": "1383", + "$id": "1384", "kind": "enumvalue", "name": "Ascending", "value": "asc", "valueType": { - "$ref": "1382" + "$ref": "1383" }, "enumType": { - "$ref": "1381" + "$ref": "1382" }, "decorators": [] }, { - "$id": "1384", + "$id": "1385", "kind": "enumvalue", "name": "Descending", "value": "desc", "valueType": { - "$ref": "1382" + "$ref": "1383" }, "enumType": { - "$ref": "1381" + "$ref": "1382" }, "decorators": [] } @@ -16737,12 +16750,12 @@ ] }, { - "$id": "1385", + "$id": "1386", "kind": "enum", "name": "DotNetGlobalToolCallApprovalPolicy", "crossLanguageDefinitionId": "OpenAI.DotNetGlobalToolCallApprovalPolicy", "valueType": { - "$id": "1386", + "$id": "1387", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16750,28 +16763,28 @@ }, "values": [ { - "$id": "1387", + "$id": "1388", "kind": "enumvalue", "name": "AlwaysRequireApproval", "value": "always", "valueType": { - "$ref": "1386" + "$ref": "1387" }, "enumType": { - "$ref": "1385" + "$ref": "1386" }, "decorators": [] }, { - "$id": "1388", + "$id": "1389", "kind": "enumvalue", "name": "NeverRequireApproval", "value": "never", "valueType": { - "$ref": "1386" + "$ref": "1387" }, "enumType": { - "$ref": "1385" + "$ref": "1386" }, "decorators": [] } @@ -16789,12 +16802,12 @@ ] }, { - "$id": "1389", + "$id": "1390", "kind": "enum", "name": "DotNetCombinedChunkingStrategyParamType", "crossLanguageDefinitionId": "OpenAI.DotNetCombinedChunkingStrategyParam.type.anonymous", "valueType": { - "$id": "1390", + "$id": "1391", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16802,41 +16815,41 @@ }, "values": [ { - "$id": "1391", + "$id": "1392", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1390" + "$ref": "1391" }, "enumType": { - "$ref": "1389" + "$ref": "1390" }, "decorators": [] }, { - "$id": "1392", + "$id": "1393", "kind": "enumvalue", "name": "static", "value": "static", "valueType": { - "$ref": "1390" + "$ref": "1391" }, "enumType": { - "$ref": "1389" + "$ref": "1390" }, "decorators": [] }, { - "$id": "1393", + "$id": "1394", "kind": "enumvalue", "name": "other", "value": "other", "valueType": { - "$ref": "1390" + "$ref": "1391" }, "enumType": { - "$ref": "1389" + "$ref": "1390" }, "decorators": [] } @@ -16848,12 +16861,12 @@ "decorators": [] }, { - "$id": "1394", + "$id": "1395", "kind": "enum", "name": "PageOrderOptions", "crossLanguageDefinitionId": "OpenAI.PageOrderOptions", "valueType": { - "$id": "1395", + "$id": "1396", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16861,28 +16874,28 @@ }, "values": [ { - "$id": "1396", + "$id": "1397", "kind": "enumvalue", "name": "asc", "value": "asc", "valueType": { - "$ref": "1395" + "$ref": "1396" }, "enumType": { - "$ref": "1394" + "$ref": "1395" }, "decorators": [] }, { - "$id": "1397", + "$id": "1398", "kind": "enumvalue", "name": "desc", "value": "desc", "valueType": { - "$ref": "1395" + "$ref": "1396" }, "enumType": { - "$ref": "1394" + "$ref": "1395" }, "decorators": [] } @@ -16894,12 +16907,12 @@ "decorators": [] }, { - "$id": "1398", + "$id": "1399", "kind": "enum", "name": "VectorStoreFileCollectionOrder", "crossLanguageDefinitionId": "OpenAI.VectorStoreFileCollectionOrder", "valueType": { - "$id": "1399", + "$id": "1400", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16907,28 +16920,28 @@ }, "values": [ { - "$id": "1400", + "$id": "1401", "kind": "enumvalue", "name": "Ascending", "value": "asc", "valueType": { - "$ref": "1399" + "$ref": "1400" }, "enumType": { - "$ref": "1398" + "$ref": "1399" }, "decorators": [] }, { - "$id": "1401", + "$id": "1402", "kind": "enumvalue", "name": "Descending", "value": "desc", "valueType": { - "$ref": "1399" + "$ref": "1400" }, "enumType": { - "$ref": "1398" + "$ref": "1399" }, "decorators": [] } @@ -16940,12 +16953,12 @@ "decorators": [] }, { - "$id": "1402", + "$id": "1403", "kind": "enum", "name": "ListVectorStoreFilesFilter", "crossLanguageDefinitionId": "OpenAI.ListVectorStoreFilesFilter", "valueType": { - "$id": "1403", + "$id": "1404", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16953,54 +16966,54 @@ }, "values": [ { - "$id": "1404", + "$id": "1405", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "1403" + "$ref": "1404" }, "enumType": { - "$ref": "1402" + "$ref": "1403" }, "decorators": [] }, { - "$id": "1405", + "$id": "1406", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "1403" + "$ref": "1404" }, "enumType": { - "$ref": "1402" + "$ref": "1403" }, "decorators": [] }, { - "$id": "1406", + "$id": "1407", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "1403" + "$ref": "1404" }, "enumType": { - "$ref": "1402" + "$ref": "1403" }, "decorators": [] }, { - "$id": "1407", + "$id": "1408", "kind": "enumvalue", "name": "cancelled", "value": "cancelled", "valueType": { - "$ref": "1403" + "$ref": "1404" }, "enumType": { - "$ref": "1402" + "$ref": "1403" }, "decorators": [] } @@ -17012,12 +17025,12 @@ "decorators": [] }, { - "$id": "1408", + "$id": "1409", "kind": "enum", "name": "VideoCollectionOrder", "crossLanguageDefinitionId": "OpenAI.VideoCollectionOrder", "valueType": { - "$id": "1409", + "$id": "1410", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17025,28 +17038,28 @@ }, "values": [ { - "$id": "1410", + "$id": "1411", "kind": "enumvalue", "name": "Ascending", "value": "asc", "valueType": { - "$ref": "1409" + "$ref": "1410" }, "enumType": { - "$ref": "1408" + "$ref": "1409" }, "decorators": [] }, { - "$id": "1411", + "$id": "1412", "kind": "enumvalue", "name": "Descending", "value": "desc", "valueType": { - "$ref": "1409" + "$ref": "1410" }, "enumType": { - "$ref": "1408" + "$ref": "1409" }, "decorators": [] } @@ -17058,12 +17071,12 @@ "decorators": [] }, { - "$id": "1412", + "$id": "1413", "kind": "enum", "name": "CreateTranscriptionRequestAccept", "crossLanguageDefinitionId": "OpenAI.createTranscription.RequestAccept.anonymous", "valueType": { - "$id": "1413", + "$id": "1414", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17071,28 +17084,28 @@ }, "values": [ { - "$id": "1414", + "$id": "1415", "kind": "enumvalue", "name": "application/json", "value": "application/json", "valueType": { - "$ref": "1413" + "$ref": "1414" }, "enumType": { - "$ref": "1412" + "$ref": "1413" }, "decorators": [] }, { - "$id": "1415", + "$id": "1416", "kind": "enumvalue", "name": "text/event-stream", "value": "text/event-stream", "valueType": { - "$ref": "1413" + "$ref": "1414" }, "enumType": { - "$ref": "1412" + "$ref": "1413" }, "decorators": [] } @@ -17104,12 +17117,12 @@ "decorators": [] }, { - "$id": "1416", + "$id": "1417", "kind": "enum", "name": "ChatToolCallKind", "crossLanguageDefinitionId": "OpenAI.ChatToolCallKind", "valueType": { - "$id": "1417", + "$id": "1418", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17117,15 +17130,15 @@ }, "values": [ { - "$id": "1418", + "$id": "1419", "kind": "enumvalue", "name": "function", "value": "function", "valueType": { - "$ref": "1417" + "$ref": "1418" }, "enumType": { - "$ref": "1416" + "$ref": "1417" }, "decorators": [] } @@ -17137,12 +17150,12 @@ "decorators": [] }, { - "$id": "1419", + "$id": "1420", "kind": "enum", "name": "ChatToolKind", "crossLanguageDefinitionId": "OpenAI.ChatToolKind", "valueType": { - "$id": "1420", + "$id": "1421", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17150,15 +17163,15 @@ }, "values": [ { - "$id": "1421", + "$id": "1422", "kind": "enumvalue", "name": "function", "value": "function", "valueType": { - "$ref": "1420" + "$ref": "1421" }, "enumType": { - "$ref": "1419" + "$ref": "1420" }, "decorators": [] } @@ -17170,12 +17183,12 @@ "decorators": [] }, { - "$id": "1422", + "$id": "1423", "kind": "enum", "name": "ListEvalsRequestOrder", "crossLanguageDefinitionId": "OpenAI.listEvals.RequestOrder.anonymous", "valueType": { - "$id": "1423", + "$id": "1424", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17183,28 +17196,28 @@ }, "values": [ { - "$id": "1424", + "$id": "1425", "kind": "enumvalue", "name": "asc", "value": "asc", "valueType": { - "$ref": "1423" + "$ref": "1424" }, "enumType": { - "$ref": "1422" + "$ref": "1423" }, "decorators": [] }, { - "$id": "1425", + "$id": "1426", "kind": "enumvalue", "name": "desc", "value": "desc", "valueType": { - "$ref": "1423" + "$ref": "1424" }, "enumType": { - "$ref": "1422" + "$ref": "1423" }, "decorators": [] } @@ -17216,12 +17229,12 @@ "decorators": [] }, { - "$id": "1426", + "$id": "1427", "kind": "enum", "name": "ListEvalsRequestOrderBy", "crossLanguageDefinitionId": "OpenAI.listEvals.RequestOrderBy.anonymous", "valueType": { - "$id": "1427", + "$id": "1428", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17229,28 +17242,28 @@ }, "values": [ { - "$id": "1428", + "$id": "1429", "kind": "enumvalue", "name": "created_at", "value": "created_at", "valueType": { - "$ref": "1427" + "$ref": "1428" }, "enumType": { - "$ref": "1426" + "$ref": "1427" }, "decorators": [] }, { - "$id": "1429", + "$id": "1430", "kind": "enumvalue", "name": "updated_at", "value": "updated_at", "valueType": { - "$ref": "1427" + "$ref": "1428" }, "enumType": { - "$ref": "1426" + "$ref": "1427" }, "decorators": [] } @@ -17262,12 +17275,12 @@ "decorators": [] }, { - "$id": "1430", + "$id": "1431", "kind": "enum", "name": "GetEvalRunsRequestOrder", "crossLanguageDefinitionId": "OpenAI.getEvalRuns.RequestOrder.anonymous", "valueType": { - "$id": "1431", + "$id": "1432", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17275,28 +17288,28 @@ }, "values": [ { - "$id": "1432", + "$id": "1433", "kind": "enumvalue", "name": "asc", "value": "asc", "valueType": { - "$ref": "1431" + "$ref": "1432" }, "enumType": { - "$ref": "1430" + "$ref": "1431" }, "decorators": [] }, { - "$id": "1433", + "$id": "1434", "kind": "enumvalue", "name": "desc", "value": "desc", "valueType": { - "$ref": "1431" + "$ref": "1432" }, "enumType": { - "$ref": "1430" + "$ref": "1431" }, "decorators": [] } @@ -17308,12 +17321,12 @@ "decorators": [] }, { - "$id": "1434", + "$id": "1435", "kind": "enum", "name": "GetEvalRunsRequestStatus", "crossLanguageDefinitionId": "OpenAI.getEvalRuns.RequestStatus.anonymous", "valueType": { - "$id": "1435", + "$id": "1436", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17321,67 +17334,67 @@ }, "values": [ { - "$id": "1436", + "$id": "1437", "kind": "enumvalue", "name": "queued", "value": "queued", "valueType": { - "$ref": "1435" + "$ref": "1436" }, "enumType": { - "$ref": "1434" + "$ref": "1435" }, "decorators": [] }, { - "$id": "1437", + "$id": "1438", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "1435" + "$ref": "1436" }, "enumType": { - "$ref": "1434" + "$ref": "1435" }, "decorators": [] }, { - "$id": "1438", + "$id": "1439", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "1435" + "$ref": "1436" }, "enumType": { - "$ref": "1434" + "$ref": "1435" }, "decorators": [] }, { - "$id": "1439", + "$id": "1440", "kind": "enumvalue", "name": "canceled", "value": "canceled", "valueType": { - "$ref": "1435" + "$ref": "1436" }, "enumType": { - "$ref": "1434" + "$ref": "1435" }, "decorators": [] }, { - "$id": "1440", + "$id": "1441", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "1435" + "$ref": "1436" }, "enumType": { - "$ref": "1434" + "$ref": "1435" }, "decorators": [] } @@ -17393,12 +17406,12 @@ "decorators": [] }, { - "$id": "1441", + "$id": "1442", "kind": "enum", "name": "GetEvalRunOutputItemsRequestStatus", "crossLanguageDefinitionId": "OpenAI.getEvalRunOutputItems.RequestStatus.anonymous", "valueType": { - "$id": "1442", + "$id": "1443", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17406,28 +17419,28 @@ }, "values": [ { - "$id": "1443", + "$id": "1444", "kind": "enumvalue", "name": "fail", "value": "fail", "valueType": { - "$ref": "1442" + "$ref": "1443" }, "enumType": { - "$ref": "1441" + "$ref": "1442" }, "decorators": [] }, { - "$id": "1444", + "$id": "1445", "kind": "enumvalue", "name": "pass", "value": "pass", "valueType": { - "$ref": "1442" + "$ref": "1443" }, "enumType": { - "$ref": "1441" + "$ref": "1442" }, "decorators": [] } @@ -17439,12 +17452,12 @@ "decorators": [] }, { - "$id": "1445", + "$id": "1446", "kind": "enum", "name": "GetEvalRunOutputItemsRequestOrder", "crossLanguageDefinitionId": "OpenAI.getEvalRunOutputItems.RequestOrder.anonymous", "valueType": { - "$id": "1446", + "$id": "1447", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17452,28 +17465,28 @@ }, "values": [ { - "$id": "1447", + "$id": "1448", "kind": "enumvalue", "name": "asc", "value": "asc", "valueType": { - "$ref": "1446" + "$ref": "1447" }, "enumType": { - "$ref": "1445" + "$ref": "1446" }, "decorators": [] }, { - "$id": "1448", + "$id": "1449", "kind": "enumvalue", "name": "desc", "value": "desc", "valueType": { - "$ref": "1446" + "$ref": "1447" }, "enumType": { - "$ref": "1445" + "$ref": "1446" }, "decorators": [] } @@ -17485,12 +17498,12 @@ "decorators": [] }, { - "$id": "1449", + "$id": "1450", "kind": "enum", "name": "ModerationAppliedInputType", "crossLanguageDefinitionId": "OpenAI.ModerationAppliedInputType", "valueType": { - "$id": "1450", + "$id": "1451", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17498,28 +17511,28 @@ }, "values": [ { - "$id": "1451", + "$id": "1452", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "1450" + "$ref": "1451" }, "enumType": { - "$ref": "1449" + "$ref": "1450" }, "decorators": [] }, { - "$id": "1452", + "$id": "1453", "kind": "enumvalue", "name": "image", "value": "image", "valueType": { - "$ref": "1450" + "$ref": "1451" }, "enumType": { - "$ref": "1449" + "$ref": "1450" }, "decorators": [] } @@ -17531,12 +17544,12 @@ "decorators": [] }, { - "$id": "1453", + "$id": "1454", "kind": "enum", "name": "IncludedRunStepProperty", "crossLanguageDefinitionId": "OpenAI.IncludedRunStepProperty", "valueType": { - "$id": "1454", + "$id": "1455", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17544,15 +17557,15 @@ }, "values": [ { - "$id": "1455", + "$id": "1456", "kind": "enumvalue", "name": "file_search_result_content", "value": "step_details.tool_calls[*].file_search.results[*].content", "valueType": { - "$ref": "1454" + "$ref": "1455" }, "enumType": { - "$ref": "1453" + "$ref": "1454" }, "decorators": [] } @@ -17564,12 +17577,12 @@ "decorators": [] }, { - "$id": "1456", + "$id": "1457", "kind": "enum", "name": "RunStepDetailsToolCallsFileSearchResultObjectContentType", "crossLanguageDefinitionId": "OpenAI.RunStepDetailsToolCallsFileSearchResultObjectContentType", "valueType": { - "$id": "1457", + "$id": "1458", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17577,15 +17590,15 @@ }, "values": [ { - "$id": "1458", + "$id": "1459", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "1457" + "$ref": "1458" }, "enumType": { - "$ref": "1456" + "$ref": "1457" }, "decorators": [] } @@ -17597,12 +17610,12 @@ "decorators": [] }, { - "$id": "1459", + "$id": "1460", "kind": "enum", "name": "VectorStoreExpirationAnchor", "crossLanguageDefinitionId": "OpenAI.VectorStoreExpirationAnchor", "valueType": { - "$id": "1460", + "$id": "1461", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17610,15 +17623,15 @@ }, "values": [ { - "$id": "1461", + "$id": "1462", "kind": "enumvalue", "name": "last_active_at", "value": "last_active_at", "valueType": { - "$ref": "1460" + "$ref": "1461" }, "enumType": { - "$ref": "1459" + "$ref": "1460" }, "decorators": [] } @@ -17630,12 +17643,12 @@ "decorators": [] }, { - "$id": "1462", + "$id": "1463", "kind": "enum", "name": "CreateFineTuningJobRequestHyperparametersBatchSizeChoiceEnum", "crossLanguageDefinitionId": "OpenAI.CreateFineTuningJobRequestHyperparametersBatchSizeChoiceEnum", "valueType": { - "$id": "1463", + "$id": "1464", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17643,15 +17656,15 @@ }, "values": [ { - "$id": "1464", + "$id": "1465", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1463" + "$ref": "1464" }, "enumType": { - "$ref": "1462" + "$ref": "1463" }, "decorators": [] } @@ -17664,12 +17677,12 @@ "decorators": [] }, { - "$id": "1465", + "$id": "1466", "kind": "enum", "name": "CreateFineTuningJobRequestHyperparametersLearningRateMultiplierChoiceEnum", "crossLanguageDefinitionId": "OpenAI.CreateFineTuningJobRequestHyperparametersLearningRateMultiplierChoiceEnum", "valueType": { - "$id": "1466", + "$id": "1467", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17677,15 +17690,15 @@ }, "values": [ { - "$id": "1467", + "$id": "1468", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1466" + "$ref": "1467" }, "enumType": { - "$ref": "1465" + "$ref": "1466" }, "decorators": [] } @@ -17698,12 +17711,12 @@ "decorators": [] }, { - "$id": "1468", + "$id": "1469", "kind": "enum", "name": "CreateFineTuningJobRequestHyperparametersNEpochsChoiceEnum", "crossLanguageDefinitionId": "OpenAI.CreateFineTuningJobRequestHyperparametersNEpochsChoiceEnum", "valueType": { - "$id": "1469", + "$id": "1470", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17711,15 +17724,15 @@ }, "values": [ { - "$id": "1470", + "$id": "1471", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1469" + "$ref": "1470" }, "enumType": { - "$ref": "1468" + "$ref": "1469" }, "decorators": [] } @@ -17732,12 +17745,12 @@ "decorators": [] }, { - "$id": "1471", + "$id": "1472", "kind": "enum", "name": "CreateFineTuningJobRequestHyperparametersBetaChoiceEnum", "crossLanguageDefinitionId": "OpenAI.CreateFineTuningJobRequestHyperparametersBetaChoiceEnum", "valueType": { - "$id": "1472", + "$id": "1473", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17745,15 +17758,15 @@ }, "values": [ { - "$id": "1473", + "$id": "1474", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1472" + "$ref": "1473" }, "enumType": { - "$ref": "1471" + "$ref": "1472" }, "decorators": [] } @@ -17766,12 +17779,12 @@ "decorators": [] }, { - "$id": "1474", + "$id": "1475", "kind": "enum", "name": "DotNetResponseReasoningEffortLevel", "crossLanguageDefinitionId": "OpenAI.DotNetResponseReasoningEffortLevel", "valueType": { - "$id": "1475", + "$id": "1476", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17779,54 +17792,54 @@ }, "values": [ { - "$id": "1476", + "$id": "1477", "kind": "enumvalue", "name": "minimal", "value": "minimal", "valueType": { - "$ref": "1475" + "$ref": "1476" }, "enumType": { - "$ref": "1474" + "$ref": "1475" }, "decorators": [] }, { - "$id": "1477", + "$id": "1478", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "1475" + "$ref": "1476" }, "enumType": { - "$ref": "1474" + "$ref": "1475" }, "decorators": [] }, { - "$id": "1478", + "$id": "1479", "kind": "enumvalue", "name": "medium", "value": "medium", "valueType": { - "$ref": "1475" + "$ref": "1476" }, "enumType": { - "$ref": "1474" + "$ref": "1475" }, "decorators": [] }, { - "$id": "1479", + "$id": "1480", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "1475" + "$ref": "1476" }, "enumType": { - "$ref": "1474" + "$ref": "1475" }, "decorators": [] } @@ -17844,12 +17857,12 @@ ] }, { - "$id": "1480", + "$id": "1481", "kind": "enum", "name": "DotNetAudioVoiceIds", "crossLanguageDefinitionId": "OpenAI.DotNetAudioVoiceIds", "valueType": { - "$id": "1481", + "$id": "1482", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17857,145 +17870,145 @@ }, "values": [ { - "$id": "1482", + "$id": "1483", "kind": "enumvalue", "name": "alloy", "value": "alloy", "valueType": { - "$ref": "1481" + "$ref": "1482" }, "enumType": { - "$ref": "1480" + "$ref": "1481" }, "decorators": [] }, { - "$id": "1483", + "$id": "1484", "kind": "enumvalue", "name": "ash", "value": "ash", "valueType": { - "$ref": "1481" + "$ref": "1482" }, "enumType": { - "$ref": "1480" + "$ref": "1481" }, "decorators": [] }, { - "$id": "1484", + "$id": "1485", "kind": "enumvalue", "name": "ballad", "value": "ballad", "valueType": { - "$ref": "1481" + "$ref": "1482" }, "enumType": { - "$ref": "1480" + "$ref": "1481" }, "decorators": [] }, { - "$id": "1485", + "$id": "1486", "kind": "enumvalue", "name": "coral", "value": "coral", "valueType": { - "$ref": "1481" + "$ref": "1482" }, "enumType": { - "$ref": "1480" + "$ref": "1481" }, "decorators": [] }, { - "$id": "1486", + "$id": "1487", "kind": "enumvalue", "name": "echo", "value": "echo", "valueType": { - "$ref": "1481" + "$ref": "1482" }, "enumType": { - "$ref": "1480" + "$ref": "1481" }, "decorators": [] }, { - "$id": "1487", + "$id": "1488", "kind": "enumvalue", "name": "fable", "value": "fable", "valueType": { - "$ref": "1481" + "$ref": "1482" }, "enumType": { - "$ref": "1480" + "$ref": "1481" }, "decorators": [] }, { - "$id": "1488", + "$id": "1489", "kind": "enumvalue", "name": "onyx", "value": "onyx", "valueType": { - "$ref": "1481" + "$ref": "1482" }, "enumType": { - "$ref": "1480" + "$ref": "1481" }, "decorators": [] }, { - "$id": "1489", + "$id": "1490", "kind": "enumvalue", "name": "nova", "value": "nova", "valueType": { - "$ref": "1481" + "$ref": "1482" }, "enumType": { - "$ref": "1480" + "$ref": "1481" }, "decorators": [] }, { - "$id": "1490", + "$id": "1491", "kind": "enumvalue", "name": "sage", "value": "sage", "valueType": { - "$ref": "1481" + "$ref": "1482" }, "enumType": { - "$ref": "1480" + "$ref": "1481" }, "decorators": [] }, { - "$id": "1491", + "$id": "1492", "kind": "enumvalue", "name": "shimmer", "value": "shimmer", "valueType": { - "$ref": "1481" + "$ref": "1482" }, "enumType": { - "$ref": "1480" + "$ref": "1481" }, "decorators": [] }, { - "$id": "1492", + "$id": "1493", "kind": "enumvalue", "name": "verse", "value": "verse", "valueType": { - "$ref": "1481" + "$ref": "1482" }, "enumType": { - "$ref": "1480" + "$ref": "1481" }, "decorators": [] } @@ -18008,12 +18021,12 @@ "decorators": [] }, { - "$id": "1493", + "$id": "1494", "kind": "enum", "name": "DotNetChatVoiceIds", "crossLanguageDefinitionId": "OpenAI.DotNetChatVoiceIds", "valueType": { - "$id": "1494", + "$id": "1495", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18021,145 +18034,145 @@ }, "values": [ { - "$id": "1495", + "$id": "1496", "kind": "enumvalue", "name": "alloy", "value": "alloy", "valueType": { - "$ref": "1494" + "$ref": "1495" }, "enumType": { - "$ref": "1493" + "$ref": "1494" }, "decorators": [] }, { - "$id": "1496", + "$id": "1497", "kind": "enumvalue", "name": "ash", "value": "ash", "valueType": { - "$ref": "1494" + "$ref": "1495" }, "enumType": { - "$ref": "1493" + "$ref": "1494" }, "decorators": [] }, { - "$id": "1497", + "$id": "1498", "kind": "enumvalue", "name": "ballad", "value": "ballad", "valueType": { - "$ref": "1494" + "$ref": "1495" }, "enumType": { - "$ref": "1493" + "$ref": "1494" }, "decorators": [] }, { - "$id": "1498", + "$id": "1499", "kind": "enumvalue", "name": "coral", "value": "coral", "valueType": { - "$ref": "1494" + "$ref": "1495" }, "enumType": { - "$ref": "1493" + "$ref": "1494" }, "decorators": [] }, { - "$id": "1499", + "$id": "1500", "kind": "enumvalue", "name": "echo", "value": "echo", "valueType": { - "$ref": "1494" + "$ref": "1495" }, "enumType": { - "$ref": "1493" + "$ref": "1494" }, "decorators": [] }, { - "$id": "1500", + "$id": "1501", "kind": "enumvalue", "name": "fable", "value": "fable", "valueType": { - "$ref": "1494" + "$ref": "1495" }, "enumType": { - "$ref": "1493" + "$ref": "1494" }, "decorators": [] }, { - "$id": "1501", + "$id": "1502", "kind": "enumvalue", "name": "onyx", "value": "onyx", "valueType": { - "$ref": "1494" + "$ref": "1495" }, "enumType": { - "$ref": "1493" + "$ref": "1494" }, "decorators": [] }, { - "$id": "1502", + "$id": "1503", "kind": "enumvalue", "name": "nova", "value": "nova", "valueType": { - "$ref": "1494" + "$ref": "1495" }, "enumType": { - "$ref": "1493" + "$ref": "1494" }, "decorators": [] }, { - "$id": "1503", + "$id": "1504", "kind": "enumvalue", "name": "sage", "value": "sage", "valueType": { - "$ref": "1494" + "$ref": "1495" }, "enumType": { - "$ref": "1493" + "$ref": "1494" }, "decorators": [] }, { - "$id": "1504", + "$id": "1505", "kind": "enumvalue", "name": "shimmer", "value": "shimmer", "valueType": { - "$ref": "1494" + "$ref": "1495" }, "enumType": { - "$ref": "1493" + "$ref": "1494" }, "decorators": [] }, { - "$id": "1505", + "$id": "1506", "kind": "enumvalue", "name": "verse", "value": "verse", "valueType": { - "$ref": "1494" + "$ref": "1495" }, "enumType": { - "$ref": "1493" + "$ref": "1494" }, "decorators": [] } @@ -18177,12 +18190,12 @@ ] }, { - "$id": "1506", + "$id": "1507", "kind": "enum", "name": "DotNetRealtimeVoiceIds", "crossLanguageDefinitionId": "OpenAI.DotNetRealtimeVoiceIds", "valueType": { - "$id": "1507", + "$id": "1508", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18190,145 +18203,145 @@ }, "values": [ { - "$id": "1508", + "$id": "1509", "kind": "enumvalue", "name": "alloy", "value": "alloy", "valueType": { - "$ref": "1507" + "$ref": "1508" }, "enumType": { - "$ref": "1506" + "$ref": "1507" }, "decorators": [] }, { - "$id": "1509", + "$id": "1510", "kind": "enumvalue", "name": "ash", "value": "ash", "valueType": { - "$ref": "1507" + "$ref": "1508" }, "enumType": { - "$ref": "1506" + "$ref": "1507" }, "decorators": [] }, { - "$id": "1510", + "$id": "1511", "kind": "enumvalue", "name": "ballad", "value": "ballad", "valueType": { - "$ref": "1507" + "$ref": "1508" }, "enumType": { - "$ref": "1506" + "$ref": "1507" }, "decorators": [] }, { - "$id": "1511", + "$id": "1512", "kind": "enumvalue", "name": "coral", "value": "coral", "valueType": { - "$ref": "1507" + "$ref": "1508" }, "enumType": { - "$ref": "1506" + "$ref": "1507" }, "decorators": [] }, { - "$id": "1512", + "$id": "1513", "kind": "enumvalue", "name": "echo", "value": "echo", "valueType": { - "$ref": "1507" + "$ref": "1508" }, "enumType": { - "$ref": "1506" + "$ref": "1507" }, "decorators": [] }, { - "$id": "1513", + "$id": "1514", "kind": "enumvalue", "name": "fable", "value": "fable", "valueType": { - "$ref": "1507" + "$ref": "1508" }, "enumType": { - "$ref": "1506" + "$ref": "1507" }, "decorators": [] }, { - "$id": "1514", + "$id": "1515", "kind": "enumvalue", "name": "onyx", "value": "onyx", "valueType": { - "$ref": "1507" + "$ref": "1508" }, "enumType": { - "$ref": "1506" + "$ref": "1507" }, "decorators": [] }, { - "$id": "1515", + "$id": "1516", "kind": "enumvalue", "name": "nova", "value": "nova", "valueType": { - "$ref": "1507" + "$ref": "1508" }, "enumType": { - "$ref": "1506" + "$ref": "1507" }, "decorators": [] }, { - "$id": "1516", + "$id": "1517", "kind": "enumvalue", "name": "sage", "value": "sage", "valueType": { - "$ref": "1507" + "$ref": "1508" }, "enumType": { - "$ref": "1506" + "$ref": "1507" }, "decorators": [] }, { - "$id": "1517", + "$id": "1518", "kind": "enumvalue", "name": "shimmer", "value": "shimmer", "valueType": { - "$ref": "1507" + "$ref": "1508" }, "enumType": { - "$ref": "1506" + "$ref": "1507" }, "decorators": [] }, { - "$id": "1518", + "$id": "1519", "kind": "enumvalue", "name": "verse", "value": "verse", "valueType": { - "$ref": "1507" + "$ref": "1508" }, "enumType": { - "$ref": "1506" + "$ref": "1507" }, "decorators": [] } @@ -18343,13 +18356,13 @@ ], "constants": [ { - "$id": "1519", + "$id": "1520", "kind": "constant", "name": "ListAssistantsResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1520", + "$id": "1521", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18359,13 +18372,13 @@ "decorators": [] }, { - "$id": "1521", + "$id": "1522", "kind": "constant", "name": "AssistantObjectObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1522", + "$id": "1523", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18375,13 +18388,13 @@ "decorators": [] }, { - "$id": "1523", + "$id": "1524", "kind": "constant", "name": "FileSearchRankingOptionsRanker", "namespace": "", "usage": "None", "valueType": { - "$id": "1524", + "$id": "1525", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18391,13 +18404,13 @@ "decorators": [] }, { - "$id": "1525", + "$id": "1526", "kind": "constant", "name": "DeleteAssistantResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1526", + "$id": "1527", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18407,13 +18420,13 @@ "decorators": [] }, { - "$id": "1527", + "$id": "1528", "kind": "constant", "name": "VadConfigType", "namespace": "OpenAI", "usage": "Input", "valueType": { - "$id": "1528", + "$id": "1529", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18423,13 +18436,13 @@ "decorators": [] }, { - "$id": "1529", + "$id": "1530", "kind": "constant", "name": "CreateTranscriptionResponseVerboseJsonTask", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1530", + "$id": "1531", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18439,13 +18452,13 @@ "decorators": [] }, { - "$id": "1531", + "$id": "1532", "kind": "constant", "name": "CreateTranslationResponseVerboseJsonTask", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1532", + "$id": "1533", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18455,13 +18468,13 @@ "decorators": [] }, { - "$id": "1533", + "$id": "1534", "kind": "constant", "name": "CreateBatchRequestCompletion_window", "namespace": "", "usage": "Spread,Json", "valueType": { - "$id": "1534", + "$id": "1535", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18471,13 +18484,13 @@ "decorators": [] }, { - "$id": "1535", + "$id": "1536", "kind": "constant", "name": "BatchObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1536", + "$id": "1537", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18487,13 +18500,13 @@ "decorators": [] }, { - "$id": "1537", + "$id": "1538", "kind": "constant", "name": "ListBatchesResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1538", + "$id": "1539", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18503,13 +18516,13 @@ "decorators": [] }, { - "$id": "1539", + "$id": "1540", "kind": "constant", "name": "ChatCompletionListObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1540", + "$id": "1541", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18519,13 +18532,13 @@ "decorators": [] }, { - "$id": "1541", + "$id": "1542", "kind": "constant", "name": "ChatCompletionResponseMessageAnnotationType", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1542", + "$id": "1543", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18535,13 +18548,13 @@ "decorators": [] }, { - "$id": "1543", + "$id": "1544", "kind": "constant", "name": "CreateChatCompletionResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1544", + "$id": "1545", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18551,13 +18564,13 @@ "decorators": [] }, { - "$id": "1545", + "$id": "1546", "kind": "constant", "name": "CreateChatCompletionRequestWebSearchOptionsUserLocation1Type", "namespace": "OpenAI", "usage": "Input,Json", "valueType": { - "$id": "1546", + "$id": "1547", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18567,13 +18580,13 @@ "decorators": [] }, { - "$id": "1547", + "$id": "1548", "kind": "constant", "name": "ChatCompletionNamedToolChoiceType", "namespace": "OpenAI", "usage": "Input,Json", "valueType": { - "$id": "1548", + "$id": "1549", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18583,13 +18596,13 @@ "decorators": [] }, { - "$id": "1549", + "$id": "1550", "kind": "constant", "name": "CreateChatCompletionRequestToolChoice1", "namespace": "", "usage": "None", "valueType": { - "$id": "1550", + "$id": "1551", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18599,13 +18612,13 @@ "decorators": [] }, { - "$id": "1551", + "$id": "1552", "kind": "constant", "name": "FileSearchRankingOptionsRanker1", "namespace": "", "usage": "None", "valueType": { - "$id": "1552", + "$id": "1553", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18615,14 +18628,14 @@ "decorators": [] }, { - "$id": "1553", + "$id": "1554", "kind": "constant", "name": "CreateChatCompletionStreamResponseObject", "namespace": "OpenAI", "access": "public", "usage": "Output", "valueType": { - "$id": "1554", + "$id": "1555", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18632,13 +18645,13 @@ "decorators": [] }, { - "$id": "1555", + "$id": "1556", "kind": "constant", "name": "ChatCompletionDeletedObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1556", + "$id": "1557", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18648,13 +18661,13 @@ "decorators": [] }, { - "$id": "1557", + "$id": "1558", "kind": "constant", "name": "ChatCompletionMessageListObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1558", + "$id": "1559", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18664,13 +18677,13 @@ "decorators": [] }, { - "$id": "1559", + "$id": "1560", "kind": "constant", "name": "ContainerListResourceObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1560", + "$id": "1561", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18680,13 +18693,13 @@ "decorators": [] }, { - "$id": "1561", + "$id": "1562", "kind": "constant", "name": "CreateContainerBodyExpiresAfterAnchor", "namespace": "OpenAI", "usage": "Input,Json", "valueType": { - "$id": "1562", + "$id": "1563", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18696,13 +18709,13 @@ "decorators": [] }, { - "$id": "1563", + "$id": "1564", "kind": "constant", "name": "DeleteContainerResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1564", + "$id": "1565", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18712,13 +18725,13 @@ "decorators": [] }, { - "$id": "1565", + "$id": "1566", "kind": "constant", "name": "DeleteContainerResponseDeleted", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1566", + "$id": "1567", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -18728,13 +18741,13 @@ "decorators": [] }, { - "$id": "1567", + "$id": "1568", "kind": "constant", "name": "ContainerFileListResourceObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1568", + "$id": "1569", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18744,13 +18757,13 @@ "decorators": [] }, { - "$id": "1569", + "$id": "1570", "kind": "constant", "name": "DeleteContainerFileResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1570", + "$id": "1571", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18760,13 +18773,13 @@ "decorators": [] }, { - "$id": "1571", + "$id": "1572", "kind": "constant", "name": "DeleteContainerFileResponseDeleted", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1572", + "$id": "1573", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -18776,13 +18789,13 @@ "decorators": [] }, { - "$id": "1573", + "$id": "1574", "kind": "constant", "name": "EmbeddingObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1574", + "$id": "1575", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18792,13 +18805,13 @@ "decorators": [] }, { - "$id": "1575", + "$id": "1576", "kind": "constant", "name": "CreateEmbeddingResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1576", + "$id": "1577", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18808,13 +18821,13 @@ "decorators": [] }, { - "$id": "1577", + "$id": "1578", "kind": "constant", "name": "ListFilesResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1578", + "$id": "1579", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18824,13 +18837,13 @@ "decorators": [] }, { - "$id": "1579", + "$id": "1580", "kind": "constant", "name": "OpenAIFileObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1580", + "$id": "1581", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18840,13 +18853,13 @@ "decorators": [] }, { - "$id": "1581", + "$id": "1582", "kind": "constant", "name": "DeleteFileResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1582", + "$id": "1583", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18856,13 +18869,13 @@ "decorators": [] }, { - "$id": "1583", + "$id": "1584", "kind": "constant", "name": "FineTuningCheckpointPermissionObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1584", + "$id": "1585", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18872,13 +18885,13 @@ "decorators": [] }, { - "$id": "1585", + "$id": "1586", "kind": "constant", "name": "ListFineTuningCheckpointPermissionResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1586", + "$id": "1587", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18888,13 +18901,13 @@ "decorators": [] }, { - "$id": "1587", + "$id": "1588", "kind": "constant", "name": "DeleteFineTuningCheckpointPermissionResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1588", + "$id": "1589", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18904,13 +18917,13 @@ "decorators": [] }, { - "$id": "1589", + "$id": "1590", "kind": "constant", "name": "FileSearchRankingOptionsRanker2", "namespace": "", "usage": "None", "valueType": { - "$id": "1590", + "$id": "1591", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18920,13 +18933,13 @@ "decorators": [] }, { - "$id": "1591", + "$id": "1592", "kind": "constant", "name": "FileSearchRankingOptionsRanker3", "namespace": "", "usage": "None", "valueType": { - "$id": "1592", + "$id": "1593", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18936,13 +18949,13 @@ "decorators": [] }, { - "$id": "1593", + "$id": "1594", "kind": "constant", "name": "FileSearchRankingOptionsRanker4", "namespace": "", "usage": "None", "valueType": { - "$id": "1594", + "$id": "1595", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18952,13 +18965,13 @@ "decorators": [] }, { - "$id": "1595", + "$id": "1596", "kind": "constant", "name": "FileSearchRankingOptionsRanker5", "namespace": "", "usage": "None", "valueType": { - "$id": "1596", + "$id": "1597", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18968,13 +18981,13 @@ "decorators": [] }, { - "$id": "1597", + "$id": "1598", "kind": "constant", "name": "FileSearchRankingOptionsRanker6", "namespace": "", "usage": "None", "valueType": { - "$id": "1598", + "$id": "1599", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18984,13 +18997,13 @@ "decorators": [] }, { - "$id": "1599", + "$id": "1600", "kind": "constant", "name": "FileSearchRankingOptionsRanker7", "namespace": "", "usage": "None", "valueType": { - "$id": "1600", + "$id": "1601", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19000,13 +19013,13 @@ "decorators": [] }, { - "$id": "1601", + "$id": "1602", "kind": "constant", "name": "FileSearchRankingOptionsRanker8", "namespace": "", "usage": "None", "valueType": { - "$id": "1602", + "$id": "1603", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19016,13 +19029,13 @@ "decorators": [] }, { - "$id": "1603", + "$id": "1604", "kind": "constant", "name": "FileSearchRankingOptionsRanker9", "namespace": "", "usage": "None", "valueType": { - "$id": "1604", + "$id": "1605", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19032,13 +19045,13 @@ "decorators": [] }, { - "$id": "1605", + "$id": "1606", "kind": "constant", "name": "FileSearchRankingOptionsRanker10", "namespace": "", "usage": "None", "valueType": { - "$id": "1606", + "$id": "1607", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19048,13 +19061,13 @@ "decorators": [] }, { - "$id": "1607", + "$id": "1608", "kind": "constant", "name": "FileSearchRankingOptionsRanker11", "namespace": "", "usage": "None", "valueType": { - "$id": "1608", + "$id": "1609", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19064,13 +19077,13 @@ "decorators": [] }, { - "$id": "1609", + "$id": "1610", "kind": "constant", "name": "FileSearchRankingOptionsRanker12", "namespace": "", "usage": "None", "valueType": { - "$id": "1610", + "$id": "1611", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19080,13 +19093,13 @@ "decorators": [] }, { - "$id": "1611", + "$id": "1612", "kind": "constant", "name": "FileSearchRankingOptionsRanker13", "namespace": "", "usage": "None", "valueType": { - "$id": "1612", + "$id": "1613", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19096,13 +19109,13 @@ "decorators": [] }, { - "$id": "1613", + "$id": "1614", "kind": "constant", "name": "FileSearchRankingOptionsRanker14", "namespace": "", "usage": "None", "valueType": { - "$id": "1614", + "$id": "1615", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19112,13 +19125,13 @@ "decorators": [] }, { - "$id": "1615", + "$id": "1616", "kind": "constant", "name": "FileSearchRankingOptionsRanker15", "namespace": "", "usage": "None", "valueType": { - "$id": "1616", + "$id": "1617", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19128,13 +19141,13 @@ "decorators": [] }, { - "$id": "1617", + "$id": "1618", "kind": "constant", "name": "FileSearchRankingOptionsRanker16", "namespace": "", "usage": "None", "valueType": { - "$id": "1618", + "$id": "1619", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19144,13 +19157,13 @@ "decorators": [] }, { - "$id": "1619", + "$id": "1620", "kind": "constant", "name": "FileSearchRankingOptionsRanker17", "namespace": "", "usage": "None", "valueType": { - "$id": "1620", + "$id": "1621", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19160,13 +19173,13 @@ "decorators": [] }, { - "$id": "1621", + "$id": "1622", "kind": "constant", "name": "FileSearchRankingOptionsRanker18", "namespace": "", "usage": "None", "valueType": { - "$id": "1622", + "$id": "1623", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19176,13 +19189,13 @@ "decorators": [] }, { - "$id": "1623", + "$id": "1624", "kind": "constant", "name": "FileSearchRankingOptionsRanker19", "namespace": "", "usage": "None", "valueType": { - "$id": "1624", + "$id": "1625", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19192,13 +19205,13 @@ "decorators": [] }, { - "$id": "1625", + "$id": "1626", "kind": "constant", "name": "FileSearchRankingOptionsRanker20", "namespace": "", "usage": "None", "valueType": { - "$id": "1626", + "$id": "1627", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19208,13 +19221,13 @@ "decorators": [] }, { - "$id": "1627", + "$id": "1628", "kind": "constant", "name": "FineTuningJobObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1628", + "$id": "1629", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19224,13 +19237,13 @@ "decorators": [] }, { - "$id": "1629", + "$id": "1630", "kind": "constant", "name": "ListPaginatedFineTuningJobsResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1630", + "$id": "1631", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19240,13 +19253,13 @@ "decorators": [] }, { - "$id": "1631", + "$id": "1632", "kind": "constant", "name": "FineTuningJobCheckpointObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1632", + "$id": "1633", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19256,13 +19269,13 @@ "decorators": [] }, { - "$id": "1633", + "$id": "1634", "kind": "constant", "name": "ListFineTuningJobCheckpointsResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1634", + "$id": "1635", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19272,13 +19285,13 @@ "decorators": [] }, { - "$id": "1635", + "$id": "1636", "kind": "constant", "name": "FineTuningJobEventObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1636", + "$id": "1637", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19288,13 +19301,13 @@ "decorators": [] }, { - "$id": "1637", + "$id": "1638", "kind": "constant", "name": "ListFineTuningJobEventsResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1638", + "$id": "1639", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19304,13 +19317,13 @@ "decorators": [] }, { - "$id": "1639", + "$id": "1640", "kind": "constant", "name": "EvalListObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1640", + "$id": "1641", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19320,13 +19333,13 @@ "decorators": [] }, { - "$id": "1641", + "$id": "1642", "kind": "constant", "name": "EvalObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1642", + "$id": "1643", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19336,13 +19349,13 @@ "decorators": [] }, { - "$id": "1643", + "$id": "1644", "kind": "constant", "name": "DeleteEvalResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1644", + "$id": "1645", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19352,13 +19365,13 @@ "decorators": [] }, { - "$id": "1645", + "$id": "1646", "kind": "constant", "name": "EvalRunListObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1646", + "$id": "1647", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19368,13 +19381,13 @@ "decorators": [] }, { - "$id": "1647", + "$id": "1648", "kind": "constant", "name": "EvalRunObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1648", + "$id": "1649", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19384,13 +19397,13 @@ "decorators": [] }, { - "$id": "1649", + "$id": "1650", "kind": "constant", "name": "EvalCompletionsRunDataSourceParamsInputMessages1Type", "namespace": "OpenAI", "usage": "Input,Json", "valueType": { - "$id": "1650", + "$id": "1651", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19400,13 +19413,13 @@ "decorators": [] }, { - "$id": "1651", + "$id": "1652", "kind": "constant", "name": "EvalCompletionsRunDataSourceParamsInputMessages2Type", "namespace": "OpenAI", "usage": "Input,Json", "valueType": { - "$id": "1652", + "$id": "1653", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19416,13 +19429,13 @@ "decorators": [] }, { - "$id": "1653", + "$id": "1654", "kind": "constant", "name": "EvalResponsesRunDataSourceParamsInputMessages1Type", "namespace": "OpenAI", "usage": "Input,Json", "valueType": { - "$id": "1654", + "$id": "1655", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19432,13 +19445,13 @@ "decorators": [] }, { - "$id": "1655", + "$id": "1656", "kind": "constant", "name": "EvalResponsesRunDataSourceParamsInputMessages2Type", "namespace": "OpenAI", "usage": "Input,Json", "valueType": { - "$id": "1656", + "$id": "1657", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19448,13 +19461,13 @@ "decorators": [] }, { - "$id": "1657", + "$id": "1658", "kind": "constant", "name": "MCPToolRequireApproval2", "namespace": "", "usage": "None", "valueType": { - "$id": "1658", + "$id": "1659", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19464,13 +19477,13 @@ "decorators": [] }, { - "$id": "1659", + "$id": "1660", "kind": "constant", "name": "MCPToolRequireApproval3", "namespace": "", "usage": "None", "valueType": { - "$id": "1660", + "$id": "1661", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19480,13 +19493,13 @@ "decorators": [] }, { - "$id": "1661", + "$id": "1662", "kind": "constant", "name": "DeleteEvalRunResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1662", + "$id": "1663", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19496,13 +19509,13 @@ "decorators": [] }, { - "$id": "1663", + "$id": "1664", "kind": "constant", "name": "EvalRunOutputItemListObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1664", + "$id": "1665", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19512,13 +19525,13 @@ "decorators": [] }, { - "$id": "1665", + "$id": "1666", "kind": "constant", "name": "EvalRunOutputItemObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1666", + "$id": "1667", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19528,13 +19541,13 @@ "decorators": [] }, { - "$id": "1667", + "$id": "1668", "kind": "constant", "name": "LocalShellExecActionType", "namespace": "OpenAI", "usage": "Input,Output,Json", "valueType": { - "$id": "1668", + "$id": "1669", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19544,13 +19557,13 @@ "decorators": [] }, { - "$id": "1669", + "$id": "1670", "kind": "constant", "name": "ResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1670", + "$id": "1671", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19560,13 +19573,13 @@ "decorators": [] }, { - "$id": "1671", + "$id": "1672", "kind": "constant", "name": "DeleteResponseResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1672", + "$id": "1673", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19576,13 +19589,13 @@ "decorators": [] }, { - "$id": "1673", + "$id": "1674", "kind": "constant", "name": "DeleteResponseResponseDeleted", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1674", + "$id": "1675", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -19592,13 +19605,13 @@ "decorators": [] }, { - "$id": "1675", + "$id": "1676", "kind": "constant", "name": "ResponseItemListObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1676", + "$id": "1677", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19608,13 +19621,13 @@ "decorators": [] }, { - "$id": "1677", + "$id": "1678", "kind": "constant", "name": "AssistantToolsFileSearchTypeOnlyType", "namespace": "OpenAI", "usage": "Input,Output,Json", "valueType": { - "$id": "1678", + "$id": "1679", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19624,13 +19637,13 @@ "decorators": [] }, { - "$id": "1679", + "$id": "1680", "kind": "constant", "name": "MessageObjectObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1680", + "$id": "1681", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19640,13 +19653,13 @@ "decorators": [] }, { - "$id": "1681", + "$id": "1682", "kind": "constant", "name": "ListMessagesResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1682", + "$id": "1683", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19656,13 +19669,13 @@ "decorators": [] }, { - "$id": "1683", + "$id": "1684", "kind": "constant", "name": "DeleteMessageResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1684", + "$id": "1685", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19672,13 +19685,13 @@ "decorators": [] }, { - "$id": "1685", + "$id": "1686", "kind": "constant", "name": "CreateModerationRequestInput2Type", "namespace": "OpenAI", "usage": "Input,Json", "valueType": { - "$id": "1686", + "$id": "1687", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19688,13 +19701,13 @@ "decorators": [] }, { - "$id": "1687", + "$id": "1688", "kind": "constant", "name": "CreateModerationRequestInput3Type", "namespace": "OpenAI", "usage": "Input,Json", "valueType": { - "$id": "1688", + "$id": "1689", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19704,13 +19717,13 @@ "decorators": [] }, { - "$id": "1689", + "$id": "1690", "kind": "constant", "name": "RunObjectObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1690", + "$id": "1691", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19720,13 +19733,13 @@ "decorators": [] }, { - "$id": "1691", + "$id": "1692", "kind": "constant", "name": "RunObjectRequiredAction1Type", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1692", + "$id": "1693", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19736,13 +19749,13 @@ "decorators": [] }, { - "$id": "1693", + "$id": "1694", "kind": "constant", "name": "RunToolCallObjectType", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1694", + "$id": "1695", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19752,13 +19765,13 @@ "decorators": [] }, { - "$id": "1695", + "$id": "1696", "kind": "constant", "name": "ListRunsResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1696", + "$id": "1697", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19768,13 +19781,13 @@ "decorators": [] }, { - "$id": "1697", + "$id": "1698", "kind": "constant", "name": "ListRunStepsResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1698", + "$id": "1699", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19784,13 +19797,13 @@ "decorators": [] }, { - "$id": "1699", + "$id": "1700", "kind": "constant", "name": "RunStepObjectObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1700", + "$id": "1701", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19800,13 +19813,13 @@ "decorators": [] }, { - "$id": "1701", + "$id": "1702", "kind": "constant", "name": "ThreadObjectObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1702", + "$id": "1703", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19816,13 +19829,13 @@ "decorators": [] }, { - "$id": "1703", + "$id": "1704", "kind": "constant", "name": "DeleteThreadResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1704", + "$id": "1705", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19832,13 +19845,13 @@ "decorators": [] }, { - "$id": "1705", + "$id": "1706", "kind": "constant", "name": "ListVectorStoresResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1706", + "$id": "1707", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19848,13 +19861,13 @@ "decorators": [] }, { - "$id": "1707", + "$id": "1708", "kind": "constant", "name": "VectorStoreObjectObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1708", + "$id": "1709", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19864,13 +19877,13 @@ "decorators": [] }, { - "$id": "1709", + "$id": "1710", "kind": "constant", "name": "DeleteVectorStoreResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1710", + "$id": "1711", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19880,13 +19893,13 @@ "decorators": [] }, { - "$id": "1711", + "$id": "1712", "kind": "constant", "name": "VectorStoreFileBatchObjectObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1712", + "$id": "1713", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19896,13 +19909,13 @@ "decorators": [] }, { - "$id": "1713", + "$id": "1714", "kind": "constant", "name": "ListVectorStoreFilesResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1714", + "$id": "1715", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19912,13 +19925,13 @@ "decorators": [] }, { - "$id": "1715", + "$id": "1716", "kind": "constant", "name": "VectorStoreFileObjectObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1716", + "$id": "1717", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19928,13 +19941,13 @@ "decorators": [] }, { - "$id": "1717", + "$id": "1718", "kind": "constant", "name": "DeleteVectorStoreFileResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1718", + "$id": "1719", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19944,13 +19957,13 @@ "decorators": [] }, { - "$id": "1719", + "$id": "1720", "kind": "constant", "name": "VectorStoreFileContentResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1720", + "$id": "1721", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19960,13 +19973,13 @@ "decorators": [] }, { - "$id": "1721", + "$id": "1722", "kind": "constant", "name": "VectorStoreSearchResultsPageObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1722", + "$id": "1723", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19976,13 +19989,13 @@ "decorators": [] }, { - "$id": "1723", + "$id": "1724", "kind": "constant", "name": "VectorStoreSearchResultContentObjectType", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1724", + "$id": "1725", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19992,13 +20005,13 @@ "decorators": [] }, { - "$id": "1725", + "$id": "1726", "kind": "constant", "name": "CreateCompletionResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1726", + "$id": "1727", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20008,13 +20021,13 @@ "decorators": [] }, { - "$id": "1727", + "$id": "1728", "kind": "constant", "name": "ListModelsResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1728", + "$id": "1729", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20024,13 +20037,13 @@ "decorators": [] }, { - "$id": "1729", + "$id": "1730", "kind": "constant", "name": "ModelObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1730", + "$id": "1731", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20040,13 +20053,13 @@ "decorators": [] }, { - "$id": "1731", + "$id": "1732", "kind": "constant", "name": "DeleteModelResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1732", + "$id": "1733", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20056,13 +20069,13 @@ "decorators": [] }, { - "$id": "1733", + "$id": "1734", "kind": "constant", "name": "RealtimeRequestSessionMaxResponseOutputTokens1", "namespace": "", "usage": "None", "valueType": { - "$id": "1734", + "$id": "1735", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20072,13 +20085,13 @@ "decorators": [] }, { - "$id": "1735", + "$id": "1736", "kind": "constant", "name": "RealtimeRequestSessionMaxResponseOutputTokens11", "namespace": "", "usage": "None", "valueType": { - "$id": "1736", + "$id": "1737", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20088,13 +20101,13 @@ "decorators": [] }, { - "$id": "1737", + "$id": "1738", "kind": "constant", "name": "RealtimeResponseSessionObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1738", + "$id": "1739", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20104,13 +20117,13 @@ "decorators": [] }, { - "$id": "1739", + "$id": "1740", "kind": "constant", "name": "RealtimeRequestSessionMaxResponseOutputTokens12", "namespace": "", "usage": "None", "valueType": { - "$id": "1740", + "$id": "1741", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20120,13 +20133,13 @@ "decorators": [] }, { - "$id": "1741", + "$id": "1742", "kind": "constant", "name": "RealtimeConversationResponseItemObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1742", + "$id": "1743", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20136,13 +20149,13 @@ "decorators": [] }, { - "$id": "1743", + "$id": "1744", "kind": "constant", "name": "RealtimeRequestSessionMaxResponseOutputTokens13", "namespace": "", "usage": "None", "valueType": { - "$id": "1744", + "$id": "1745", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20152,13 +20165,13 @@ "decorators": [] }, { - "$id": "1745", + "$id": "1746", "kind": "constant", "name": "FileSearchRankingOptionsRanker21", "namespace": "", "usage": "None", "valueType": { - "$id": "1746", + "$id": "1747", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20168,13 +20181,13 @@ "decorators": [] }, { - "$id": "1747", + "$id": "1748", "kind": "constant", "name": "RealtimeRequestSessionMaxResponseOutputTokens14", "namespace": "", "usage": "None", "valueType": { - "$id": "1748", + "$id": "1749", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20184,13 +20197,13 @@ "decorators": [] }, { - "$id": "1749", + "$id": "1750", "kind": "constant", "name": "FileSearchRankingOptionsRanker22", "namespace": "", "usage": "None", "valueType": { - "$id": "1750", + "$id": "1751", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20200,13 +20213,13 @@ "decorators": [] }, { - "$id": "1751", + "$id": "1752", "kind": "constant", "name": "RealtimeRequestSessionMaxResponseOutputTokens15", "namespace": "", "usage": "None", "valueType": { - "$id": "1752", + "$id": "1753", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20216,13 +20229,13 @@ "decorators": [] }, { - "$id": "1753", + "$id": "1754", "kind": "constant", "name": "UploadPartObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1754", + "$id": "1755", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20232,14 +20245,14 @@ "decorators": [] }, { - "$id": "1755", + "$id": "1756", "kind": "constant", "name": "MessageDeltaObjectObject", "namespace": "OpenAI", "access": "public", "usage": "Output", "valueType": { - "$id": "1756", + "$id": "1757", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20249,14 +20262,14 @@ "decorators": [] }, { - "$id": "1757", + "$id": "1758", "kind": "constant", "name": "RunStepDeltaObjectObject", "namespace": "OpenAI", "access": "public", "usage": "Output", "valueType": { - "$id": "1758", + "$id": "1759", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20266,14 +20279,14 @@ "decorators": [] }, { - "$id": "1759", + "$id": "1760", "kind": "constant", "name": "DotNetCombinedJsonTranscriptionResponseTask", "namespace": "OpenAI", "access": "public", "usage": "Output", "valueType": { - "$id": "1760", + "$id": "1761", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20283,13 +20296,13 @@ "decorators": [] }, { - "$id": "1761", + "$id": "1762", "kind": "constant", "name": "ListAssistantsRequestAccept", "namespace": "", "usage": "None", "valueType": { - "$id": "1762", + "$id": "1763", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20299,13 +20312,13 @@ "decorators": [] }, { - "$id": "1763", + "$id": "1764", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta", "namespace": "", "usage": "None", "valueType": { - "$id": "1764", + "$id": "1765", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20315,13 +20328,13 @@ "decorators": [] }, { - "$id": "1765", + "$id": "1766", "kind": "constant", "name": "ListAssistantsRequestAccept1", "namespace": "", "usage": "None", "valueType": { - "$id": "1766", + "$id": "1767", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20331,13 +20344,13 @@ "decorators": [] }, { - "$id": "1767", + "$id": "1768", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta1", "namespace": "", "usage": "None", "valueType": { - "$id": "1768", + "$id": "1769", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20347,13 +20360,13 @@ "decorators": [] }, { - "$id": "1769", + "$id": "1770", "kind": "constant", "name": "ListAssistantsRequestAccept2", "namespace": "", "usage": "None", "valueType": { - "$id": "1770", + "$id": "1771", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20363,13 +20376,13 @@ "decorators": [] }, { - "$id": "1771", + "$id": "1772", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta2", "namespace": "", "usage": "None", "valueType": { - "$id": "1772", + "$id": "1773", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20379,13 +20392,13 @@ "decorators": [] }, { - "$id": "1773", + "$id": "1774", "kind": "constant", "name": "createAssistantContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1774", + "$id": "1775", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20395,13 +20408,13 @@ "decorators": [] }, { - "$id": "1775", + "$id": "1776", "kind": "constant", "name": "ListAssistantsRequestAccept3", "namespace": "", "usage": "None", "valueType": { - "$id": "1776", + "$id": "1777", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20411,13 +20424,13 @@ "decorators": [] }, { - "$id": "1777", + "$id": "1778", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta3", "namespace": "", "usage": "None", "valueType": { - "$id": "1778", + "$id": "1779", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20427,13 +20440,13 @@ "decorators": [] }, { - "$id": "1779", + "$id": "1780", "kind": "constant", "name": "ListAssistantsRequestAccept4", "namespace": "", "usage": "None", "valueType": { - "$id": "1780", + "$id": "1781", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20443,13 +20456,13 @@ "decorators": [] }, { - "$id": "1781", + "$id": "1782", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta4", "namespace": "", "usage": "None", "valueType": { - "$id": "1782", + "$id": "1783", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20459,13 +20472,13 @@ "decorators": [] }, { - "$id": "1783", + "$id": "1784", "kind": "constant", "name": "ListAssistantsRequestAccept5", "namespace": "", "usage": "None", "valueType": { - "$id": "1784", + "$id": "1785", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20475,13 +20488,13 @@ "decorators": [] }, { - "$id": "1785", + "$id": "1786", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta5", "namespace": "", "usage": "None", "valueType": { - "$id": "1786", + "$id": "1787", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20491,13 +20504,13 @@ "decorators": [] }, { - "$id": "1787", + "$id": "1788", "kind": "constant", "name": "ListAssistantsRequestAccept6", "namespace": "", "usage": "None", "valueType": { - "$id": "1788", + "$id": "1789", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20507,13 +20520,13 @@ "decorators": [] }, { - "$id": "1789", + "$id": "1790", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta6", "namespace": "", "usage": "None", "valueType": { - "$id": "1790", + "$id": "1791", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20523,13 +20536,13 @@ "decorators": [] }, { - "$id": "1791", + "$id": "1792", "kind": "constant", "name": "modifyAssistantContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1792", + "$id": "1793", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20539,13 +20552,13 @@ "decorators": [] }, { - "$id": "1793", + "$id": "1794", "kind": "constant", "name": "ListAssistantsRequestAccept7", "namespace": "", "usage": "None", "valueType": { - "$id": "1794", + "$id": "1795", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20555,13 +20568,13 @@ "decorators": [] }, { - "$id": "1795", + "$id": "1796", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta7", "namespace": "", "usage": "None", "valueType": { - "$id": "1796", + "$id": "1797", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20571,13 +20584,13 @@ "decorators": [] }, { - "$id": "1797", + "$id": "1798", "kind": "constant", "name": "ListAssistantsRequestAccept8", "namespace": "", "usage": "None", "valueType": { - "$id": "1798", + "$id": "1799", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20587,13 +20600,13 @@ "decorators": [] }, { - "$id": "1799", + "$id": "1800", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta8", "namespace": "", "usage": "None", "valueType": { - "$id": "1800", + "$id": "1801", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20603,13 +20616,13 @@ "decorators": [] }, { - "$id": "1801", + "$id": "1802", "kind": "constant", "name": "ListAssistantsRequestAccept9", "namespace": "", "usage": "None", "valueType": { - "$id": "1802", + "$id": "1803", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20619,13 +20632,13 @@ "decorators": [] }, { - "$id": "1803", + "$id": "1804", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta9", "namespace": "", "usage": "None", "valueType": { - "$id": "1804", + "$id": "1805", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20635,13 +20648,13 @@ "decorators": [] }, { - "$id": "1805", + "$id": "1806", "kind": "constant", "name": "CreateSpeechRequestAccept", "namespace": "", "usage": "None", "valueType": { - "$id": "1806", + "$id": "1807", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20651,13 +20664,13 @@ "decorators": [] }, { - "$id": "1807", + "$id": "1808", "kind": "constant", "name": "createSpeechContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1808", + "$id": "1809", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20667,13 +20680,13 @@ "decorators": [] }, { - "$id": "1809", + "$id": "1810", "kind": "constant", "name": "CreateSpeechRequestAccept1", "namespace": "", "usage": "None", "valueType": { - "$id": "1810", + "$id": "1811", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20683,13 +20696,13 @@ "decorators": [] }, { - "$id": "1811", + "$id": "1812", "kind": "constant", "name": "CreateSpeechRequestAccept2", "namespace": "", "usage": "None", "valueType": { - "$id": "1812", + "$id": "1813", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20699,13 +20712,13 @@ "decorators": [] }, { - "$id": "1813", + "$id": "1814", "kind": "constant", "name": "CreateTranscriptionRequestContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1814", + "$id": "1815", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20715,13 +20728,13 @@ "decorators": [] }, { - "$id": "1815", + "$id": "1816", "kind": "constant", "name": "CreateTranscriptionRequestAccept1", "namespace": "", "usage": "None", "valueType": { - "$id": "1816", + "$id": "1817", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20731,13 +20744,13 @@ "decorators": [] }, { - "$id": "1817", + "$id": "1818", "kind": "constant", "name": "CreateTranscriptionRequestContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "1818", + "$id": "1819", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20747,13 +20760,13 @@ "decorators": [] }, { - "$id": "1819", + "$id": "1820", "kind": "constant", "name": "ListAssistantsRequestAccept10", "namespace": "", "usage": "None", "valueType": { - "$id": "1820", + "$id": "1821", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20763,13 +20776,13 @@ "decorators": [] }, { - "$id": "1821", + "$id": "1822", "kind": "constant", "name": "CreateTranscriptionRequestContentType2", "namespace": "", "usage": "None", "valueType": { - "$id": "1822", + "$id": "1823", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20779,13 +20792,13 @@ "decorators": [] }, { - "$id": "1823", + "$id": "1824", "kind": "constant", "name": "CreateTranslationResponseContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1824", + "$id": "1825", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20795,13 +20808,13 @@ "decorators": [] }, { - "$id": "1825", + "$id": "1826", "kind": "constant", "name": "ListAssistantsRequestAccept11", "namespace": "", "usage": "None", "valueType": { - "$id": "1826", + "$id": "1827", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20811,13 +20824,13 @@ "decorators": [] }, { - "$id": "1827", + "$id": "1828", "kind": "constant", "name": "CreateTranscriptionRequestContentType3", "namespace": "", "usage": "None", "valueType": { - "$id": "1828", + "$id": "1829", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20827,13 +20840,13 @@ "decorators": [] }, { - "$id": "1829", + "$id": "1830", "kind": "constant", "name": "ListAssistantsRequestAccept12", "namespace": "", "usage": "None", "valueType": { - "$id": "1830", + "$id": "1831", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20843,13 +20856,13 @@ "decorators": [] }, { - "$id": "1831", + "$id": "1832", "kind": "constant", "name": "createBatchContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1832", + "$id": "1833", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20859,13 +20872,13 @@ "decorators": [] }, { - "$id": "1833", + "$id": "1834", "kind": "constant", "name": "ListAssistantsRequestAccept13", "namespace": "", "usage": "None", "valueType": { - "$id": "1834", + "$id": "1835", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20875,13 +20888,13 @@ "decorators": [] }, { - "$id": "1835", + "$id": "1836", "kind": "constant", "name": "CreateBatchRequestCompletionWindow", "namespace": "", "usage": "None", "valueType": { - "$id": "1836", + "$id": "1837", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20891,13 +20904,13 @@ "decorators": [] }, { - "$id": "1837", + "$id": "1838", "kind": "constant", "name": "ListAssistantsRequestAccept14", "namespace": "", "usage": "None", "valueType": { - "$id": "1838", + "$id": "1839", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20907,13 +20920,13 @@ "decorators": [] }, { - "$id": "1839", + "$id": "1840", "kind": "constant", "name": "ListAssistantsRequestAccept15", "namespace": "", "usage": "None", "valueType": { - "$id": "1840", + "$id": "1841", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20923,13 +20936,13 @@ "decorators": [] }, { - "$id": "1841", + "$id": "1842", "kind": "constant", "name": "ListAssistantsRequestAccept16", "namespace": "", "usage": "None", "valueType": { - "$id": "1842", + "$id": "1843", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20939,13 +20952,13 @@ "decorators": [] }, { - "$id": "1843", + "$id": "1844", "kind": "constant", "name": "ListAssistantsRequestAccept17", "namespace": "", "usage": "None", "valueType": { - "$id": "1844", + "$id": "1845", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20955,13 +20968,13 @@ "decorators": [] }, { - "$id": "1845", + "$id": "1846", "kind": "constant", "name": "ListAssistantsRequestAccept18", "namespace": "", "usage": "None", "valueType": { - "$id": "1846", + "$id": "1847", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20971,13 +20984,13 @@ "decorators": [] }, { - "$id": "1847", + "$id": "1848", "kind": "constant", "name": "ListAssistantsRequestAccept19", "namespace": "", "usage": "None", "valueType": { - "$id": "1848", + "$id": "1849", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20987,13 +21000,13 @@ "decorators": [] }, { - "$id": "1849", + "$id": "1850", "kind": "constant", "name": "listChatCompletionsContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1850", + "$id": "1851", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21003,13 +21016,13 @@ "decorators": [] }, { - "$id": "1851", + "$id": "1852", "kind": "constant", "name": "ListAssistantsRequestAccept20", "namespace": "", "usage": "None", "valueType": { - "$id": "1852", + "$id": "1853", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21019,13 +21032,13 @@ "decorators": [] }, { - "$id": "1853", + "$id": "1854", "kind": "constant", "name": "createChatCompletionContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1854", + "$id": "1855", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21035,13 +21048,13 @@ "decorators": [] }, { - "$id": "1855", + "$id": "1856", "kind": "constant", "name": "CreateTranscriptionRequestAccept11", "namespace": "", "usage": "None", "valueType": { - "$id": "1856", + "$id": "1857", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21051,13 +21064,13 @@ "decorators": [] }, { - "$id": "1857", + "$id": "1858", "kind": "constant", "name": "ListAssistantsRequestAccept21", "namespace": "", "usage": "None", "valueType": { - "$id": "1858", + "$id": "1859", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21067,13 +21080,13 @@ "decorators": [] }, { - "$id": "1859", + "$id": "1860", "kind": "constant", "name": "getChatCompletionContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1860", + "$id": "1861", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21083,13 +21096,13 @@ "decorators": [] }, { - "$id": "1861", + "$id": "1862", "kind": "constant", "name": "updateChatCompletionContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1862", + "$id": "1863", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21099,13 +21112,13 @@ "decorators": [] }, { - "$id": "1863", + "$id": "1864", "kind": "constant", "name": "updateChatCompletionContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "1864", + "$id": "1865", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21115,13 +21128,13 @@ "decorators": [] }, { - "$id": "1865", + "$id": "1866", "kind": "constant", "name": "deleteChatCompletionContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1866", + "$id": "1867", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21131,13 +21144,13 @@ "decorators": [] }, { - "$id": "1867", + "$id": "1868", "kind": "constant", "name": "getChatCompletionMessagesContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1868", + "$id": "1869", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21147,13 +21160,13 @@ "decorators": [] }, { - "$id": "1869", + "$id": "1870", "kind": "constant", "name": "listContainersContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1870", + "$id": "1871", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21163,13 +21176,13 @@ "decorators": [] }, { - "$id": "1871", + "$id": "1872", "kind": "constant", "name": "createContainerContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1872", + "$id": "1873", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21179,13 +21192,13 @@ "decorators": [] }, { - "$id": "1873", + "$id": "1874", "kind": "constant", "name": "createContainerContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "1874", + "$id": "1875", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21195,13 +21208,13 @@ "decorators": [] }, { - "$id": "1875", + "$id": "1876", "kind": "constant", "name": "retrieveContainerContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1876", + "$id": "1877", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21211,13 +21224,13 @@ "decorators": [] }, { - "$id": "1877", + "$id": "1878", "kind": "constant", "name": "deleteContainerContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1878", + "$id": "1879", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21227,13 +21240,13 @@ "decorators": [] }, { - "$id": "1879", + "$id": "1880", "kind": "constant", "name": "CreateTranscriptionRequestContentType4", "namespace": "", "usage": "None", "valueType": { - "$id": "1880", + "$id": "1881", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21243,13 +21256,13 @@ "decorators": [] }, { - "$id": "1881", + "$id": "1882", "kind": "constant", "name": "createContainerFileContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1882", + "$id": "1883", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21259,13 +21272,13 @@ "decorators": [] }, { - "$id": "1883", + "$id": "1884", "kind": "constant", "name": "CreateTranscriptionRequestContentType5", "namespace": "", "usage": "None", "valueType": { - "$id": "1884", + "$id": "1885", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21275,13 +21288,13 @@ "decorators": [] }, { - "$id": "1885", + "$id": "1886", "kind": "constant", "name": "listContainerFilesContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1886", + "$id": "1887", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21291,13 +21304,13 @@ "decorators": [] }, { - "$id": "1887", + "$id": "1888", "kind": "constant", "name": "retrieveContainerFileContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1888", + "$id": "1889", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21307,13 +21320,13 @@ "decorators": [] }, { - "$id": "1889", + "$id": "1890", "kind": "constant", "name": "deleteContainerFileContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1890", + "$id": "1891", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21323,13 +21336,13 @@ "decorators": [] }, { - "$id": "1891", + "$id": "1892", "kind": "constant", "name": "retrieveContainerFileContentContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1892", + "$id": "1893", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21339,13 +21352,13 @@ "decorators": [] }, { - "$id": "1893", + "$id": "1894", "kind": "constant", "name": "ListAssistantsRequestAccept22", "namespace": "", "usage": "None", "valueType": { - "$id": "1894", + "$id": "1895", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21355,13 +21368,13 @@ "decorators": [] }, { - "$id": "1895", + "$id": "1896", "kind": "constant", "name": "createEmbeddingContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1896", + "$id": "1897", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21371,13 +21384,13 @@ "decorators": [] }, { - "$id": "1897", + "$id": "1898", "kind": "constant", "name": "ListAssistantsRequestAccept23", "namespace": "", "usage": "None", "valueType": { - "$id": "1898", + "$id": "1899", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21387,13 +21400,13 @@ "decorators": [] }, { - "$id": "1899", + "$id": "1900", "kind": "constant", "name": "ListAssistantsRequestAccept24", "namespace": "", "usage": "None", "valueType": { - "$id": "1900", + "$id": "1901", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21403,13 +21416,13 @@ "decorators": [] }, { - "$id": "1901", + "$id": "1902", "kind": "constant", "name": "ListAssistantsRequestAccept25", "namespace": "", "usage": "None", "valueType": { - "$id": "1902", + "$id": "1903", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21419,13 +21432,13 @@ "decorators": [] }, { - "$id": "1903", + "$id": "1904", "kind": "constant", "name": "ListAssistantsRequestAccept26", "namespace": "", "usage": "None", "valueType": { - "$id": "1904", + "$id": "1905", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21435,13 +21448,13 @@ "decorators": [] }, { - "$id": "1905", + "$id": "1906", "kind": "constant", "name": "CreateTranscriptionRequestContentType6", "namespace": "", "usage": "None", "valueType": { - "$id": "1906", + "$id": "1907", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21451,13 +21464,13 @@ "decorators": [] }, { - "$id": "1907", + "$id": "1908", "kind": "constant", "name": "ListAssistantsRequestAccept27", "namespace": "", "usage": "None", "valueType": { - "$id": "1908", + "$id": "1909", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21467,13 +21480,13 @@ "decorators": [] }, { - "$id": "1909", + "$id": "1910", "kind": "constant", "name": "CreateTranscriptionRequestContentType7", "namespace": "", "usage": "None", "valueType": { - "$id": "1910", + "$id": "1911", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21483,13 +21496,13 @@ "decorators": [] }, { - "$id": "1911", + "$id": "1912", "kind": "constant", "name": "ListAssistantsRequestAccept28", "namespace": "", "usage": "None", "valueType": { - "$id": "1912", + "$id": "1913", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21499,13 +21512,13 @@ "decorators": [] }, { - "$id": "1913", + "$id": "1914", "kind": "constant", "name": "ListAssistantsRequestAccept29", "namespace": "", "usage": "None", "valueType": { - "$id": "1914", + "$id": "1915", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21515,13 +21528,13 @@ "decorators": [] }, { - "$id": "1915", + "$id": "1916", "kind": "constant", "name": "ListAssistantsRequestAccept30", "namespace": "", "usage": "None", "valueType": { - "$id": "1916", + "$id": "1917", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21531,13 +21544,13 @@ "decorators": [] }, { - "$id": "1917", + "$id": "1918", "kind": "constant", "name": "ListAssistantsRequestAccept31", "namespace": "", "usage": "None", "valueType": { - "$id": "1918", + "$id": "1919", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21547,13 +21560,13 @@ "decorators": [] }, { - "$id": "1919", + "$id": "1920", "kind": "constant", "name": "ListAssistantsRequestAccept32", "namespace": "", "usage": "None", "valueType": { - "$id": "1920", + "$id": "1921", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21563,13 +21576,13 @@ "decorators": [] }, { - "$id": "1921", + "$id": "1922", "kind": "constant", "name": "ListAssistantsRequestAccept33", "namespace": "", "usage": "None", "valueType": { - "$id": "1922", + "$id": "1923", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21579,13 +21592,13 @@ "decorators": [] }, { - "$id": "1923", + "$id": "1924", "kind": "constant", "name": "listFineTuningCheckpointPermissionsContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1924", + "$id": "1925", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21595,13 +21608,13 @@ "decorators": [] }, { - "$id": "1925", + "$id": "1926", "kind": "constant", "name": "createFineTuningCheckpointPermissionContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1926", + "$id": "1927", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21611,13 +21624,13 @@ "decorators": [] }, { - "$id": "1927", + "$id": "1928", "kind": "constant", "name": "createFineTuningCheckpointPermissionContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "1928", + "$id": "1929", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21627,13 +21640,13 @@ "decorators": [] }, { - "$id": "1929", + "$id": "1930", "kind": "constant", "name": "deleteFineTuningCheckpointPermissionContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1930", + "$id": "1931", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21643,13 +21656,13 @@ "decorators": [] }, { - "$id": "1931", + "$id": "1932", "kind": "constant", "name": "ListAssistantsRequestAccept34", "namespace": "", "usage": "None", "valueType": { - "$id": "1932", + "$id": "1933", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21659,13 +21672,13 @@ "decorators": [] }, { - "$id": "1933", + "$id": "1934", "kind": "constant", "name": "createFineTuningJobContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1934", + "$id": "1935", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21675,13 +21688,13 @@ "decorators": [] }, { - "$id": "1935", + "$id": "1936", "kind": "constant", "name": "ListAssistantsRequestAccept35", "namespace": "", "usage": "None", "valueType": { - "$id": "1936", + "$id": "1937", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21691,13 +21704,13 @@ "decorators": [] }, { - "$id": "1937", + "$id": "1938", "kind": "constant", "name": "ListAssistantsRequestAccept36", "namespace": "", "usage": "None", "valueType": { - "$id": "1938", + "$id": "1939", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21707,13 +21720,13 @@ "decorators": [] }, { - "$id": "1939", + "$id": "1940", "kind": "constant", "name": "ListAssistantsRequestAccept37", "namespace": "", "usage": "None", "valueType": { - "$id": "1940", + "$id": "1941", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21723,13 +21736,13 @@ "decorators": [] }, { - "$id": "1941", + "$id": "1942", "kind": "constant", "name": "ListAssistantsRequestAccept38", "namespace": "", "usage": "None", "valueType": { - "$id": "1942", + "$id": "1943", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21739,13 +21752,13 @@ "decorators": [] }, { - "$id": "1943", + "$id": "1944", "kind": "constant", "name": "ListAssistantsRequestAccept39", "namespace": "", "usage": "None", "valueType": { - "$id": "1944", + "$id": "1945", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21755,13 +21768,13 @@ "decorators": [] }, { - "$id": "1945", + "$id": "1946", "kind": "constant", "name": "ListAssistantsRequestAccept40", "namespace": "", "usage": "None", "valueType": { - "$id": "1946", + "$id": "1947", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21771,13 +21784,13 @@ "decorators": [] }, { - "$id": "1947", + "$id": "1948", "kind": "constant", "name": "ListAssistantsRequestAccept41", "namespace": "", "usage": "None", "valueType": { - "$id": "1948", + "$id": "1949", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21787,13 +21800,13 @@ "decorators": [] }, { - "$id": "1949", + "$id": "1950", "kind": "constant", "name": "ListAssistantsRequestAccept42", "namespace": "", "usage": "None", "valueType": { - "$id": "1950", + "$id": "1951", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21803,13 +21816,13 @@ "decorators": [] }, { - "$id": "1951", + "$id": "1952", "kind": "constant", "name": "ListAssistantsRequestAccept43", "namespace": "", "usage": "None", "valueType": { - "$id": "1952", + "$id": "1953", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21819,13 +21832,13 @@ "decorators": [] }, { - "$id": "1953", + "$id": "1954", "kind": "constant", "name": "ListAssistantsRequestAccept44", "namespace": "", "usage": "None", "valueType": { - "$id": "1954", + "$id": "1955", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21835,13 +21848,13 @@ "decorators": [] }, { - "$id": "1955", + "$id": "1956", "kind": "constant", "name": "ListAssistantsRequestAccept45", "namespace": "", "usage": "None", "valueType": { - "$id": "1956", + "$id": "1957", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21851,13 +21864,13 @@ "decorators": [] }, { - "$id": "1957", + "$id": "1958", "kind": "constant", "name": "pauseFineTuningJobContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1958", + "$id": "1959", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21867,13 +21880,13 @@ "decorators": [] }, { - "$id": "1959", + "$id": "1960", "kind": "constant", "name": "resumeFineTuningJobContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1960", + "$id": "1961", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21883,13 +21896,13 @@ "decorators": [] }, { - "$id": "1961", + "$id": "1962", "kind": "constant", "name": "runGraderContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1962", + "$id": "1963", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21899,13 +21912,13 @@ "decorators": [] }, { - "$id": "1963", + "$id": "1964", "kind": "constant", "name": "runGraderContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "1964", + "$id": "1965", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21915,13 +21928,13 @@ "decorators": [] }, { - "$id": "1965", + "$id": "1966", "kind": "constant", "name": "validateGraderContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1966", + "$id": "1967", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21931,13 +21944,13 @@ "decorators": [] }, { - "$id": "1967", + "$id": "1968", "kind": "constant", "name": "validateGraderContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "1968", + "$id": "1969", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21947,13 +21960,13 @@ "decorators": [] }, { - "$id": "1969", + "$id": "1970", "kind": "constant", "name": "listEvalsContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1970", + "$id": "1971", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21963,13 +21976,13 @@ "decorators": [] }, { - "$id": "1971", + "$id": "1972", "kind": "constant", "name": "createEvalContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1972", + "$id": "1973", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21979,13 +21992,13 @@ "decorators": [] }, { - "$id": "1973", + "$id": "1974", "kind": "constant", "name": "createEvalContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "1974", + "$id": "1975", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21995,13 +22008,13 @@ "decorators": [] }, { - "$id": "1975", + "$id": "1976", "kind": "constant", "name": "getEvalContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1976", + "$id": "1977", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22011,13 +22024,13 @@ "decorators": [] }, { - "$id": "1977", + "$id": "1978", "kind": "constant", "name": "updateEvalContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1978", + "$id": "1979", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22027,13 +22040,13 @@ "decorators": [] }, { - "$id": "1979", + "$id": "1980", "kind": "constant", "name": "updateEvalContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "1980", + "$id": "1981", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22043,13 +22056,13 @@ "decorators": [] }, { - "$id": "1981", + "$id": "1982", "kind": "constant", "name": "deleteEvalContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1982", + "$id": "1983", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22059,13 +22072,13 @@ "decorators": [] }, { - "$id": "1983", + "$id": "1984", "kind": "constant", "name": "getEvalRunsContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1984", + "$id": "1985", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22075,13 +22088,13 @@ "decorators": [] }, { - "$id": "1985", + "$id": "1986", "kind": "constant", "name": "createEvalRunContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1986", + "$id": "1987", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22091,13 +22104,13 @@ "decorators": [] }, { - "$id": "1987", + "$id": "1988", "kind": "constant", "name": "createEvalRunContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "1988", + "$id": "1989", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22107,13 +22120,13 @@ "decorators": [] }, { - "$id": "1989", + "$id": "1990", "kind": "constant", "name": "getEvalRunContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1990", + "$id": "1991", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22123,13 +22136,13 @@ "decorators": [] }, { - "$id": "1991", + "$id": "1992", "kind": "constant", "name": "cancelEvalRunContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1992", + "$id": "1993", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22139,13 +22152,13 @@ "decorators": [] }, { - "$id": "1993", + "$id": "1994", "kind": "constant", "name": "deleteEvalRunContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1994", + "$id": "1995", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22155,13 +22168,13 @@ "decorators": [] }, { - "$id": "1995", + "$id": "1996", "kind": "constant", "name": "getEvalRunOutputItemsContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1996", + "$id": "1997", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22171,13 +22184,13 @@ "decorators": [] }, { - "$id": "1997", + "$id": "1998", "kind": "constant", "name": "getEvalRunOutputItemContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1998", + "$id": "1999", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22187,13 +22200,13 @@ "decorators": [] }, { - "$id": "1999", + "$id": "2000", "kind": "constant", "name": "createResponseContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2000", + "$id": "2001", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22203,13 +22216,13 @@ "decorators": [] }, { - "$id": "2001", + "$id": "2002", "kind": "constant", "name": "CreateTranscriptionRequestAccept12", "namespace": "", "usage": "None", "valueType": { - "$id": "2002", + "$id": "2003", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22219,13 +22232,13 @@ "decorators": [] }, { - "$id": "2003", + "$id": "2004", "kind": "constant", "name": "CreateTranscriptionRequestAccept13", "namespace": "", "usage": "None", "valueType": { - "$id": "2004", + "$id": "2005", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22235,13 +22248,13 @@ "decorators": [] }, { - "$id": "2005", + "$id": "2006", "kind": "constant", "name": "deleteResponseContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2006", + "$id": "2007", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22251,13 +22264,13 @@ "decorators": [] }, { - "$id": "2007", + "$id": "2008", "kind": "constant", "name": "cancelResponseContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2008", + "$id": "2009", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22267,13 +22280,13 @@ "decorators": [] }, { - "$id": "2009", + "$id": "2010", "kind": "constant", "name": "listInputItemsContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2010", + "$id": "2011", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22283,13 +22296,13 @@ "decorators": [] }, { - "$id": "2011", + "$id": "2012", "kind": "constant", "name": "ListAssistantsRequestAccept46", "namespace": "", "usage": "None", "valueType": { - "$id": "2012", + "$id": "2013", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22299,13 +22312,13 @@ "decorators": [] }, { - "$id": "2013", + "$id": "2014", "kind": "constant", "name": "createImageContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2014", + "$id": "2015", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22315,13 +22328,13 @@ "decorators": [] }, { - "$id": "2015", + "$id": "2016", "kind": "constant", "name": "ListAssistantsRequestAccept47", "namespace": "", "usage": "None", "valueType": { - "$id": "2016", + "$id": "2017", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22331,13 +22344,13 @@ "decorators": [] }, { - "$id": "2017", + "$id": "2018", "kind": "constant", "name": "ListAssistantsRequestAccept48", "namespace": "", "usage": "None", "valueType": { - "$id": "2018", + "$id": "2019", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22347,13 +22360,13 @@ "decorators": [] }, { - "$id": "2019", + "$id": "2020", "kind": "constant", "name": "CreateTranscriptionRequestContentType8", "namespace": "", "usage": "None", "valueType": { - "$id": "2020", + "$id": "2021", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22363,13 +22376,13 @@ "decorators": [] }, { - "$id": "2021", + "$id": "2022", "kind": "constant", "name": "ListAssistantsRequestAccept49", "namespace": "", "usage": "None", "valueType": { - "$id": "2022", + "$id": "2023", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22379,13 +22392,13 @@ "decorators": [] }, { - "$id": "2023", + "$id": "2024", "kind": "constant", "name": "CreateTranscriptionRequestContentType9", "namespace": "", "usage": "None", "valueType": { - "$id": "2024", + "$id": "2025", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22395,13 +22408,13 @@ "decorators": [] }, { - "$id": "2025", + "$id": "2026", "kind": "constant", "name": "ListAssistantsRequestAccept50", "namespace": "", "usage": "None", "valueType": { - "$id": "2026", + "$id": "2027", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22411,13 +22424,13 @@ "decorators": [] }, { - "$id": "2027", + "$id": "2028", "kind": "constant", "name": "CreateTranscriptionRequestContentType10", "namespace": "", "usage": "None", "valueType": { - "$id": "2028", + "$id": "2029", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22427,13 +22440,13 @@ "decorators": [] }, { - "$id": "2029", + "$id": "2030", "kind": "constant", "name": "ListAssistantsRequestAccept51", "namespace": "", "usage": "None", "valueType": { - "$id": "2030", + "$id": "2031", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22443,13 +22456,13 @@ "decorators": [] }, { - "$id": "2031", + "$id": "2032", "kind": "constant", "name": "CreateTranscriptionRequestContentType11", "namespace": "", "usage": "None", "valueType": { - "$id": "2032", + "$id": "2033", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22459,13 +22472,13 @@ "decorators": [] }, { - "$id": "2033", + "$id": "2034", "kind": "constant", "name": "ListAssistantsRequestAccept52", "namespace": "", "usage": "None", "valueType": { - "$id": "2034", + "$id": "2035", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22475,13 +22488,13 @@ "decorators": [] }, { - "$id": "2035", + "$id": "2036", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta10", "namespace": "", "usage": "None", "valueType": { - "$id": "2036", + "$id": "2037", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22491,13 +22504,13 @@ "decorators": [] }, { - "$id": "2037", + "$id": "2038", "kind": "constant", "name": "createMessageContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2038", + "$id": "2039", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22507,13 +22520,13 @@ "decorators": [] }, { - "$id": "2039", + "$id": "2040", "kind": "constant", "name": "ListAssistantsRequestAccept53", "namespace": "", "usage": "None", "valueType": { - "$id": "2040", + "$id": "2041", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22523,13 +22536,13 @@ "decorators": [] }, { - "$id": "2041", + "$id": "2042", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta11", "namespace": "", "usage": "None", "valueType": { - "$id": "2042", + "$id": "2043", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22539,13 +22552,13 @@ "decorators": [] }, { - "$id": "2043", + "$id": "2044", "kind": "constant", "name": "ListAssistantsRequestAccept54", "namespace": "", "usage": "None", "valueType": { - "$id": "2044", + "$id": "2045", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22555,13 +22568,13 @@ "decorators": [] }, { - "$id": "2045", + "$id": "2046", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta12", "namespace": "", "usage": "None", "valueType": { - "$id": "2046", + "$id": "2047", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22571,13 +22584,13 @@ "decorators": [] }, { - "$id": "2047", + "$id": "2048", "kind": "constant", "name": "ListAssistantsRequestAccept55", "namespace": "", "usage": "None", "valueType": { - "$id": "2048", + "$id": "2049", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22587,13 +22600,13 @@ "decorators": [] }, { - "$id": "2049", + "$id": "2050", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta13", "namespace": "", "usage": "None", "valueType": { - "$id": "2050", + "$id": "2051", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22603,13 +22616,13 @@ "decorators": [] }, { - "$id": "2051", + "$id": "2052", "kind": "constant", "name": "ListAssistantsRequestAccept56", "namespace": "", "usage": "None", "valueType": { - "$id": "2052", + "$id": "2053", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22619,13 +22632,13 @@ "decorators": [] }, { - "$id": "2053", + "$id": "2054", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta14", "namespace": "", "usage": "None", "valueType": { - "$id": "2054", + "$id": "2055", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22635,13 +22648,13 @@ "decorators": [] }, { - "$id": "2055", + "$id": "2056", "kind": "constant", "name": "ListAssistantsRequestAccept57", "namespace": "", "usage": "None", "valueType": { - "$id": "2056", + "$id": "2057", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22651,13 +22664,13 @@ "decorators": [] }, { - "$id": "2057", + "$id": "2058", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta15", "namespace": "", "usage": "None", "valueType": { - "$id": "2058", + "$id": "2059", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22667,13 +22680,13 @@ "decorators": [] }, { - "$id": "2059", + "$id": "2060", "kind": "constant", "name": "ListAssistantsRequestAccept58", "namespace": "", "usage": "None", "valueType": { - "$id": "2060", + "$id": "2061", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22683,13 +22696,13 @@ "decorators": [] }, { - "$id": "2061", + "$id": "2062", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta16", "namespace": "", "usage": "None", "valueType": { - "$id": "2062", + "$id": "2063", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22699,13 +22712,13 @@ "decorators": [] }, { - "$id": "2063", + "$id": "2064", "kind": "constant", "name": "modifyMessageContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2064", + "$id": "2065", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22715,13 +22728,13 @@ "decorators": [] }, { - "$id": "2065", + "$id": "2066", "kind": "constant", "name": "ListAssistantsRequestAccept59", "namespace": "", "usage": "None", "valueType": { - "$id": "2066", + "$id": "2067", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22731,13 +22744,13 @@ "decorators": [] }, { - "$id": "2067", + "$id": "2068", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta17", "namespace": "", "usage": "None", "valueType": { - "$id": "2068", + "$id": "2069", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22747,13 +22760,13 @@ "decorators": [] }, { - "$id": "2069", + "$id": "2070", "kind": "constant", "name": "ListAssistantsRequestAccept60", "namespace": "", "usage": "None", "valueType": { - "$id": "2070", + "$id": "2071", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22763,13 +22776,13 @@ "decorators": [] }, { - "$id": "2071", + "$id": "2072", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta18", "namespace": "", "usage": "None", "valueType": { - "$id": "2072", + "$id": "2073", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22779,13 +22792,13 @@ "decorators": [] }, { - "$id": "2073", + "$id": "2074", "kind": "constant", "name": "ListAssistantsRequestAccept61", "namespace": "", "usage": "None", "valueType": { - "$id": "2074", + "$id": "2075", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22795,13 +22808,13 @@ "decorators": [] }, { - "$id": "2075", + "$id": "2076", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta19", "namespace": "", "usage": "None", "valueType": { - "$id": "2076", + "$id": "2077", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22811,13 +22824,13 @@ "decorators": [] }, { - "$id": "2077", + "$id": "2078", "kind": "constant", "name": "ListAssistantsRequestAccept62", "namespace": "", "usage": "None", "valueType": { - "$id": "2078", + "$id": "2079", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22827,13 +22840,13 @@ "decorators": [] }, { - "$id": "2079", + "$id": "2080", "kind": "constant", "name": "createModerationContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2080", + "$id": "2081", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22843,13 +22856,13 @@ "decorators": [] }, { - "$id": "2081", + "$id": "2082", "kind": "constant", "name": "ListAssistantsRequestAccept63", "namespace": "", "usage": "None", "valueType": { - "$id": "2082", + "$id": "2083", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22859,13 +22872,13 @@ "decorators": [] }, { - "$id": "2083", + "$id": "2084", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta20", "namespace": "", "usage": "None", "valueType": { - "$id": "2084", + "$id": "2085", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22875,13 +22888,13 @@ "decorators": [] }, { - "$id": "2085", + "$id": "2086", "kind": "constant", "name": "createThreadAndRunContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2086", + "$id": "2087", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22891,13 +22904,13 @@ "decorators": [] }, { - "$id": "2087", + "$id": "2088", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta21", "namespace": "", "usage": "None", "valueType": { - "$id": "2088", + "$id": "2089", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22907,13 +22920,13 @@ "decorators": [] }, { - "$id": "2089", + "$id": "2090", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta22", "namespace": "", "usage": "None", "valueType": { - "$id": "2090", + "$id": "2091", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22923,13 +22936,13 @@ "decorators": [] }, { - "$id": "2091", + "$id": "2092", "kind": "constant", "name": "createRunContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2092", + "$id": "2093", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22939,13 +22952,13 @@ "decorators": [] }, { - "$id": "2093", + "$id": "2094", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta23", "namespace": "", "usage": "None", "valueType": { - "$id": "2094", + "$id": "2095", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22955,13 +22968,13 @@ "decorators": [] }, { - "$id": "2095", + "$id": "2096", "kind": "constant", "name": "ListAssistantsRequestAccept64", "namespace": "", "usage": "None", "valueType": { - "$id": "2096", + "$id": "2097", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22971,13 +22984,13 @@ "decorators": [] }, { - "$id": "2097", + "$id": "2098", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta24", "namespace": "", "usage": "None", "valueType": { - "$id": "2098", + "$id": "2099", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22987,13 +23000,13 @@ "decorators": [] }, { - "$id": "2099", + "$id": "2100", "kind": "constant", "name": "ListAssistantsRequestAccept65", "namespace": "", "usage": "None", "valueType": { - "$id": "2100", + "$id": "2101", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23003,13 +23016,13 @@ "decorators": [] }, { - "$id": "2101", + "$id": "2102", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta25", "namespace": "", "usage": "None", "valueType": { - "$id": "2102", + "$id": "2103", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23019,13 +23032,13 @@ "decorators": [] }, { - "$id": "2103", + "$id": "2104", "kind": "constant", "name": "ListAssistantsRequestAccept66", "namespace": "", "usage": "None", "valueType": { - "$id": "2104", + "$id": "2105", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23035,13 +23048,13 @@ "decorators": [] }, { - "$id": "2105", + "$id": "2106", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta26", "namespace": "", "usage": "None", "valueType": { - "$id": "2106", + "$id": "2107", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23051,13 +23064,13 @@ "decorators": [] }, { - "$id": "2107", + "$id": "2108", "kind": "constant", "name": "ListAssistantsRequestAccept67", "namespace": "", "usage": "None", "valueType": { - "$id": "2108", + "$id": "2109", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23067,13 +23080,13 @@ "decorators": [] }, { - "$id": "2109", + "$id": "2110", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta27", "namespace": "", "usage": "None", "valueType": { - "$id": "2110", + "$id": "2111", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23083,13 +23096,13 @@ "decorators": [] }, { - "$id": "2111", + "$id": "2112", "kind": "constant", "name": "ListAssistantsRequestAccept68", "namespace": "", "usage": "None", "valueType": { - "$id": "2112", + "$id": "2113", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23099,13 +23112,13 @@ "decorators": [] }, { - "$id": "2113", + "$id": "2114", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta28", "namespace": "", "usage": "None", "valueType": { - "$id": "2114", + "$id": "2115", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23115,13 +23128,13 @@ "decorators": [] }, { - "$id": "2115", + "$id": "2116", "kind": "constant", "name": "modifyRunContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2116", + "$id": "2117", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23131,13 +23144,13 @@ "decorators": [] }, { - "$id": "2117", + "$id": "2118", "kind": "constant", "name": "ListAssistantsRequestAccept69", "namespace": "", "usage": "None", "valueType": { - "$id": "2118", + "$id": "2119", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23147,13 +23160,13 @@ "decorators": [] }, { - "$id": "2119", + "$id": "2120", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta29", "namespace": "", "usage": "None", "valueType": { - "$id": "2120", + "$id": "2121", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23163,13 +23176,13 @@ "decorators": [] }, { - "$id": "2121", + "$id": "2122", "kind": "constant", "name": "ListAssistantsRequestAccept70", "namespace": "", "usage": "None", "valueType": { - "$id": "2122", + "$id": "2123", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23179,13 +23192,13 @@ "decorators": [] }, { - "$id": "2123", + "$id": "2124", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta30", "namespace": "", "usage": "None", "valueType": { - "$id": "2124", + "$id": "2125", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23195,13 +23208,13 @@ "decorators": [] }, { - "$id": "2125", + "$id": "2126", "kind": "constant", "name": "ListAssistantsRequestAccept71", "namespace": "", "usage": "None", "valueType": { - "$id": "2126", + "$id": "2127", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23211,13 +23224,13 @@ "decorators": [] }, { - "$id": "2127", + "$id": "2128", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta31", "namespace": "", "usage": "None", "valueType": { - "$id": "2128", + "$id": "2129", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23227,13 +23240,13 @@ "decorators": [] }, { - "$id": "2129", + "$id": "2130", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta32", "namespace": "", "usage": "None", "valueType": { - "$id": "2130", + "$id": "2131", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23243,13 +23256,13 @@ "decorators": [] }, { - "$id": "2131", + "$id": "2132", "kind": "constant", "name": "submitToolOutputsToRunContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2132", + "$id": "2133", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23259,13 +23272,13 @@ "decorators": [] }, { - "$id": "2133", + "$id": "2134", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta33", "namespace": "", "usage": "None", "valueType": { - "$id": "2134", + "$id": "2135", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23275,13 +23288,13 @@ "decorators": [] }, { - "$id": "2135", + "$id": "2136", "kind": "constant", "name": "ListAssistantsRequestAccept72", "namespace": "", "usage": "None", "valueType": { - "$id": "2136", + "$id": "2137", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23291,13 +23304,13 @@ "decorators": [] }, { - "$id": "2137", + "$id": "2138", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta34", "namespace": "", "usage": "None", "valueType": { - "$id": "2138", + "$id": "2139", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23307,13 +23320,13 @@ "decorators": [] }, { - "$id": "2139", + "$id": "2140", "kind": "constant", "name": "ListAssistantsRequestAccept73", "namespace": "", "usage": "None", "valueType": { - "$id": "2140", + "$id": "2141", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23323,13 +23336,13 @@ "decorators": [] }, { - "$id": "2141", + "$id": "2142", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta35", "namespace": "", "usage": "None", "valueType": { - "$id": "2142", + "$id": "2143", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23339,13 +23352,13 @@ "decorators": [] }, { - "$id": "2143", + "$id": "2144", "kind": "constant", "name": "ListAssistantsRequestAccept74", "namespace": "", "usage": "None", "valueType": { - "$id": "2144", + "$id": "2145", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23355,13 +23368,13 @@ "decorators": [] }, { - "$id": "2145", + "$id": "2146", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta36", "namespace": "", "usage": "None", "valueType": { - "$id": "2146", + "$id": "2147", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23371,13 +23384,13 @@ "decorators": [] }, { - "$id": "2147", + "$id": "2148", "kind": "constant", "name": "ListAssistantsRequestAccept75", "namespace": "", "usage": "None", "valueType": { - "$id": "2148", + "$id": "2149", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23387,13 +23400,13 @@ "decorators": [] }, { - "$id": "2149", + "$id": "2150", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta37", "namespace": "", "usage": "None", "valueType": { - "$id": "2150", + "$id": "2151", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23403,13 +23416,13 @@ "decorators": [] }, { - "$id": "2151", + "$id": "2152", "kind": "constant", "name": "ListAssistantsRequestAccept76", "namespace": "", "usage": "None", "valueType": { - "$id": "2152", + "$id": "2153", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23419,13 +23432,13 @@ "decorators": [] }, { - "$id": "2153", + "$id": "2154", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta38", "namespace": "", "usage": "None", "valueType": { - "$id": "2154", + "$id": "2155", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23435,13 +23448,13 @@ "decorators": [] }, { - "$id": "2155", + "$id": "2156", "kind": "constant", "name": "createThreadContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2156", + "$id": "2157", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23451,13 +23464,13 @@ "decorators": [] }, { - "$id": "2157", + "$id": "2158", "kind": "constant", "name": "ListAssistantsRequestAccept77", "namespace": "", "usage": "None", "valueType": { - "$id": "2158", + "$id": "2159", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23467,13 +23480,13 @@ "decorators": [] }, { - "$id": "2159", + "$id": "2160", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta39", "namespace": "", "usage": "None", "valueType": { - "$id": "2160", + "$id": "2161", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23483,13 +23496,13 @@ "decorators": [] }, { - "$id": "2161", + "$id": "2162", "kind": "constant", "name": "ListAssistantsRequestAccept78", "namespace": "", "usage": "None", "valueType": { - "$id": "2162", + "$id": "2163", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23499,13 +23512,13 @@ "decorators": [] }, { - "$id": "2163", + "$id": "2164", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta40", "namespace": "", "usage": "None", "valueType": { - "$id": "2164", + "$id": "2165", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23515,13 +23528,13 @@ "decorators": [] }, { - "$id": "2165", + "$id": "2166", "kind": "constant", "name": "ListAssistantsRequestAccept79", "namespace": "", "usage": "None", "valueType": { - "$id": "2166", + "$id": "2167", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23531,13 +23544,13 @@ "decorators": [] }, { - "$id": "2167", + "$id": "2168", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta41", "namespace": "", "usage": "None", "valueType": { - "$id": "2168", + "$id": "2169", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23547,13 +23560,13 @@ "decorators": [] }, { - "$id": "2169", + "$id": "2170", "kind": "constant", "name": "ListAssistantsRequestAccept80", "namespace": "", "usage": "None", "valueType": { - "$id": "2170", + "$id": "2171", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23563,13 +23576,13 @@ "decorators": [] }, { - "$id": "2171", + "$id": "2172", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta42", "namespace": "", "usage": "None", "valueType": { - "$id": "2172", + "$id": "2173", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23579,13 +23592,13 @@ "decorators": [] }, { - "$id": "2173", + "$id": "2174", "kind": "constant", "name": "modifyThreadContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2174", + "$id": "2175", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23595,13 +23608,13 @@ "decorators": [] }, { - "$id": "2175", + "$id": "2176", "kind": "constant", "name": "ListAssistantsRequestAccept81", "namespace": "", "usage": "None", "valueType": { - "$id": "2176", + "$id": "2177", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23611,13 +23624,13 @@ "decorators": [] }, { - "$id": "2177", + "$id": "2178", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta43", "namespace": "", "usage": "None", "valueType": { - "$id": "2178", + "$id": "2179", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23627,13 +23640,13 @@ "decorators": [] }, { - "$id": "2179", + "$id": "2180", "kind": "constant", "name": "ListAssistantsRequestAccept82", "namespace": "", "usage": "None", "valueType": { - "$id": "2180", + "$id": "2181", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23643,13 +23656,13 @@ "decorators": [] }, { - "$id": "2181", + "$id": "2182", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta44", "namespace": "", "usage": "None", "valueType": { - "$id": "2182", + "$id": "2183", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23659,13 +23672,13 @@ "decorators": [] }, { - "$id": "2183", + "$id": "2184", "kind": "constant", "name": "ListAssistantsRequestAccept83", "namespace": "", "usage": "None", "valueType": { - "$id": "2184", + "$id": "2185", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23675,13 +23688,13 @@ "decorators": [] }, { - "$id": "2185", + "$id": "2186", "kind": "constant", "name": "ListAssistantsRequestOpenAiBeta45", "namespace": "", "usage": "None", "valueType": { - "$id": "2186", + "$id": "2187", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23691,13 +23704,13 @@ "decorators": [] }, { - "$id": "2187", + "$id": "2188", "kind": "constant", "name": "ListAssistantsRequestAccept84", "namespace": "", "usage": "None", "valueType": { - "$id": "2188", + "$id": "2189", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23707,13 +23720,13 @@ "decorators": [] }, { - "$id": "2189", + "$id": "2190", "kind": "constant", "name": "ListAssistantsRequestAccept85", "namespace": "", "usage": "None", "valueType": { - "$id": "2190", + "$id": "2191", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23723,13 +23736,13 @@ "decorators": [] }, { - "$id": "2191", + "$id": "2192", "kind": "constant", "name": "ListAssistantsRequestAccept86", "namespace": "", "usage": "None", "valueType": { - "$id": "2192", + "$id": "2193", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23739,13 +23752,13 @@ "decorators": [] }, { - "$id": "2193", + "$id": "2194", "kind": "constant", "name": "createVectorStoreContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2194", + "$id": "2195", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23755,13 +23768,13 @@ "decorators": [] }, { - "$id": "2195", + "$id": "2196", "kind": "constant", "name": "ListAssistantsRequestAccept87", "namespace": "", "usage": "None", "valueType": { - "$id": "2196", + "$id": "2197", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23771,13 +23784,13 @@ "decorators": [] }, { - "$id": "2197", + "$id": "2198", "kind": "constant", "name": "ListAssistantsRequestAccept88", "namespace": "", "usage": "None", "valueType": { - "$id": "2198", + "$id": "2199", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23787,13 +23800,13 @@ "decorators": [] }, { - "$id": "2199", + "$id": "2200", "kind": "constant", "name": "ListAssistantsRequestAccept89", "namespace": "", "usage": "None", "valueType": { - "$id": "2200", + "$id": "2201", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23803,13 +23816,13 @@ "decorators": [] }, { - "$id": "2201", + "$id": "2202", "kind": "constant", "name": "ListAssistantsRequestAccept90", "namespace": "", "usage": "None", "valueType": { - "$id": "2202", + "$id": "2203", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23819,13 +23832,13 @@ "decorators": [] }, { - "$id": "2203", + "$id": "2204", "kind": "constant", "name": "modifyVectorStoreContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2204", + "$id": "2205", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23835,13 +23848,13 @@ "decorators": [] }, { - "$id": "2205", + "$id": "2206", "kind": "constant", "name": "ListAssistantsRequestAccept91", "namespace": "", "usage": "None", "valueType": { - "$id": "2206", + "$id": "2207", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23851,13 +23864,13 @@ "decorators": [] }, { - "$id": "2207", + "$id": "2208", "kind": "constant", "name": "ListAssistantsRequestAccept92", "namespace": "", "usage": "None", "valueType": { - "$id": "2208", + "$id": "2209", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23867,13 +23880,13 @@ "decorators": [] }, { - "$id": "2209", + "$id": "2210", "kind": "constant", "name": "ListAssistantsRequestAccept93", "namespace": "", "usage": "None", "valueType": { - "$id": "2210", + "$id": "2211", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23883,13 +23896,13 @@ "decorators": [] }, { - "$id": "2211", + "$id": "2212", "kind": "constant", "name": "ListAssistantsRequestAccept94", "namespace": "", "usage": "None", "valueType": { - "$id": "2212", + "$id": "2213", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23899,13 +23912,13 @@ "decorators": [] }, { - "$id": "2213", + "$id": "2214", "kind": "constant", "name": "createVectorStoreFileBatchContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2214", + "$id": "2215", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23915,13 +23928,13 @@ "decorators": [] }, { - "$id": "2215", + "$id": "2216", "kind": "constant", "name": "ListAssistantsRequestAccept95", "namespace": "", "usage": "None", "valueType": { - "$id": "2216", + "$id": "2217", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23931,13 +23944,13 @@ "decorators": [] }, { - "$id": "2217", + "$id": "2218", "kind": "constant", "name": "ListAssistantsRequestAccept96", "namespace": "", "usage": "None", "valueType": { - "$id": "2218", + "$id": "2219", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23947,13 +23960,13 @@ "decorators": [] }, { - "$id": "2219", + "$id": "2220", "kind": "constant", "name": "ListAssistantsRequestAccept97", "namespace": "", "usage": "None", "valueType": { - "$id": "2220", + "$id": "2221", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23963,13 +23976,13 @@ "decorators": [] }, { - "$id": "2221", + "$id": "2222", "kind": "constant", "name": "ListAssistantsRequestAccept98", "namespace": "", "usage": "None", "valueType": { - "$id": "2222", + "$id": "2223", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23979,13 +23992,13 @@ "decorators": [] }, { - "$id": "2223", + "$id": "2224", "kind": "constant", "name": "ListAssistantsRequestAccept99", "namespace": "", "usage": "None", "valueType": { - "$id": "2224", + "$id": "2225", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23995,13 +24008,13 @@ "decorators": [] }, { - "$id": "2225", + "$id": "2226", "kind": "constant", "name": "ListAssistantsRequestAccept100", "namespace": "", "usage": "None", "valueType": { - "$id": "2226", + "$id": "2227", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24011,13 +24024,13 @@ "decorators": [] }, { - "$id": "2227", + "$id": "2228", "kind": "constant", "name": "ListAssistantsRequestAccept101", "namespace": "", "usage": "None", "valueType": { - "$id": "2228", + "$id": "2229", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24027,13 +24040,13 @@ "decorators": [] }, { - "$id": "2229", + "$id": "2230", "kind": "constant", "name": "ListAssistantsRequestAccept102", "namespace": "", "usage": "None", "valueType": { - "$id": "2230", + "$id": "2231", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24043,13 +24056,13 @@ "decorators": [] }, { - "$id": "2231", + "$id": "2232", "kind": "constant", "name": "ListAssistantsRequestAccept103", "namespace": "", "usage": "None", "valueType": { - "$id": "2232", + "$id": "2233", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24059,13 +24072,13 @@ "decorators": [] }, { - "$id": "2233", + "$id": "2234", "kind": "constant", "name": "ListAssistantsRequestAccept104", "namespace": "", "usage": "None", "valueType": { - "$id": "2234", + "$id": "2235", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24075,13 +24088,13 @@ "decorators": [] }, { - "$id": "2235", + "$id": "2236", "kind": "constant", "name": "createVectorStoreFileContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2236", + "$id": "2237", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24091,13 +24104,13 @@ "decorators": [] }, { - "$id": "2237", + "$id": "2238", "kind": "constant", "name": "ListAssistantsRequestAccept105", "namespace": "", "usage": "None", "valueType": { - "$id": "2238", + "$id": "2239", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24107,13 +24120,13 @@ "decorators": [] }, { - "$id": "2239", + "$id": "2240", "kind": "constant", "name": "ListAssistantsRequestAccept106", "namespace": "", "usage": "None", "valueType": { - "$id": "2240", + "$id": "2241", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24123,13 +24136,13 @@ "decorators": [] }, { - "$id": "2241", + "$id": "2242", "kind": "constant", "name": "ListAssistantsRequestAccept107", "namespace": "", "usage": "None", "valueType": { - "$id": "2242", + "$id": "2243", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24139,13 +24152,13 @@ "decorators": [] }, { - "$id": "2243", + "$id": "2244", "kind": "constant", "name": "ListAssistantsRequestAccept108", "namespace": "", "usage": "None", "valueType": { - "$id": "2244", + "$id": "2245", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24155,13 +24168,13 @@ "decorators": [] }, { - "$id": "2245", + "$id": "2246", "kind": "constant", "name": "ListAssistantsRequestAccept109", "namespace": "", "usage": "None", "valueType": { - "$id": "2246", + "$id": "2247", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24171,13 +24184,13 @@ "decorators": [] }, { - "$id": "2247", + "$id": "2248", "kind": "constant", "name": "updateVectorStoreFileAttributesContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2248", + "$id": "2249", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24187,13 +24200,13 @@ "decorators": [] }, { - "$id": "2249", + "$id": "2250", "kind": "constant", "name": "updateVectorStoreFileAttributesContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "2250", + "$id": "2251", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24203,13 +24216,13 @@ "decorators": [] }, { - "$id": "2251", + "$id": "2252", "kind": "constant", "name": "retrieveVectorStoreFileContentContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2252", + "$id": "2253", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24219,13 +24232,13 @@ "decorators": [] }, { - "$id": "2253", + "$id": "2254", "kind": "constant", "name": "searchVectorStoreContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2254", + "$id": "2255", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24235,13 +24248,13 @@ "decorators": [] }, { - "$id": "2255", + "$id": "2256", "kind": "constant", "name": "searchVectorStoreContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "2256", + "$id": "2257", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24251,13 +24264,13 @@ "decorators": [] }, { - "$id": "2257", + "$id": "2258", "kind": "constant", "name": "ListAssistantsRequestAccept110", "namespace": "", "usage": "None", "valueType": { - "$id": "2258", + "$id": "2259", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24267,13 +24280,13 @@ "decorators": [] }, { - "$id": "2259", + "$id": "2260", "kind": "constant", "name": "createCompletionContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2260", + "$id": "2261", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24283,13 +24296,13 @@ "decorators": [] }, { - "$id": "2261", + "$id": "2262", "kind": "constant", "name": "ListAssistantsRequestAccept111", "namespace": "", "usage": "None", "valueType": { - "$id": "2262", + "$id": "2263", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24299,13 +24312,13 @@ "decorators": [] }, { - "$id": "2263", + "$id": "2264", "kind": "constant", "name": "ListAssistantsRequestAccept112", "namespace": "", "usage": "None", "valueType": { - "$id": "2264", + "$id": "2265", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24315,13 +24328,13 @@ "decorators": [] }, { - "$id": "2265", + "$id": "2266", "kind": "constant", "name": "ListAssistantsRequestAccept113", "namespace": "", "usage": "None", "valueType": { - "$id": "2266", + "$id": "2267", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24331,13 +24344,13 @@ "decorators": [] }, { - "$id": "2267", + "$id": "2268", "kind": "constant", "name": "ListAssistantsRequestAccept114", "namespace": "", "usage": "None", "valueType": { - "$id": "2268", + "$id": "2269", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24347,13 +24360,13 @@ "decorators": [] }, { - "$id": "2269", + "$id": "2270", "kind": "constant", "name": "ListAssistantsRequestAccept115", "namespace": "", "usage": "None", "valueType": { - "$id": "2270", + "$id": "2271", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24363,13 +24376,13 @@ "decorators": [] }, { - "$id": "2271", + "$id": "2272", "kind": "constant", "name": "ListAssistantsRequestAccept116", "namespace": "", "usage": "None", "valueType": { - "$id": "2272", + "$id": "2273", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24379,13 +24392,13 @@ "decorators": [] }, { - "$id": "2273", + "$id": "2274", "kind": "constant", "name": "ListAssistantsRequestAccept117", "namespace": "", "usage": "None", "valueType": { - "$id": "2274", + "$id": "2275", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24395,13 +24408,13 @@ "decorators": [] }, { - "$id": "2275", + "$id": "2276", "kind": "constant", "name": "StartRealtimeSessionRequestOpenAiBeta", "namespace": "", "usage": "None", "valueType": { - "$id": "2276", + "$id": "2277", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24411,13 +24424,13 @@ "decorators": [] }, { - "$id": "2277", + "$id": "2278", "kind": "constant", "name": "startRealtimeSessionContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2278", + "$id": "2279", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24427,13 +24440,13 @@ "decorators": [] }, { - "$id": "2279", + "$id": "2280", "kind": "constant", "name": "startRealtimeSessionContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "2280", + "$id": "2281", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24443,13 +24456,13 @@ "decorators": [] }, { - "$id": "2281", + "$id": "2282", "kind": "constant", "name": "StartRealtimeSessionRequestOpenAiBeta1", "namespace": "", "usage": "None", "valueType": { - "$id": "2282", + "$id": "2283", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24459,13 +24472,13 @@ "decorators": [] }, { - "$id": "2283", + "$id": "2284", "kind": "constant", "name": "createEphemeralTokenContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2284", + "$id": "2285", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24475,13 +24488,13 @@ "decorators": [] }, { - "$id": "2285", + "$id": "2286", "kind": "constant", "name": "createEphemeralTokenContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "2286", + "$id": "2287", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24491,13 +24504,13 @@ "decorators": [] }, { - "$id": "2287", + "$id": "2288", "kind": "constant", "name": "createEphemeralTranscriptionTokenContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2288", + "$id": "2289", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24507,13 +24520,13 @@ "decorators": [] }, { - "$id": "2289", + "$id": "2290", "kind": "constant", "name": "createEphemeralTranscriptionTokenContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "2290", + "$id": "2291", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24523,13 +24536,13 @@ "decorators": [] }, { - "$id": "2291", + "$id": "2292", "kind": "constant", "name": "ListAssistantsRequestAccept118", "namespace": "", "usage": "None", "valueType": { - "$id": "2292", + "$id": "2293", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24539,13 +24552,13 @@ "decorators": [] }, { - "$id": "2293", + "$id": "2294", "kind": "constant", "name": "createUploadContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2294", + "$id": "2295", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24555,13 +24568,13 @@ "decorators": [] }, { - "$id": "2295", + "$id": "2296", "kind": "constant", "name": "ListAssistantsRequestAccept119", "namespace": "", "usage": "None", "valueType": { - "$id": "2296", + "$id": "2297", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24571,13 +24584,13 @@ "decorators": [] }, { - "$id": "2297", + "$id": "2298", "kind": "constant", "name": "ListAssistantsRequestAccept120", "namespace": "", "usage": "None", "valueType": { - "$id": "2298", + "$id": "2299", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24587,13 +24600,13 @@ "decorators": [] }, { - "$id": "2299", + "$id": "2300", "kind": "constant", "name": "CreateTranscriptionRequestContentType12", "namespace": "", "usage": "None", "valueType": { - "$id": "2300", + "$id": "2301", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24603,13 +24616,13 @@ "decorators": [] }, { - "$id": "2301", + "$id": "2302", "kind": "constant", "name": "ListAssistantsRequestAccept121", "namespace": "", "usage": "None", "valueType": { - "$id": "2302", + "$id": "2303", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24619,13 +24632,13 @@ "decorators": [] }, { - "$id": "2303", + "$id": "2304", "kind": "constant", "name": "CreateTranscriptionRequestContentType13", "namespace": "", "usage": "None", "valueType": { - "$id": "2304", + "$id": "2305", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24635,13 +24648,13 @@ "decorators": [] }, { - "$id": "2305", + "$id": "2306", "kind": "constant", "name": "ListAssistantsRequestAccept122", "namespace": "", "usage": "None", "valueType": { - "$id": "2306", + "$id": "2307", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24651,13 +24664,13 @@ "decorators": [] }, { - "$id": "2307", + "$id": "2308", "kind": "constant", "name": "completeUploadContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2308", + "$id": "2309", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24667,13 +24680,13 @@ "decorators": [] }, { - "$id": "2309", + "$id": "2310", "kind": "constant", "name": "ListAssistantsRequestAccept123", "namespace": "", "usage": "None", "valueType": { - "$id": "2310", + "$id": "2311", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24683,13 +24696,13 @@ "decorators": [] }, { - "$id": "2311", + "$id": "2312", "kind": "constant", "name": "ListAssistantsRequestAccept124", "namespace": "", "usage": "None", "valueType": { - "$id": "2312", + "$id": "2313", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24699,13 +24712,13 @@ "decorators": [] }, { - "$id": "2313", + "$id": "2314", "kind": "constant", "name": "ListAssistantsRequestAccept125", "namespace": "", "usage": "None", "valueType": { - "$id": "2314", + "$id": "2315", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24715,13 +24728,13 @@ "decorators": [] }, { - "$id": "2315", + "$id": "2316", "kind": "constant", "name": "listConversationItemsContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2316", + "$id": "2317", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24731,13 +24744,13 @@ "decorators": [] }, { - "$id": "2317", + "$id": "2318", "kind": "constant", "name": "ListAssistantsResponseObject1", "namespace": "", "usage": "None", "valueType": { - "$id": "2318", + "$id": "2319", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24747,13 +24760,13 @@ "decorators": [] }, { - "$id": "2319", + "$id": "2320", "kind": "constant", "name": "createConversationItemsContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2320", + "$id": "2321", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24763,13 +24776,13 @@ "decorators": [] }, { - "$id": "2321", + "$id": "2322", "kind": "constant", "name": "createConversationItemsContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "2322", + "$id": "2323", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24779,13 +24792,13 @@ "decorators": [] }, { - "$id": "2323", + "$id": "2324", "kind": "constant", "name": "deleteConversationItemContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2324", + "$id": "2325", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24795,13 +24808,13 @@ "decorators": [] }, { - "$id": "2325", + "$id": "2326", "kind": "constant", "name": "ConversationResourceObject", "namespace": "", "usage": "None", "valueType": { - "$id": "2326", + "$id": "2327", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24811,13 +24824,13 @@ "decorators": [] }, { - "$id": "2327", + "$id": "2328", "kind": "constant", "name": "getConversationItemContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2328", + "$id": "2329", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24827,13 +24840,13 @@ "decorators": [] }, { - "$id": "2329", + "$id": "2330", "kind": "constant", "name": "createConversationContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2330", + "$id": "2331", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24843,13 +24856,13 @@ "decorators": [] }, { - "$id": "2331", + "$id": "2332", "kind": "constant", "name": "createConversationContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "2332", + "$id": "2333", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24859,13 +24872,13 @@ "decorators": [] }, { - "$id": "2333", + "$id": "2334", "kind": "constant", "name": "deleteConversationContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2334", + "$id": "2335", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24875,13 +24888,13 @@ "decorators": [] }, { - "$id": "2335", + "$id": "2336", "kind": "constant", "name": "DeletedConversationResourceObject", "namespace": "", "usage": "None", "valueType": { - "$id": "2336", + "$id": "2337", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24891,13 +24904,13 @@ "decorators": [] }, { - "$id": "2337", + "$id": "2338", "kind": "constant", "name": "getConversationContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2338", + "$id": "2339", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24907,13 +24920,13 @@ "decorators": [] }, { - "$id": "2339", + "$id": "2340", "kind": "constant", "name": "updateConversationContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2340", + "$id": "2341", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24923,13 +24936,13 @@ "decorators": [] }, { - "$id": "2341", + "$id": "2342", "kind": "constant", "name": "updateConversationContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "2342", + "$id": "2343", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24939,13 +24952,13 @@ "decorators": [] }, { - "$id": "2343", + "$id": "2344", "kind": "constant", "name": "ListVideosContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2344", + "$id": "2345", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24955,13 +24968,13 @@ "decorators": [] }, { - "$id": "2345", + "$id": "2346", "kind": "constant", "name": "ListAssistantsResponseObject2", "namespace": "", "usage": "None", "valueType": { - "$id": "2346", + "$id": "2347", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24971,13 +24984,13 @@ "decorators": [] }, { - "$id": "2347", + "$id": "2348", "kind": "constant", "name": "VideoResourceObject", "namespace": "", "usage": "None", "valueType": { - "$id": "2348", + "$id": "2349", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24987,13 +25000,13 @@ "decorators": [] }, { - "$id": "2349", + "$id": "2350", "kind": "constant", "name": "CreateTranscriptionRequestContentType14", "namespace": "", "usage": "None", "valueType": { - "$id": "2350", + "$id": "2351", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25003,13 +25016,13 @@ "decorators": [] }, { - "$id": "2351", + "$id": "2352", "kind": "constant", "name": "createVideoContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2352", + "$id": "2353", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25019,13 +25032,13 @@ "decorators": [] }, { - "$id": "2353", + "$id": "2354", "kind": "constant", "name": "CreateTranscriptionRequestContentType15", "namespace": "", "usage": "None", "valueType": { - "$id": "2354", + "$id": "2355", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25035,13 +25048,13 @@ "decorators": [] }, { - "$id": "2355", + "$id": "2356", "kind": "constant", "name": "DeleteVideoContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2356", + "$id": "2357", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25051,13 +25064,13 @@ "decorators": [] }, { - "$id": "2357", + "$id": "2358", "kind": "constant", "name": "DeletedVideoResourceObject", "namespace": "", "usage": "None", "valueType": { - "$id": "2358", + "$id": "2359", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25067,13 +25080,13 @@ "decorators": [] }, { - "$id": "2359", + "$id": "2360", "kind": "constant", "name": "GetVideoContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2360", + "$id": "2361", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25083,13 +25096,13 @@ "decorators": [] }, { - "$id": "2361", + "$id": "2362", "kind": "constant", "name": "RetrieveVideoContentResponseContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2362", + "$id": "2363", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25099,13 +25112,13 @@ "decorators": [] }, { - "$id": "2363", + "$id": "2364", "kind": "constant", "name": "RetrieveVideoContentResponseContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "2364", + "$id": "2365", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25115,13 +25128,13 @@ "decorators": [] }, { - "$id": "2365", + "$id": "2366", "kind": "constant", "name": "CreateTranscriptionRequestContentType16", "namespace": "", "usage": "None", "valueType": { - "$id": "2366", + "$id": "2367", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25131,13 +25144,13 @@ "decorators": [] }, { - "$id": "2367", + "$id": "2368", "kind": "constant", "name": "CreateVideoRemixContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2368", + "$id": "2369", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25147,13 +25160,13 @@ "decorators": [] }, { - "$id": "2369", + "$id": "2370", "kind": "constant", "name": "CreateTranscriptionRequestContentType17", "namespace": "", "usage": "None", "valueType": { - "$id": "2370", + "$id": "2371", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25165,7 +25178,7 @@ ], "models": [ { - "$id": "2371", + "$id": "2372", "kind": "model", "name": "ListAssistantsResponse", "namespace": "OpenAI", @@ -25174,12 +25187,12 @@ "decorators": [], "properties": [ { - "$id": "2372", + "$id": "2373", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1519" + "$ref": "1520" }, "optional": false, "readOnly": false, @@ -25195,16 +25208,16 @@ "isHttpMetadata": false }, { - "$id": "2373", + "$id": "2374", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "2374", + "$id": "2375", "kind": "array", "name": "ArrayAssistantObject", "valueType": { - "$id": "2375", + "$id": "2376", "kind": "model", "name": "AssistantObject", "namespace": "OpenAI", @@ -25214,13 +25227,13 @@ "decorators": [], "properties": [ { - "$id": "2376", + "$id": "2377", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "2377", + "$id": "2378", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25240,13 +25253,13 @@ "isHttpMetadata": false }, { - "$id": "2378", + "$id": "2379", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `assistant`.", "type": { - "$ref": "1521" + "$ref": "1522" }, "optional": false, "readOnly": false, @@ -25262,18 +25275,18 @@ "isHttpMetadata": false }, { - "$id": "2379", + "$id": "2380", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the assistant was created.", "type": { - "$id": "2380", + "$id": "2381", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2381", + "$id": "2382", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -25296,16 +25309,16 @@ "isHttpMetadata": false }, { - "$id": "2382", + "$id": "2383", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the assistant. The maximum length is 256 characters.", "type": { - "$id": "2383", + "$id": "2384", "kind": "nullable", "type": { - "$id": "2384", + "$id": "2385", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25327,16 +25340,16 @@ "isHttpMetadata": false }, { - "$id": "2385", + "$id": "2386", "kind": "property", "name": "description", "serializedName": "description", "doc": "The description of the assistant. The maximum length is 512 characters.", "type": { - "$id": "2386", + "$id": "2387", "kind": "nullable", "type": { - "$id": "2387", + "$id": "2388", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25358,13 +25371,13 @@ "isHttpMetadata": false }, { - "$id": "2388", + "$id": "2389", "kind": "property", "name": "model", "serializedName": "model", "doc": "ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models) for descriptions of them.", "type": { - "$id": "2389", + "$id": "2390", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25384,16 +25397,16 @@ "isHttpMetadata": false }, { - "$id": "2390", + "$id": "2391", "kind": "property", "name": "instructions", "serializedName": "instructions", "doc": "The system instructions that the assistant uses. The maximum length is 256,000 characters.", "type": { - "$id": "2391", + "$id": "2392", "kind": "nullable", "type": { - "$id": "2392", + "$id": "2393", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25415,17 +25428,17 @@ "isHttpMetadata": false }, { - "$id": "2393", + "$id": "2394", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "A list of tool enabled on the assistant. There can be a maximum of 128 tools per assistant. Tools can be of types `code_interpreter`, `file_search`, or `function`.", "type": { - "$id": "2394", + "$id": "2395", "kind": "array", "name": "ArrayAssistantToolDefinition", "valueType": { - "$id": "2395", + "$id": "2396", "kind": "model", "name": "AssistantToolDefinition", "namespace": "OpenAI", @@ -25433,7 +25446,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "2396", + "$id": "2397", "kind": "property", "name": "type", "serializedName": "type", @@ -25455,12 +25468,12 @@ }, "properties": [ { - "$ref": "2396" + "$ref": "2397" } ], "discriminatedSubtypes": { "code_interpreter": { - "$id": "2397", + "$id": "2398", "kind": "model", "name": "AssistantToolsCode", "namespace": "OpenAI", @@ -25469,17 +25482,17 @@ "discriminatorValue": "code_interpreter", "decorators": [], "baseModel": { - "$ref": "2395" + "$ref": "2396" }, "properties": [ { - "$id": "2398", + "$id": "2399", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of tool being defined: `code_interpreter`", "type": { - "$id": "2399", + "$id": "2400", "kind": "enumvalue", "name": "code_interpreter", "value": "code_interpreter", @@ -25487,14 +25500,14 @@ "$ref": "2" }, "enumType": { - "$id": "2400", + "$id": "2401", "kind": "enum", "decorators": [], "name": "AssistantToolDefinitionType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "2401", + "$id": "2402", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -25503,42 +25516,42 @@ }, "values": [ { - "$id": "2402", + "$id": "2403", "kind": "enumvalue", "decorators": [], "name": "code_interpreter", "value": "code_interpreter", "valueType": { - "$ref": "2401" + "$ref": "2402" }, "enumType": { - "$ref": "2400" + "$ref": "2401" } }, { - "$id": "2403", + "$id": "2404", "kind": "enumvalue", "decorators": [], "name": "file_search", "value": "file_search", "valueType": { - "$ref": "2401" + "$ref": "2402" }, "enumType": { - "$ref": "2400" + "$ref": "2401" } }, { - "$id": "2404", + "$id": "2405", "kind": "enumvalue", "decorators": [], "name": "function", "value": "function", "valueType": { - "$ref": "2401" + "$ref": "2402" }, "enumType": { - "$ref": "2400" + "$ref": "2401" } } ], @@ -25569,7 +25582,7 @@ ] }, "file_search": { - "$id": "2405", + "$id": "2406", "kind": "model", "name": "AssistantToolsFileSearch", "namespace": "OpenAI", @@ -25578,17 +25591,17 @@ "discriminatorValue": "file_search", "decorators": [], "baseModel": { - "$ref": "2395" + "$ref": "2396" }, "properties": [ { - "$id": "2406", + "$id": "2407", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of tool being defined: `file_search`", "type": { - "$id": "2407", + "$id": "2408", "kind": "enumvalue", "name": "file_search", "value": "file_search", @@ -25596,7 +25609,7 @@ "$ref": "2" }, "enumType": { - "$ref": "2400" + "$ref": "2401" }, "decorators": [] }, @@ -25614,13 +25627,13 @@ "isHttpMetadata": false }, { - "$id": "2408", + "$id": "2409", "kind": "property", "name": "file_search", "serializedName": "file_search", "doc": "Overrides for the file search tool.", "type": { - "$id": "2409", + "$id": "2410", "kind": "model", "name": "AssistantToolsFileSearchFileSearch", "namespace": "OpenAI", @@ -25629,13 +25642,13 @@ "decorators": [], "properties": [ { - "$id": "2410", + "$id": "2411", "kind": "property", "name": "max_num_results", "serializedName": "max_num_results", "doc": "The maximum number of results the file search tool should output. The default is 20 for `gpt-4*` models and 5 for `gpt-3.5-turbo`. This number should be between 1 and 50 inclusive.\n\nNote that the file search tool may output fewer than `max_num_results` results. See the [file search tool documentation](/docs/assistants/tools/file-search#customizing-file-search-settings) for more information.", "type": { - "$id": "2411", + "$id": "2412", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -25655,12 +25668,12 @@ "isHttpMetadata": false }, { - "$id": "2412", + "$id": "2413", "kind": "property", "name": "ranking_options", "serializedName": "ranking_options", "type": { - "$id": "2413", + "$id": "2414", "kind": "model", "name": "FileSearchRankingOptions", "namespace": "OpenAI", @@ -25670,7 +25683,7 @@ "decorators": [], "properties": [ { - "$id": "2414", + "$id": "2415", "kind": "property", "name": "ranker", "serializedName": "ranker", @@ -25691,13 +25704,13 @@ "isHttpMetadata": false }, { - "$id": "2415", + "$id": "2416", "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": "2416", + "$id": "2417", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -25749,7 +25762,7 @@ ] }, "function": { - "$id": "2417", + "$id": "2418", "kind": "model", "name": "AssistantToolsFunction", "namespace": "OpenAI", @@ -25758,17 +25771,17 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "2395" + "$ref": "2396" }, "properties": [ { - "$id": "2418", + "$id": "2419", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of tool being defined: `function`", "type": { - "$id": "2419", + "$id": "2420", "kind": "enumvalue", "name": "function", "value": "function", @@ -25776,7 +25789,7 @@ "$ref": "2" }, "enumType": { - "$ref": "2400" + "$ref": "2401" }, "decorators": [] }, @@ -25794,12 +25807,12 @@ "isHttpMetadata": false }, { - "$id": "2420", + "$id": "2421", "kind": "property", "name": "function", "serializedName": "function", "type": { - "$id": "2421", + "$id": "2422", "kind": "model", "name": "FunctionObject", "namespace": "OpenAI", @@ -25808,13 +25821,13 @@ "decorators": [], "properties": [ { - "$id": "2422", + "$id": "2423", "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": "2423", + "$id": "2424", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25834,13 +25847,13 @@ "isHttpMetadata": false }, { - "$id": "2424", + "$id": "2425", "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": "2425", + "$id": "2426", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25860,13 +25873,13 @@ "isHttpMetadata": false }, { - "$id": "2426", + "$id": "2427", "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": "2427", + "$id": "2428", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -25886,16 +25899,16 @@ "isHttpMetadata": false }, { - "$id": "2428", + "$id": "2429", "kind": "property", "name": "strict", "serializedName": "strict", "doc": "Whether to enable strict schema adherence when generating the function call. If set to true, the model will follow the exact schema defined in the `parameters` field. Only a subset of JSON Schema is supported when `strict` is `true`. Learn more about Structured Outputs in the [function calling guide](docs/guides/function-calling).", "type": { - "$id": "2429", + "$id": "2430", "kind": "nullable", "type": { - "$id": "2430", + "$id": "2431", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -25952,16 +25965,16 @@ "isHttpMetadata": false }, { - "$id": "2431", + "$id": "2432", "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": "2432", + "$id": "2433", "kind": "nullable", "type": { - "$id": "2433", + "$id": "2434", "kind": "model", "name": "AssistantObjectToolResources1", "namespace": "OpenAI", @@ -25970,12 +25983,12 @@ "decorators": [], "properties": [ { - "$id": "2434", + "$id": "2435", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "2435", + "$id": "2436", "kind": "model", "name": "AssistantObjectToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -25984,17 +25997,17 @@ "decorators": [], "properties": [ { - "$id": "2436", + "$id": "2437", "kind": "property", "name": "file_ids", "serializedName": "file_ids", "doc": "A list of [file](/docs/api-reference/files) IDs made available to the `code_interpreter`` tool. There can be a maximum of 20 files associated with the tool.", "type": { - "$id": "2437", + "$id": "2438", "kind": "array", "name": "Array", "valueType": { - "$id": "2438", + "$id": "2439", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26032,12 +26045,12 @@ "isHttpMetadata": false }, { - "$id": "2439", + "$id": "2440", "kind": "property", "name": "file_search", "serializedName": "file_search", "type": { - "$id": "2440", + "$id": "2441", "kind": "model", "name": "ToolResourcesFileSearchIdsOnly", "namespace": "OpenAI", @@ -26046,13 +26059,13 @@ "decorators": [], "properties": [ { - "$id": "2441", + "$id": "2442", "kind": "property", "name": "vector_store_ids", "serializedName": "vector_store_ids", "doc": "The [vector store](/docs/api-reference/vector-stores/object) attached to this assistant.\nThere can be a maximum of 1 vector store attached to the assistant.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": true, "readOnly": false, @@ -26100,26 +26113,26 @@ "isHttpMetadata": false }, { - "$id": "2442", + "$id": "2443", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$id": "2443", + "$id": "2444", "kind": "nullable", "type": { - "$id": "2444", + "$id": "2445", "kind": "dict", "keyType": { - "$id": "2445", + "$id": "2446", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, "valueType": { - "$id": "2446", + "$id": "2447", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26143,16 +26156,16 @@ "isHttpMetadata": false }, { - "$id": "2447", + "$id": "2448", "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": "2448", + "$id": "2449", "kind": "nullable", "type": { - "$id": "2449", + "$id": "2450", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -26174,16 +26187,16 @@ "isHttpMetadata": false }, { - "$id": "2450", + "$id": "2451", "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": "2451", + "$id": "2452", "kind": "nullable", "type": { - "$id": "2452", + "$id": "2453", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -26205,23 +26218,23 @@ "isHttpMetadata": false }, { - "$id": "2453", + "$id": "2454", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "2454", + "$id": "2455", "kind": "nullable", "type": { - "$id": "2455", + "$id": "2456", "kind": "union", "name": "AssistantsApiResponseFormatOption", "variantTypes": [ { - "$ref": "1523" + "$ref": "1524" }, { - "$id": "2456", + "$id": "2457", "kind": "model", "name": "ResponseFormatText", "namespace": "OpenAI", @@ -26231,7 +26244,7 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$id": "2457", + "$id": "2458", "kind": "model", "name": "ResponseFormat", "namespace": "OpenAI", @@ -26239,7 +26252,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "2458", + "$id": "2459", "kind": "property", "name": "type", "serializedName": "type", @@ -26261,15 +26274,15 @@ }, "properties": [ { - "$ref": "2458" + "$ref": "2459" } ], "discriminatedSubtypes": { "text": { - "$ref": "2456" + "$ref": "2457" }, "json_object": { - "$id": "2459", + "$id": "2460", "kind": "model", "name": "ResponseFormatJsonObject", "namespace": "OpenAI", @@ -26279,17 +26292,17 @@ "discriminatorValue": "json_object", "decorators": [], "baseModel": { - "$ref": "2457" + "$ref": "2458" }, "properties": [ { - "$id": "2460", + "$id": "2461", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of response format being defined. Always `json_object`.", "type": { - "$id": "2461", + "$id": "2462", "kind": "enumvalue", "name": "json_object", "value": "json_object", @@ -26297,14 +26310,14 @@ "$ref": "11" }, "enumType": { - "$id": "2462", + "$id": "2463", "kind": "enum", "decorators": [], "name": "ResponseFormatType", "isGeneratedName": true, "namespace": "OpenAI", "valueType": { - "$id": "2463", + "$id": "2464", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -26313,42 +26326,42 @@ }, "values": [ { - "$id": "2464", + "$id": "2465", "kind": "enumvalue", "decorators": [], "name": "text", "value": "text", "valueType": { - "$ref": "2463" + "$ref": "2464" }, "enumType": { - "$ref": "2462" + "$ref": "2463" } }, { - "$id": "2465", + "$id": "2466", "kind": "enumvalue", "decorators": [], "name": "json_object", "value": "json_object", "valueType": { - "$ref": "2463" + "$ref": "2464" }, "enumType": { - "$ref": "2462" + "$ref": "2463" } }, { - "$id": "2466", + "$id": "2467", "kind": "enumvalue", "decorators": [], "name": "json_schema", "value": "json_schema", "valueType": { - "$ref": "2463" + "$ref": "2464" }, "enumType": { - "$ref": "2462" + "$ref": "2463" } } ], @@ -26379,7 +26392,7 @@ ] }, "json_schema": { - "$id": "2467", + "$id": "2468", "kind": "model", "name": "ResponseFormatJsonSchema", "namespace": "OpenAI", @@ -26389,17 +26402,17 @@ "discriminatorValue": "json_schema", "decorators": [], "baseModel": { - "$ref": "2457" + "$ref": "2458" }, "properties": [ { - "$id": "2468", + "$id": "2469", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of response format being defined. Always `json_schema`.", "type": { - "$id": "2469", + "$id": "2470", "kind": "enumvalue", "name": "json_schema", "value": "json_schema", @@ -26407,7 +26420,7 @@ "$ref": "11" }, "enumType": { - "$ref": "2462" + "$ref": "2463" }, "decorators": [] }, @@ -26425,13 +26438,13 @@ "isHttpMetadata": false }, { - "$id": "2470", + "$id": "2471", "kind": "property", "name": "json_schema", "serializedName": "json_schema", "doc": "Structured Outputs configuration options, including a JSON Schema.", "type": { - "$id": "2471", + "$id": "2472", "kind": "model", "name": "ResponseFormatJsonSchemaJsonSchema", "namespace": "OpenAI", @@ -26440,13 +26453,13 @@ "decorators": [], "properties": [ { - "$id": "2472", + "$id": "2473", "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": "2473", + "$id": "2474", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26466,13 +26479,13 @@ "isHttpMetadata": false }, { - "$id": "2474", + "$id": "2475", "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": "2475", + "$id": "2476", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26492,12 +26505,12 @@ "isHttpMetadata": false }, { - "$id": "2476", + "$id": "2477", "kind": "property", "name": "schema", "serializedName": "schema", "type": { - "$id": "2477", + "$id": "2478", "kind": "model", "name": "ResponseFormatJsonSchemaSchema", "namespace": "OpenAI", @@ -26506,7 +26519,7 @@ "doc": "The schema for the response format, described as a JSON Schema object.\nLearn how to build JSON schemas [here](https://json-schema.org/).", "decorators": [], "additionalProperties": { - "$id": "2478", + "$id": "2479", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -26528,16 +26541,16 @@ "isHttpMetadata": false }, { - "$id": "2479", + "$id": "2480", "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": "2480", + "$id": "2481", "kind": "nullable", "type": { - "$id": "2481", + "$id": "2482", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -26579,13 +26592,13 @@ }, "properties": [ { - "$id": "2482", + "$id": "2483", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of response format being defined. Always `text`.", "type": { - "$id": "2483", + "$id": "2484", "kind": "enumvalue", "name": "text", "value": "text", @@ -26593,7 +26606,7 @@ "$ref": "11" }, "enumType": { - "$ref": "2462" + "$ref": "2463" }, "decorators": [] }, @@ -26613,10 +26626,10 @@ ] }, { - "$ref": "2459" + "$ref": "2460" }, { - "$ref": "2467" + "$ref": "2468" } ], "namespace": "OpenAI", @@ -26656,12 +26669,12 @@ "isHttpMetadata": false }, { - "$id": "2484", + "$id": "2485", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "2485", + "$id": "2486", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26681,12 +26694,12 @@ "isHttpMetadata": false }, { - "$id": "2486", + "$id": "2487", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "2487", + "$id": "2488", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26706,12 +26719,12 @@ "isHttpMetadata": false }, { - "$id": "2488", + "$id": "2489", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "2489", + "$id": "2490", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -26733,58 +26746,58 @@ ] }, { - "$ref": "2375" + "$ref": "2376" }, { - "$ref": "2395" + "$ref": "2396" }, { - "$ref": "2397" + "$ref": "2398" }, { - "$ref": "2405" + "$ref": "2406" }, { - "$ref": "2409" + "$ref": "2410" }, { - "$ref": "2413" + "$ref": "2414" }, { - "$ref": "2417" + "$ref": "2418" }, { - "$ref": "2421" + "$ref": "2422" }, { - "$ref": "2433" + "$ref": "2434" }, { - "$ref": "2435" + "$ref": "2436" }, { - "$ref": "2440" + "$ref": "2441" }, { - "$ref": "2456" + "$ref": "2457" }, { - "$ref": "2457" + "$ref": "2458" }, { - "$ref": "2459" + "$ref": "2460" }, { - "$ref": "2467" + "$ref": "2468" }, { - "$ref": "2471" + "$ref": "2472" }, { - "$ref": "2477" + "$ref": "2478" }, { - "$id": "2490", + "$id": "2491", "kind": "model", "name": "ErrorResponse", "namespace": "OpenAI", @@ -26793,12 +26806,12 @@ "decorators": [], "properties": [ { - "$id": "2491", + "$id": "2492", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$id": "2492", + "$id": "2493", "kind": "model", "name": "Error", "namespace": "OpenAI", @@ -26807,15 +26820,15 @@ "decorators": [], "properties": [ { - "$id": "2493", + "$id": "2494", "kind": "property", "name": "code", "serializedName": "code", "type": { - "$id": "2494", + "$id": "2495", "kind": "nullable", "type": { - "$id": "2495", + "$id": "2496", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26837,12 +26850,12 @@ "isHttpMetadata": false }, { - "$id": "2496", + "$id": "2497", "kind": "property", "name": "message", "serializedName": "message", "type": { - "$id": "2497", + "$id": "2498", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26862,15 +26875,15 @@ "isHttpMetadata": false }, { - "$id": "2498", + "$id": "2499", "kind": "property", "name": "param", "serializedName": "param", "type": { - "$id": "2499", + "$id": "2500", "kind": "nullable", "type": { - "$id": "2500", + "$id": "2501", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26892,12 +26905,12 @@ "isHttpMetadata": false }, { - "$id": "2501", + "$id": "2502", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "2502", + "$id": "2503", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26934,10 +26947,10 @@ ] }, { - "$ref": "2492" + "$ref": "2493" }, { - "$id": "2503", + "$id": "2504", "kind": "model", "name": "CreateAssistantRequest", "namespace": "OpenAI", @@ -26946,7 +26959,7 @@ "decorators": [], "properties": [ { - "$id": "2504", + "$id": "2505", "kind": "property", "name": "model", "serializedName": "model", @@ -26968,16 +26981,16 @@ "isHttpMetadata": false }, { - "$id": "2505", + "$id": "2506", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the assistant. The maximum length is 256 characters.", "type": { - "$id": "2506", + "$id": "2507", "kind": "nullable", "type": { - "$id": "2507", + "$id": "2508", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26999,16 +27012,16 @@ "isHttpMetadata": false }, { - "$id": "2508", + "$id": "2509", "kind": "property", "name": "description", "serializedName": "description", "doc": "The description of the assistant. The maximum length is 512 characters.", "type": { - "$id": "2509", + "$id": "2510", "kind": "nullable", "type": { - "$id": "2510", + "$id": "2511", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -27030,16 +27043,16 @@ "isHttpMetadata": false }, { - "$id": "2511", + "$id": "2512", "kind": "property", "name": "instructions", "serializedName": "instructions", "doc": "The system instructions that the assistant uses. The maximum length is 256,000 characters.", "type": { - "$id": "2512", + "$id": "2513", "kind": "nullable", "type": { - "$id": "2513", + "$id": "2514", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -27061,12 +27074,12 @@ "isHttpMetadata": false }, { - "$id": "2514", + "$id": "2515", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", "type": { - "$id": "2515", + "$id": "2516", "kind": "nullable", "type": { "$ref": "53" @@ -27087,13 +27100,13 @@ "isHttpMetadata": false }, { - "$id": "2516", + "$id": "2517", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "A list of tool enabled on the assistant. There can be a maximum of 128 tools per assistant. Tools can be of types `code_interpreter`, `file_search`, or `function`.", "type": { - "$ref": "2394" + "$ref": "2395" }, "optional": true, "readOnly": false, @@ -27109,16 +27122,16 @@ "isHttpMetadata": false }, { - "$id": "2517", + "$id": "2518", "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": "2518", + "$id": "2519", "kind": "nullable", "type": { - "$id": "2519", + "$id": "2520", "kind": "model", "name": "CreateAssistantRequestToolResources1", "namespace": "OpenAI", @@ -27127,12 +27140,12 @@ "decorators": [], "properties": [ { - "$id": "2520", + "$id": "2521", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "2521", + "$id": "2522", "kind": "model", "name": "CreateAssistantRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -27141,13 +27154,13 @@ "decorators": [], "properties": [ { - "$id": "2522", + "$id": "2523", "kind": "property", "name": "file_ids", "serializedName": "file_ids", "doc": "A list of [file](/docs/api-reference/files) IDs made available to the `code_interpreter` tool. There can be a maximum of 20 files associated with the tool.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": true, "readOnly": false, @@ -27178,12 +27191,12 @@ "isHttpMetadata": false }, { - "$id": "2523", + "$id": "2524", "kind": "property", "name": "file_search", "serializedName": "file_search", "type": { - "$id": "2524", + "$id": "2525", "kind": "model", "name": "ToolResourcesFileSearch", "namespace": "OpenAI", @@ -27192,13 +27205,13 @@ "decorators": [], "properties": [ { - "$id": "2525", + "$id": "2526", "kind": "property", "name": "vector_store_ids", "serializedName": "vector_store_ids", "doc": "The [vector store](/docs/api-reference/vector-stores/object) attached to this assistant.\nThere can be a maximum of 1 vector store attached to the assistant.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": true, "readOnly": false, @@ -27214,17 +27227,17 @@ "isHttpMetadata": false }, { - "$id": "2526", + "$id": "2527", "kind": "property", "name": "vector_stores", "serializedName": "vector_stores", "doc": "A helper to create a [vector store](/docs/api-reference/vector-stores/object) with\nfile_ids and attach it to this assistant. There can be a maximum of 1 vector store\nattached to the assistant.", "type": { - "$id": "2527", + "$id": "2528", "kind": "array", "name": "Array1", "valueType": { - "$id": "2528", + "$id": "2529", "kind": "model", "name": "ToolResourcesFileSearchVectorStore", "namespace": "OpenAI", @@ -27233,13 +27246,13 @@ "decorators": [], "properties": [ { - "$id": "2529", + "$id": "2530", "kind": "property", "name": "file_ids", "serializedName": "file_ids", "doc": "A list of [file](/docs/api-reference/files) IDs to add to the vector store. There can be\na maximum of 10000 files in a vector store.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": true, "readOnly": false, @@ -27255,13 +27268,13 @@ "isHttpMetadata": false }, { - "$id": "2530", + "$id": "2531", "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": "2531", + "$id": "2532", "kind": "model", "name": "ChunkingStrategyRequestParam", "namespace": "OpenAI", @@ -27270,7 +27283,7 @@ "doc": "The chunking strategy used to chunk the file(s). If not set, will use the `auto` strategy.", "decorators": [], "discriminatorProperty": { - "$id": "2532", + "$id": "2533", "kind": "property", "name": "type", "serializedName": "type", @@ -27293,12 +27306,12 @@ }, "properties": [ { - "$ref": "2532" + "$ref": "2533" } ], "discriminatedSubtypes": { "auto": { - "$id": "2533", + "$id": "2534", "kind": "model", "name": "AutoChunkingStrategyRequestParam", "namespace": "OpenAI", @@ -27308,17 +27321,17 @@ "discriminatorValue": "auto", "decorators": [], "baseModel": { - "$ref": "2531" + "$ref": "2532" }, "properties": [ { - "$id": "2534", + "$id": "2535", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `auto`.", "type": { - "$id": "2535", + "$id": "2536", "kind": "enumvalue", "name": "auto", "value": "auto", @@ -27326,14 +27339,14 @@ "$ref": "60" }, "enumType": { - "$id": "2536", + "$id": "2537", "kind": "enum", "decorators": [], "name": "ChunkingStrategyRequestParamType", "isGeneratedName": true, "namespace": "OpenAI", "valueType": { - "$id": "2537", + "$id": "2538", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -27342,29 +27355,29 @@ }, "values": [ { - "$id": "2538", + "$id": "2539", "kind": "enumvalue", "decorators": [], "name": "auto", "value": "auto", "valueType": { - "$ref": "2537" + "$ref": "2538" }, "enumType": { - "$ref": "2536" + "$ref": "2537" } }, { - "$id": "2539", + "$id": "2540", "kind": "enumvalue", "decorators": [], "name": "static", "value": "static", "valueType": { - "$ref": "2537" + "$ref": "2538" }, "enumType": { - "$ref": "2536" + "$ref": "2537" } } ], @@ -27395,7 +27408,7 @@ ] }, "static": { - "$id": "2540", + "$id": "2541", "kind": "model", "name": "StaticChunkingStrategyRequestParam", "namespace": "OpenAI", @@ -27405,17 +27418,17 @@ "discriminatorValue": "static", "decorators": [], "baseModel": { - "$ref": "2531" + "$ref": "2532" }, "properties": [ { - "$id": "2541", + "$id": "2542", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `static`.", "type": { - "$id": "2542", + "$id": "2543", "kind": "enumvalue", "name": "static", "value": "static", @@ -27423,7 +27436,7 @@ "$ref": "60" }, "enumType": { - "$ref": "2536" + "$ref": "2537" }, "decorators": [] }, @@ -27441,12 +27454,12 @@ "isHttpMetadata": false }, { - "$id": "2543", + "$id": "2544", "kind": "property", "name": "static", "serializedName": "static", "type": { - "$id": "2544", + "$id": "2545", "kind": "model", "name": "StaticChunkingStrategy", "namespace": "OpenAI", @@ -27455,13 +27468,13 @@ "decorators": [], "properties": [ { - "$id": "2545", + "$id": "2546", "kind": "property", "name": "max_chunk_size_tokens", "serializedName": "max_chunk_size_tokens", "doc": "The maximum number of tokens in each chunk. The default value is `800`. The minimum value is `100` and the maximum value is `4096`.", "type": { - "$id": "2546", + "$id": "2547", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -27481,13 +27494,13 @@ "isHttpMetadata": false }, { - "$id": "2547", + "$id": "2548", "kind": "property", "name": "chunk_overlap_tokens", "serializedName": "chunk_overlap_tokens", "doc": "The number of tokens that overlap between chunks. The default value is `400`.\n\nNote that the overlap must not exceed half of `max_chunk_size_tokens`.", "type": { - "$id": "2548", + "$id": "2549", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -27539,13 +27552,13 @@ "isHttpMetadata": false }, { - "$id": "2549", + "$id": "2550", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": true, "readOnly": false, @@ -27611,13 +27624,13 @@ "isHttpMetadata": false }, { - "$id": "2550", + "$id": "2551", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": true, "readOnly": false, @@ -27633,16 +27646,16 @@ "isHttpMetadata": false }, { - "$id": "2551", + "$id": "2552", "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": "2552", + "$id": "2553", "kind": "nullable", "type": { - "$id": "2553", + "$id": "2554", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -27664,16 +27677,16 @@ "isHttpMetadata": false }, { - "$id": "2554", + "$id": "2555", "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": "2555", + "$id": "2556", "kind": "nullable", "type": { - "$id": "2556", + "$id": "2557", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -27695,15 +27708,15 @@ "isHttpMetadata": false }, { - "$id": "2557", + "$id": "2558", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "2558", + "$id": "2559", "kind": "nullable", "type": { - "$ref": "2455" + "$ref": "2456" }, "namespace": "OpenAI" }, @@ -27723,31 +27736,31 @@ ] }, { - "$ref": "2519" + "$ref": "2520" }, { - "$ref": "2521" + "$ref": "2522" }, { - "$ref": "2524" + "$ref": "2525" }, { - "$ref": "2528" + "$ref": "2529" }, { - "$ref": "2531" + "$ref": "2532" }, { - "$ref": "2533" + "$ref": "2534" }, { - "$ref": "2540" + "$ref": "2541" }, { - "$ref": "2544" + "$ref": "2545" }, { - "$id": "2559", + "$id": "2560", "kind": "model", "name": "ModifyAssistantRequest", "namespace": "OpenAI", @@ -27756,7 +27769,7 @@ "decorators": [], "properties": [ { - "$id": "2560", + "$id": "2561", "kind": "property", "name": "model", "serializedName": "model", @@ -27778,12 +27791,12 @@ "isHttpMetadata": false }, { - "$id": "2561", + "$id": "2562", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", "type": { - "$id": "2562", + "$id": "2563", "kind": "nullable", "type": { "$ref": "53" @@ -27804,16 +27817,16 @@ "isHttpMetadata": false }, { - "$id": "2563", + "$id": "2564", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the assistant. The maximum length is 256 characters.", "type": { - "$id": "2564", + "$id": "2565", "kind": "nullable", "type": { - "$id": "2565", + "$id": "2566", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -27835,16 +27848,16 @@ "isHttpMetadata": false }, { - "$id": "2566", + "$id": "2567", "kind": "property", "name": "description", "serializedName": "description", "doc": "The description of the assistant. The maximum length is 512 characters.", "type": { - "$id": "2567", + "$id": "2568", "kind": "nullable", "type": { - "$id": "2568", + "$id": "2569", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -27866,16 +27879,16 @@ "isHttpMetadata": false }, { - "$id": "2569", + "$id": "2570", "kind": "property", "name": "instructions", "serializedName": "instructions", "doc": "The system instructions that the assistant uses. The maximum length is 256,000 characters.", "type": { - "$id": "2570", + "$id": "2571", "kind": "nullable", "type": { - "$id": "2571", + "$id": "2572", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -27897,13 +27910,13 @@ "isHttpMetadata": false }, { - "$id": "2572", + "$id": "2573", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "A list of tool enabled on the assistant. There can be a maximum of 128 tools per assistant. Tools can be of types `code_interpreter`, `file_search`, or `function`.", "type": { - "$ref": "2394" + "$ref": "2395" }, "optional": true, "readOnly": false, @@ -27919,16 +27932,16 @@ "isHttpMetadata": false }, { - "$id": "2573", + "$id": "2574", "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": "2574", + "$id": "2575", "kind": "nullable", "type": { - "$id": "2575", + "$id": "2576", "kind": "model", "name": "ModifyAssistantRequestToolResources1", "namespace": "OpenAI", @@ -27937,12 +27950,12 @@ "decorators": [], "properties": [ { - "$id": "2576", + "$id": "2577", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "2577", + "$id": "2578", "kind": "model", "name": "ModifyAssistantRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -27951,13 +27964,13 @@ "decorators": [], "properties": [ { - "$id": "2578", + "$id": "2579", "kind": "property", "name": "file_ids", "serializedName": "file_ids", "doc": "Overrides the list of [file](/docs/api-reference/files) IDs made available to the `code_interpreter` tool. There can be a maximum of 20 files associated with the tool.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": true, "readOnly": false, @@ -27988,12 +28001,12 @@ "isHttpMetadata": false }, { - "$id": "2579", + "$id": "2580", "kind": "property", "name": "file_search", "serializedName": "file_search", "type": { - "$ref": "2440" + "$ref": "2441" }, "optional": true, "readOnly": false, @@ -28026,13 +28039,13 @@ "isHttpMetadata": false }, { - "$id": "2580", + "$id": "2581", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": true, "readOnly": false, @@ -28048,16 +28061,16 @@ "isHttpMetadata": false }, { - "$id": "2581", + "$id": "2582", "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": "2582", + "$id": "2583", "kind": "nullable", "type": { - "$id": "2583", + "$id": "2584", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -28079,16 +28092,16 @@ "isHttpMetadata": false }, { - "$id": "2584", + "$id": "2585", "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": "2585", + "$id": "2586", "kind": "nullable", "type": { - "$id": "2586", + "$id": "2587", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -28110,15 +28123,15 @@ "isHttpMetadata": false }, { - "$id": "2587", + "$id": "2588", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "2588", + "$id": "2589", "kind": "nullable", "type": { - "$ref": "2455" + "$ref": "2456" }, "namespace": "OpenAI" }, @@ -28138,13 +28151,13 @@ ] }, { - "$ref": "2575" + "$ref": "2576" }, { - "$ref": "2577" + "$ref": "2578" }, { - "$id": "2589", + "$id": "2590", "kind": "model", "name": "DeleteAssistantResponse", "namespace": "OpenAI", @@ -28153,12 +28166,12 @@ "decorators": [], "properties": [ { - "$id": "2590", + "$id": "2591", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "2591", + "$id": "2592", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28178,12 +28191,12 @@ "isHttpMetadata": false }, { - "$id": "2592", + "$id": "2593", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "2593", + "$id": "2594", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -28203,12 +28216,12 @@ "isHttpMetadata": false }, { - "$id": "2594", + "$id": "2595", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1525" + "$ref": "1526" }, "optional": false, "readOnly": false, @@ -28226,7 +28239,7 @@ ] }, { - "$id": "2595", + "$id": "2596", "kind": "model", "name": "CreateSpeechRequest", "namespace": "OpenAI", @@ -28235,7 +28248,7 @@ "decorators": [], "properties": [ { - "$id": "2596", + "$id": "2597", "kind": "property", "name": "model", "serializedName": "model", @@ -28257,13 +28270,13 @@ "isHttpMetadata": false }, { - "$id": "2597", + "$id": "2598", "kind": "property", "name": "input", "serializedName": "input", "doc": "The text to generate audio for. The maximum length is 4096 characters.", "type": { - "$id": "2598", + "$id": "2599", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28283,13 +28296,13 @@ "isHttpMetadata": false }, { - "$id": "2599", + "$id": "2600", "kind": "property", "name": "instructions", "serializedName": "instructions", "doc": "Control the voice of your generated audio with additional instructions. Does not work with `tts-1` or `tts-1-hd`.", "type": { - "$id": "2600", + "$id": "2601", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28309,7 +28322,7 @@ "isHttpMetadata": false }, { - "$id": "2601", + "$id": "2602", "kind": "property", "name": "voice", "serializedName": "voice", @@ -28331,7 +28344,7 @@ "isHttpMetadata": false }, { - "$id": "2602", + "$id": "2603", "kind": "property", "name": "response_format", "serializedName": "response_format", @@ -28353,13 +28366,13 @@ "isHttpMetadata": false }, { - "$id": "2603", + "$id": "2604", "kind": "property", "name": "speed", "serializedName": "speed", "doc": "The speed of the generated audio. Select a value from `0.25` to `4.0`. `1.0` is the default. Does not work with `gpt-4o-mini-tts`.", "type": { - "$id": "2604", + "$id": "2605", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -28381,7 +28394,7 @@ ] }, { - "$id": "2605", + "$id": "2606", "kind": "model", "name": "CreateTranscriptionRequest", "namespace": "OpenAI", @@ -28390,13 +28403,13 @@ "decorators": [], "properties": [ { - "$id": "2606", + "$id": "2607", "kind": "property", "name": "file", "serializedName": "file", "doc": "The audio file object (not file name) to transcribe, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm.", "type": { - "$id": "2607", + "$id": "2608", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -28423,7 +28436,7 @@ "isHttpMetadata": false }, { - "$id": "2608", + "$id": "2609", "kind": "property", "name": "model", "serializedName": "model", @@ -28451,13 +28464,13 @@ "isHttpMetadata": false }, { - "$id": "2609", + "$id": "2610", "kind": "property", "name": "language", "serializedName": "language", "doc": "The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) format will improve accuracy and latency.", "type": { - "$id": "2610", + "$id": "2611", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28483,13 +28496,13 @@ "isHttpMetadata": false }, { - "$id": "2611", + "$id": "2612", "kind": "property", "name": "prompt", "serializedName": "prompt", "doc": "An optional text to guide the model's style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text#prompting) should match the audio language.", "type": { - "$id": "2612", + "$id": "2613", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28515,7 +28528,7 @@ "isHttpMetadata": false }, { - "$id": "2613", + "$id": "2614", "kind": "property", "name": "response_format", "serializedName": "response_format", @@ -28542,18 +28555,18 @@ "isHttpMetadata": false }, { - "$id": "2614", + "$id": "2615", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit.", "type": { - "$id": "2615", + "$id": "2616", "kind": "float32", "name": "ZeroOrOneFloat", "crossLanguageDefinitionId": "OpenAI.ZeroOrOneFloat", "baseType": { - "$id": "2616", + "$id": "2617", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -28581,13 +28594,13 @@ "isHttpMetadata": false }, { - "$id": "2617", + "$id": "2618", "kind": "property", "name": "include[]", "serializedName": "include[]", "doc": "Additional information to include in the transcription response.\n`logprobs` will return the log probabilities of the tokens in the\nresponse to understand the model's confidence in the transcription.\n`logprobs` only works with response_format set to `json` and only with\nthe models `gpt-4o-transcribe` and `gpt-4o-mini-transcribe`.", "type": { - "$id": "2618", + "$id": "2619", "kind": "array", "name": "ArrayTranscriptionInclude", "valueType": { @@ -28616,13 +28629,13 @@ "isHttpMetadata": false }, { - "$id": "2619", + "$id": "2620", "kind": "property", "name": "timestamp_granularities[]", "serializedName": "timestamp_granularities[]", "doc": "The timestamp granularities to populate for this transcription. `response_format` must be set `verbose_json` to use timestamp granularities. Either or both of these options are supported: `word`, or `segment`. Note: There is no additional latency for segment timestamps, but generating word timestamps incurs additional latency.", "type": { - "$id": "2620", + "$id": "2621", "kind": "array", "name": "Array2", "valueType": { @@ -28651,16 +28664,16 @@ "isHttpMetadata": false }, { - "$id": "2621", + "$id": "2622", "kind": "property", "name": "stream", "serializedName": "stream", "doc": "If set to true, the model response data will be streamed to the client\nas it is generated using [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format).\nSee the [Streaming section of the Speech-to-Text guide](/docs/guides/speech-to-text?lang=curl#streaming-transcriptions)\nfor more information.\n\nNote: Streaming is not supported for the `whisper-1` model and will be ignored.", "type": { - "$id": "2622", + "$id": "2623", "kind": "nullable", "type": { - "$id": "2623", + "$id": "2624", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -28688,16 +28701,16 @@ "isHttpMetadata": false }, { - "$id": "2624", + "$id": "2625", "kind": "property", "name": "chunking_strategy", "serializedName": "chunking_strategy", "doc": "Controls how the audio is cut into chunks. When set to `\"auto\"`, the server first normalizes loudness and then uses voice activity detection (VAD) to choose boundaries. `server_vad` object can be provided to tweak VAD detection parameters manually. If unset, the audio is transcribed as a single block.", "type": { - "$id": "2625", + "$id": "2626", "kind": "nullable", "type": { - "$id": "2626", + "$id": "2627", "kind": "model", "name": "VadConfig", "namespace": "OpenAI", @@ -28706,12 +28719,12 @@ "decorators": [], "properties": [ { - "$id": "2627", + "$id": "2628", "kind": "property", "name": "type", "doc": "Must be set to `server_vad` to enable manual chunking using server side VAD.", "type": { - "$ref": "1527" + "$ref": "1528" }, "optional": false, "readOnly": false, @@ -28723,12 +28736,12 @@ "isHttpMetadata": false }, { - "$id": "2628", + "$id": "2629", "kind": "property", "name": "prefix_padding_ms", "doc": "Amount of audio to include before the VAD detected speech (in\nmilliseconds).", "type": { - "$id": "2629", + "$id": "2630", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -28744,12 +28757,12 @@ "isHttpMetadata": false }, { - "$id": "2630", + "$id": "2631", "kind": "property", "name": "silence_duration_ms", "doc": "Duration of silence to detect speech stop (in milliseconds).\nWith shorter values the model will respond more quickly,\nbut may jump in on short pauses from the user.", "type": { - "$id": "2631", + "$id": "2632", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -28765,12 +28778,12 @@ "isHttpMetadata": false }, { - "$id": "2632", + "$id": "2633", "kind": "property", "name": "threshold", "doc": "Sensitivity threshold (0.0 to 1.0) for voice activity detection. A\nhigher threshold will require louder audio to activate the model, and\nthus might perform better in noisy environments.", "type": { - "$id": "2633", + "$id": "2634", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -28811,10 +28824,10 @@ ] }, { - "$ref": "2626" + "$ref": "2627" }, { - "$id": "2634", + "$id": "2635", "kind": "model", "name": "CreateTranscriptionResponseVerboseJson", "namespace": "OpenAI", @@ -28824,13 +28837,13 @@ "decorators": [], "properties": [ { - "$id": "2635", + "$id": "2636", "kind": "property", "name": "task", "serializedName": "task", "doc": "The task label.", "type": { - "$ref": "1529" + "$ref": "1530" }, "optional": false, "readOnly": false, @@ -28846,13 +28859,13 @@ "isHttpMetadata": false }, { - "$id": "2636", + "$id": "2637", "kind": "property", "name": "language", "serializedName": "language", "doc": "The language of the input audio.", "type": { - "$id": "2637", + "$id": "2638", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28872,18 +28885,18 @@ "isHttpMetadata": false }, { - "$id": "2638", + "$id": "2639", "kind": "property", "name": "duration", "serializedName": "duration", "doc": "The duration of the input audio.", "type": { - "$id": "2639", + "$id": "2640", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "2640", + "$id": "2641", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -28906,13 +28919,13 @@ "isHttpMetadata": false }, { - "$id": "2641", + "$id": "2642", "kind": "property", "name": "text", "serializedName": "text", "doc": "The transcribed text.", "type": { - "$id": "2642", + "$id": "2643", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28932,17 +28945,17 @@ "isHttpMetadata": false }, { - "$id": "2643", + "$id": "2644", "kind": "property", "name": "words", "serializedName": "words", "doc": "Extracted words and their corresponding timestamps.", "type": { - "$id": "2644", + "$id": "2645", "kind": "array", "name": "ArrayTranscriptionWord", "valueType": { - "$id": "2645", + "$id": "2646", "kind": "model", "name": "TranscriptionWord", "namespace": "OpenAI", @@ -28951,13 +28964,13 @@ "decorators": [], "properties": [ { - "$id": "2646", + "$id": "2647", "kind": "property", "name": "word", "serializedName": "word", "doc": "The text content of the word.", "type": { - "$id": "2647", + "$id": "2648", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28977,18 +28990,18 @@ "isHttpMetadata": false }, { - "$id": "2648", + "$id": "2649", "kind": "property", "name": "start", "serializedName": "start", "doc": "Start time of the word in seconds.", "type": { - "$id": "2649", + "$id": "2650", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "2650", + "$id": "2651", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -29011,18 +29024,18 @@ "isHttpMetadata": false }, { - "$id": "2651", + "$id": "2652", "kind": "property", "name": "end", "serializedName": "end", "doc": "End time of the word in seconds.", "type": { - "$id": "2652", + "$id": "2653", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "2653", + "$id": "2654", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -29063,17 +29076,17 @@ "isHttpMetadata": false }, { - "$id": "2654", + "$id": "2655", "kind": "property", "name": "segments", "serializedName": "segments", "doc": "Segments of the transcribed text and their corresponding details.", "type": { - "$id": "2655", + "$id": "2656", "kind": "array", "name": "ArrayTranscriptionSegment", "valueType": { - "$id": "2656", + "$id": "2657", "kind": "model", "name": "TranscriptionSegment", "namespace": "OpenAI", @@ -29082,13 +29095,13 @@ "decorators": [], "properties": [ { - "$id": "2657", + "$id": "2658", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier of the segment.", "type": { - "$id": "2658", + "$id": "2659", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -29108,13 +29121,13 @@ "isHttpMetadata": false }, { - "$id": "2659", + "$id": "2660", "kind": "property", "name": "seek", "serializedName": "seek", "doc": "Seek offset of the segment.", "type": { - "$id": "2660", + "$id": "2661", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -29134,18 +29147,18 @@ "isHttpMetadata": false }, { - "$id": "2661", + "$id": "2662", "kind": "property", "name": "start", "serializedName": "start", "doc": "Start time of the segment in seconds.", "type": { - "$id": "2662", + "$id": "2663", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "2663", + "$id": "2664", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -29168,18 +29181,18 @@ "isHttpMetadata": false }, { - "$id": "2664", + "$id": "2665", "kind": "property", "name": "end", "serializedName": "end", "doc": "End time of the segment in seconds.", "type": { - "$id": "2665", + "$id": "2666", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "2666", + "$id": "2667", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -29202,13 +29215,13 @@ "isHttpMetadata": false }, { - "$id": "2667", + "$id": "2668", "kind": "property", "name": "text", "serializedName": "text", "doc": "Text content of the segment.", "type": { - "$id": "2668", + "$id": "2669", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29228,17 +29241,17 @@ "isHttpMetadata": false }, { - "$id": "2669", + "$id": "2670", "kind": "property", "name": "tokens", "serializedName": "tokens", "doc": "Array of token IDs for the text content.", "type": { - "$id": "2670", + "$id": "2671", "kind": "array", "name": "Array3", "valueType": { - "$id": "2671", + "$id": "2672", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -29261,13 +29274,13 @@ "isHttpMetadata": false }, { - "$id": "2672", + "$id": "2673", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Temperature parameter used for generating the segment.", "type": { - "$id": "2673", + "$id": "2674", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -29287,13 +29300,13 @@ "isHttpMetadata": false }, { - "$id": "2674", + "$id": "2675", "kind": "property", "name": "avg_logprob", "serializedName": "avg_logprob", "doc": "Average logprob of the segment. If the value is lower than -1, consider the logprobs failed.", "type": { - "$id": "2675", + "$id": "2676", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -29313,13 +29326,13 @@ "isHttpMetadata": false }, { - "$id": "2676", + "$id": "2677", "kind": "property", "name": "compression_ratio", "serializedName": "compression_ratio", "doc": "Compression ratio of the segment. If the value is greater than 2.4, consider the compression failed.", "type": { - "$id": "2677", + "$id": "2678", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -29339,13 +29352,13 @@ "isHttpMetadata": false }, { - "$id": "2678", + "$id": "2679", "kind": "property", "name": "no_speech_prob", "serializedName": "no_speech_prob", "doc": "Probability of no speech in the segment. If the value is higher than 1.0 and the `avg_logprob` is below -1, consider this segment silent.", "type": { - "$id": "2679", + "$id": "2680", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -29385,13 +29398,13 @@ ] }, { - "$ref": "2645" + "$ref": "2646" }, { - "$ref": "2656" + "$ref": "2657" }, { - "$id": "2680", + "$id": "2681", "kind": "model", "name": "CreateTranscriptionResponseJson", "namespace": "OpenAI", @@ -29401,13 +29414,13 @@ "decorators": [], "properties": [ { - "$id": "2681", + "$id": "2682", "kind": "property", "name": "text", "serializedName": "text", "doc": "The transcribed text.", "type": { - "$id": "2682", + "$id": "2683", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29427,17 +29440,17 @@ "isHttpMetadata": false }, { - "$id": "2683", + "$id": "2684", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "doc": "The log probabilities of the tokens in the transcription. Only returned with the models `gpt-4o-transcribe` and `gpt-4o-mini-transcribe` if `logprobs` is added to the `include` array.", "type": { - "$id": "2684", + "$id": "2685", "kind": "array", "name": "Array4", "valueType": { - "$id": "2685", + "$id": "2686", "kind": "model", "name": "CreateTranscriptionResponseJsonLogprob", "namespace": "OpenAI", @@ -29446,13 +29459,13 @@ "decorators": [], "properties": [ { - "$id": "2686", + "$id": "2687", "kind": "property", "name": "token", "serializedName": "token", "doc": "The token in the transcription.", "type": { - "$id": "2687", + "$id": "2688", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29472,13 +29485,13 @@ "isHttpMetadata": false }, { - "$id": "2688", + "$id": "2689", "kind": "property", "name": "logprob", "serializedName": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "2689", + "$id": "2690", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -29498,17 +29511,17 @@ "isHttpMetadata": false }, { - "$id": "2690", + "$id": "2691", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "The bytes of the token.", "type": { - "$id": "2691", + "$id": "2692", "kind": "array", "name": "Array5", "valueType": { - "$id": "2692", + "$id": "2693", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -29551,10 +29564,10 @@ ] }, { - "$ref": "2685" + "$ref": "2686" }, { - "$id": "2693", + "$id": "2694", "kind": "model", "name": "CreateTranscriptionResponseStreamEvent", "namespace": "OpenAI", @@ -29562,7 +29575,7 @@ "usage": "Output", "decorators": [], "discriminatorProperty": { - "$id": "2694", + "$id": "2695", "kind": "property", "name": "type", "type": { @@ -29579,12 +29592,12 @@ }, "properties": [ { - "$ref": "2694" + "$ref": "2695" } ], "discriminatedSubtypes": { "transcript.text.delta": { - "$id": "2695", + "$id": "2696", "kind": "model", "name": "TranscriptTextDeltaEvent", "namespace": "OpenAI", @@ -29594,16 +29607,16 @@ "discriminatorValue": "transcript.text.delta", "decorators": [], "baseModel": { - "$ref": "2693" + "$ref": "2694" }, "properties": [ { - "$id": "2696", + "$id": "2697", "kind": "property", "name": "type", "doc": "The type of the event. Always `transcript.text.delta`.", "type": { - "$id": "2697", + "$id": "2698", "kind": "enumvalue", "name": "transcript_text_delta", "value": "transcript.text.delta", @@ -29611,14 +29624,14 @@ "$ref": "109" }, "enumType": { - "$id": "2698", + "$id": "2699", "kind": "enum", "decorators": [], "name": "CreateTranscriptionResponseStreamEventType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "2699", + "$id": "2700", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -29627,29 +29640,29 @@ }, "values": [ { - "$id": "2700", + "$id": "2701", "kind": "enumvalue", "decorators": [], "name": "transcript_text_delta", "value": "transcript.text.delta", "valueType": { - "$ref": "2699" + "$ref": "2700" }, "enumType": { - "$ref": "2698" + "$ref": "2699" } }, { - "$id": "2701", + "$id": "2702", "kind": "enumvalue", "decorators": [], "name": "transcript_text_done", "value": "transcript.text.done", "valueType": { - "$ref": "2699" + "$ref": "2700" }, "enumType": { - "$ref": "2698" + "$ref": "2699" } } ], @@ -29674,12 +29687,12 @@ "isHttpMetadata": false }, { - "$id": "2702", + "$id": "2703", "kind": "property", "name": "delta", "doc": "The text delta that was additionally transcribed.", "type": { - "$id": "2703", + "$id": "2704", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29695,16 +29708,16 @@ "isHttpMetadata": false }, { - "$id": "2704", + "$id": "2705", "kind": "property", "name": "logprobs", "doc": "The log probabilities of the delta. Only included if you [create a transcription](/docs/api-reference/audio/create-transcription) with the `include[]` parameter set to `logprobs`.", "type": { - "$id": "2705", + "$id": "2706", "kind": "array", "name": "Array6", "valueType": { - "$id": "2706", + "$id": "2707", "kind": "model", "name": "TranscriptTextDeltaEventLogprob", "namespace": "OpenAI", @@ -29713,12 +29726,12 @@ "decorators": [], "properties": [ { - "$id": "2707", + "$id": "2708", "kind": "property", "name": "token", "doc": "The token that was used to generate the log probability.", "type": { - "$id": "2708", + "$id": "2709", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29734,12 +29747,12 @@ "isHttpMetadata": false }, { - "$id": "2709", + "$id": "2710", "kind": "property", "name": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "2710", + "$id": "2711", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -29755,12 +29768,12 @@ "isHttpMetadata": false }, { - "$id": "2711", + "$id": "2712", "kind": "property", "name": "bytes", "doc": "The bytes that were used to generate the log probability.", "type": { - "$ref": "2670" + "$ref": "2671" }, "optional": true, "readOnly": false, @@ -29788,7 +29801,7 @@ ] }, "transcript.text.done": { - "$id": "2712", + "$id": "2713", "kind": "model", "name": "TranscriptTextDoneEvent", "namespace": "OpenAI", @@ -29798,16 +29811,16 @@ "discriminatorValue": "transcript.text.done", "decorators": [], "baseModel": { - "$ref": "2693" + "$ref": "2694" }, "properties": [ { - "$id": "2713", + "$id": "2714", "kind": "property", "name": "type", "doc": "The type of the event. Always `transcript.text.done`.", "type": { - "$id": "2714", + "$id": "2715", "kind": "enumvalue", "name": "transcript_text_done", "value": "transcript.text.done", @@ -29815,7 +29828,7 @@ "$ref": "109" }, "enumType": { - "$ref": "2698" + "$ref": "2699" }, "decorators": [] }, @@ -29829,12 +29842,12 @@ "isHttpMetadata": false }, { - "$id": "2715", + "$id": "2716", "kind": "property", "name": "text", "doc": "The text that was transcribed.", "type": { - "$id": "2716", + "$id": "2717", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29850,16 +29863,16 @@ "isHttpMetadata": false }, { - "$id": "2717", + "$id": "2718", "kind": "property", "name": "logprobs", "doc": "The log probabilities of the individual tokens in the transcription. Only included if you [create a transcription](/docs/api-reference/audio/create-transcription) with the `include[]` parameter set to `logprobs`.", "type": { - "$id": "2718", + "$id": "2719", "kind": "array", "name": "Array7", "valueType": { - "$id": "2719", + "$id": "2720", "kind": "model", "name": "TranscriptTextDoneEventLogprob", "namespace": "OpenAI", @@ -29868,12 +29881,12 @@ "decorators": [], "properties": [ { - "$id": "2720", + "$id": "2721", "kind": "property", "name": "token", "doc": "The token that was used to generate the log probability.", "type": { - "$id": "2721", + "$id": "2722", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29889,12 +29902,12 @@ "isHttpMetadata": false }, { - "$id": "2722", + "$id": "2723", "kind": "property", "name": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "2723", + "$id": "2724", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -29910,12 +29923,12 @@ "isHttpMetadata": false }, { - "$id": "2724", + "$id": "2725", "kind": "property", "name": "bytes", "doc": "The bytes that were used to generate the log probability.", "type": { - "$ref": "2670" + "$ref": "2671" }, "optional": true, "readOnly": false, @@ -29945,19 +29958,19 @@ } }, { - "$ref": "2695" + "$ref": "2696" }, { - "$ref": "2706" + "$ref": "2707" }, { - "$ref": "2712" + "$ref": "2713" }, { - "$ref": "2719" + "$ref": "2720" }, { - "$id": "2725", + "$id": "2726", "kind": "model", "name": "CreateTranslationRequest", "namespace": "OpenAI", @@ -29966,13 +29979,13 @@ "decorators": [], "properties": [ { - "$id": "2726", + "$id": "2727", "kind": "property", "name": "file", "serializedName": "file", "doc": "The audio file object (not file name) translate, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm.", "type": { - "$id": "2727", + "$id": "2728", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -29999,7 +30012,7 @@ "isHttpMetadata": false }, { - "$id": "2728", + "$id": "2729", "kind": "property", "name": "model", "serializedName": "model", @@ -30027,13 +30040,13 @@ "isHttpMetadata": false }, { - "$id": "2729", + "$id": "2730", "kind": "property", "name": "prompt", "serializedName": "prompt", "doc": "An optional text to guide the model's style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text#prompting) should be in English.", "type": { - "$id": "2730", + "$id": "2731", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30059,7 +30072,7 @@ "isHttpMetadata": false }, { - "$id": "2731", + "$id": "2732", "kind": "property", "name": "response_format", "serializedName": "response_format", @@ -30087,18 +30100,18 @@ "isHttpMetadata": false }, { - "$id": "2732", + "$id": "2733", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit.", "type": { - "$id": "2733", + "$id": "2734", "kind": "float32", "name": "ZeroOrOneFloat", "crossLanguageDefinitionId": "OpenAI.ZeroOrOneFloat", "baseType": { - "$id": "2734", + "$id": "2735", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -30128,7 +30141,7 @@ ] }, { - "$id": "2735", + "$id": "2736", "kind": "model", "name": "CreateTranslationResponseVerboseJson", "namespace": "OpenAI", @@ -30137,13 +30150,13 @@ "decorators": [], "properties": [ { - "$id": "2736", + "$id": "2737", "kind": "property", "name": "task", "serializedName": "task", "doc": "The task label.", "type": { - "$ref": "1531" + "$ref": "1532" }, "optional": false, "readOnly": false, @@ -30159,13 +30172,13 @@ "isHttpMetadata": false }, { - "$id": "2737", + "$id": "2738", "kind": "property", "name": "language", "serializedName": "language", "doc": "The language of the output translation (always `english`).", "type": { - "$id": "2738", + "$id": "2739", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30185,18 +30198,18 @@ "isHttpMetadata": false }, { - "$id": "2739", + "$id": "2740", "kind": "property", "name": "duration", "serializedName": "duration", "doc": "The duration of the input audio.", "type": { - "$id": "2740", + "$id": "2741", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "2741", + "$id": "2742", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -30219,13 +30232,13 @@ "isHttpMetadata": false }, { - "$id": "2742", + "$id": "2743", "kind": "property", "name": "text", "serializedName": "text", "doc": "The translated text.", "type": { - "$id": "2743", + "$id": "2744", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30245,13 +30258,13 @@ "isHttpMetadata": false }, { - "$id": "2744", + "$id": "2745", "kind": "property", "name": "segments", "serializedName": "segments", "doc": "Segments of the translated text and their corresponding details.", "type": { - "$ref": "2655" + "$ref": "2656" }, "optional": true, "readOnly": true, @@ -30269,7 +30282,7 @@ ] }, { - "$id": "2745", + "$id": "2746", "kind": "model", "name": "CreateTranslationResponseJson", "namespace": "OpenAI", @@ -30278,12 +30291,12 @@ "decorators": [], "properties": [ { - "$id": "2746", + "$id": "2747", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "2747", + "$id": "2748", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30305,7 +30318,7 @@ ] }, { - "$id": "2748", + "$id": "2749", "kind": "model", "name": "CreateBatchRequest", "namespace": "", @@ -30314,13 +30327,13 @@ "decorators": [], "properties": [ { - "$id": "2749", + "$id": "2750", "kind": "property", "name": "input_file_id", "serializedName": "input_file_id", "doc": "The ID of an uploaded file that contains requests for the new batch.\n\nSee [upload file](/docs/api-reference/files/create) for how to upload a file.\n\nYour input file must be formatted as a [JSONL file](/docs/api-reference/batch/requestInput),\nand must be uploaded with the purpose `batch`.", "type": { - "$id": "2750", + "$id": "2751", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30340,7 +30353,7 @@ "isHttpMetadata": false }, { - "$id": "2751", + "$id": "2752", "kind": "property", "name": "endpoint", "serializedName": "endpoint", @@ -30362,13 +30375,13 @@ "isHttpMetadata": false }, { - "$id": "2752", + "$id": "2753", "kind": "property", "name": "completion_window", "serializedName": "completion_window", "doc": "The time frame within which the batch should be processed. Currently only `24h` is supported.", "type": { - "$ref": "1533" + "$ref": "1534" }, "optional": false, "readOnly": false, @@ -30384,13 +30397,13 @@ "isHttpMetadata": false }, { - "$id": "2753", + "$id": "2754", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": true, "readOnly": false, @@ -30408,7 +30421,7 @@ ] }, { - "$id": "2754", + "$id": "2755", "kind": "model", "name": "Batch", "namespace": "OpenAI", @@ -30417,12 +30430,12 @@ "decorators": [], "properties": [ { - "$id": "2755", + "$id": "2756", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "2756", + "$id": "2757", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30442,13 +30455,13 @@ "isHttpMetadata": false }, { - "$id": "2757", + "$id": "2758", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `batch`.", "type": { - "$ref": "1535" + "$ref": "1536" }, "optional": false, "readOnly": false, @@ -30464,13 +30477,13 @@ "isHttpMetadata": false }, { - "$id": "2758", + "$id": "2759", "kind": "property", "name": "endpoint", "serializedName": "endpoint", "doc": "The OpenAI API endpoint used by the batch.", "type": { - "$id": "2759", + "$id": "2760", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30490,12 +30503,12 @@ "isHttpMetadata": false }, { - "$id": "2760", + "$id": "2761", "kind": "property", "name": "errors", "serializedName": "errors", "type": { - "$id": "2761", + "$id": "2762", "kind": "model", "name": "BatchErrors", "namespace": "OpenAI", @@ -30504,7 +30517,7 @@ "decorators": [], "properties": [ { - "$id": "2762", + "$id": "2763", "kind": "property", "name": "object", "serializedName": "object", @@ -30526,16 +30539,16 @@ "isHttpMetadata": false }, { - "$id": "2763", + "$id": "2764", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "2764", + "$id": "2765", "kind": "array", "name": "Array8", "valueType": { - "$id": "2765", + "$id": "2766", "kind": "model", "name": "BatchErrorsDatum", "namespace": "OpenAI", @@ -30544,13 +30557,13 @@ "decorators": [], "properties": [ { - "$id": "2766", + "$id": "2767", "kind": "property", "name": "code", "serializedName": "code", "doc": "An error code identifying the error type.", "type": { - "$id": "2767", + "$id": "2768", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30570,13 +30583,13 @@ "isHttpMetadata": false }, { - "$id": "2768", + "$id": "2769", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable message providing more details about the error.", "type": { - "$id": "2769", + "$id": "2770", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30596,16 +30609,16 @@ "isHttpMetadata": false }, { - "$id": "2770", + "$id": "2771", "kind": "property", "name": "param", "serializedName": "param", "doc": "The name of the parameter that caused the error, if applicable.", "type": { - "$id": "2771", + "$id": "2772", "kind": "nullable", "type": { - "$id": "2772", + "$id": "2773", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30627,16 +30640,16 @@ "isHttpMetadata": false }, { - "$id": "2773", + "$id": "2774", "kind": "property", "name": "line", "serializedName": "line", "doc": "The line number of the input file where the error occurred, if applicable.", "type": { - "$id": "2774", + "$id": "2775", "kind": "nullable", "type": { - "$id": "2775", + "$id": "2776", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -30691,13 +30704,13 @@ "isHttpMetadata": false }, { - "$id": "2776", + "$id": "2777", "kind": "property", "name": "input_file_id", "serializedName": "input_file_id", "doc": "The ID of the input file for the batch.", "type": { - "$id": "2777", + "$id": "2778", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30717,13 +30730,13 @@ "isHttpMetadata": false }, { - "$id": "2778", + "$id": "2779", "kind": "property", "name": "completion_window", "serializedName": "completion_window", "doc": "The time frame within which the batch should be processed.", "type": { - "$id": "2779", + "$id": "2780", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30743,7 +30756,7 @@ "isHttpMetadata": false }, { - "$id": "2780", + "$id": "2781", "kind": "property", "name": "status", "serializedName": "status", @@ -30765,13 +30778,13 @@ "isHttpMetadata": false }, { - "$id": "2781", + "$id": "2782", "kind": "property", "name": "output_file_id", "serializedName": "output_file_id", "doc": "The ID of the file containing the outputs of successfully executed requests.", "type": { - "$id": "2782", + "$id": "2783", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30791,13 +30804,13 @@ "isHttpMetadata": false }, { - "$id": "2783", + "$id": "2784", "kind": "property", "name": "error_file_id", "serializedName": "error_file_id", "doc": "The ID of the file containing the outputs of requests with errors.", "type": { - "$id": "2784", + "$id": "2785", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30817,18 +30830,18 @@ "isHttpMetadata": false }, { - "$id": "2785", + "$id": "2786", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the batch was created.", "type": { - "$id": "2786", + "$id": "2787", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2787", + "$id": "2788", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -30851,18 +30864,18 @@ "isHttpMetadata": false }, { - "$id": "2788", + "$id": "2789", "kind": "property", "name": "in_progress_at", "serializedName": "in_progress_at", "doc": "The Unix timestamp (in seconds) for when the batch started processing.", "type": { - "$id": "2789", + "$id": "2790", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2790", + "$id": "2791", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -30885,18 +30898,18 @@ "isHttpMetadata": false }, { - "$id": "2791", + "$id": "2792", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the batch will expire.", "type": { - "$id": "2792", + "$id": "2793", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2793", + "$id": "2794", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -30919,18 +30932,18 @@ "isHttpMetadata": false }, { - "$id": "2794", + "$id": "2795", "kind": "property", "name": "finalizing_at", "serializedName": "finalizing_at", "doc": "The Unix timestamp (in seconds) for when the batch started finalizing.", "type": { - "$id": "2795", + "$id": "2796", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2796", + "$id": "2797", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -30953,18 +30966,18 @@ "isHttpMetadata": false }, { - "$id": "2797", + "$id": "2798", "kind": "property", "name": "completed_at", "serializedName": "completed_at", "doc": "The Unix timestamp (in seconds) for when the batch was completed.", "type": { - "$id": "2798", + "$id": "2799", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2799", + "$id": "2800", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -30987,18 +31000,18 @@ "isHttpMetadata": false }, { - "$id": "2800", + "$id": "2801", "kind": "property", "name": "failed_at", "serializedName": "failed_at", "doc": "The Unix timestamp (in seconds) for when the batch failed.", "type": { - "$id": "2801", + "$id": "2802", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2802", + "$id": "2803", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31021,18 +31034,18 @@ "isHttpMetadata": false }, { - "$id": "2803", + "$id": "2804", "kind": "property", "name": "expired_at", "serializedName": "expired_at", "doc": "The Unix timestamp (in seconds) for when the batch expired.", "type": { - "$id": "2804", + "$id": "2805", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2805", + "$id": "2806", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31055,18 +31068,18 @@ "isHttpMetadata": false }, { - "$id": "2806", + "$id": "2807", "kind": "property", "name": "cancelling_at", "serializedName": "cancelling_at", "doc": "The Unix timestamp (in seconds) for when the batch started cancelling.", "type": { - "$id": "2807", + "$id": "2808", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2808", + "$id": "2809", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31089,18 +31102,18 @@ "isHttpMetadata": false }, { - "$id": "2809", + "$id": "2810", "kind": "property", "name": "cancelled_at", "serializedName": "cancelled_at", "doc": "The Unix timestamp (in seconds) for when the batch was cancelled.", "type": { - "$id": "2810", + "$id": "2811", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2811", + "$id": "2812", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31123,13 +31136,13 @@ "isHttpMetadata": false }, { - "$id": "2812", + "$id": "2813", "kind": "property", "name": "request_counts", "serializedName": "request_counts", "doc": "The request counts for different statuses within the batch.", "type": { - "$id": "2813", + "$id": "2814", "kind": "model", "name": "BatchRequestCounts", "namespace": "OpenAI", @@ -31138,13 +31151,13 @@ "decorators": [], "properties": [ { - "$id": "2814", + "$id": "2815", "kind": "property", "name": "total", "serializedName": "total", "doc": "Total number of requests in the batch.", "type": { - "$id": "2815", + "$id": "2816", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31164,13 +31177,13 @@ "isHttpMetadata": false }, { - "$id": "2816", + "$id": "2817", "kind": "property", "name": "completed", "serializedName": "completed", "doc": "Number of requests that have been completed successfully.", "type": { - "$id": "2817", + "$id": "2818", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31190,13 +31203,13 @@ "isHttpMetadata": false }, { - "$id": "2818", + "$id": "2819", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "Number of requests that have failed.", "type": { - "$id": "2819", + "$id": "2820", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31231,13 +31244,13 @@ "isHttpMetadata": false }, { - "$id": "2820", + "$id": "2821", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2443" + "$ref": "2444" }, "optional": false, "readOnly": false, @@ -31255,16 +31268,16 @@ ] }, { - "$ref": "2761" + "$ref": "2762" }, { - "$ref": "2765" + "$ref": "2766" }, { - "$ref": "2813" + "$ref": "2814" }, { - "$id": "2821", + "$id": "2822", "kind": "model", "name": "ListBatchesResponse", "namespace": "OpenAI", @@ -31273,16 +31286,16 @@ "decorators": [], "properties": [ { - "$id": "2822", + "$id": "2823", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "2823", + "$id": "2824", "kind": "array", "name": "ArrayBatch", "valueType": { - "$ref": "2754" + "$ref": "2755" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -31301,12 +31314,12 @@ "isHttpMetadata": false }, { - "$id": "2824", + "$id": "2825", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "2825", + "$id": "2826", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -31326,12 +31339,12 @@ "isHttpMetadata": false }, { - "$id": "2826", + "$id": "2827", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "2827", + "$id": "2828", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -31351,12 +31364,12 @@ "isHttpMetadata": false }, { - "$id": "2828", + "$id": "2829", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "2829", + "$id": "2830", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -31376,12 +31389,12 @@ "isHttpMetadata": false }, { - "$id": "2830", + "$id": "2831", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1537" + "$ref": "1538" }, "optional": false, "readOnly": false, @@ -31399,7 +31412,7 @@ ] }, { - "$id": "2831", + "$id": "2832", "kind": "model", "name": "ChatCompletionList", "namespace": "OpenAI", @@ -31414,13 +31427,13 @@ ], "properties": [ { - "$id": "2832", + "$id": "2833", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of this object. It is always set to \"list\".", "type": { - "$ref": "1539" + "$ref": "1540" }, "optional": false, "readOnly": false, @@ -31436,17 +31449,17 @@ "isHttpMetadata": false }, { - "$id": "2833", + "$id": "2834", "kind": "property", "name": "data", "serializedName": "data", "doc": "An array of chat completion objects.", "type": { - "$id": "2834", + "$id": "2835", "kind": "array", "name": "ArrayCreateChatCompletionResponse", "valueType": { - "$id": "2835", + "$id": "2836", "kind": "model", "name": "CreateChatCompletionResponse", "namespace": "OpenAI", @@ -31461,13 +31474,13 @@ ], "properties": [ { - "$id": "2836", + "$id": "2837", "kind": "property", "name": "id", "serializedName": "id", "doc": "A unique identifier for the chat completion.", "type": { - "$id": "2837", + "$id": "2838", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -31487,17 +31500,17 @@ "isHttpMetadata": false }, { - "$id": "2838", + "$id": "2839", "kind": "property", "name": "choices", "serializedName": "choices", "doc": "A list of chat completion choices. Can be more than one if `n` is greater than 1.", "type": { - "$id": "2839", + "$id": "2840", "kind": "array", "name": "Array9", "valueType": { - "$id": "2840", + "$id": "2841", "kind": "model", "name": "CreateChatCompletionResponseChoice", "namespace": "OpenAI", @@ -31506,7 +31519,7 @@ "decorators": [], "properties": [ { - "$id": "2841", + "$id": "2842", "kind": "property", "name": "finish_reason", "serializedName": "finish_reason", @@ -31528,13 +31541,13 @@ "isHttpMetadata": false }, { - "$id": "2842", + "$id": "2843", "kind": "property", "name": "index", "serializedName": "index", "doc": "The index of the choice in the list of choices.", "type": { - "$id": "2843", + "$id": "2844", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31554,12 +31567,12 @@ "isHttpMetadata": false }, { - "$id": "2844", + "$id": "2845", "kind": "property", "name": "message", "serializedName": "message", "type": { - "$id": "2845", + "$id": "2846", "kind": "model", "name": "ChatCompletionResponseMessage", "namespace": "OpenAI", @@ -31574,16 +31587,16 @@ ], "properties": [ { - "$id": "2846", + "$id": "2847", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the message.", "type": { - "$id": "2847", + "$id": "2848", "kind": "nullable", "type": { - "$id": "2848", + "$id": "2849", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -31605,16 +31618,16 @@ "isHttpMetadata": false }, { - "$id": "2849", + "$id": "2850", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "The refusal message generated by the model.", "type": { - "$id": "2850", + "$id": "2851", "kind": "nullable", "type": { - "$id": "2851", + "$id": "2852", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -31636,16 +31649,16 @@ "isHttpMetadata": false }, { - "$id": "2852", + "$id": "2853", "kind": "property", "name": "tool_calls", "serializedName": "tool_calls", "type": { - "$id": "2853", + "$id": "2854", "kind": "array", "name": "ChatCompletionMessageToolCalls", "valueType": { - "$id": "2854", + "$id": "2855", "kind": "model", "name": "ChatCompletionMessageToolCall", "namespace": "OpenAI", @@ -31659,13 +31672,13 @@ ], "properties": [ { - "$id": "2855", + "$id": "2856", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the tool call.", "type": { - "$id": "2856", + "$id": "2857", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -31685,28 +31698,28 @@ "isHttpMetadata": false }, { - "$id": "2857", + "$id": "2858", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the tool. Currently, only `function` is supported.", "type": { - "$id": "2858", + "$id": "2859", "kind": "enumvalue", "name": "function", "value": "function", "valueType": { - "$ref": "1417" + "$ref": "1418" }, "enumType": { - "$id": "2859", + "$id": "2860", "kind": "enum", "decorators": [], "name": "ChatToolCallKind", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "2860", + "$id": "2861", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -31715,16 +31728,16 @@ }, "values": [ { - "$id": "2861", + "$id": "2862", "kind": "enumvalue", "decorators": [], "name": "function", "value": "function", "enumType": { - "$ref": "2859" + "$ref": "2860" }, "valueType": { - "$ref": "2860" + "$ref": "2861" } } ], @@ -31753,13 +31766,13 @@ "isHttpMetadata": false }, { - "$id": "2862", + "$id": "2863", "kind": "property", "name": "function", "serializedName": "function", "doc": "The function that the model called.", "type": { - "$id": "2863", + "$id": "2864", "kind": "model", "name": "ChatCompletionMessageToolCallFunction", "namespace": "OpenAI", @@ -31768,13 +31781,13 @@ "decorators": [], "properties": [ { - "$id": "2864", + "$id": "2865", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "2865", + "$id": "2866", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -31794,13 +31807,13 @@ "isHttpMetadata": false }, { - "$id": "2866", + "$id": "2867", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "The arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.", "type": { - "$id": "2867", + "$id": "2868", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -31858,17 +31871,17 @@ "isHttpMetadata": false }, { - "$id": "2868", + "$id": "2869", "kind": "property", "name": "annotations", "serializedName": "annotations", "doc": "Annotations for the message, when applicable, as when using the\n[web search tool](/docs/guides/tools-web-search?api-mode=chat).", "type": { - "$id": "2869", + "$id": "2870", "kind": "array", "name": "Array10", "valueType": { - "$id": "2870", + "$id": "2871", "kind": "model", "name": "ChatCompletionResponseMessageAnnotation", "namespace": "OpenAI", @@ -31877,13 +31890,13 @@ "decorators": [], "properties": [ { - "$id": "2871", + "$id": "2872", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the URL citation. Always `url_citation`.", "type": { - "$ref": "1541" + "$ref": "1542" }, "optional": false, "readOnly": false, @@ -31899,13 +31912,13 @@ "isHttpMetadata": false }, { - "$id": "2872", + "$id": "2873", "kind": "property", "name": "url_citation", "serializedName": "url_citation", "doc": "A URL citation when using web search.", "type": { - "$id": "2873", + "$id": "2874", "kind": "model", "name": "ChatCompletionResponseMessageAnnotationUrlCitation", "namespace": "OpenAI", @@ -31914,13 +31927,13 @@ "decorators": [], "properties": [ { - "$id": "2874", + "$id": "2875", "kind": "property", "name": "end_index", "serializedName": "end_index", "doc": "The index of the last character of the URL citation in the message.", "type": { - "$id": "2875", + "$id": "2876", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31940,13 +31953,13 @@ "isHttpMetadata": false }, { - "$id": "2876", + "$id": "2877", "kind": "property", "name": "start_index", "serializedName": "start_index", "doc": "The index of the first character of the URL citation in the message.", "type": { - "$id": "2877", + "$id": "2878", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31966,13 +31979,13 @@ "isHttpMetadata": false }, { - "$id": "2878", + "$id": "2879", "kind": "property", "name": "url", "serializedName": "url", "doc": "The URL of the web resource.", "type": { - "$id": "2879", + "$id": "2880", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -31992,13 +32005,13 @@ "isHttpMetadata": false }, { - "$id": "2880", + "$id": "2881", "kind": "property", "name": "title", "serializedName": "title", "doc": "The title of the web resource.", "type": { - "$id": "2881", + "$id": "2882", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32051,13 +32064,13 @@ "isHttpMetadata": false }, { - "$id": "2882", + "$id": "2883", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the author of this message.", "type": { - "$id": "2883", + "$id": "2884", "kind": "enumvalue", "name": "assistant", "value": "assistant", @@ -32065,7 +32078,7 @@ "$ref": "154" }, "enumType": { - "$id": "2884", + "$id": "2885", "kind": "enum", "decorators": [], "doc": "The role of the author of a message", @@ -32073,7 +32086,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "2885", + "$id": "2886", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -32082,81 +32095,81 @@ }, "values": [ { - "$id": "2886", + "$id": "2887", "kind": "enumvalue", "decorators": [], "name": "system", "value": "system", "enumType": { - "$ref": "2884" + "$ref": "2885" }, "valueType": { - "$ref": "2885" + "$ref": "2886" } }, { - "$id": "2887", + "$id": "2888", "kind": "enumvalue", "decorators": [], "name": "developer", "value": "developer", "enumType": { - "$ref": "2884" + "$ref": "2885" }, "valueType": { - "$ref": "2885" + "$ref": "2886" } }, { - "$id": "2888", + "$id": "2889", "kind": "enumvalue", "decorators": [], "name": "user", "value": "user", "enumType": { - "$ref": "2884" + "$ref": "2885" }, "valueType": { - "$ref": "2885" + "$ref": "2886" } }, { - "$id": "2889", + "$id": "2890", "kind": "enumvalue", "decorators": [], "name": "assistant", "value": "assistant", "enumType": { - "$ref": "2884" + "$ref": "2885" }, "valueType": { - "$ref": "2885" + "$ref": "2886" } }, { - "$id": "2890", + "$id": "2891", "kind": "enumvalue", "decorators": [], "name": "tool", "value": "tool", "enumType": { - "$ref": "2884" + "$ref": "2885" }, "valueType": { - "$ref": "2885" + "$ref": "2886" } }, { - "$id": "2891", + "$id": "2892", "kind": "enumvalue", "decorators": [], "name": "function", "value": "function", "enumType": { - "$ref": "2884" + "$ref": "2885" }, "valueType": { - "$ref": "2885" + "$ref": "2886" } } ], @@ -32185,13 +32198,13 @@ "isHttpMetadata": false }, { - "$id": "2892", + "$id": "2893", "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": "2893", + "$id": "2894", "kind": "model", "name": "ChatCompletionResponseMessageFunctionCall", "namespace": "OpenAI", @@ -32200,12 +32213,12 @@ "decorators": [], "properties": [ { - "$id": "2894", + "$id": "2895", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "2895", + "$id": "2896", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32225,12 +32238,12 @@ "isHttpMetadata": false }, { - "$id": "2896", + "$id": "2897", "kind": "property", "name": "arguments", "serializedName": "arguments", "type": { - "$id": "2897", + "$id": "2898", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32265,16 +32278,16 @@ "isHttpMetadata": false }, { - "$id": "2898", + "$id": "2899", "kind": "property", "name": "audio", "serializedName": "audio", "doc": "If the audio output modality is requested, this object contains data\nabout the audio response from the model. [Learn more](/docs/guides/audio).", "type": { - "$id": "2899", + "$id": "2900", "kind": "nullable", "type": { - "$id": "2900", + "$id": "2901", "kind": "model", "name": "ChatCompletionResponseMessageAudio1", "namespace": "OpenAI", @@ -32283,13 +32296,13 @@ "decorators": [], "properties": [ { - "$id": "2901", + "$id": "2902", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for this audio response.", "type": { - "$id": "2902", + "$id": "2903", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32309,18 +32322,18 @@ "isHttpMetadata": false }, { - "$id": "2903", + "$id": "2904", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when this audio response will\nno longer be accessible on the server for use in multi-turn\nconversations.", "type": { - "$id": "2904", + "$id": "2905", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2905", + "$id": "2906", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -32343,13 +32356,13 @@ "isHttpMetadata": false }, { - "$id": "2906", + "$id": "2907", "kind": "property", "name": "data", "serializedName": "data", "doc": "Base64 encoded audio bytes generated by the model, in the format\nspecified in the request.", "type": { - "$id": "2907", + "$id": "2908", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -32370,13 +32383,13 @@ "isHttpMetadata": false }, { - "$id": "2908", + "$id": "2909", "kind": "property", "name": "transcript", "serializedName": "transcript", "doc": "Transcript of the audio generated by the model.", "type": { - "$id": "2909", + "$id": "2910", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32428,16 +32441,16 @@ "isHttpMetadata": false }, { - "$id": "2910", + "$id": "2911", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "doc": "Log probability information for the choice.", "type": { - "$id": "2911", + "$id": "2912", "kind": "nullable", "type": { - "$id": "2912", + "$id": "2913", "kind": "model", "name": "CreateChatCompletionResponseChoiceLogprobs1", "namespace": "OpenAI", @@ -32446,20 +32459,20 @@ "decorators": [], "properties": [ { - "$id": "2913", + "$id": "2914", "kind": "property", "name": "content", "serializedName": "content", "doc": "A list of message content tokens with log probability information.", "type": { - "$id": "2914", + "$id": "2915", "kind": "nullable", "type": { - "$id": "2915", + "$id": "2916", "kind": "array", "name": "ArrayChatCompletionTokenLogprob", "valueType": { - "$id": "2916", + "$id": "2917", "kind": "model", "name": "ChatCompletionTokenLogprob", "namespace": "OpenAI", @@ -32473,13 +32486,13 @@ ], "properties": [ { - "$id": "2917", + "$id": "2918", "kind": "property", "name": "token", "serializedName": "token", "doc": "The token.", "type": { - "$id": "2918", + "$id": "2919", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32499,13 +32512,13 @@ "isHttpMetadata": false }, { - "$id": "2919", + "$id": "2920", "kind": "property", "name": "logprob", "serializedName": "logprob", "doc": "The log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value `-9999.0` is used to signify that the token is very unlikely.", "type": { - "$id": "2920", + "$id": "2921", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -32525,16 +32538,16 @@ "isHttpMetadata": false }, { - "$id": "2921", + "$id": "2922", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "A list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be `null` if there is no bytes representation for the token.", "type": { - "$id": "2922", + "$id": "2923", "kind": "nullable", "type": { - "$ref": "2670" + "$ref": "2671" }, "namespace": "OpenAI" }, @@ -32552,17 +32565,17 @@ "isHttpMetadata": false }, { - "$id": "2923", + "$id": "2924", "kind": "property", "name": "top_logprobs", "serializedName": "top_logprobs", "doc": "List of the most likely tokens and their log probability, at this token position. In rare cases, there may be fewer than the number of requested `top_logprobs` returned.", "type": { - "$id": "2924", + "$id": "2925", "kind": "array", "name": "Array11", "valueType": { - "$id": "2925", + "$id": "2926", "kind": "model", "name": "ChatCompletionTokenLogprobTopLogprob", "namespace": "OpenAI", @@ -32571,13 +32584,13 @@ "decorators": [], "properties": [ { - "$id": "2926", + "$id": "2927", "kind": "property", "name": "token", "serializedName": "token", "doc": "The token.", "type": { - "$id": "2927", + "$id": "2928", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32597,13 +32610,13 @@ "isHttpMetadata": false }, { - "$id": "2928", + "$id": "2929", "kind": "property", "name": "logprob", "serializedName": "logprob", "doc": "The log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value `-9999.0` is used to signify that the token is very unlikely.", "type": { - "$id": "2929", + "$id": "2930", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -32623,16 +32636,16 @@ "isHttpMetadata": false }, { - "$id": "2930", + "$id": "2931", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "A list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be `null` if there is no bytes representation for the token.", "type": { - "$id": "2931", + "$id": "2932", "kind": "nullable", "type": { - "$ref": "2670" + "$ref": "2671" }, "namespace": "OpenAI" }, @@ -32688,16 +32701,16 @@ "isHttpMetadata": false }, { - "$id": "2932", + "$id": "2933", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "A list of message refusal tokens with log probability information.", "type": { - "$id": "2933", + "$id": "2934", "kind": "nullable", "type": { - "$ref": "2915" + "$ref": "2916" }, "namespace": "OpenAI" }, @@ -32750,18 +32763,18 @@ "isHttpMetadata": false }, { - "$id": "2934", + "$id": "2935", "kind": "property", "name": "created", "serializedName": "created", "doc": "The Unix timestamp (in seconds) of when the chat completion was created.", "type": { - "$id": "2935", + "$id": "2936", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2936", + "$id": "2937", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -32784,13 +32797,13 @@ "isHttpMetadata": false }, { - "$id": "2937", + "$id": "2938", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model used for the chat completion.", "type": { - "$id": "2938", + "$id": "2939", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32810,7 +32823,7 @@ "isHttpMetadata": false }, { - "$id": "2939", + "$id": "2940", "kind": "property", "name": "service_tier", "serializedName": "service_tier", @@ -32831,13 +32844,13 @@ "isHttpMetadata": false }, { - "$id": "2940", + "$id": "2941", "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": "2941", + "$id": "2942", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32857,13 +32870,13 @@ "isHttpMetadata": false }, { - "$id": "2942", + "$id": "2943", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `chat.completion`.", "type": { - "$ref": "1543" + "$ref": "1544" }, "optional": false, "readOnly": false, @@ -32879,12 +32892,12 @@ "isHttpMetadata": false }, { - "$id": "2943", + "$id": "2944", "kind": "property", "name": "usage", "serializedName": "usage", "type": { - "$id": "2944", + "$id": "2945", "kind": "model", "name": "CompletionUsage", "namespace": "OpenAI", @@ -32894,13 +32907,13 @@ "decorators": [], "properties": [ { - "$id": "2945", + "$id": "2946", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "Number of tokens in the generated completion.", "type": { - "$id": "2946", + "$id": "2947", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -32920,13 +32933,13 @@ "isHttpMetadata": false }, { - "$id": "2947", + "$id": "2948", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "Number of tokens in the prompt.", "type": { - "$id": "2948", + "$id": "2949", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -32946,13 +32959,13 @@ "isHttpMetadata": false }, { - "$id": "2949", + "$id": "2950", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "Total number of tokens used in the request (prompt + completion).", "type": { - "$id": "2950", + "$id": "2951", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -32972,13 +32985,13 @@ "isHttpMetadata": false }, { - "$id": "2951", + "$id": "2952", "kind": "property", "name": "completion_tokens_details", "serializedName": "completion_tokens_details", "doc": "Breakdown of tokens used in a completion.", "type": { - "$id": "2952", + "$id": "2953", "kind": "model", "name": "CompletionUsageCompletionTokensDetails", "namespace": "OpenAI", @@ -32987,13 +33000,13 @@ "decorators": [], "properties": [ { - "$id": "2953", + "$id": "2954", "kind": "property", "name": "accepted_prediction_tokens", "serializedName": "accepted_prediction_tokens", "doc": "When using Predicted Outputs, the number of tokens in the\nprediction that appeared in the completion.", "type": { - "$id": "2954", + "$id": "2955", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -33013,13 +33026,13 @@ "isHttpMetadata": false }, { - "$id": "2955", + "$id": "2956", "kind": "property", "name": "audio_tokens", "serializedName": "audio_tokens", "doc": "Audio input tokens generated by the model.", "type": { - "$id": "2956", + "$id": "2957", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -33039,13 +33052,13 @@ "isHttpMetadata": false }, { - "$id": "2957", + "$id": "2958", "kind": "property", "name": "reasoning_tokens", "serializedName": "reasoning_tokens", "doc": "Tokens generated by the model for reasoning.", "type": { - "$id": "2958", + "$id": "2959", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -33065,13 +33078,13 @@ "isHttpMetadata": false }, { - "$id": "2959", + "$id": "2960", "kind": "property", "name": "rejected_prediction_tokens", "serializedName": "rejected_prediction_tokens", "doc": "When using Predicted Outputs, the number of tokens in the\nprediction that did not appear in the completion. However, like\nreasoning tokens, these tokens are still counted in the total\ncompletion tokens for purposes of billing, output, and context window\nlimits.", "type": { - "$id": "2960", + "$id": "2961", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -33106,13 +33119,13 @@ "isHttpMetadata": false }, { - "$id": "2961", + "$id": "2962", "kind": "property", "name": "prompt_tokens_details", "serializedName": "prompt_tokens_details", "doc": "Breakdown of tokens used in the prompt.", "type": { - "$id": "2962", + "$id": "2963", "kind": "model", "name": "CompletionUsagePromptTokensDetails", "namespace": "OpenAI", @@ -33121,13 +33134,13 @@ "decorators": [], "properties": [ { - "$id": "2963", + "$id": "2964", "kind": "property", "name": "audio_tokens", "serializedName": "audio_tokens", "doc": "Audio input tokens present in the prompt.", "type": { - "$id": "2964", + "$id": "2965", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -33147,13 +33160,13 @@ "isHttpMetadata": false }, { - "$id": "2965", + "$id": "2966", "kind": "property", "name": "cached_tokens", "serializedName": "cached_tokens", "doc": "Cached tokens present in the prompt.", "type": { - "$id": "2966", + "$id": "2967", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -33221,13 +33234,13 @@ "isHttpMetadata": false }, { - "$id": "2967", + "$id": "2968", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The identifier of the first chat completion in the data array.", "type": { - "$id": "2968", + "$id": "2969", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33247,13 +33260,13 @@ "isHttpMetadata": false }, { - "$id": "2969", + "$id": "2970", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The identifier of the last chat completion in the data array.", "type": { - "$id": "2970", + "$id": "2971", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33273,13 +33286,13 @@ "isHttpMetadata": false }, { - "$id": "2971", + "$id": "2972", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates whether there are more Chat Completions available.", "type": { - "$id": "2972", + "$id": "2973", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -33301,52 +33314,52 @@ ] }, { - "$ref": "2835" + "$ref": "2836" }, { - "$ref": "2840" + "$ref": "2841" }, { - "$ref": "2845" + "$ref": "2846" }, { - "$ref": "2854" + "$ref": "2855" }, { - "$ref": "2863" + "$ref": "2864" }, { - "$ref": "2870" + "$ref": "2871" }, { - "$ref": "2873" + "$ref": "2874" }, { - "$ref": "2893" + "$ref": "2894" }, { - "$ref": "2900" + "$ref": "2901" }, { - "$ref": "2912" + "$ref": "2913" }, { - "$ref": "2916" + "$ref": "2917" }, { - "$ref": "2925" + "$ref": "2926" }, { - "$ref": "2944" + "$ref": "2945" }, { - "$ref": "2952" + "$ref": "2953" }, { - "$ref": "2962" + "$ref": "2963" }, { - "$id": "2973", + "$id": "2974", "kind": "model", "name": "CreateChatCompletionRequest", "namespace": "OpenAI", @@ -33360,13 +33373,13 @@ ], "properties": [ { - "$id": "2974", + "$id": "2975", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": true, "readOnly": false, @@ -33382,16 +33395,16 @@ "isHttpMetadata": false }, { - "$id": "2975", + "$id": "2976", "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": "2976", + "$id": "2977", "kind": "nullable", "type": { - "$id": "2977", + "$id": "2978", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -33413,16 +33426,16 @@ "isHttpMetadata": false }, { - "$id": "2978", + "$id": "2979", "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": "2979", + "$id": "2980", "kind": "nullable", "type": { - "$id": "2980", + "$id": "2981", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -33444,13 +33457,13 @@ "isHttpMetadata": false }, { - "$id": "2981", + "$id": "2982", "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": "2982", + "$id": "2983", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33470,7 +33483,7 @@ "isHttpMetadata": false }, { - "$id": "2983", + "$id": "2984", "kind": "property", "name": "service_tier", "serializedName": "service_tier", @@ -33491,17 +33504,17 @@ "isHttpMetadata": false }, { - "$id": "2984", + "$id": "2985", "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": "2985", + "$id": "2986", "kind": "array", "name": "ArrayChatCompletionRequestMessage", "valueType": { - "$id": "2986", + "$id": "2987", "kind": "model", "name": "ChatCompletionRequestMessage", "namespace": "OpenAI", @@ -33514,7 +33527,7 @@ } ], "discriminatorProperty": { - "$id": "2987", + "$id": "2988", "kind": "property", "name": "role", "serializedName": "role", @@ -33537,35 +33550,35 @@ }, "properties": [ { - "$ref": "2987" + "$ref": "2988" }, { - "$id": "2988", + "$id": "2989", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message. Valid content part types vary per message role.", "type": { - "$id": "2989", + "$id": "2990", "kind": "nullable", "type": { - "$id": "2990", + "$id": "2991", "kind": "union", "name": "ChatCompletionRequestMessageContent", "variantTypes": [ { - "$id": "2991", + "$id": "2992", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "2992", + "$id": "2993", "kind": "array", "name": "ArrayChatCompletionRequestMessageContentPart", "valueType": { - "$id": "2993", + "$id": "2994", "kind": "model", "name": "ChatCompletionRequestMessageContentPart", "namespace": "OpenAI", @@ -33578,7 +33591,7 @@ } ], "discriminatorProperty": { - "$id": "2994", + "$id": "2995", "kind": "property", "name": "type", "serializedName": "type", @@ -33600,12 +33613,12 @@ }, "properties": [ { - "$ref": "2994" + "$ref": "2995" } ], "discriminatedSubtypes": { "text": { - "$id": "2995", + "$id": "2996", "kind": "model", "name": "ChatCompletionRequestMessageContentPartText", "namespace": "OpenAI", @@ -33620,17 +33633,17 @@ } ], "baseModel": { - "$ref": "2993" + "$ref": "2994" }, "properties": [ { - "$id": "2996", + "$id": "2997", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content part.", "type": { - "$id": "2997", + "$id": "2998", "kind": "enumvalue", "name": "text", "value": "text", @@ -33638,14 +33651,14 @@ "$ref": "162" }, "enumType": { - "$id": "2998", + "$id": "2999", "kind": "enum", "decorators": [], "name": "ChatCompletionRequestMessageContentPartType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "2999", + "$id": "3000", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -33654,68 +33667,68 @@ }, "values": [ { - "$id": "3000", + "$id": "3001", "kind": "enumvalue", "decorators": [], "name": "text", "value": "text", "valueType": { - "$ref": "2999" + "$ref": "3000" }, "enumType": { - "$ref": "2998" + "$ref": "2999" } }, { - "$id": "3001", + "$id": "3002", "kind": "enumvalue", "decorators": [], "name": "file", "value": "file", "valueType": { - "$ref": "2999" + "$ref": "3000" }, "enumType": { - "$ref": "2998" + "$ref": "2999" } }, { - "$id": "3002", + "$id": "3003", "kind": "enumvalue", "decorators": [], "name": "input_audio", "value": "input_audio", "valueType": { - "$ref": "2999" + "$ref": "3000" }, "enumType": { - "$ref": "2998" + "$ref": "2999" } }, { - "$id": "3003", + "$id": "3004", "kind": "enumvalue", "decorators": [], "name": "image_url", "value": "image_url", "valueType": { - "$ref": "2999" + "$ref": "3000" }, "enumType": { - "$ref": "2998" + "$ref": "2999" } }, { - "$id": "3004", + "$id": "3005", "kind": "enumvalue", "decorators": [], "name": "refusal", "value": "refusal", "valueType": { - "$ref": "2999" + "$ref": "3000" }, "enumType": { - "$ref": "2998" + "$ref": "2999" } } ], @@ -33744,13 +33757,13 @@ "isHttpMetadata": false }, { - "$id": "3005", + "$id": "3006", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content.", "type": { - "$id": "3006", + "$id": "3007", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33772,7 +33785,7 @@ ] }, "image_url": { - "$id": "3007", + "$id": "3008", "kind": "model", "name": "ChatCompletionRequestMessageContentPartImage", "namespace": "OpenAI", @@ -33787,17 +33800,17 @@ } ], "baseModel": { - "$ref": "2993" + "$ref": "2994" }, "properties": [ { - "$id": "3008", + "$id": "3009", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content part.", "type": { - "$id": "3009", + "$id": "3010", "kind": "enumvalue", "name": "image_url", "value": "image_url", @@ -33805,7 +33818,7 @@ "$ref": "162" }, "enumType": { - "$ref": "2998" + "$ref": "2999" }, "decorators": [] }, @@ -33823,12 +33836,12 @@ "isHttpMetadata": false }, { - "$id": "3010", + "$id": "3011", "kind": "property", "name": "image_url", "serializedName": "image_url", "type": { - "$id": "3011", + "$id": "3012", "kind": "model", "name": "ChatCompletionRequestMessageContentPartImageImageUrl", "namespace": "OpenAI", @@ -33837,13 +33850,13 @@ "decorators": [], "properties": [ { - "$id": "3012", + "$id": "3013", "kind": "property", "name": "url", "serializedName": "url", "doc": "Either a URL of the image or the base64 encoded image data.", "type": { - "$id": "3013", + "$id": "3014", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -33863,7 +33876,7 @@ "isHttpMetadata": false }, { - "$id": "3014", + "$id": "3015", "kind": "property", "name": "detail", "serializedName": "detail", @@ -33902,7 +33915,7 @@ ] }, "refusal": { - "$id": "3015", + "$id": "3016", "kind": "model", "name": "ChatCompletionRequestMessageContentPartRefusal", "namespace": "OpenAI", @@ -33916,17 +33929,17 @@ } ], "baseModel": { - "$ref": "2993" + "$ref": "2994" }, "properties": [ { - "$id": "3016", + "$id": "3017", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content part.", "type": { - "$id": "3017", + "$id": "3018", "kind": "enumvalue", "name": "refusal", "value": "refusal", @@ -33934,7 +33947,7 @@ "$ref": "162" }, "enumType": { - "$ref": "2998" + "$ref": "2999" }, "decorators": [] }, @@ -33952,13 +33965,13 @@ "isHttpMetadata": false }, { - "$id": "3018", + "$id": "3019", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "The refusal message generated by the model.", "type": { - "$id": "3019", + "$id": "3020", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33980,7 +33993,7 @@ ] }, "file": { - "$id": "3020", + "$id": "3021", "kind": "model", "name": "ChatCompletionRequestMessageContentPartFile", "namespace": "OpenAI", @@ -33995,17 +34008,17 @@ } ], "baseModel": { - "$ref": "2993" + "$ref": "2994" }, "properties": [ { - "$id": "3021", + "$id": "3022", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content part. Always `file`.", "type": { - "$id": "3022", + "$id": "3023", "kind": "enumvalue", "name": "file", "value": "file", @@ -34013,7 +34026,7 @@ "$ref": "162" }, "enumType": { - "$ref": "2998" + "$ref": "2999" }, "decorators": [] }, @@ -34031,12 +34044,12 @@ "isHttpMetadata": false }, { - "$id": "3023", + "$id": "3024", "kind": "property", "name": "file", "serializedName": "file", "type": { - "$id": "3024", + "$id": "3025", "kind": "model", "name": "ChatCompletionRequestMessageContentPartFileFile", "namespace": "OpenAI", @@ -34045,13 +34058,13 @@ "decorators": [], "properties": [ { - "$id": "3025", + "$id": "3026", "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": "3026", + "$id": "3027", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34071,13 +34084,13 @@ "isHttpMetadata": false }, { - "$id": "3027", + "$id": "3028", "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": "3028", + "$id": "3029", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34097,13 +34110,13 @@ "isHttpMetadata": false }, { - "$id": "3029", + "$id": "3030", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of an uploaded file to use as input.", "type": { - "$id": "3030", + "$id": "3031", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34140,7 +34153,7 @@ ] }, "input_audio": { - "$id": "3031", + "$id": "3032", "kind": "model", "name": "ChatCompletionRequestMessageContentPartAudio", "namespace": "OpenAI", @@ -34155,17 +34168,17 @@ } ], "baseModel": { - "$ref": "2993" + "$ref": "2994" }, "properties": [ { - "$id": "3032", + "$id": "3033", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content part. Always `input_audio`.", "type": { - "$id": "3033", + "$id": "3034", "kind": "enumvalue", "name": "input_audio", "value": "input_audio", @@ -34173,7 +34186,7 @@ "$ref": "162" }, "enumType": { - "$ref": "2998" + "$ref": "2999" }, "decorators": [] }, @@ -34191,12 +34204,12 @@ "isHttpMetadata": false }, { - "$id": "3034", + "$id": "3035", "kind": "property", "name": "input_audio", "serializedName": "input_audio", "type": { - "$id": "3035", + "$id": "3036", "kind": "model", "name": "ChatCompletionRequestMessageContentPartAudioInputAudio", "namespace": "OpenAI", @@ -34205,13 +34218,13 @@ "decorators": [], "properties": [ { - "$id": "3036", + "$id": "3037", "kind": "property", "name": "data", "serializedName": "data", "doc": "Base64 encoded audio data.", "type": { - "$id": "3037", + "$id": "3038", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -34232,7 +34245,7 @@ "isHttpMetadata": false }, { - "$id": "3038", + "$id": "3039", "kind": "property", "name": "format", "serializedName": "format", @@ -34297,7 +34310,7 @@ ], "discriminatedSubtypes": { "system": { - "$id": "3039", + "$id": "3040", "kind": "model", "name": "ChatCompletionRequestSystemMessage", "namespace": "OpenAI", @@ -34312,38 +34325,38 @@ } ], "baseModel": { - "$ref": "2986" + "$ref": "2987" }, "properties": [ { - "$id": "3040", + "$id": "3041", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the system message.", "type": { - "$id": "3041", + "$id": "3042", "kind": "union", "name": "ChatCompletionRequestSystemMessageContent", "variantTypes": [ { - "$id": "3042", + "$id": "3043", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "3043", + "$id": "3044", "kind": "array", "name": "ArrayChatCompletionRequestSystemMessageContentPart", "valueType": { - "$id": "3044", + "$id": "3045", "kind": "union", "name": "ChatCompletionRequestSystemMessageContentPart", "variantTypes": [ { - "$ref": "2995" + "$ref": "2996" } ], "namespace": "OpenAI", @@ -34370,13 +34383,13 @@ "isHttpMetadata": false }, { - "$id": "3045", + "$id": "3046", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the messages author, in this case `system`.", "type": { - "$id": "3046", + "$id": "3047", "kind": "enumvalue", "name": "system", "value": "system", @@ -34384,7 +34397,7 @@ "$ref": "154" }, "enumType": { - "$ref": "2884" + "$ref": "2885" }, "decorators": [] }, @@ -34402,13 +34415,13 @@ "isHttpMetadata": false }, { - "$id": "3047", + "$id": "3048", "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": "3048", + "$id": "3049", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34430,7 +34443,7 @@ ] }, "developer": { - "$id": "3049", + "$id": "3050", "kind": "model", "name": "ChatCompletionRequestDeveloperMessage", "namespace": "OpenAI", @@ -34445,33 +34458,33 @@ } ], "baseModel": { - "$ref": "2986" + "$ref": "2987" }, "properties": [ { - "$id": "3050", + "$id": "3051", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the developer message.", "type": { - "$id": "3051", + "$id": "3052", "kind": "union", "name": "ChatCompletionRequestDeveloperMessageContent", "variantTypes": [ { - "$id": "3052", + "$id": "3053", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "3053", + "$id": "3054", "kind": "array", "name": "ArrayChatCompletionRequestMessageContentPartText", "valueType": { - "$ref": "2995" + "$ref": "2996" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -34494,13 +34507,13 @@ "isHttpMetadata": false }, { - "$id": "3054", + "$id": "3055", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the messages author, in this case `developer`.", "type": { - "$id": "3055", + "$id": "3056", "kind": "enumvalue", "name": "developer", "value": "developer", @@ -34508,7 +34521,7 @@ "$ref": "154" }, "enumType": { - "$ref": "2884" + "$ref": "2885" }, "decorators": [] }, @@ -34526,13 +34539,13 @@ "isHttpMetadata": false }, { - "$id": "3056", + "$id": "3057", "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": "3057", + "$id": "3058", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34554,7 +34567,7 @@ ] }, "user": { - "$id": "3058", + "$id": "3059", "kind": "model", "name": "ChatCompletionRequestUserMessage", "namespace": "OpenAI", @@ -34569,47 +34582,47 @@ } ], "baseModel": { - "$ref": "2986" + "$ref": "2987" }, "properties": [ { - "$id": "3059", + "$id": "3060", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the user message.", "type": { - "$id": "3060", + "$id": "3061", "kind": "union", "name": "ChatCompletionRequestUserMessageContent", "variantTypes": [ { - "$id": "3061", + "$id": "3062", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "3062", + "$id": "3063", "kind": "array", "name": "ArrayChatCompletionRequestUserMessageContentPart", "valueType": { - "$id": "3063", + "$id": "3064", "kind": "union", "name": "ChatCompletionRequestUserMessageContentPart", "variantTypes": [ { - "$ref": "2995" + "$ref": "2996" }, { - "$ref": "3007" + "$ref": "3008" }, { - "$ref": "3031" + "$ref": "3032" }, { - "$ref": "3020" + "$ref": "3021" } ], "namespace": "OpenAI", @@ -34636,13 +34649,13 @@ "isHttpMetadata": false }, { - "$id": "3064", + "$id": "3065", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the messages author, in this case `user`.", "type": { - "$id": "3065", + "$id": "3066", "kind": "enumvalue", "name": "user", "value": "user", @@ -34650,7 +34663,7 @@ "$ref": "154" }, "enumType": { - "$ref": "2884" + "$ref": "2885" }, "decorators": [] }, @@ -34668,13 +34681,13 @@ "isHttpMetadata": false }, { - "$id": "3066", + "$id": "3067", "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": "3067", + "$id": "3068", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34696,7 +34709,7 @@ ] }, "assistant": { - "$id": "3068", + "$id": "3069", "kind": "model", "name": "ChatCompletionRequestAssistantMessage", "namespace": "OpenAI", @@ -34711,44 +34724,44 @@ } ], "baseModel": { - "$ref": "2986" + "$ref": "2987" }, "properties": [ { - "$id": "3069", + "$id": "3070", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the assistant message. Required unless `tool_calls` or `function_call` is specified.", "type": { - "$id": "3070", + "$id": "3071", "kind": "nullable", "type": { - "$id": "3071", + "$id": "3072", "kind": "union", "name": "ChatCompletionRequestAssistantMessageContent", "variantTypes": [ { - "$id": "3072", + "$id": "3073", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "3073", + "$id": "3074", "kind": "array", "name": "ArrayChatCompletionRequestAssistantMessageContentPart", "valueType": { - "$id": "3074", + "$id": "3075", "kind": "union", "name": "ChatCompletionRequestAssistantMessageContentPart", "variantTypes": [ { - "$ref": "2995" + "$ref": "2996" }, { - "$ref": "3015" + "$ref": "3016" } ], "namespace": "OpenAI", @@ -34777,16 +34790,16 @@ "isHttpMetadata": false }, { - "$id": "3075", + "$id": "3076", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "The refusal message by the assistant.", "type": { - "$id": "3076", + "$id": "3077", "kind": "nullable", "type": { - "$id": "3077", + "$id": "3078", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34808,13 +34821,13 @@ "isHttpMetadata": false }, { - "$id": "3078", + "$id": "3079", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the messages author, in this case `assistant`.", "type": { - "$id": "3079", + "$id": "3080", "kind": "enumvalue", "name": "assistant", "value": "assistant", @@ -34822,7 +34835,7 @@ "$ref": "154" }, "enumType": { - "$ref": "2884" + "$ref": "2885" }, "decorators": [] }, @@ -34840,13 +34853,13 @@ "isHttpMetadata": false }, { - "$id": "3080", + "$id": "3081", "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": "3081", + "$id": "3082", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34866,16 +34879,16 @@ "isHttpMetadata": false }, { - "$id": "3082", + "$id": "3083", "kind": "property", "name": "audio", "serializedName": "audio", "doc": "Data about a previous audio response from the model.\n[Learn more](/docs/guides/audio).", "type": { - "$id": "3083", + "$id": "3084", "kind": "nullable", "type": { - "$id": "3084", + "$id": "3085", "kind": "model", "name": "ChatCompletionRequestAssistantMessageAudio1", "namespace": "OpenAI", @@ -34884,13 +34897,13 @@ "decorators": [], "properties": [ { - "$id": "3085", + "$id": "3086", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for a previous audio response from the model.", "type": { - "$id": "3086", + "$id": "3087", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34927,12 +34940,12 @@ "isHttpMetadata": false }, { - "$id": "3087", + "$id": "3088", "kind": "property", "name": "tool_calls", "serializedName": "tool_calls", "type": { - "$ref": "2853" + "$ref": "2854" }, "optional": true, "readOnly": false, @@ -34948,16 +34961,16 @@ "isHttpMetadata": false }, { - "$id": "3088", + "$id": "3089", "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": "3089", + "$id": "3090", "kind": "nullable", "type": { - "$id": "3090", + "$id": "3091", "kind": "model", "name": "ChatCompletionRequestAssistantMessageFunctionCall1", "namespace": "OpenAI", @@ -34966,12 +34979,12 @@ "decorators": [], "properties": [ { - "$id": "3091", + "$id": "3092", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "3092", + "$id": "3093", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34991,12 +35004,12 @@ "isHttpMetadata": false }, { - "$id": "3093", + "$id": "3094", "kind": "property", "name": "arguments", "serializedName": "arguments", "type": { - "$id": "3094", + "$id": "3095", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35035,7 +35048,7 @@ ] }, "tool": { - "$id": "3095", + "$id": "3096", "kind": "model", "name": "ChatCompletionRequestToolMessage", "namespace": "OpenAI", @@ -35049,17 +35062,17 @@ } ], "baseModel": { - "$ref": "2986" + "$ref": "2987" }, "properties": [ { - "$id": "3096", + "$id": "3097", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the messages author, in this case `tool`.", "type": { - "$id": "3097", + "$id": "3098", "kind": "enumvalue", "name": "tool", "value": "tool", @@ -35067,7 +35080,7 @@ "$ref": "154" }, "enumType": { - "$ref": "2884" + "$ref": "2885" }, "decorators": [] }, @@ -35085,34 +35098,34 @@ "isHttpMetadata": false }, { - "$id": "3098", + "$id": "3099", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the tool message.", "type": { - "$id": "3099", + "$id": "3100", "kind": "union", "name": "ChatCompletionRequestToolMessageContent", "variantTypes": [ { - "$id": "3100", + "$id": "3101", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "3101", + "$id": "3102", "kind": "array", "name": "ArrayChatCompletionRequestToolMessageContentPart", "valueType": { - "$id": "3102", + "$id": "3103", "kind": "union", "name": "ChatCompletionRequestToolMessageContentPart", "variantTypes": [ { - "$ref": "2995" + "$ref": "2996" } ], "namespace": "OpenAI", @@ -35139,13 +35152,13 @@ "isHttpMetadata": false }, { - "$id": "3103", + "$id": "3104", "kind": "property", "name": "tool_call_id", "serializedName": "tool_call_id", "doc": "Tool call that this message is responding to.", "type": { - "$id": "3104", + "$id": "3105", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35167,7 +35180,7 @@ ] }, "function": { - "$id": "3105", + "$id": "3106", "kind": "model", "name": "ChatCompletionRequestFunctionMessage", "namespace": "OpenAI", @@ -35182,17 +35195,17 @@ } ], "baseModel": { - "$ref": "2986" + "$ref": "2987" }, "properties": [ { - "$id": "3106", + "$id": "3107", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the messages author, in this case `function`.", "type": { - "$id": "3107", + "$id": "3108", "kind": "enumvalue", "name": "function", "value": "function", @@ -35200,7 +35213,7 @@ "$ref": "154" }, "enumType": { - "$ref": "2884" + "$ref": "2885" }, "decorators": [] }, @@ -35218,16 +35231,16 @@ "isHttpMetadata": false }, { - "$id": "3108", + "$id": "3109", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the function message.", "type": { - "$id": "3109", + "$id": "3110", "kind": "nullable", "type": { - "$id": "3110", + "$id": "3111", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35249,13 +35262,13 @@ "isHttpMetadata": false }, { - "$id": "3111", + "$id": "3112", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "3112", + "$id": "3113", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35295,7 +35308,7 @@ "isHttpMetadata": false }, { - "$id": "3113", + "$id": "3114", "kind": "property", "name": "model", "serializedName": "model", @@ -35317,15 +35330,15 @@ "isHttpMetadata": false }, { - "$id": "3114", + "$id": "3115", "kind": "property", "name": "modalities", "serializedName": "modalities", "type": { - "$id": "3115", + "$id": "3116", "kind": "nullable", "type": { - "$id": "3116", + "$id": "3117", "kind": "array", "name": "ResponseModalities", "valueType": { @@ -35350,12 +35363,12 @@ "isHttpMetadata": false }, { - "$id": "3117", + "$id": "3118", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", "type": { - "$id": "3118", + "$id": "3119", "kind": "nullable", "type": { "$ref": "53" @@ -35376,16 +35389,16 @@ "isHttpMetadata": false }, { - "$id": "3119", + "$id": "3120", "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": "3120", + "$id": "3121", "kind": "nullable", "type": { - "$id": "3121", + "$id": "3122", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -35407,16 +35420,16 @@ "isHttpMetadata": false }, { - "$id": "3122", + "$id": "3123", "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": "3123", + "$id": "3124", "kind": "nullable", "type": { - "$id": "3124", + "$id": "3125", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -35438,16 +35451,16 @@ "isHttpMetadata": false }, { - "$id": "3125", + "$id": "3126", "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": "3126", + "$id": "3127", "kind": "nullable", "type": { - "$id": "3127", + "$id": "3128", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -35469,13 +35482,13 @@ "isHttpMetadata": false }, { - "$id": "3128", + "$id": "3129", "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": "3129", + "$id": "3130", "kind": "model", "name": "CreateChatCompletionRequestWebSearchOptions", "namespace": "OpenAI", @@ -35484,16 +35497,16 @@ "decorators": [], "properties": [ { - "$id": "3130", + "$id": "3131", "kind": "property", "name": "user_location", "serializedName": "user_location", "doc": "Approximate location parameters for the search.", "type": { - "$id": "3131", + "$id": "3132", "kind": "nullable", "type": { - "$id": "3132", + "$id": "3133", "kind": "model", "name": "CreateChatCompletionRequestWebSearchOptionsUserLocation1", "namespace": "OpenAI", @@ -35502,13 +35515,13 @@ "decorators": [], "properties": [ { - "$id": "3133", + "$id": "3134", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of location approximation. Always `approximate`.", "type": { - "$ref": "1545" + "$ref": "1546" }, "optional": false, "readOnly": false, @@ -35524,12 +35537,12 @@ "isHttpMetadata": false }, { - "$id": "3134", + "$id": "3135", "kind": "property", "name": "approximate", "serializedName": "approximate", "type": { - "$id": "3135", + "$id": "3136", "kind": "model", "name": "WebSearchLocation", "namespace": "OpenAI", @@ -35539,13 +35552,13 @@ "decorators": [], "properties": [ { - "$id": "3136", + "$id": "3137", "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": "3137", + "$id": "3138", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35565,13 +35578,13 @@ "isHttpMetadata": false }, { - "$id": "3138", + "$id": "3139", "kind": "property", "name": "region", "serializedName": "region", "doc": "Free text input for the region of the user, e.g. `California`.", "type": { - "$id": "3139", + "$id": "3140", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35591,13 +35604,13 @@ "isHttpMetadata": false }, { - "$id": "3140", + "$id": "3141", "kind": "property", "name": "city", "serializedName": "city", "doc": "Free text input for the city of the user, e.g. `San Francisco`.", "type": { - "$id": "3141", + "$id": "3142", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35617,13 +35630,13 @@ "isHttpMetadata": false }, { - "$id": "3142", + "$id": "3143", "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": "3143", + "$id": "3144", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35675,7 +35688,7 @@ "isHttpMetadata": false }, { - "$id": "3144", + "$id": "3145", "kind": "property", "name": "search_context_size", "serializedName": "search_context_size", @@ -35711,16 +35724,16 @@ "isHttpMetadata": false }, { - "$id": "3145", + "$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": "3146", + "$id": "3147", "kind": "nullable", "type": { - "$id": "3147", + "$id": "3148", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -35742,13 +35755,13 @@ "isHttpMetadata": false }, { - "$id": "3148", + "$id": "3149", "kind": "property", "name": "response_format", "serializedName": "response_format", "doc": "An object specifying the format that the model must output.\n\nSetting to `{ \"type\": \"json_schema\", \"json_schema\": {...} }` enables\nStructured Outputs which ensures the model will match your supplied JSON\nschema. Learn more in the [Structured Outputs\nguide](/docs/guides/structured-outputs).\n\nSetting to `{ \"type\": \"json_object\" }` enables the older JSON mode, which\nensures the message the model generates is valid JSON. Using `json_schema`\nis preferred for models that support it.", "type": { - "$ref": "2457" + "$ref": "2458" }, "optional": true, "readOnly": false, @@ -35764,16 +35777,16 @@ "isHttpMetadata": false }, { - "$id": "3149", + "$id": "3150", "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": "3150", + "$id": "3151", "kind": "nullable", "type": { - "$id": "3151", + "$id": "3152", "kind": "model", "name": "CreateChatCompletionRequestAudio1", "namespace": "OpenAI", @@ -35782,7 +35795,7 @@ "decorators": [], "properties": [ { - "$id": "3152", + "$id": "3153", "kind": "property", "name": "voice", "serializedName": "voice", @@ -35804,7 +35817,7 @@ "isHttpMetadata": false }, { - "$id": "3153", + "$id": "3154", "kind": "property", "name": "format", "serializedName": "format", @@ -35843,16 +35856,16 @@ "isHttpMetadata": false }, { - "$id": "3154", + "$id": "3155", "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": "3155", + "$id": "3156", "kind": "nullable", "type": { - "$id": "3156", + "$id": "3157", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -35874,16 +35887,16 @@ "isHttpMetadata": false }, { - "$id": "3157", + "$id": "3158", "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": "3158", + "$id": "3159", "kind": "nullable", "type": { - "$id": "3159", + "$id": "3160", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -35905,27 +35918,27 @@ "isHttpMetadata": false }, { - "$id": "3160", + "$id": "3161", "kind": "property", "name": "stop", "serializedName": "stop", "type": { - "$id": "3161", + "$id": "3162", "kind": "nullable", "type": { - "$id": "3162", + "$id": "3163", "kind": "union", "name": "StopConfiguration", "variantTypes": [ { - "$id": "3163", + "$id": "3164", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$ref": "2437" + "$ref": "2438" } ], "namespace": "OpenAI", @@ -35947,26 +35960,26 @@ "isHttpMetadata": false }, { - "$id": "3164", + "$id": "3165", "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": "3165", + "$id": "3166", "kind": "nullable", "type": { - "$id": "3166", + "$id": "3167", "kind": "dict", "keyType": { - "$id": "3167", + "$id": "3168", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, "valueType": { - "$id": "3168", + "$id": "3169", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -35990,16 +36003,16 @@ "isHttpMetadata": false }, { - "$id": "3169", + "$id": "3170", "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": "3170", + "$id": "3171", "kind": "nullable", "type": { - "$id": "3171", + "$id": "3172", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -36021,16 +36034,16 @@ "isHttpMetadata": false }, { - "$id": "3172", + "$id": "3173", "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": "3173", + "$id": "3174", "kind": "nullable", "type": { - "$id": "3174", + "$id": "3175", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -36052,16 +36065,16 @@ "isHttpMetadata": false }, { - "$id": "3175", + "$id": "3176", "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": "3176", + "$id": "3177", "kind": "nullable", "type": { - "$id": "3177", + "$id": "3178", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -36083,16 +36096,16 @@ "isHttpMetadata": false }, { - "$id": "3178", + "$id": "3179", "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": "3179", + "$id": "3180", "kind": "nullable", "type": { - "$id": "3180", + "$id": "3181", "kind": "model", "name": "ChatOutputPrediction", "namespace": "OpenAI", @@ -36106,7 +36119,7 @@ } ], "discriminatorProperty": { - "$id": "3181", + "$id": "3182", "kind": "property", "name": "type", "serializedName": "type", @@ -36128,12 +36141,12 @@ }, "properties": [ { - "$ref": "3181" + "$ref": "3182" } ], "discriminatedSubtypes": { "content": { - "$id": "3182", + "$id": "3183", "kind": "model", "name": "ChatOutputPredictionContent", "namespace": "OpenAI", @@ -36148,17 +36161,17 @@ } ], "baseModel": { - "$ref": "3180" + "$ref": "3181" }, "properties": [ { - "$id": "3183", + "$id": "3184", "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": "3184", + "$id": "3185", "kind": "enumvalue", "name": "static_content", "value": "content", @@ -36166,14 +36179,14 @@ "$ref": "252" }, "enumType": { - "$id": "3185", + "$id": "3186", "kind": "enum", "decorators": [], "name": "ChatOutputPredictionType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "3186", + "$id": "3187", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -36182,16 +36195,16 @@ }, "values": [ { - "$id": "3187", + "$id": "3188", "kind": "enumvalue", "decorators": [], "name": "static_content", "value": "content", "valueType": { - "$ref": "3186" + "$ref": "3187" }, "enumType": { - "$ref": "3185" + "$ref": "3186" } } ], @@ -36220,25 +36233,25 @@ "isHttpMetadata": false }, { - "$id": "3188", + "$id": "3189", "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": "3189", + "$id": "3190", "kind": "union", "name": "ChatOutputPredictionContentContent", "variantTypes": [ { - "$id": "3190", + "$id": "3191", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$ref": "3053" + "$ref": "3054" } ], "namespace": "OpenAI", @@ -36277,16 +36290,16 @@ "isHttpMetadata": false }, { - "$id": "3191", + "$id": "3192", "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": "3192", + "$id": "3193", "kind": "nullable", "type": { - "$id": "3193", + "$id": "3194", "kind": "int64", "name": "int64", "crossLanguageDefinitionId": "TypeSpec.int64", @@ -36308,15 +36321,15 @@ "isHttpMetadata": false }, { - "$id": "3194", + "$id": "3195", "kind": "property", "name": "stream_options", "serializedName": "stream_options", "type": { - "$id": "3195", + "$id": "3196", "kind": "nullable", "type": { - "$id": "3196", + "$id": "3197", "kind": "model", "name": "ChatCompletionStreamOptions", "namespace": "OpenAI", @@ -36326,13 +36339,13 @@ "decorators": [], "properties": [ { - "$id": "3197", + "$id": "3198", "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": "3198", + "$id": "3199", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -36369,17 +36382,17 @@ "isHttpMetadata": false }, { - "$id": "3199", + "$id": "3200", "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": "3200", + "$id": "3201", "kind": "array", "name": "ArrayChatCompletionTool", "valueType": { - "$id": "3201", + "$id": "3202", "kind": "model", "name": "ChatCompletionTool", "namespace": "OpenAI", @@ -36393,28 +36406,28 @@ ], "properties": [ { - "$id": "3202", + "$id": "3203", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the tool. Currently, only `function` is supported.", "type": { - "$id": "3203", + "$id": "3204", "kind": "enumvalue", "name": "function", "value": "function", "valueType": { - "$ref": "1420" + "$ref": "1421" }, "enumType": { - "$id": "3204", + "$id": "3205", "kind": "enum", "decorators": [], "name": "ChatToolKind", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "3205", + "$id": "3206", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -36423,16 +36436,16 @@ }, "values": [ { - "$id": "3206", + "$id": "3207", "kind": "enumvalue", "decorators": [], "name": "function", "value": "function", "enumType": { - "$ref": "3204" + "$ref": "3205" }, "valueType": { - "$ref": "3205" + "$ref": "3206" } } ], @@ -36461,12 +36474,12 @@ "isHttpMetadata": false }, { - "$id": "3207", + "$id": "3208", "kind": "property", "name": "function", "serializedName": "function", "type": { - "$ref": "2421" + "$ref": "2422" }, "optional": false, "readOnly": false, @@ -36500,12 +36513,12 @@ "isHttpMetadata": false }, { - "$id": "3208", + "$id": "3209", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "3209", + "$id": "3210", "kind": "union", "name": "ChatCompletionToolChoiceOption", "variantTypes": [ @@ -36513,7 +36526,7 @@ "$ref": "254" }, { - "$id": "3210", + "$id": "3211", "kind": "model", "name": "ChatCompletionNamedToolChoice", "namespace": "OpenAI", @@ -36528,13 +36541,13 @@ ], "properties": [ { - "$id": "3211", + "$id": "3212", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the tool. Currently, only `function` is supported.", "type": { - "$ref": "1547" + "$ref": "1548" }, "optional": false, "readOnly": false, @@ -36550,12 +36563,12 @@ "isHttpMetadata": false }, { - "$id": "3212", + "$id": "3213", "kind": "property", "name": "function", "serializedName": "function", "type": { - "$id": "3213", + "$id": "3214", "kind": "model", "name": "ChatCompletionNamedToolChoiceFunction", "namespace": "OpenAI", @@ -36564,13 +36577,13 @@ "decorators": [], "properties": [ { - "$id": "3214", + "$id": "3215", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "3215", + "$id": "3216", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36624,17 +36637,17 @@ "isHttpMetadata": false }, { - "$id": "3216", + "$id": "3217", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "type": { - "$id": "3217", + "$id": "3218", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "3218", + "$id": "3219", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -36656,24 +36669,24 @@ "isHttpMetadata": false }, { - "$id": "3219", + "$id": "3220", "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": "3220", + "$id": "3221", "kind": "union", "name": "CreateChatCompletionRequestFunctionCall", "variantTypes": [ { - "$ref": "1549" + "$ref": "1550" }, { - "$ref": "1551" + "$ref": "1552" }, { - "$id": "3221", + "$id": "3222", "kind": "model", "name": "ChatCompletionFunctionCallOption", "namespace": "OpenAI", @@ -36688,13 +36701,13 @@ ], "properties": [ { - "$id": "3222", + "$id": "3223", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "3223", + "$id": "3224", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36733,17 +36746,17 @@ "isHttpMetadata": false }, { - "$id": "3224", + "$id": "3225", "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": "3225", + "$id": "3226", "kind": "array", "name": "ArrayChatCompletionFunctions", "valueType": { - "$id": "3226", + "$id": "3227", "kind": "model", "name": "ChatCompletionFunctions", "namespace": "OpenAI", @@ -36758,13 +36771,13 @@ ], "properties": [ { - "$id": "3227", + "$id": "3228", "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": "3228", + "$id": "3229", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36784,13 +36797,13 @@ "isHttpMetadata": false }, { - "$id": "3229", + "$id": "3230", "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": "3230", + "$id": "3231", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36810,13 +36823,13 @@ "isHttpMetadata": false }, { - "$id": "3231", + "$id": "3232", "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": "3232", + "$id": "3233", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -36856,97 +36869,97 @@ ] }, { - "$ref": "2986" + "$ref": "2987" }, { - "$ref": "2993" + "$ref": "2994" }, { - "$ref": "2995" + "$ref": "2996" }, { - "$ref": "3007" + "$ref": "3008" }, { - "$ref": "3011" + "$ref": "3012" }, { - "$ref": "3015" + "$ref": "3016" }, { - "$ref": "3020" + "$ref": "3021" }, { - "$ref": "3024" + "$ref": "3025" }, { - "$ref": "3031" + "$ref": "3032" }, { - "$ref": "3035" + "$ref": "3036" }, { - "$ref": "3039" + "$ref": "3040" }, { - "$ref": "3049" + "$ref": "3050" }, { - "$ref": "3058" + "$ref": "3059" }, { - "$ref": "3068" + "$ref": "3069" }, { - "$ref": "3084" + "$ref": "3085" }, { - "$ref": "3090" + "$ref": "3091" }, { - "$ref": "3095" + "$ref": "3096" }, { - "$ref": "3105" + "$ref": "3106" }, { - "$ref": "3129" + "$ref": "3130" }, { - "$ref": "3132" + "$ref": "3133" }, { - "$ref": "3135" + "$ref": "3136" }, { - "$ref": "3151" + "$ref": "3152" }, { - "$ref": "3180" + "$ref": "3181" }, { - "$ref": "3182" + "$ref": "3183" }, { - "$ref": "3196" + "$ref": "3197" }, { - "$ref": "3201" + "$ref": "3202" }, { - "$ref": "3210" + "$ref": "3211" }, { - "$ref": "3213" + "$ref": "3214" }, { - "$ref": "3221" + "$ref": "3222" }, { - "$ref": "3226" + "$ref": "3227" }, { - "$id": "3233", + "$id": "3234", "kind": "model", "name": "CreateChatCompletionStreamResponse", "namespace": "OpenAI", @@ -36962,12 +36975,12 @@ ], "properties": [ { - "$id": "3234", + "$id": "3235", "kind": "property", "name": "id", "doc": "A unique identifier for the chat completion. Each chunk has the same ID.", "type": { - "$id": "3235", + "$id": "3236", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36983,16 +36996,16 @@ "isHttpMetadata": false }, { - "$id": "3236", + "$id": "3237", "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": "3237", + "$id": "3238", "kind": "array", "name": "Array12", "valueType": { - "$id": "3238", + "$id": "3239", "kind": "model", "name": "CreateChatCompletionStreamResponseChoice", "namespace": "OpenAI", @@ -37001,11 +37014,11 @@ "decorators": [], "properties": [ { - "$id": "3239", + "$id": "3240", "kind": "property", "name": "delta", "type": { - "$id": "3240", + "$id": "3241", "kind": "model", "name": "ChatCompletionStreamResponseDelta", "namespace": "OpenAI", @@ -37020,12 +37033,12 @@ ], "properties": [ { - "$id": "3241", + "$id": "3242", "kind": "property", "name": "audio", "doc": "Response audio associated with the streaming chat delta payload.", "type": { - "$id": "3242", + "$id": "3243", "kind": "model", "name": "ChatCompletionMessageAudioChunk", "namespace": "OpenAI", @@ -37039,11 +37052,11 @@ ], "properties": [ { - "$id": "3243", + "$id": "3244", "kind": "property", "name": "id", "type": { - "$id": "3244", + "$id": "3245", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37059,11 +37072,11 @@ "isHttpMetadata": false }, { - "$id": "3245", + "$id": "3246", "kind": "property", "name": "transcript", "type": { - "$id": "3246", + "$id": "3247", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37079,11 +37092,11 @@ "isHttpMetadata": false }, { - "$id": "3247", + "$id": "3248", "kind": "property", "name": "data", "type": { - "$id": "3248", + "$id": "3249", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -37100,16 +37113,16 @@ "isHttpMetadata": false }, { - "$id": "3249", + "$id": "3250", "kind": "property", "name": "expires_at", "type": { - "$id": "3250", + "$id": "3251", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3251", + "$id": "3252", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -37139,15 +37152,15 @@ "isHttpMetadata": false }, { - "$id": "3252", + "$id": "3253", "kind": "property", "name": "content", "doc": "The contents of the chunk message.", "type": { - "$id": "3253", + "$id": "3254", "kind": "nullable", "type": { - "$id": "3254", + "$id": "3255", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37165,12 +37178,12 @@ "isHttpMetadata": false }, { - "$id": "3255", + "$id": "3256", "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": "3256", + "$id": "3257", "kind": "model", "name": "ChatCompletionStreamResponseDeltaFunctionCall", "namespace": "OpenAI", @@ -37179,11 +37192,11 @@ "decorators": [], "properties": [ { - "$id": "3257", + "$id": "3258", "kind": "property", "name": "name", "type": { - "$id": "3258", + "$id": "3259", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37199,11 +37212,11 @@ "isHttpMetadata": false }, { - "$id": "3259", + "$id": "3260", "kind": "property", "name": "arguments", "type": { - "$id": "3260", + "$id": "3261", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37230,15 +37243,15 @@ "isHttpMetadata": false }, { - "$id": "3261", + "$id": "3262", "kind": "property", "name": "tool_calls", "type": { - "$id": "3262", + "$id": "3263", "kind": "array", "name": "ArrayChatCompletionMessageToolCallChunk", "valueType": { - "$id": "3263", + "$id": "3264", "kind": "model", "name": "ChatCompletionMessageToolCallChunk", "namespace": "OpenAI", @@ -37252,11 +37265,11 @@ ], "properties": [ { - "$id": "3264", + "$id": "3265", "kind": "property", "name": "index", "type": { - "$id": "3265", + "$id": "3266", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -37272,12 +37285,12 @@ "isHttpMetadata": false }, { - "$id": "3266", + "$id": "3267", "kind": "property", "name": "id", "doc": "The ID of the tool call.", "type": { - "$id": "3267", + "$id": "3268", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37293,7 +37306,7 @@ "isHttpMetadata": false }, { - "$id": "3268", + "$id": "3269", "kind": "property", "name": "type", "doc": "The type of the tool. Currently, only `function` is supported.", @@ -37310,11 +37323,11 @@ "isHttpMetadata": false }, { - "$id": "3269", + "$id": "3270", "kind": "property", "name": "function", "type": { - "$id": "3270", + "$id": "3271", "kind": "model", "name": "ChatCompletionMessageToolCallChunkFunction", "namespace": "OpenAI", @@ -37323,12 +37336,12 @@ "decorators": [], "properties": [ { - "$id": "3271", + "$id": "3272", "kind": "property", "name": "name", "doc": "The name of the function to call.", "type": { - "$id": "3272", + "$id": "3273", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37344,12 +37357,12 @@ "isHttpMetadata": false }, { - "$id": "3273", + "$id": "3274", "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": "3274", + "$id": "3275", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37390,7 +37403,7 @@ "isHttpMetadata": false }, { - "$id": "3275", + "$id": "3276", "kind": "property", "name": "role", "doc": "The role of the author of this message.", @@ -37407,15 +37420,15 @@ "isHttpMetadata": false }, { - "$id": "3276", + "$id": "3277", "kind": "property", "name": "refusal", "doc": "The refusal message generated by the model.", "type": { - "$id": "3277", + "$id": "3278", "kind": "nullable", "type": { - "$id": "3278", + "$id": "3279", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37444,15 +37457,15 @@ "isHttpMetadata": false }, { - "$id": "3279", + "$id": "3280", "kind": "property", "name": "logprobs", "doc": "Log probability information for the choice.", "type": { - "$id": "3280", + "$id": "3281", "kind": "nullable", "type": { - "$id": "3281", + "$id": "3282", "kind": "model", "name": "CreateChatCompletionStreamResponseChoiceLogprobs1", "namespace": "OpenAI", @@ -37461,15 +37474,15 @@ "decorators": [], "properties": [ { - "$id": "3282", + "$id": "3283", "kind": "property", "name": "content", "doc": "A list of message content tokens with log probability information.", "type": { - "$id": "3283", + "$id": "3284", "kind": "nullable", "type": { - "$ref": "2915" + "$ref": "2916" }, "namespace": "OpenAI" }, @@ -37483,15 +37496,15 @@ "isHttpMetadata": false }, { - "$id": "3284", + "$id": "3285", "kind": "property", "name": "refusal", "doc": "A list of message refusal tokens with log probability information.", "type": { - "$id": "3285", + "$id": "3286", "kind": "nullable", "type": { - "$ref": "2915" + "$ref": "2916" }, "namespace": "OpenAI" }, @@ -37518,12 +37531,12 @@ "isHttpMetadata": false }, { - "$id": "3286", + "$id": "3287", "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": "3287", + "$id": "3288", "kind": "nullable", "type": { "$ref": "263" @@ -37540,12 +37553,12 @@ "isHttpMetadata": false }, { - "$id": "3288", + "$id": "3289", "kind": "property", "name": "index", "doc": "The index of the choice in the list of choices.", "type": { - "$id": "3289", + "$id": "3290", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -37575,17 +37588,17 @@ "isHttpMetadata": false }, { - "$id": "3290", + "$id": "3291", "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": "3291", + "$id": "3292", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3292", + "$id": "3293", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -37604,12 +37617,12 @@ "isHttpMetadata": false }, { - "$id": "3293", + "$id": "3294", "kind": "property", "name": "model", "doc": "The model to generate the completion.", "type": { - "$id": "3294", + "$id": "3295", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37625,7 +37638,7 @@ "isHttpMetadata": false }, { - "$id": "3295", + "$id": "3296", "kind": "property", "name": "service_tier", "type": { @@ -37641,12 +37654,12 @@ "isHttpMetadata": false }, { - "$id": "3296", + "$id": "3297", "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": "3297", + "$id": "3298", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37662,12 +37675,12 @@ "isHttpMetadata": false }, { - "$id": "3298", + "$id": "3299", "kind": "property", "name": "object", "doc": "The object type, which is always `chat.completion.chunk`.", "type": { - "$ref": "1553" + "$ref": "1554" }, "optional": false, "readOnly": false, @@ -37679,15 +37692,15 @@ "isHttpMetadata": false }, { - "$id": "3299", + "$id": "3300", "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": "3300", + "$id": "3301", "kind": "nullable", "type": { - "$ref": "2944" + "$ref": "2945" }, "namespace": "OpenAI" }, @@ -37703,28 +37716,28 @@ ] }, { - "$ref": "3238" + "$ref": "3239" }, { - "$ref": "3240" + "$ref": "3241" }, { - "$ref": "3242" + "$ref": "3243" }, { - "$ref": "3256" + "$ref": "3257" }, { - "$ref": "3263" + "$ref": "3264" }, { - "$ref": "3270" + "$ref": "3271" }, { - "$ref": "3281" + "$ref": "3282" }, { - "$id": "3301", + "$id": "3302", "kind": "model", "name": "UpdateChatCompletionRequest", "namespace": "", @@ -37733,13 +37746,13 @@ "decorators": [], "properties": [ { - "$id": "3302", + "$id": "3303", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": false, "readOnly": false, @@ -37757,7 +37770,7 @@ ] }, { - "$id": "3303", + "$id": "3304", "kind": "model", "name": "ChatCompletionDeleted", "namespace": "OpenAI", @@ -37771,13 +37784,13 @@ ], "properties": [ { - "$id": "3304", + "$id": "3305", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of object being deleted.", "type": { - "$ref": "1555" + "$ref": "1556" }, "optional": false, "readOnly": false, @@ -37793,13 +37806,13 @@ "isHttpMetadata": false }, { - "$id": "3305", + "$id": "3306", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the chat completion that was deleted.", "type": { - "$id": "3306", + "$id": "3307", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37819,13 +37832,13 @@ "isHttpMetadata": false }, { - "$id": "3307", + "$id": "3308", "kind": "property", "name": "deleted", "serializedName": "deleted", "doc": "Whether the chat completion was deleted.", "type": { - "$id": "3308", + "$id": "3309", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -37847,7 +37860,7 @@ ] }, { - "$id": "3309", + "$id": "3310", "kind": "model", "name": "ChatCompletionMessageList", "namespace": "OpenAI", @@ -37862,13 +37875,13 @@ ], "properties": [ { - "$id": "3310", + "$id": "3311", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of this object. It is always set to \"list\".", "type": { - "$ref": "1557" + "$ref": "1558" }, "optional": false, "readOnly": false, @@ -37884,17 +37897,17 @@ "isHttpMetadata": false }, { - "$id": "3311", + "$id": "3312", "kind": "property", "name": "data", "serializedName": "data", "doc": "An array of chat completion message objects.", "type": { - "$id": "3312", + "$id": "3313", "kind": "array", "name": "Array13", "valueType": { - "$id": "3313", + "$id": "3314", "kind": "model", "name": "ChatCompletionMessageListDatum", "namespace": "OpenAI", @@ -37903,13 +37916,13 @@ "decorators": [], "properties": [ { - "$id": "3314", + "$id": "3315", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the message.", "type": { - "$ref": "2847" + "$ref": "2848" }, "optional": false, "readOnly": false, @@ -37925,13 +37938,13 @@ "isHttpMetadata": false }, { - "$id": "3315", + "$id": "3316", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "The refusal message generated by the model.", "type": { - "$ref": "2850" + "$ref": "2851" }, "optional": false, "readOnly": false, @@ -37947,12 +37960,12 @@ "isHttpMetadata": false }, { - "$id": "3316", + "$id": "3317", "kind": "property", "name": "tool_calls", "serializedName": "tool_calls", "type": { - "$ref": "2853" + "$ref": "2854" }, "optional": true, "readOnly": true, @@ -37968,13 +37981,13 @@ "isHttpMetadata": false }, { - "$id": "3317", + "$id": "3318", "kind": "property", "name": "annotations", "serializedName": "annotations", "doc": "Annotations for the message, when applicable, as when using the\n[web search tool](/docs/guides/tools-web-search?api-mode=chat).", "type": { - "$ref": "2869" + "$ref": "2870" }, "optional": true, "readOnly": true, @@ -37990,13 +38003,13 @@ "isHttpMetadata": false }, { - "$id": "3318", + "$id": "3319", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the author of this message.", "type": { - "$id": "3319", + "$id": "3320", "kind": "enumvalue", "name": "assistant", "value": "assistant", @@ -38004,7 +38017,7 @@ "$ref": "154" }, "enumType": { - "$ref": "2884" + "$ref": "2885" }, "decorators": [] }, @@ -38022,13 +38035,13 @@ "isHttpMetadata": false }, { - "$id": "3320", + "$id": "3321", "kind": "property", "name": "function_call", "serializedName": "function_call", "doc": "Deprecated and replaced by `tool_calls`. The name and arguments of a function that should be called, as generated by the model.", "type": { - "$ref": "2893" + "$ref": "2894" }, "optional": true, "readOnly": false, @@ -38044,13 +38057,13 @@ "isHttpMetadata": false }, { - "$id": "3321", + "$id": "3322", "kind": "property", "name": "audio", "serializedName": "audio", "doc": "If the audio output modality is requested, this object contains data\nabout the audio response from the model. [Learn more](/docs/guides/audio).", "type": { - "$ref": "2899" + "$ref": "2900" }, "optional": true, "readOnly": false, @@ -38066,15 +38079,15 @@ "isHttpMetadata": false }, { - "$id": "3322", + "$id": "3323", "kind": "property", "name": "content_parts", "serializedName": "content_parts", "type": { - "$id": "3323", + "$id": "3324", "kind": "nullable", "type": { - "$ref": "2992" + "$ref": "2993" }, "namespace": "OpenAI" }, @@ -38092,13 +38105,13 @@ "isHttpMetadata": false }, { - "$id": "3324", + "$id": "3325", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier of the chat message.", "type": { - "$id": "3325", + "$id": "3326", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38136,13 +38149,13 @@ "isHttpMetadata": false }, { - "$id": "3326", + "$id": "3327", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The identifier of the first chat message in the data array.", "type": { - "$id": "3327", + "$id": "3328", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38162,13 +38175,13 @@ "isHttpMetadata": false }, { - "$id": "3328", + "$id": "3329", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The identifier of the last chat message in the data array.", "type": { - "$id": "3329", + "$id": "3330", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38188,13 +38201,13 @@ "isHttpMetadata": false }, { - "$id": "3330", + "$id": "3331", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates whether there are more chat messages available.", "type": { - "$id": "3331", + "$id": "3332", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -38216,10 +38229,10 @@ ] }, { - "$ref": "3313" + "$ref": "3314" }, { - "$id": "3332", + "$id": "3333", "kind": "model", "name": "ContainerListResource", "namespace": "OpenAI", @@ -38228,13 +38241,13 @@ "decorators": [], "properties": [ { - "$id": "3333", + "$id": "3334", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of object returned, must be 'list'.", "type": { - "$ref": "1559" + "$ref": "1560" }, "optional": false, "readOnly": false, @@ -38250,17 +38263,17 @@ "isHttpMetadata": false }, { - "$id": "3334", + "$id": "3335", "kind": "property", "name": "data", "serializedName": "data", "doc": "A list of containers.", "type": { - "$id": "3335", + "$id": "3336", "kind": "array", "name": "ArrayContainerResource", "valueType": { - "$id": "3336", + "$id": "3337", "kind": "model", "name": "ContainerResource", "namespace": "OpenAI", @@ -38269,13 +38282,13 @@ "decorators": [], "properties": [ { - "$id": "3337", + "$id": "3338", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for the container.", "type": { - "$id": "3338", + "$id": "3339", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38295,13 +38308,13 @@ "isHttpMetadata": false }, { - "$id": "3339", + "$id": "3340", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of this object.", "type": { - "$id": "3340", + "$id": "3341", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38321,13 +38334,13 @@ "isHttpMetadata": false }, { - "$id": "3341", + "$id": "3342", "kind": "property", "name": "name", "serializedName": "name", "doc": "Name of the container.", "type": { - "$id": "3342", + "$id": "3343", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38347,18 +38360,18 @@ "isHttpMetadata": false }, { - "$id": "3343", + "$id": "3344", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) when the container was created.", "type": { - "$id": "3344", + "$id": "3345", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3345", + "$id": "3346", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -38381,13 +38394,13 @@ "isHttpMetadata": false }, { - "$id": "3346", + "$id": "3347", "kind": "property", "name": "status", "serializedName": "status", "doc": "Status of the container (e.g., active, deleted).", "type": { - "$id": "3347", + "$id": "3348", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38407,13 +38420,13 @@ "isHttpMetadata": false }, { - "$id": "3348", + "$id": "3349", "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": "3349", + "$id": "3350", "kind": "model", "name": "ContainerResourceExpiresAfter", "namespace": "OpenAI", @@ -38422,7 +38435,7 @@ "decorators": [], "properties": [ { - "$id": "3350", + "$id": "3351", "kind": "property", "name": "anchor", "serializedName": "anchor", @@ -38444,13 +38457,13 @@ "isHttpMetadata": false }, { - "$id": "3351", + "$id": "3352", "kind": "property", "name": "minutes", "serializedName": "minutes", "doc": "The number of minutes after the anchor before the container expires.", "type": { - "$id": "3352", + "$id": "3353", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -38503,13 +38516,13 @@ "isHttpMetadata": false }, { - "$id": "3353", + "$id": "3354", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The ID of the first container in the list.", "type": { - "$id": "3354", + "$id": "3355", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38529,13 +38542,13 @@ "isHttpMetadata": false }, { - "$id": "3355", + "$id": "3356", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The ID of the last container in the list.", "type": { - "$id": "3356", + "$id": "3357", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38555,13 +38568,13 @@ "isHttpMetadata": false }, { - "$id": "3357", + "$id": "3358", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Whether there are more containers available.", "type": { - "$id": "3358", + "$id": "3359", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -38583,13 +38596,13 @@ ] }, { - "$ref": "3336" + "$ref": "3337" }, { - "$ref": "3349" + "$ref": "3350" }, { - "$id": "3359", + "$id": "3360", "kind": "model", "name": "CreateContainerBody", "namespace": "OpenAI", @@ -38598,13 +38611,13 @@ "decorators": [], "properties": [ { - "$id": "3360", + "$id": "3361", "kind": "property", "name": "name", "serializedName": "name", "doc": "Name of the container to create.", "type": { - "$id": "3361", + "$id": "3362", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38624,13 +38637,13 @@ "isHttpMetadata": false }, { - "$id": "3362", + "$id": "3363", "kind": "property", "name": "file_ids", "serializedName": "file_ids", "doc": "IDs of files to copy to the container.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": true, "readOnly": false, @@ -38646,13 +38659,13 @@ "isHttpMetadata": false }, { - "$id": "3363", + "$id": "3364", "kind": "property", "name": "expires_after", "serializedName": "expires_after", "doc": "Container expiration time in seconds relative to the 'anchor' time.", "type": { - "$id": "3364", + "$id": "3365", "kind": "model", "name": "CreateContainerBodyExpiresAfter", "namespace": "OpenAI", @@ -38661,13 +38674,13 @@ "decorators": [], "properties": [ { - "$id": "3365", + "$id": "3366", "kind": "property", "name": "anchor", "serializedName": "anchor", "doc": "Time anchor for the expiration time. Currently only 'last_active_at' is supported.", "type": { - "$ref": "1561" + "$ref": "1562" }, "optional": false, "readOnly": false, @@ -38683,12 +38696,12 @@ "isHttpMetadata": false }, { - "$id": "3366", + "$id": "3367", "kind": "property", "name": "minutes", "serializedName": "minutes", "type": { - "$id": "3367", + "$id": "3368", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -38725,10 +38738,10 @@ ] }, { - "$ref": "3364" + "$ref": "3365" }, { - "$id": "3368", + "$id": "3369", "kind": "model", "name": "DeleteContainerResponse", "namespace": "OpenAI", @@ -38737,12 +38750,12 @@ "decorators": [], "properties": [ { - "$id": "3369", + "$id": "3370", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "3370", + "$id": "3371", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38762,12 +38775,12 @@ "isHttpMetadata": false }, { - "$id": "3371", + "$id": "3372", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1563" + "$ref": "1564" }, "optional": false, "readOnly": false, @@ -38783,12 +38796,12 @@ "isHttpMetadata": false }, { - "$id": "3372", + "$id": "3373", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$ref": "1565" + "$ref": "1566" }, "optional": false, "readOnly": false, @@ -38806,7 +38819,7 @@ ] }, { - "$id": "3373", + "$id": "3374", "kind": "model", "name": "CreateContainerFileBody", "namespace": "OpenAI", @@ -38815,13 +38828,13 @@ "decorators": [], "properties": [ { - "$id": "3374", + "$id": "3375", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "Name of the file to create.", "type": { - "$id": "3375", + "$id": "3376", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38847,13 +38860,13 @@ "isHttpMetadata": false }, { - "$id": "3376", + "$id": "3377", "kind": "property", "name": "file", "serializedName": "file", "doc": "The File object (not file name) to be uploaded.", "type": { - "$id": "3377", + "$id": "3378", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -38882,7 +38895,7 @@ ] }, { - "$id": "3378", + "$id": "3379", "kind": "model", "name": "ContainerFileResource", "namespace": "OpenAI", @@ -38891,13 +38904,13 @@ "decorators": [], "properties": [ { - "$id": "3379", + "$id": "3380", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for the file.", "type": { - "$id": "3380", + "$id": "3381", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38917,13 +38930,13 @@ "isHttpMetadata": false }, { - "$id": "3381", + "$id": "3382", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of this object (`container.file`).", "type": { - "$id": "3382", + "$id": "3383", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38943,13 +38956,13 @@ "isHttpMetadata": false }, { - "$id": "3383", + "$id": "3384", "kind": "property", "name": "container_id", "serializedName": "container_id", "doc": "The container this file belongs to.", "type": { - "$id": "3384", + "$id": "3385", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38969,18 +38982,18 @@ "isHttpMetadata": false }, { - "$id": "3385", + "$id": "3386", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) when the file was created.", "type": { - "$id": "3386", + "$id": "3387", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3387", + "$id": "3388", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39003,13 +39016,13 @@ "isHttpMetadata": false }, { - "$id": "3388", + "$id": "3389", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "Size of the file in bytes.", "type": { - "$id": "3389", + "$id": "3390", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39029,13 +39042,13 @@ "isHttpMetadata": false }, { - "$id": "3390", + "$id": "3391", "kind": "property", "name": "path", "serializedName": "path", "doc": "Path of the file in the container.", "type": { - "$id": "3391", + "$id": "3392", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39055,13 +39068,13 @@ "isHttpMetadata": false }, { - "$id": "3392", + "$id": "3393", "kind": "property", "name": "source", "serializedName": "source", "doc": "Source of the file (e.g., `user`, `assistant`).", "type": { - "$id": "3393", + "$id": "3394", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39083,7 +39096,7 @@ ] }, { - "$id": "3394", + "$id": "3395", "kind": "model", "name": "ContainerFileListResource", "namespace": "OpenAI", @@ -39092,13 +39105,13 @@ "decorators": [], "properties": [ { - "$id": "3395", + "$id": "3396", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of object returned, must be 'list'.", "type": { - "$ref": "1567" + "$ref": "1568" }, "optional": false, "readOnly": false, @@ -39114,17 +39127,17 @@ "isHttpMetadata": false }, { - "$id": "3396", + "$id": "3397", "kind": "property", "name": "data", "serializedName": "data", "doc": "A list of container files.", "type": { - "$id": "3397", + "$id": "3398", "kind": "array", "name": "ArrayContainerFileResource", "valueType": { - "$ref": "3378" + "$ref": "3379" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -39143,13 +39156,13 @@ "isHttpMetadata": false }, { - "$id": "3398", + "$id": "3399", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The ID of the first file in the list.", "type": { - "$id": "3399", + "$id": "3400", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39169,13 +39182,13 @@ "isHttpMetadata": false }, { - "$id": "3400", + "$id": "3401", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The ID of the last file in the list.", "type": { - "$id": "3401", + "$id": "3402", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39195,13 +39208,13 @@ "isHttpMetadata": false }, { - "$id": "3402", + "$id": "3403", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Whether there are more files available.", "type": { - "$id": "3403", + "$id": "3404", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -39223,7 +39236,7 @@ ] }, { - "$id": "3404", + "$id": "3405", "kind": "model", "name": "DeleteContainerFileResponse", "namespace": "OpenAI", @@ -39232,12 +39245,12 @@ "decorators": [], "properties": [ { - "$id": "3405", + "$id": "3406", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "3406", + "$id": "3407", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39257,12 +39270,12 @@ "isHttpMetadata": false }, { - "$id": "3407", + "$id": "3408", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1569" + "$ref": "1570" }, "optional": false, "readOnly": false, @@ -39278,12 +39291,12 @@ "isHttpMetadata": false }, { - "$id": "3408", + "$id": "3409", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$ref": "1571" + "$ref": "1572" }, "optional": false, "readOnly": false, @@ -39301,7 +39314,7 @@ ] }, { - "$id": "3409", + "$id": "3410", "kind": "model", "name": "CreateEmbeddingRequest", "namespace": "OpenAI", @@ -39315,35 +39328,35 @@ ], "properties": [ { - "$id": "3410", + "$id": "3411", "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": "3411", + "$id": "3412", "kind": "union", "name": "CreateEmbeddingRequestInput", "variantTypes": [ { - "$id": "3412", + "$id": "3413", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$ref": "2437" + "$ref": "2438" }, { - "$ref": "2670" + "$ref": "2671" }, { - "$id": "3413", + "$id": "3414", "kind": "array", "name": "ArrayArray", "valueType": { - "$ref": "2670" + "$ref": "2671" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -39366,7 +39379,7 @@ "isHttpMetadata": false }, { - "$id": "3414", + "$id": "3415", "kind": "property", "name": "model", "serializedName": "model", @@ -39388,7 +39401,7 @@ "isHttpMetadata": false }, { - "$id": "3415", + "$id": "3416", "kind": "property", "name": "encoding_format", "serializedName": "encoding_format", @@ -39410,13 +39423,13 @@ "isHttpMetadata": false }, { - "$id": "3416", + "$id": "3417", "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": "3417", + "$id": "3418", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39436,13 +39449,13 @@ "isHttpMetadata": false }, { - "$id": "3418", + "$id": "3419", "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": "3419", + "$id": "3420", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39464,7 +39477,7 @@ ] }, { - "$id": "3420", + "$id": "3421", "kind": "model", "name": "CreateEmbeddingResponse", "namespace": "OpenAI", @@ -39478,17 +39491,17 @@ ], "properties": [ { - "$id": "3421", + "$id": "3422", "kind": "property", "name": "data", "serializedName": "data", "doc": "The list of embeddings generated by the model.", "type": { - "$id": "3422", + "$id": "3423", "kind": "array", "name": "ArrayEmbedding", "valueType": { - "$id": "3423", + "$id": "3424", "kind": "model", "name": "Embedding", "namespace": "OpenAI", @@ -39503,13 +39516,13 @@ ], "properties": [ { - "$id": "3424", + "$id": "3425", "kind": "property", "name": "index", "serializedName": "index", "doc": "The index of the embedding in the list of embeddings.", "type": { - "$id": "3425", + "$id": "3426", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39529,22 +39542,22 @@ "isHttpMetadata": false }, { - "$id": "3426", + "$id": "3427", "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": "3427", + "$id": "3428", "kind": "union", "name": "EmbeddingEmbedding", "variantTypes": [ { - "$id": "3428", + "$id": "3429", "kind": "array", "name": "Array14", "valueType": { - "$id": "3429", + "$id": "3430", "kind": "float", "name": "float", "crossLanguageDefinitionId": "TypeSpec.float", @@ -39554,7 +39567,7 @@ "decorators": [] }, { - "$id": "3430", + "$id": "3431", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39578,13 +39591,13 @@ "isHttpMetadata": false }, { - "$id": "3431", + "$id": "3432", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"embedding\".", "type": { - "$ref": "1573" + "$ref": "1574" }, "optional": false, "readOnly": false, @@ -39618,13 +39631,13 @@ "isHttpMetadata": false }, { - "$id": "3432", + "$id": "3433", "kind": "property", "name": "model", "serializedName": "model", "doc": "The name of the model used to generate the embedding.", "type": { - "$id": "3433", + "$id": "3434", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39644,13 +39657,13 @@ "isHttpMetadata": false }, { - "$id": "3434", + "$id": "3435", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"list\".", "type": { - "$ref": "1575" + "$ref": "1576" }, "optional": false, "readOnly": false, @@ -39666,13 +39679,13 @@ "isHttpMetadata": false }, { - "$id": "3435", + "$id": "3436", "kind": "property", "name": "usage", "serializedName": "usage", "doc": "The usage information for the request.", "type": { - "$id": "3436", + "$id": "3437", "kind": "model", "name": "CreateEmbeddingResponseUsage", "namespace": "OpenAI", @@ -39681,13 +39694,13 @@ "decorators": [], "properties": [ { - "$id": "3437", + "$id": "3438", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "The number of tokens used by the prompt.", "type": { - "$id": "3438", + "$id": "3439", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39707,13 +39720,13 @@ "isHttpMetadata": false }, { - "$id": "3439", + "$id": "3440", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens used by the request.", "type": { - "$id": "3440", + "$id": "3441", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39750,13 +39763,13 @@ ] }, { - "$ref": "3423" + "$ref": "3424" }, { - "$ref": "3436" + "$ref": "3437" }, { - "$id": "3441", + "$id": "3442", "kind": "model", "name": "ListFilesResponse", "namespace": "OpenAI", @@ -39765,12 +39778,12 @@ "decorators": [], "properties": [ { - "$id": "3442", + "$id": "3443", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1577" + "$ref": "1578" }, "optional": false, "readOnly": false, @@ -39786,16 +39799,16 @@ "isHttpMetadata": false }, { - "$id": "3443", + "$id": "3444", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3444", + "$id": "3445", "kind": "array", "name": "ArrayOpenAiFile", "valueType": { - "$id": "3445", + "$id": "3446", "kind": "model", "name": "OpenAIFile", "namespace": "OpenAI", @@ -39805,13 +39818,13 @@ "decorators": [], "properties": [ { - "$id": "3446", + "$id": "3447", "kind": "property", "name": "id", "serializedName": "id", "doc": "The file identifier, which can be referenced in the API endpoints.", "type": { - "$id": "3447", + "$id": "3448", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39831,16 +39844,16 @@ "isHttpMetadata": false }, { - "$id": "3448", + "$id": "3449", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "The size of the file, in bytes.", "type": { - "$id": "3449", + "$id": "3450", "kind": "nullable", "type": { - "$id": "3450", + "$id": "3451", "kind": "int64", "name": "int64", "crossLanguageDefinitionId": "TypeSpec.int64", @@ -39862,18 +39875,18 @@ "isHttpMetadata": false }, { - "$id": "3451", + "$id": "3452", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the file was created.", "type": { - "$id": "3452", + "$id": "3453", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3453", + "$id": "3454", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39896,18 +39909,18 @@ "isHttpMetadata": false }, { - "$id": "3454", + "$id": "3455", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the file will expire.", "type": { - "$id": "3455", + "$id": "3456", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3456", + "$id": "3457", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39930,13 +39943,13 @@ "isHttpMetadata": false }, { - "$id": "3457", + "$id": "3458", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file.", "type": { - "$id": "3458", + "$id": "3459", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39956,13 +39969,13 @@ "isHttpMetadata": false }, { - "$id": "3459", + "$id": "3460", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `file`.", "type": { - "$ref": "1579" + "$ref": "1580" }, "optional": false, "readOnly": false, @@ -39978,7 +39991,7 @@ "isHttpMetadata": false }, { - "$id": "3460", + "$id": "3461", "kind": "property", "name": "purpose", "serializedName": "purpose", @@ -40000,7 +40013,7 @@ "isHttpMetadata": false }, { - "$id": "3461", + "$id": "3462", "kind": "property", "name": "status", "serializedName": "status", @@ -40022,13 +40035,13 @@ "isHttpMetadata": false }, { - "$id": "3462", + "$id": "3463", "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": "3463", + "$id": "3464", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40066,12 +40079,12 @@ "isHttpMetadata": false }, { - "$id": "3464", + "$id": "3465", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "3465", + "$id": "3466", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40091,12 +40104,12 @@ "isHttpMetadata": false }, { - "$id": "3466", + "$id": "3467", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "3467", + "$id": "3468", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40116,12 +40129,12 @@ "isHttpMetadata": false }, { - "$id": "3468", + "$id": "3469", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3469", + "$id": "3470", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -40143,10 +40156,10 @@ ] }, { - "$ref": "3445" + "$ref": "3446" }, { - "$id": "3470", + "$id": "3471", "kind": "model", "name": "CreateFileRequest", "namespace": "OpenAI", @@ -40155,13 +40168,13 @@ "decorators": [], "properties": [ { - "$id": "3471", + "$id": "3472", "kind": "property", "name": "file", "serializedName": "file", "doc": "The File object (not file name) to be uploaded.", "type": { - "$id": "3472", + "$id": "3473", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -40188,7 +40201,7 @@ "isHttpMetadata": false }, { - "$id": "3473", + "$id": "3474", "kind": "property", "name": "purpose", "serializedName": "purpose", @@ -40218,7 +40231,7 @@ ] }, { - "$id": "3474", + "$id": "3475", "kind": "model", "name": "DeleteFileResponse", "namespace": "OpenAI", @@ -40227,12 +40240,12 @@ "decorators": [], "properties": [ { - "$id": "3475", + "$id": "3476", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "3476", + "$id": "3477", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40252,12 +40265,12 @@ "isHttpMetadata": false }, { - "$id": "3477", + "$id": "3478", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1581" + "$ref": "1582" }, "optional": false, "readOnly": false, @@ -40273,12 +40286,12 @@ "isHttpMetadata": false }, { - "$id": "3478", + "$id": "3479", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "3479", + "$id": "3480", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -40300,7 +40313,7 @@ ] }, { - "$id": "3480", + "$id": "3481", "kind": "model", "name": "ListFineTuningCheckpointPermissionResponse", "namespace": "OpenAI", @@ -40309,16 +40322,16 @@ "decorators": [], "properties": [ { - "$id": "3481", + "$id": "3482", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3482", + "$id": "3483", "kind": "array", "name": "ArrayFineTuningCheckpointPermission", "valueType": { - "$id": "3483", + "$id": "3484", "kind": "model", "name": "FineTuningCheckpointPermission", "namespace": "OpenAI", @@ -40328,13 +40341,13 @@ "decorators": [], "properties": [ { - "$id": "3484", + "$id": "3485", "kind": "property", "name": "id", "serializedName": "id", "doc": "The permission identifier, which can be referenced in the API endpoints.", "type": { - "$id": "3485", + "$id": "3486", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40354,18 +40367,18 @@ "isHttpMetadata": false }, { - "$id": "3486", + "$id": "3487", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the permission was created.", "type": { - "$id": "3487", + "$id": "3488", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3488", + "$id": "3489", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -40388,13 +40401,13 @@ "isHttpMetadata": false }, { - "$id": "3489", + "$id": "3490", "kind": "property", "name": "project_id", "serializedName": "project_id", "doc": "The project identifier that the permission is for.", "type": { - "$id": "3490", + "$id": "3491", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40414,13 +40427,13 @@ "isHttpMetadata": false }, { - "$id": "3491", + "$id": "3492", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"checkpoint.permission\".", "type": { - "$ref": "1583" + "$ref": "1584" }, "optional": false, "readOnly": false, @@ -40454,12 +40467,12 @@ "isHttpMetadata": false }, { - "$id": "3492", + "$id": "3493", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1585" + "$ref": "1586" }, "optional": false, "readOnly": false, @@ -40475,15 +40488,15 @@ "isHttpMetadata": false }, { - "$id": "3493", + "$id": "3494", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "3494", + "$id": "3495", "kind": "nullable", "type": { - "$id": "3495", + "$id": "3496", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40505,15 +40518,15 @@ "isHttpMetadata": false }, { - "$id": "3496", + "$id": "3497", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "3497", + "$id": "3498", "kind": "nullable", "type": { - "$id": "3498", + "$id": "3499", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40535,12 +40548,12 @@ "isHttpMetadata": false }, { - "$id": "3499", + "$id": "3500", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3500", + "$id": "3501", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -40562,10 +40575,10 @@ ] }, { - "$ref": "3483" + "$ref": "3484" }, { - "$id": "3501", + "$id": "3502", "kind": "model", "name": "CreateFineTuningCheckpointPermissionRequest", "namespace": "OpenAI", @@ -40574,13 +40587,13 @@ "decorators": [], "properties": [ { - "$id": "3502", + "$id": "3503", "kind": "property", "name": "project_ids", "serializedName": "project_ids", "doc": "The project identifiers to grant access to.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": false, "readOnly": false, @@ -40598,7 +40611,7 @@ ] }, { - "$id": "3503", + "$id": "3504", "kind": "model", "name": "DeleteFineTuningCheckpointPermissionResponse", "namespace": "OpenAI", @@ -40607,13 +40620,13 @@ "decorators": [], "properties": [ { - "$id": "3504", + "$id": "3505", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the fine-tuned model checkpoint permission that was deleted.", "type": { - "$id": "3505", + "$id": "3506", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40633,13 +40646,13 @@ "isHttpMetadata": false }, { - "$id": "3506", + "$id": "3507", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"checkpoint.permission\".", "type": { - "$ref": "1587" + "$ref": "1588" }, "optional": false, "readOnly": false, @@ -40655,13 +40668,13 @@ "isHttpMetadata": false }, { - "$id": "3507", + "$id": "3508", "kind": "property", "name": "deleted", "serializedName": "deleted", "doc": "Whether the fine-tuned model checkpoint permission was successfully deleted.", "type": { - "$id": "3508", + "$id": "3509", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -40683,7 +40696,7 @@ ] }, { - "$id": "3509", + "$id": "3510", "kind": "model", "name": "CreateFineTuningJobRequest", "namespace": "OpenAI", @@ -40692,7 +40705,7 @@ "decorators": [], "properties": [ { - "$id": "3510", + "$id": "3511", "kind": "property", "name": "model", "serializedName": "model", @@ -40714,13 +40727,13 @@ "isHttpMetadata": false }, { - "$id": "3511", + "$id": "3512", "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": "3512", + "$id": "3513", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40740,13 +40753,13 @@ "isHttpMetadata": false }, { - "$id": "3513", + "$id": "3514", "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": "3514", + "$id": "3515", "kind": "model", "name": "CreateFineTuningJobRequestHyperparameters", "namespace": "OpenAI", @@ -40755,21 +40768,21 @@ "decorators": [], "properties": [ { - "$id": "3515", + "$id": "3516", "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": "3516", + "$id": "3517", "kind": "union", "name": "CreateFineTuningJobRequestHyperparametersBatchSize", "variantTypes": [ { - "$ref": "1589" + "$ref": "1590" }, { - "$id": "3517", + "$id": "3518", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -40793,21 +40806,21 @@ "isHttpMetadata": false }, { - "$id": "3518", + "$id": "3519", "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": "3519", + "$id": "3520", "kind": "union", "name": "CreateFineTuningJobRequestHyperparametersLearningRateMultiplier", "variantTypes": [ { - "$ref": "1591" + "$ref": "1592" }, { - "$id": "3520", + "$id": "3521", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -40831,21 +40844,21 @@ "isHttpMetadata": false }, { - "$id": "3521", + "$id": "3522", "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": "3522", + "$id": "3523", "kind": "union", "name": "CreateFineTuningJobRequestHyperparametersNEpochs", "variantTypes": [ { - "$ref": "1593" + "$ref": "1594" }, { - "$id": "3523", + "$id": "3524", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -40884,16 +40897,16 @@ "isHttpMetadata": false }, { - "$id": "3524", + "$id": "3525", "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": "3525", + "$id": "3526", "kind": "nullable", "type": { - "$id": "3526", + "$id": "3527", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40915,16 +40928,16 @@ "isHttpMetadata": false }, { - "$id": "3527", + "$id": "3528", "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": "3528", + "$id": "3529", "kind": "nullable", "type": { - "$id": "3529", + "$id": "3530", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40946,20 +40959,20 @@ "isHttpMetadata": false }, { - "$id": "3530", + "$id": "3531", "kind": "property", "name": "integrations", "serializedName": "integrations", "doc": "A list of integrations to enable for your fine-tuning job.", "type": { - "$id": "3531", + "$id": "3532", "kind": "nullable", "type": { - "$id": "3532", + "$id": "3533", "kind": "array", "name": "ArrayCreateFineTuningJobRequestIntegration", "valueType": { - "$id": "3533", + "$id": "3534", "kind": "model", "name": "CreateFineTuningJobRequestIntegration", "namespace": "OpenAI", @@ -40967,7 +40980,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "3534", + "$id": "3535", "kind": "property", "name": "type", "serializedName": "type", @@ -40989,12 +41002,12 @@ }, "properties": [ { - "$ref": "3534" + "$ref": "3535" } ], "discriminatedSubtypes": { "wandb": { - "$id": "3535", + "$id": "3536", "kind": "model", "name": "CreateFineTuningJobRequestWandbIntegration", "namespace": "OpenAI", @@ -41003,16 +41016,16 @@ "discriminatorValue": "wandb", "decorators": [], "baseModel": { - "$ref": "3533" + "$ref": "3534" }, "properties": [ { - "$id": "3536", + "$id": "3537", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "3537", + "$id": "3538", "kind": "enumvalue", "name": "wandb", "value": "wandb", @@ -41020,14 +41033,14 @@ "$ref": "314" }, "enumType": { - "$id": "3538", + "$id": "3539", "kind": "enum", "decorators": [], "name": "CreateFineTuningJobRequestIntegrationType", "isGeneratedName": true, "namespace": "OpenAI", "valueType": { - "$id": "3539", + "$id": "3540", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -41036,16 +41049,16 @@ }, "values": [ { - "$id": "3540", + "$id": "3541", "kind": "enumvalue", "decorators": [], "name": "wandb", "value": "wandb", "valueType": { - "$ref": "3539" + "$ref": "3540" }, "enumType": { - "$ref": "3538" + "$ref": "3539" } } ], @@ -41074,12 +41087,12 @@ "isHttpMetadata": false }, { - "$id": "3541", + "$id": "3542", "kind": "property", "name": "wandb", "serializedName": "wandb", "type": { - "$id": "3542", + "$id": "3543", "kind": "model", "name": "CreateFineTuningJobRequestWandbIntegrationWandb", "namespace": "OpenAI", @@ -41088,12 +41101,12 @@ "decorators": [], "properties": [ { - "$id": "3543", + "$id": "3544", "kind": "property", "name": "project", "serializedName": "project", "type": { - "$id": "3544", + "$id": "3545", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41113,15 +41126,15 @@ "isHttpMetadata": false }, { - "$id": "3545", + "$id": "3546", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "3546", + "$id": "3547", "kind": "nullable", "type": { - "$id": "3547", + "$id": "3548", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41143,15 +41156,15 @@ "isHttpMetadata": false }, { - "$id": "3548", + "$id": "3549", "kind": "property", "name": "entity", "serializedName": "entity", "type": { - "$id": "3549", + "$id": "3550", "kind": "nullable", "type": { - "$id": "3550", + "$id": "3551", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41173,12 +41186,12 @@ "isHttpMetadata": false }, { - "$id": "3551", + "$id": "3552", "kind": "property", "name": "tags", "serializedName": "tags", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": true, "readOnly": false, @@ -41231,16 +41244,16 @@ "isHttpMetadata": false }, { - "$id": "3552", + "$id": "3553", "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": "3553", + "$id": "3554", "kind": "nullable", "type": { - "$id": "3554", + "$id": "3555", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -41262,12 +41275,12 @@ "isHttpMetadata": false }, { - "$id": "3555", + "$id": "3556", "kind": "property", "name": "method", "serializedName": "method", "type": { - "$id": "3556", + "$id": "3557", "kind": "model", "name": "FineTuneMethod", "namespace": "OpenAI", @@ -41277,7 +41290,7 @@ "decorators": [], "properties": [ { - "$id": "3557", + "$id": "3558", "kind": "property", "name": "type", "serializedName": "type", @@ -41299,12 +41312,12 @@ "isHttpMetadata": false }, { - "$id": "3558", + "$id": "3559", "kind": "property", "name": "supervised", "serializedName": "supervised", "type": { - "$id": "3559", + "$id": "3560", "kind": "model", "name": "FineTuneSupervisedMethod", "namespace": "OpenAI", @@ -41314,12 +41327,12 @@ "decorators": [], "properties": [ { - "$id": "3560", + "$id": "3561", "kind": "property", "name": "hyperparameters", "serializedName": "hyperparameters", "type": { - "$id": "3561", + "$id": "3562", "kind": "model", "name": "FineTuneSupervisedHyperparameters", "namespace": "OpenAI", @@ -41329,21 +41342,21 @@ "decorators": [], "properties": [ { - "$id": "3562", + "$id": "3563", "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": "3563", + "$id": "3564", "kind": "union", "name": "FineTuneSupervisedHyperparametersBatchSize", "variantTypes": [ { - "$ref": "1595" + "$ref": "1596" }, { - "$id": "3564", + "$id": "3565", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -41367,21 +41380,21 @@ "isHttpMetadata": false }, { - "$id": "3565", + "$id": "3566", "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": "3566", + "$id": "3567", "kind": "union", "name": "FineTuneSupervisedHyperparametersLearningRateMultiplier", "variantTypes": [ { - "$ref": "1597" + "$ref": "1598" }, { - "$id": "3567", + "$id": "3568", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -41405,21 +41418,21 @@ "isHttpMetadata": false }, { - "$id": "3568", + "$id": "3569", "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": "3569", + "$id": "3570", "kind": "union", "name": "FineTuneSupervisedHyperparametersNEpochs", "variantTypes": [ { - "$ref": "1599" + "$ref": "1600" }, { - "$id": "3570", + "$id": "3571", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -41473,12 +41486,12 @@ "isHttpMetadata": false }, { - "$id": "3571", + "$id": "3572", "kind": "property", "name": "dpo", "serializedName": "dpo", "type": { - "$id": "3572", + "$id": "3573", "kind": "model", "name": "FineTuneDPOMethod", "namespace": "OpenAI", @@ -41488,12 +41501,12 @@ "decorators": [], "properties": [ { - "$id": "3573", + "$id": "3574", "kind": "property", "name": "hyperparameters", "serializedName": "hyperparameters", "type": { - "$id": "3574", + "$id": "3575", "kind": "model", "name": "FineTuneDPOHyperparameters", "namespace": "OpenAI", @@ -41503,21 +41516,21 @@ "decorators": [], "properties": [ { - "$id": "3575", + "$id": "3576", "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": "3576", + "$id": "3577", "kind": "union", "name": "FineTuneDPOHyperparametersBeta", "variantTypes": [ { - "$ref": "1601" + "$ref": "1602" }, { - "$id": "3577", + "$id": "3578", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -41541,21 +41554,21 @@ "isHttpMetadata": false }, { - "$id": "3578", + "$id": "3579", "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": "3579", + "$id": "3580", "kind": "union", "name": "FineTuneDPOHyperparametersBatchSize", "variantTypes": [ { - "$ref": "1603" + "$ref": "1604" }, { - "$id": "3580", + "$id": "3581", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -41579,21 +41592,21 @@ "isHttpMetadata": false }, { - "$id": "3581", + "$id": "3582", "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": "3582", + "$id": "3583", "kind": "union", "name": "FineTuneDPOHyperparametersLearningRateMultiplier", "variantTypes": [ { - "$ref": "1605" + "$ref": "1606" }, { - "$id": "3583", + "$id": "3584", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -41617,21 +41630,21 @@ "isHttpMetadata": false }, { - "$id": "3584", + "$id": "3585", "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": "3585", + "$id": "3586", "kind": "union", "name": "FineTuneDPOHyperparametersNEpochs", "variantTypes": [ { - "$ref": "1607" + "$ref": "1608" }, { - "$id": "3586", + "$id": "3587", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -41685,12 +41698,12 @@ "isHttpMetadata": false }, { - "$id": "3587", + "$id": "3588", "kind": "property", "name": "reinforcement", "serializedName": "reinforcement", "type": { - "$id": "3588", + "$id": "3589", "kind": "model", "name": "FineTuneReinforcementMethod", "namespace": "OpenAI", @@ -41700,18 +41713,18 @@ "decorators": [], "properties": [ { - "$id": "3589", + "$id": "3590", "kind": "property", "name": "grader", "serializedName": "grader", "doc": "The grader used for the fine-tuning job.", "type": { - "$id": "3590", + "$id": "3591", "kind": "union", "name": "FineTuneReinforcementMethodGrader", "variantTypes": [ { - "$id": "3591", + "$id": "3592", "kind": "model", "name": "GraderStringCheck", "namespace": "OpenAI", @@ -41721,7 +41734,7 @@ "discriminatorValue": "string_check", "decorators": [], "baseModel": { - "$id": "3592", + "$id": "3593", "kind": "model", "name": "Grader", "namespace": "OpenAI", @@ -41729,7 +41742,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3593", + "$id": "3594", "kind": "property", "name": "type", "serializedName": "type", @@ -41751,15 +41764,15 @@ }, "properties": [ { - "$ref": "3593" + "$ref": "3594" } ], "discriminatedSubtypes": { "string_check": { - "$ref": "3591" + "$ref": "3592" }, "text_similarity": { - "$id": "3594", + "$id": "3595", "kind": "model", "name": "GraderTextSimilarity", "namespace": "OpenAI", @@ -41769,17 +41782,17 @@ "discriminatorValue": "text_similarity", "decorators": [], "baseModel": { - "$ref": "3592" + "$ref": "3593" }, "properties": [ { - "$id": "3595", + "$id": "3596", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of grader.", "type": { - "$id": "3596", + "$id": "3597", "kind": "enumvalue", "name": "text_similarity", "value": "text_similarity", @@ -41787,14 +41800,14 @@ "$ref": "328" }, "enumType": { - "$id": "3597", + "$id": "3598", "kind": "enum", "decorators": [], "name": "GraderType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "3598", + "$id": "3599", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -41803,81 +41816,81 @@ }, "values": [ { - "$id": "3599", + "$id": "3600", "kind": "enumvalue", "decorators": [], "name": "string_check", "value": "string_check", "valueType": { - "$ref": "3598" + "$ref": "3599" }, "enumType": { - "$ref": "3597" + "$ref": "3598" } }, { - "$id": "3600", + "$id": "3601", "kind": "enumvalue", "decorators": [], "name": "text_similarity", "value": "text_similarity", "valueType": { - "$ref": "3598" + "$ref": "3599" }, "enumType": { - "$ref": "3597" + "$ref": "3598" } }, { - "$id": "3601", + "$id": "3602", "kind": "enumvalue", "decorators": [], "name": "score_model", "value": "score_model", "valueType": { - "$ref": "3598" + "$ref": "3599" }, "enumType": { - "$ref": "3597" + "$ref": "3598" } }, { - "$id": "3602", + "$id": "3603", "kind": "enumvalue", "decorators": [], "name": "label_model", "value": "label_model", "valueType": { - "$ref": "3598" + "$ref": "3599" }, "enumType": { - "$ref": "3597" + "$ref": "3598" } }, { - "$id": "3603", + "$id": "3604", "kind": "enumvalue", "decorators": [], "name": "python", "value": "python", "valueType": { - "$ref": "3598" + "$ref": "3599" }, "enumType": { - "$ref": "3597" + "$ref": "3598" } }, { - "$id": "3604", + "$id": "3605", "kind": "enumvalue", "decorators": [], "name": "multi", "value": "multi", "valueType": { - "$ref": "3598" + "$ref": "3599" }, "enumType": { - "$ref": "3597" + "$ref": "3598" } } ], @@ -41906,13 +41919,13 @@ "isHttpMetadata": false }, { - "$id": "3605", + "$id": "3606", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3606", + "$id": "3607", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41932,13 +41945,13 @@ "isHttpMetadata": false }, { - "$id": "3607", + "$id": "3608", "kind": "property", "name": "input", "serializedName": "input", "doc": "The text being graded.", "type": { - "$id": "3608", + "$id": "3609", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41958,13 +41971,13 @@ "isHttpMetadata": false }, { - "$id": "3609", + "$id": "3610", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The text being graded against.", "type": { - "$id": "3610", + "$id": "3611", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41984,7 +41997,7 @@ "isHttpMetadata": false }, { - "$id": "3611", + "$id": "3612", "kind": "property", "name": "evaluation_metric", "serializedName": "evaluation_metric", @@ -42008,7 +42021,7 @@ ] }, "python": { - "$id": "3612", + "$id": "3613", "kind": "model", "name": "GraderPython", "namespace": "OpenAI", @@ -42018,17 +42031,17 @@ "discriminatorValue": "python", "decorators": [], "baseModel": { - "$ref": "3592" + "$ref": "3593" }, "properties": [ { - "$id": "3613", + "$id": "3614", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `python`.", "type": { - "$id": "3614", + "$id": "3615", "kind": "enumvalue", "name": "python", "value": "python", @@ -42036,7 +42049,7 @@ "$ref": "328" }, "enumType": { - "$ref": "3597" + "$ref": "3598" }, "decorators": [] }, @@ -42054,13 +42067,13 @@ "isHttpMetadata": false }, { - "$id": "3615", + "$id": "3616", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3616", + "$id": "3617", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42080,13 +42093,13 @@ "isHttpMetadata": false }, { - "$id": "3617", + "$id": "3618", "kind": "property", "name": "source", "serializedName": "source", "doc": "The source code of the python script.", "type": { - "$id": "3618", + "$id": "3619", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42106,13 +42119,13 @@ "isHttpMetadata": false }, { - "$id": "3619", + "$id": "3620", "kind": "property", "name": "image_tag", "serializedName": "image_tag", "doc": "The image tag to use for the python script.", "type": { - "$id": "3620", + "$id": "3621", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42134,7 +42147,7 @@ ] }, "score_model": { - "$id": "3621", + "$id": "3622", "kind": "model", "name": "GraderScoreModel", "namespace": "OpenAI", @@ -42144,17 +42157,17 @@ "discriminatorValue": "score_model", "decorators": [], "baseModel": { - "$ref": "3592" + "$ref": "3593" }, "properties": [ { - "$id": "3622", + "$id": "3623", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `score_model`.", "type": { - "$id": "3623", + "$id": "3624", "kind": "enumvalue", "name": "score_model", "value": "score_model", @@ -42162,7 +42175,7 @@ "$ref": "328" }, "enumType": { - "$ref": "3597" + "$ref": "3598" }, "decorators": [] }, @@ -42180,13 +42193,13 @@ "isHttpMetadata": false }, { - "$id": "3624", + "$id": "3625", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3625", + "$id": "3626", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42206,13 +42219,13 @@ "isHttpMetadata": false }, { - "$id": "3626", + "$id": "3627", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation.", "type": { - "$id": "3627", + "$id": "3628", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42232,13 +42245,13 @@ "isHttpMetadata": false }, { - "$id": "3628", + "$id": "3629", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "doc": "The sampling parameters for the model.", "type": { - "$id": "3629", + "$id": "3630", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -42258,17 +42271,17 @@ "isHttpMetadata": false }, { - "$id": "3630", + "$id": "3631", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$id": "3631", + "$id": "3632", "kind": "array", "name": "ArrayEvalItem", "valueType": { - "$id": "3632", + "$id": "3633", "kind": "model", "name": "EvalItem", "namespace": "OpenAI", @@ -42278,7 +42291,7 @@ "decorators": [], "properties": [ { - "$id": "3633", + "$id": "3634", "kind": "property", "name": "role", "serializedName": "role", @@ -42300,25 +42313,25 @@ "isHttpMetadata": false }, { - "$id": "3634", + "$id": "3635", "kind": "property", "name": "content", "serializedName": "content", "doc": "Text inputs to the model - can contain template strings.", "type": { - "$id": "3635", + "$id": "3636", "kind": "union", "name": "EvalItemContent1", "variantTypes": [ { - "$id": "3636", + "$id": "3637", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "3637", + "$id": "3638", "kind": "model", "name": "EvalItemContent", "namespace": "OpenAI", @@ -42326,7 +42339,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3638", + "$id": "3639", "kind": "property", "name": "type", "serializedName": "type", @@ -42348,12 +42361,12 @@ }, "properties": [ { - "$ref": "3638" + "$ref": "3639" } ], "discriminatedSubtypes": { "input_text": { - "$id": "3639", + "$id": "3640", "kind": "model", "name": "EvalItemContentInputText", "namespace": "OpenAI", @@ -42362,16 +42375,16 @@ "discriminatorValue": "input_text", "decorators": [], "baseModel": { - "$ref": "3637" + "$ref": "3638" }, "properties": [ { - "$id": "3640", + "$id": "3641", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "3641", + "$id": "3642", "kind": "enumvalue", "name": "input_text", "value": "input_text", @@ -42379,14 +42392,14 @@ "$ref": "354" }, "enumType": { - "$id": "3642", + "$id": "3643", "kind": "enum", "decorators": [], "name": "EvalItemContentType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "3643", + "$id": "3644", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -42395,29 +42408,29 @@ }, "values": [ { - "$id": "3644", + "$id": "3645", "kind": "enumvalue", "decorators": [], "name": "input_text", "value": "input_text", "valueType": { - "$ref": "3643" + "$ref": "3644" }, "enumType": { - "$ref": "3642" + "$ref": "3643" } }, { - "$id": "3645", + "$id": "3646", "kind": "enumvalue", "decorators": [], "name": "output_text", "value": "output_text", "valueType": { - "$ref": "3643" + "$ref": "3644" }, "enumType": { - "$ref": "3642" + "$ref": "3643" } } ], @@ -42446,12 +42459,12 @@ "isHttpMetadata": false }, { - "$id": "3646", + "$id": "3647", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "3647", + "$id": "3648", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42473,7 +42486,7 @@ ] }, "output_text": { - "$id": "3648", + "$id": "3649", "kind": "model", "name": "EvalItemContentOutputText", "namespace": "OpenAI", @@ -42482,16 +42495,16 @@ "discriminatorValue": "output_text", "decorators": [], "baseModel": { - "$ref": "3637" + "$ref": "3638" }, "properties": [ { - "$id": "3649", + "$id": "3650", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "3650", + "$id": "3651", "kind": "enumvalue", "name": "output_text", "value": "output_text", @@ -42499,7 +42512,7 @@ "$ref": "354" }, "enumType": { - "$ref": "3642" + "$ref": "3643" }, "decorators": [] }, @@ -42517,12 +42530,12 @@ "isHttpMetadata": false }, { - "$id": "3651", + "$id": "3652", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "3652", + "$id": "3653", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42563,7 +42576,7 @@ "isHttpMetadata": false }, { - "$id": "3653", + "$id": "3654", "kind": "property", "name": "type", "serializedName": "type", @@ -42603,13 +42616,13 @@ "isHttpMetadata": false }, { - "$id": "3654", + "$id": "3655", "kind": "property", "name": "range", "serializedName": "range", "doc": "The range of the score. Defaults to `[0, 1]`.", "type": { - "$ref": "2691" + "$ref": "2692" }, "optional": true, "readOnly": false, @@ -42627,7 +42640,7 @@ ] }, "multi": { - "$id": "3655", + "$id": "3656", "kind": "model", "name": "GraderMulti", "namespace": "OpenAI", @@ -42637,17 +42650,17 @@ "discriminatorValue": "multi", "decorators": [], "baseModel": { - "$ref": "3592" + "$ref": "3593" }, "properties": [ { - "$id": "3656", + "$id": "3657", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `multi`.", "type": { - "$id": "3657", + "$id": "3658", "kind": "enumvalue", "name": "multi", "value": "multi", @@ -42655,7 +42668,7 @@ "$ref": "328" }, "enumType": { - "$ref": "3597" + "$ref": "3598" }, "decorators": [] }, @@ -42673,13 +42686,13 @@ "isHttpMetadata": false }, { - "$id": "3658", + "$id": "3659", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3659", + "$id": "3660", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42699,29 +42712,29 @@ "isHttpMetadata": false }, { - "$id": "3660", + "$id": "3661", "kind": "property", "name": "graders", "serializedName": "graders", "type": { - "$id": "3661", + "$id": "3662", "kind": "union", "name": "GraderMultiGraders", "variantTypes": [ { - "$ref": "3591" + "$ref": "3592" }, { - "$ref": "3594" + "$ref": "3595" }, { - "$ref": "3612" + "$ref": "3613" }, { - "$ref": "3621" + "$ref": "3622" }, { - "$id": "3662", + "$id": "3663", "kind": "model", "name": "GraderLabelModel", "namespace": "OpenAI", @@ -42731,17 +42744,17 @@ "discriminatorValue": "label_model", "decorators": [], "baseModel": { - "$ref": "3592" + "$ref": "3593" }, "properties": [ { - "$id": "3663", + "$id": "3664", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `label_model`.", "type": { - "$id": "3664", + "$id": "3665", "kind": "enumvalue", "name": "label_model", "value": "label_model", @@ -42749,7 +42762,7 @@ "$ref": "328" }, "enumType": { - "$ref": "3597" + "$ref": "3598" }, "decorators": [] }, @@ -42767,13 +42780,13 @@ "isHttpMetadata": false }, { - "$id": "3665", + "$id": "3666", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3666", + "$id": "3667", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42793,13 +42806,13 @@ "isHttpMetadata": false }, { - "$id": "3667", + "$id": "3668", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation. Must support structured outputs.", "type": { - "$id": "3668", + "$id": "3669", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42819,12 +42832,12 @@ "isHttpMetadata": false }, { - "$id": "3669", + "$id": "3670", "kind": "property", "name": "input", "serializedName": "input", "type": { - "$ref": "3631" + "$ref": "3632" }, "optional": false, "readOnly": false, @@ -42840,13 +42853,13 @@ "isHttpMetadata": false }, { - "$id": "3670", + "$id": "3671", "kind": "property", "name": "labels", "serializedName": "labels", "doc": "The labels to assign to each item in the evaluation.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": false, "readOnly": false, @@ -42862,13 +42875,13 @@ "isHttpMetadata": false }, { - "$id": "3671", + "$id": "3672", "kind": "property", "name": "passing_labels", "serializedName": "passing_labels", "doc": "The labels that indicate a passing result. Must be a subset of labels.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": false, "readOnly": false, @@ -42903,13 +42916,13 @@ "isHttpMetadata": false }, { - "$id": "3672", + "$id": "3673", "kind": "property", "name": "calculate_output", "serializedName": "calculate_output", "doc": "A formula to calculate the output based on grader results.", "type": { - "$id": "3673", + "$id": "3674", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42931,19 +42944,19 @@ ] }, "label_model": { - "$ref": "3662" + "$ref": "3663" } } }, "properties": [ { - "$id": "3674", + "$id": "3675", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `string_check`.", "type": { - "$id": "3675", + "$id": "3676", "kind": "enumvalue", "name": "string_check", "value": "string_check", @@ -42951,7 +42964,7 @@ "$ref": "328" }, "enumType": { - "$ref": "3597" + "$ref": "3598" }, "decorators": [] }, @@ -42969,13 +42982,13 @@ "isHttpMetadata": false }, { - "$id": "3676", + "$id": "3677", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3677", + "$id": "3678", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42995,13 +43008,13 @@ "isHttpMetadata": false }, { - "$id": "3678", + "$id": "3679", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$id": "3679", + "$id": "3680", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43021,13 +43034,13 @@ "isHttpMetadata": false }, { - "$id": "3680", + "$id": "3681", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The reference text. This may include template strings.", "type": { - "$id": "3681", + "$id": "3682", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43047,7 +43060,7 @@ "isHttpMetadata": false }, { - "$id": "3682", + "$id": "3683", "kind": "property", "name": "operation", "serializedName": "operation", @@ -43071,16 +43084,16 @@ ] }, { - "$ref": "3594" + "$ref": "3595" }, { - "$ref": "3612" + "$ref": "3613" }, { - "$ref": "3621" + "$ref": "3622" }, { - "$ref": "3655" + "$ref": "3656" } ], "namespace": "OpenAI", @@ -43100,12 +43113,12 @@ "isHttpMetadata": false }, { - "$id": "3683", + "$id": "3684", "kind": "property", "name": "hyperparameters", "serializedName": "hyperparameters", "type": { - "$id": "3684", + "$id": "3685", "kind": "model", "name": "FineTuneReinforcementHyperparameters", "namespace": "OpenAI", @@ -43115,21 +43128,21 @@ "decorators": [], "properties": [ { - "$id": "3685", + "$id": "3686", "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": "3686", + "$id": "3687", "kind": "union", "name": "FineTuneReinforcementHyperparametersBatchSize", "variantTypes": [ { - "$ref": "1609" + "$ref": "1610" }, { - "$id": "3687", + "$id": "3688", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43153,21 +43166,21 @@ "isHttpMetadata": false }, { - "$id": "3688", + "$id": "3689", "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": "3689", + "$id": "3690", "kind": "union", "name": "FineTuneReinforcementHyperparametersLearningRateMultiplier", "variantTypes": [ { - "$ref": "1611" + "$ref": "1612" }, { - "$id": "3690", + "$id": "3691", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -43191,21 +43204,21 @@ "isHttpMetadata": false }, { - "$id": "3691", + "$id": "3692", "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": "3692", + "$id": "3693", "kind": "union", "name": "FineTuneReinforcementHyperparametersNEpochs", "variantTypes": [ { - "$ref": "1613" + "$ref": "1614" }, { - "$id": "3693", + "$id": "3694", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43229,7 +43242,7 @@ "isHttpMetadata": false }, { - "$id": "3694", + "$id": "3695", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", @@ -43251,21 +43264,21 @@ "isHttpMetadata": false }, { - "$id": "3695", + "$id": "3696", "kind": "property", "name": "compute_multiplier", "serializedName": "compute_multiplier", "doc": "Multiplier on amount of compute used for exploring search space during training.", "type": { - "$id": "3696", + "$id": "3697", "kind": "union", "name": "FineTuneReinforcementHyperparametersComputeMultiplier", "variantTypes": [ { - "$ref": "1615" + "$ref": "1616" }, { - "$id": "3697", + "$id": "3698", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -43289,21 +43302,21 @@ "isHttpMetadata": false }, { - "$id": "3698", + "$id": "3699", "kind": "property", "name": "eval_interval", "serializedName": "eval_interval", "doc": "The number of training steps between evaluation runs.", "type": { - "$id": "3699", + "$id": "3700", "kind": "union", "name": "FineTuneReinforcementHyperparametersEvalInterval", "variantTypes": [ { - "$ref": "1617" + "$ref": "1618" }, { - "$id": "3700", + "$id": "3701", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43327,21 +43340,21 @@ "isHttpMetadata": false }, { - "$id": "3701", + "$id": "3702", "kind": "property", "name": "eval_samples", "serializedName": "eval_samples", "doc": "Number of evaluation samples to generate per training step.", "type": { - "$id": "3702", + "$id": "3703", "kind": "union", "name": "FineTuneReinforcementHyperparametersEvalSamples", "variantTypes": [ { - "$ref": "1619" + "$ref": "1620" }, { - "$id": "3703", + "$id": "3704", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43410,13 +43423,13 @@ "isHttpMetadata": false }, { - "$id": "3704", + "$id": "3705", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": true, "readOnly": false, @@ -43434,73 +43447,73 @@ ] }, { - "$ref": "3514" + "$ref": "3515" }, { - "$ref": "3533" + "$ref": "3534" }, { - "$ref": "3535" + "$ref": "3536" }, { - "$ref": "3542" + "$ref": "3543" }, { - "$ref": "3556" + "$ref": "3557" }, { - "$ref": "3559" + "$ref": "3560" }, { - "$ref": "3561" + "$ref": "3562" }, { - "$ref": "3572" + "$ref": "3573" }, { - "$ref": "3574" + "$ref": "3575" }, { - "$ref": "3588" + "$ref": "3589" }, { - "$ref": "3591" + "$ref": "3592" }, { - "$ref": "3592" + "$ref": "3593" }, { - "$ref": "3594" + "$ref": "3595" }, { - "$ref": "3612" + "$ref": "3613" }, { - "$ref": "3621" + "$ref": "3622" }, { - "$ref": "3632" + "$ref": "3633" }, { - "$ref": "3637" + "$ref": "3638" }, { - "$ref": "3639" + "$ref": "3640" }, { - "$ref": "3648" + "$ref": "3649" }, { - "$ref": "3655" + "$ref": "3656" }, { - "$ref": "3662" + "$ref": "3663" }, { - "$ref": "3684" + "$ref": "3685" }, { - "$id": "3705", + "$id": "3706", "kind": "model", "name": "FineTuningJob", "namespace": "OpenAI", @@ -43510,16 +43523,16 @@ "decorators": [], "properties": [ { - "$id": "3706", + "$id": "3707", "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": "3707", + "$id": "3708", "kind": "nullable", "type": { - "$id": "3708", + "$id": "3709", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43541,13 +43554,13 @@ "isHttpMetadata": false }, { - "$id": "3709", + "$id": "3710", "kind": "property", "name": "id", "serializedName": "id", "doc": "The object identifier, which can be referenced in the API endpoints.", "type": { - "$id": "3710", + "$id": "3711", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43567,18 +43580,18 @@ "isHttpMetadata": false }, { - "$id": "3711", + "$id": "3712", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the fine-tuning job was created.", "type": { - "$id": "3712", + "$id": "3713", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3713", + "$id": "3714", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43601,16 +43614,16 @@ "isHttpMetadata": false }, { - "$id": "3714", + "$id": "3715", "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": "3715", + "$id": "3716", "kind": "nullable", "type": { - "$id": "3716", + "$id": "3717", "kind": "model", "name": "FineTuningJobError1", "namespace": "OpenAI", @@ -43619,13 +43632,13 @@ "decorators": [], "properties": [ { - "$id": "3717", + "$id": "3718", "kind": "property", "name": "code", "serializedName": "code", "doc": "A machine-readable error code.", "type": { - "$id": "3718", + "$id": "3719", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43645,13 +43658,13 @@ "isHttpMetadata": false }, { - "$id": "3719", + "$id": "3720", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable error message.", "type": { - "$id": "3720", + "$id": "3721", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43671,16 +43684,16 @@ "isHttpMetadata": false }, { - "$id": "3721", + "$id": "3722", "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": "3722", + "$id": "3723", "kind": "nullable", "type": { - "$id": "3723", + "$id": "3724", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43719,16 +43732,16 @@ "isHttpMetadata": false }, { - "$id": "3724", + "$id": "3725", "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": "3725", + "$id": "3726", "kind": "nullable", "type": { - "$id": "3726", + "$id": "3727", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43750,21 +43763,21 @@ "isHttpMetadata": false }, { - "$id": "3727", + "$id": "3728", "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": "3728", + "$id": "3729", "kind": "nullable", "type": { - "$id": "3729", + "$id": "3730", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3730", + "$id": "3731", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43789,13 +43802,13 @@ "isHttpMetadata": false }, { - "$id": "3731", + "$id": "3732", "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": "3732", + "$id": "3733", "kind": "model", "name": "FineTuningJobHyperparameters", "namespace": "OpenAI", @@ -43804,24 +43817,24 @@ "decorators": [], "properties": [ { - "$id": "3733", + "$id": "3734", "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": "3734", + "$id": "3735", "kind": "nullable", "type": { - "$id": "3735", + "$id": "3736", "kind": "union", "name": "FineTuningJobHyperparametersBatchSize", "variantTypes": [ { - "$ref": "1621" + "$ref": "1622" }, { - "$id": "3736", + "$id": "3737", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43847,21 +43860,21 @@ "isHttpMetadata": false }, { - "$id": "3737", + "$id": "3738", "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": "3738", + "$id": "3739", "kind": "union", "name": "FineTuningJobHyperparametersLearningRateMultiplier", "variantTypes": [ { - "$ref": "1623" + "$ref": "1624" }, { - "$id": "3739", + "$id": "3740", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -43885,21 +43898,21 @@ "isHttpMetadata": false }, { - "$id": "3740", + "$id": "3741", "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": "3741", + "$id": "3742", "kind": "union", "name": "FineTuningJobHyperparametersNEpochs", "variantTypes": [ { - "$ref": "1625" + "$ref": "1626" }, { - "$id": "3742", + "$id": "3743", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43938,13 +43951,13 @@ "isHttpMetadata": false }, { - "$id": "3743", + "$id": "3744", "kind": "property", "name": "model", "serializedName": "model", "doc": "The base model that is being fine-tuned.", "type": { - "$id": "3744", + "$id": "3745", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43964,13 +43977,13 @@ "isHttpMetadata": false }, { - "$id": "3745", + "$id": "3746", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"fine_tuning.job\".", "type": { - "$ref": "1627" + "$ref": "1628" }, "optional": false, "readOnly": false, @@ -43986,13 +43999,13 @@ "isHttpMetadata": false }, { - "$id": "3746", + "$id": "3747", "kind": "property", "name": "organization_id", "serializedName": "organization_id", "doc": "The organization that owns the fine-tuning job.", "type": { - "$id": "3747", + "$id": "3748", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44012,13 +44025,13 @@ "isHttpMetadata": false }, { - "$id": "3748", + "$id": "3749", "kind": "property", "name": "result_files", "serializedName": "result_files", "doc": "The compiled results file ID(s) for the fine-tuning job. You can retrieve the results with the [Files API](/docs/api-reference/files/retrieve-contents).", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": false, "readOnly": false, @@ -44034,7 +44047,7 @@ "isHttpMetadata": false }, { - "$id": "3749", + "$id": "3750", "kind": "property", "name": "status", "serializedName": "status", @@ -44056,16 +44069,16 @@ "isHttpMetadata": false }, { - "$id": "3750", + "$id": "3751", "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": "3751", + "$id": "3752", "kind": "nullable", "type": { - "$id": "3752", + "$id": "3753", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -44087,13 +44100,13 @@ "isHttpMetadata": false }, { - "$id": "3753", + "$id": "3754", "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": "3754", + "$id": "3755", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44113,16 +44126,16 @@ "isHttpMetadata": false }, { - "$id": "3755", + "$id": "3756", "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": "3756", + "$id": "3757", "kind": "nullable", "type": { - "$id": "3757", + "$id": "3758", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44144,20 +44157,20 @@ "isHttpMetadata": false }, { - "$id": "3758", + "$id": "3759", "kind": "property", "name": "integrations", "serializedName": "integrations", "doc": "A list of integrations to enable for this fine-tuning job.", "type": { - "$id": "3759", + "$id": "3760", "kind": "nullable", "type": { - "$id": "3760", + "$id": "3761", "kind": "array", "name": "ArrayFineTuningIntegration", "valueType": { - "$id": "3761", + "$id": "3762", "kind": "model", "name": "FineTuningIntegration", "namespace": "OpenAI", @@ -44165,7 +44178,7 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3762", + "$id": "3763", "kind": "property", "name": "type", "serializedName": "type", @@ -44187,12 +44200,12 @@ }, "properties": [ { - "$ref": "3762" + "$ref": "3763" } ], "discriminatedSubtypes": { "wandb": { - "$id": "3763", + "$id": "3764", "kind": "model", "name": "FineTuningIntegrationWandb", "namespace": "OpenAI", @@ -44201,17 +44214,17 @@ "discriminatorValue": "wandb", "decorators": [], "baseModel": { - "$ref": "3761" + "$ref": "3762" }, "properties": [ { - "$id": "3764", + "$id": "3765", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the integration being enabled for the fine-tuning job", "type": { - "$id": "3765", + "$id": "3766", "kind": "enumvalue", "name": "wandb", "value": "wandb", @@ -44219,14 +44232,14 @@ "$ref": "376" }, "enumType": { - "$id": "3766", + "$id": "3767", "kind": "enum", "decorators": [], "name": "FineTuningIntegrationType", "isGeneratedName": true, "namespace": "OpenAI", "valueType": { - "$id": "3767", + "$id": "3768", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -44235,16 +44248,16 @@ }, "values": [ { - "$id": "3768", + "$id": "3769", "kind": "enumvalue", "decorators": [], "name": "wandb", "value": "wandb", "valueType": { - "$ref": "3767" + "$ref": "3768" }, "enumType": { - "$ref": "3766" + "$ref": "3767" } } ], @@ -44273,13 +44286,13 @@ "isHttpMetadata": false }, { - "$id": "3769", + "$id": "3770", "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": "3770", + "$id": "3771", "kind": "model", "name": "FineTuningIntegrationWandbWandb", "namespace": "OpenAI", @@ -44288,13 +44301,13 @@ "decorators": [], "properties": [ { - "$id": "3771", + "$id": "3772", "kind": "property", "name": "project", "serializedName": "project", "doc": "The name of the project that the new run will be created under.", "type": { - "$id": "3772", + "$id": "3773", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44314,16 +44327,16 @@ "isHttpMetadata": false }, { - "$id": "3773", + "$id": "3774", "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": "3774", + "$id": "3775", "kind": "nullable", "type": { - "$id": "3775", + "$id": "3776", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44345,16 +44358,16 @@ "isHttpMetadata": false }, { - "$id": "3776", + "$id": "3777", "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": "3777", + "$id": "3778", "kind": "nullable", "type": { - "$id": "3778", + "$id": "3779", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44376,13 +44389,13 @@ "isHttpMetadata": false }, { - "$id": "3779", + "$id": "3780", "kind": "property", "name": "tags", "serializedName": "tags", "doc": "A list of tags to be attached to the newly created run. These tags are passed through directly to WandB. Some\ndefault tags are generated by OpenAI: \"openai/finetune\", \"openai/{base-model}\", \"openai/{ftjob-abcdef}\".", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": true, "readOnly": false, @@ -44435,13 +44448,13 @@ "isHttpMetadata": false }, { - "$id": "3780", + "$id": "3781", "kind": "property", "name": "seed", "serializedName": "seed", "doc": "The seed used for the fine-tuning job.", "type": { - "$id": "3781", + "$id": "3782", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -44461,21 +44474,21 @@ "isHttpMetadata": false }, { - "$id": "3782", + "$id": "3783", "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": "3783", + "$id": "3784", "kind": "nullable", "type": { - "$id": "3784", + "$id": "3785", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3785", + "$id": "3786", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -44500,12 +44513,12 @@ "isHttpMetadata": false }, { - "$id": "3786", + "$id": "3787", "kind": "property", "name": "method", "serializedName": "method", "type": { - "$ref": "3556" + "$ref": "3557" }, "optional": true, "readOnly": false, @@ -44521,13 +44534,13 @@ "isHttpMetadata": false }, { - "$id": "3787", + "$id": "3788", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2443" + "$ref": "2444" }, "optional": false, "readOnly": false, @@ -44545,22 +44558,22 @@ ] }, { - "$ref": "3716" + "$ref": "3717" }, { - "$ref": "3732" + "$ref": "3733" }, { - "$ref": "3761" + "$ref": "3762" }, { - "$ref": "3763" + "$ref": "3764" }, { - "$ref": "3770" + "$ref": "3771" }, { - "$id": "3788", + "$id": "3789", "kind": "model", "name": "ListPaginatedFineTuningJobsResponse", "namespace": "OpenAI", @@ -44569,16 +44582,16 @@ "decorators": [], "properties": [ { - "$id": "3789", + "$id": "3790", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3790", + "$id": "3791", "kind": "array", "name": "ArrayFineTuningJob", "valueType": { - "$ref": "3705" + "$ref": "3706" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -44597,12 +44610,12 @@ "isHttpMetadata": false }, { - "$id": "3791", + "$id": "3792", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3792", + "$id": "3793", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -44622,12 +44635,12 @@ "isHttpMetadata": false }, { - "$id": "3793", + "$id": "3794", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1629" + "$ref": "1630" }, "optional": false, "readOnly": false, @@ -44645,7 +44658,7 @@ ] }, { - "$id": "3794", + "$id": "3795", "kind": "model", "name": "ListFineTuningJobCheckpointsResponse", "namespace": "OpenAI", @@ -44654,16 +44667,16 @@ "decorators": [], "properties": [ { - "$id": "3795", + "$id": "3796", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3796", + "$id": "3797", "kind": "array", "name": "ArrayFineTuningJobCheckpoint", "valueType": { - "$id": "3797", + "$id": "3798", "kind": "model", "name": "FineTuningJobCheckpoint", "namespace": "OpenAI", @@ -44673,13 +44686,13 @@ "decorators": [], "properties": [ { - "$id": "3798", + "$id": "3799", "kind": "property", "name": "id", "serializedName": "id", "doc": "The checkpoint identifier, which can be referenced in the API endpoints.", "type": { - "$id": "3799", + "$id": "3800", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44699,18 +44712,18 @@ "isHttpMetadata": false }, { - "$id": "3800", + "$id": "3801", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the checkpoint was created.", "type": { - "$id": "3801", + "$id": "3802", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3802", + "$id": "3803", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -44733,13 +44746,13 @@ "isHttpMetadata": false }, { - "$id": "3803", + "$id": "3804", "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": "3804", + "$id": "3805", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44759,13 +44772,13 @@ "isHttpMetadata": false }, { - "$id": "3805", + "$id": "3806", "kind": "property", "name": "step_number", "serializedName": "step_number", "doc": "The step number that the checkpoint was created at.", "type": { - "$id": "3806", + "$id": "3807", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -44785,13 +44798,13 @@ "isHttpMetadata": false }, { - "$id": "3807", + "$id": "3808", "kind": "property", "name": "metrics", "serializedName": "metrics", "doc": "Metrics at the step number during the fine-tuning job.", "type": { - "$id": "3808", + "$id": "3809", "kind": "model", "name": "FineTuningJobCheckpointMetrics", "namespace": "OpenAI", @@ -44800,12 +44813,12 @@ "decorators": [], "properties": [ { - "$id": "3809", + "$id": "3810", "kind": "property", "name": "step", "serializedName": "step", "type": { - "$id": "3810", + "$id": "3811", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -44825,12 +44838,12 @@ "isHttpMetadata": false }, { - "$id": "3811", + "$id": "3812", "kind": "property", "name": "train_loss", "serializedName": "train_loss", "type": { - "$id": "3812", + "$id": "3813", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -44850,12 +44863,12 @@ "isHttpMetadata": false }, { - "$id": "3813", + "$id": "3814", "kind": "property", "name": "train_mean_token_accuracy", "serializedName": "train_mean_token_accuracy", "type": { - "$id": "3814", + "$id": "3815", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -44875,12 +44888,12 @@ "isHttpMetadata": false }, { - "$id": "3815", + "$id": "3816", "kind": "property", "name": "valid_loss", "serializedName": "valid_loss", "type": { - "$id": "3816", + "$id": "3817", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -44900,12 +44913,12 @@ "isHttpMetadata": false }, { - "$id": "3817", + "$id": "3818", "kind": "property", "name": "valid_mean_token_accuracy", "serializedName": "valid_mean_token_accuracy", "type": { - "$id": "3818", + "$id": "3819", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -44925,12 +44938,12 @@ "isHttpMetadata": false }, { - "$id": "3819", + "$id": "3820", "kind": "property", "name": "full_valid_loss", "serializedName": "full_valid_loss", "type": { - "$id": "3820", + "$id": "3821", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -44950,12 +44963,12 @@ "isHttpMetadata": false }, { - "$id": "3821", + "$id": "3822", "kind": "property", "name": "full_valid_mean_token_accuracy", "serializedName": "full_valid_mean_token_accuracy", "type": { - "$id": "3822", + "$id": "3823", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -44990,13 +45003,13 @@ "isHttpMetadata": false }, { - "$id": "3823", + "$id": "3824", "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": "3824", + "$id": "3825", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45016,13 +45029,13 @@ "isHttpMetadata": false }, { - "$id": "3825", + "$id": "3826", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"fine_tuning.job.checkpoint\".", "type": { - "$ref": "1631" + "$ref": "1632" }, "optional": false, "readOnly": false, @@ -45056,12 +45069,12 @@ "isHttpMetadata": false }, { - "$id": "3826", + "$id": "3827", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1633" + "$ref": "1634" }, "optional": false, "readOnly": false, @@ -45077,15 +45090,15 @@ "isHttpMetadata": false }, { - "$id": "3827", + "$id": "3828", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "3828", + "$id": "3829", "kind": "nullable", "type": { - "$id": "3829", + "$id": "3830", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45107,15 +45120,15 @@ "isHttpMetadata": false }, { - "$id": "3830", + "$id": "3831", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "3831", + "$id": "3832", "kind": "nullable", "type": { - "$id": "3832", + "$id": "3833", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45137,12 +45150,12 @@ "isHttpMetadata": false }, { - "$id": "3833", + "$id": "3834", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3834", + "$id": "3835", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45164,13 +45177,13 @@ ] }, { - "$ref": "3797" + "$ref": "3798" }, { - "$ref": "3808" + "$ref": "3809" }, { - "$id": "3835", + "$id": "3836", "kind": "model", "name": "ListFineTuningJobEventsResponse", "namespace": "OpenAI", @@ -45179,16 +45192,16 @@ "decorators": [], "properties": [ { - "$id": "3836", + "$id": "3837", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3837", + "$id": "3838", "kind": "array", "name": "ArrayFineTuningJobEvent", "valueType": { - "$id": "3838", + "$id": "3839", "kind": "model", "name": "FineTuningJobEvent", "namespace": "OpenAI", @@ -45198,13 +45211,13 @@ "decorators": [], "properties": [ { - "$id": "3839", + "$id": "3840", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"fine_tuning.job.event\".", "type": { - "$ref": "1635" + "$ref": "1636" }, "optional": false, "readOnly": false, @@ -45220,13 +45233,13 @@ "isHttpMetadata": false }, { - "$id": "3840", + "$id": "3841", "kind": "property", "name": "id", "serializedName": "id", "doc": "The object identifier.", "type": { - "$id": "3841", + "$id": "3842", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45246,18 +45259,18 @@ "isHttpMetadata": false }, { - "$id": "3842", + "$id": "3843", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the fine-tuning job was created.", "type": { - "$id": "3843", + "$id": "3844", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3844", + "$id": "3845", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -45280,7 +45293,7 @@ "isHttpMetadata": false }, { - "$id": "3845", + "$id": "3846", "kind": "property", "name": "level", "serializedName": "level", @@ -45302,13 +45315,13 @@ "isHttpMetadata": false }, { - "$id": "3846", + "$id": "3847", "kind": "property", "name": "message", "serializedName": "message", "doc": "The message of the event.", "type": { - "$id": "3847", + "$id": "3848", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45328,7 +45341,7 @@ "isHttpMetadata": false }, { - "$id": "3848", + "$id": "3849", "kind": "property", "name": "type", "serializedName": "type", @@ -45350,13 +45363,13 @@ "isHttpMetadata": false }, { - "$id": "3849", + "$id": "3850", "kind": "property", "name": "data", "serializedName": "data", "doc": "The data associated with the event.", "type": { - "$id": "3850", + "$id": "3851", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -45394,12 +45407,12 @@ "isHttpMetadata": false }, { - "$id": "3851", + "$id": "3852", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1637" + "$ref": "1638" }, "optional": false, "readOnly": false, @@ -45415,12 +45428,12 @@ "isHttpMetadata": false }, { - "$id": "3852", + "$id": "3853", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3853", + "$id": "3854", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45442,10 +45455,10 @@ ] }, { - "$ref": "3838" + "$ref": "3839" }, { - "$id": "3854", + "$id": "3855", "kind": "model", "name": "RunGraderRequest", "namespace": "OpenAI", @@ -45454,30 +45467,30 @@ "decorators": [], "properties": [ { - "$id": "3855", + "$id": "3856", "kind": "property", "name": "grader", "serializedName": "grader", "doc": "The grader used for the fine-tuning job.", "type": { - "$id": "3856", + "$id": "3857", "kind": "union", "name": "RunGraderRequestGrader", "variantTypes": [ { - "$ref": "3591" + "$ref": "3592" }, { - "$ref": "3594" + "$ref": "3595" }, { - "$ref": "3612" + "$ref": "3613" }, { - "$ref": "3621" + "$ref": "3622" }, { - "$ref": "3655" + "$ref": "3656" } ], "namespace": "OpenAI", @@ -45497,13 +45510,13 @@ "isHttpMetadata": false }, { - "$id": "3857", + "$id": "3858", "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": "3858", + "$id": "3859", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -45523,13 +45536,13 @@ "isHttpMetadata": false }, { - "$id": "3859", + "$id": "3860", "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": "3860", + "$id": "3861", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45551,7 +45564,7 @@ ] }, { - "$id": "3861", + "$id": "3862", "kind": "model", "name": "RunGraderResponse", "namespace": "OpenAI", @@ -45560,11 +45573,11 @@ "decorators": [], "properties": [ { - "$id": "3862", + "$id": "3863", "kind": "property", "name": "reward", "type": { - "$id": "3863", + "$id": "3864", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -45580,11 +45593,11 @@ "isHttpMetadata": false }, { - "$id": "3864", + "$id": "3865", "kind": "property", "name": "metadata", "type": { - "$id": "3865", + "$id": "3866", "kind": "model", "name": "RunGraderResponseMetadata", "namespace": "OpenAI", @@ -45593,11 +45606,11 @@ "decorators": [], "properties": [ { - "$id": "3866", + "$id": "3867", "kind": "property", "name": "name", "type": { - "$id": "3867", + "$id": "3868", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45613,11 +45626,11 @@ "isHttpMetadata": false }, { - "$id": "3868", + "$id": "3869", "kind": "property", "name": "type", "type": { - "$id": "3869", + "$id": "3870", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45633,11 +45646,11 @@ "isHttpMetadata": false }, { - "$id": "3870", + "$id": "3871", "kind": "property", "name": "errors", "type": { - "$id": "3871", + "$id": "3872", "kind": "model", "name": "RunGraderResponseMetadataErrors", "namespace": "OpenAI", @@ -45646,11 +45659,11 @@ "decorators": [], "properties": [ { - "$id": "3872", + "$id": "3873", "kind": "property", "name": "formula_parse_error", "type": { - "$id": "3873", + "$id": "3874", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45666,11 +45679,11 @@ "isHttpMetadata": false }, { - "$id": "3874", + "$id": "3875", "kind": "property", "name": "sample_parse_error", "type": { - "$id": "3875", + "$id": "3876", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45686,11 +45699,11 @@ "isHttpMetadata": false }, { - "$id": "3876", + "$id": "3877", "kind": "property", "name": "truncated_observation_error", "type": { - "$id": "3877", + "$id": "3878", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45706,11 +45719,11 @@ "isHttpMetadata": false }, { - "$id": "3878", + "$id": "3879", "kind": "property", "name": "unresponsive_reward_error", "type": { - "$id": "3879", + "$id": "3880", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45726,11 +45739,11 @@ "isHttpMetadata": false }, { - "$id": "3880", + "$id": "3881", "kind": "property", "name": "invalid_variable_error", "type": { - "$id": "3881", + "$id": "3882", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45746,11 +45759,11 @@ "isHttpMetadata": false }, { - "$id": "3882", + "$id": "3883", "kind": "property", "name": "other_error", "type": { - "$id": "3883", + "$id": "3884", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45766,11 +45779,11 @@ "isHttpMetadata": false }, { - "$id": "3884", + "$id": "3885", "kind": "property", "name": "python_grader_server_error", "type": { - "$id": "3885", + "$id": "3886", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45786,14 +45799,14 @@ "isHttpMetadata": false }, { - "$id": "3886", + "$id": "3887", "kind": "property", "name": "python_grader_server_error_type", "type": { - "$id": "3887", + "$id": "3888", "kind": "nullable", "type": { - "$id": "3888", + "$id": "3889", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45811,11 +45824,11 @@ "isHttpMetadata": false }, { - "$id": "3889", + "$id": "3890", "kind": "property", "name": "python_grader_runtime_error", "type": { - "$id": "3890", + "$id": "3891", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45831,14 +45844,14 @@ "isHttpMetadata": false }, { - "$id": "3891", + "$id": "3892", "kind": "property", "name": "python_grader_runtime_error_details", "type": { - "$id": "3892", + "$id": "3893", "kind": "nullable", "type": { - "$id": "3893", + "$id": "3894", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45856,11 +45869,11 @@ "isHttpMetadata": false }, { - "$id": "3894", + "$id": "3895", "kind": "property", "name": "model_grader_server_error", "type": { - "$id": "3895", + "$id": "3896", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45876,11 +45889,11 @@ "isHttpMetadata": false }, { - "$id": "3896", + "$id": "3897", "kind": "property", "name": "model_grader_refusal_error", "type": { - "$id": "3897", + "$id": "3898", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45896,11 +45909,11 @@ "isHttpMetadata": false }, { - "$id": "3898", + "$id": "3899", "kind": "property", "name": "model_grader_parse_error", "type": { - "$id": "3899", + "$id": "3900", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45916,14 +45929,14 @@ "isHttpMetadata": false }, { - "$id": "3900", + "$id": "3901", "kind": "property", "name": "model_grader_server_error_details", "type": { - "$id": "3901", + "$id": "3902", "kind": "nullable", "type": { - "$id": "3902", + "$id": "3903", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45952,11 +45965,11 @@ "isHttpMetadata": false }, { - "$id": "3903", + "$id": "3904", "kind": "property", "name": "execution_time", "type": { - "$id": "3904", + "$id": "3905", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -45972,11 +45985,11 @@ "isHttpMetadata": false }, { - "$id": "3905", + "$id": "3906", "kind": "property", "name": "scores", "type": { - "$id": "3906", + "$id": "3907", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -45992,14 +46005,14 @@ "isHttpMetadata": false }, { - "$id": "3907", + "$id": "3908", "kind": "property", "name": "token_usage", "type": { - "$id": "3908", + "$id": "3909", "kind": "nullable", "type": { - "$id": "3909", + "$id": "3910", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -46017,14 +46030,14 @@ "isHttpMetadata": false }, { - "$id": "3910", + "$id": "3911", "kind": "property", "name": "sampled_model_name", "type": { - "$id": "3911", + "$id": "3912", "kind": "nullable", "type": { - "$id": "3912", + "$id": "3913", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46053,11 +46066,11 @@ "isHttpMetadata": false }, { - "$id": "3913", + "$id": "3914", "kind": "property", "name": "sub_rewards", "type": { - "$id": "3914", + "$id": "3915", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -46073,11 +46086,11 @@ "isHttpMetadata": false }, { - "$id": "3915", + "$id": "3916", "kind": "property", "name": "model_grader_token_usage_per_model", "type": { - "$id": "3916", + "$id": "3917", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -46095,13 +46108,13 @@ ] }, { - "$ref": "3865" + "$ref": "3866" }, { - "$ref": "3871" + "$ref": "3872" }, { - "$id": "3917", + "$id": "3918", "kind": "model", "name": "ValidateGraderRequest", "namespace": "OpenAI", @@ -46110,30 +46123,30 @@ "decorators": [], "properties": [ { - "$id": "3918", + "$id": "3919", "kind": "property", "name": "grader", "serializedName": "grader", "doc": "The grader used for the fine-tuning job.", "type": { - "$id": "3919", + "$id": "3920", "kind": "union", "name": "ValidateGraderRequestGrader", "variantTypes": [ { - "$ref": "3591" + "$ref": "3592" }, { - "$ref": "3594" + "$ref": "3595" }, { - "$ref": "3612" + "$ref": "3613" }, { - "$ref": "3621" + "$ref": "3622" }, { - "$ref": "3655" + "$ref": "3656" } ], "namespace": "OpenAI", @@ -46155,7 +46168,7 @@ ] }, { - "$id": "3920", + "$id": "3921", "kind": "model", "name": "ValidateGraderResponse", "namespace": "OpenAI", @@ -46164,29 +46177,29 @@ "decorators": [], "properties": [ { - "$id": "3921", + "$id": "3922", "kind": "property", "name": "grader", "doc": "The grader used for the fine-tuning job.", "type": { - "$id": "3922", + "$id": "3923", "kind": "union", "name": "ValidateGraderResponseGrader", "variantTypes": [ { - "$ref": "3591" + "$ref": "3592" }, { - "$ref": "3594" + "$ref": "3595" }, { - "$ref": "3612" + "$ref": "3613" }, { - "$ref": "3621" + "$ref": "3622" }, { - "$ref": "3655" + "$ref": "3656" } ], "namespace": "OpenAI", @@ -46204,7 +46217,7 @@ ] }, { - "$id": "3923", + "$id": "3924", "kind": "model", "name": "EvalList", "namespace": "OpenAI", @@ -46214,13 +46227,13 @@ "decorators": [], "properties": [ { - "$id": "3924", + "$id": "3925", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of this object. It is always set to \"list\".", "type": { - "$ref": "1639" + "$ref": "1640" }, "optional": false, "readOnly": false, @@ -46236,17 +46249,17 @@ "isHttpMetadata": false }, { - "$id": "3925", + "$id": "3926", "kind": "property", "name": "data", "serializedName": "data", "doc": "An array of eval objects.", "type": { - "$id": "3926", + "$id": "3927", "kind": "array", "name": "ArrayEval", "valueType": { - "$id": "3927", + "$id": "3928", "kind": "model", "name": "Eval", "namespace": "OpenAI", @@ -46256,13 +46269,13 @@ "decorators": [], "properties": [ { - "$id": "3928", + "$id": "3929", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type.", "type": { - "$ref": "1641" + "$ref": "1642" }, "optional": false, "readOnly": false, @@ -46278,13 +46291,13 @@ "isHttpMetadata": false }, { - "$id": "3929", + "$id": "3930", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for the evaluation.", "type": { - "$id": "3930", + "$id": "3931", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46304,13 +46317,13 @@ "isHttpMetadata": false }, { - "$id": "3931", + "$id": "3932", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the evaluation.", "type": { - "$id": "3932", + "$id": "3933", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46330,13 +46343,13 @@ "isHttpMetadata": false }, { - "$id": "3933", + "$id": "3934", "kind": "property", "name": "data_source_config", "serializedName": "data_source_config", "doc": "Configuration of data sources used in runs of the evaluation.", "type": { - "$id": "3934", + "$id": "3935", "kind": "model", "name": "EvalDataSourceConfigResource", "namespace": "OpenAI", @@ -46344,7 +46357,7 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3935", + "$id": "3936", "kind": "property", "name": "type", "serializedName": "type", @@ -46366,12 +46379,12 @@ }, "properties": [ { - "$ref": "3935" + "$ref": "3936" } ], "discriminatedSubtypes": { "custom": { - "$id": "3936", + "$id": "3937", "kind": "model", "name": "EvalCustomDataSourceConfigResource", "namespace": "OpenAI", @@ -46381,17 +46394,17 @@ "discriminatorValue": "custom", "decorators": [], "baseModel": { - "$ref": "3934" + "$ref": "3935" }, "properties": [ { - "$id": "3937", + "$id": "3938", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `custom`.", "type": { - "$id": "3938", + "$id": "3939", "kind": "enumvalue", "name": "custom", "value": "custom", @@ -46399,14 +46412,14 @@ "$ref": "388" }, "enumType": { - "$id": "3939", + "$id": "3940", "kind": "enum", "decorators": [], "name": "EvalDataSourceConfigType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "3940", + "$id": "3941", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -46415,42 +46428,42 @@ }, "values": [ { - "$id": "3941", + "$id": "3942", "kind": "enumvalue", "decorators": [], "name": "custom", "value": "custom", "valueType": { - "$ref": "3940" + "$ref": "3941" }, "enumType": { - "$ref": "3939" + "$ref": "3940" } }, { - "$id": "3942", + "$id": "3943", "kind": "enumvalue", "decorators": [], "name": "logs", "value": "logs", "valueType": { - "$ref": "3940" + "$ref": "3941" }, "enumType": { - "$ref": "3939" + "$ref": "3940" } }, { - "$id": "3943", + "$id": "3944", "kind": "enumvalue", "decorators": [], "name": "stored_completions", "value": "stored_completions", "valueType": { - "$ref": "3940" + "$ref": "3941" }, "enumType": { - "$ref": "3939" + "$ref": "3940" } } ], @@ -46479,23 +46492,23 @@ "isHttpMetadata": false }, { - "$id": "3944", + "$id": "3945", "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": "3945", + "$id": "3946", "kind": "dict", "keyType": { - "$id": "3946", + "$id": "3947", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, "valueType": { - "$id": "3947", + "$id": "3948", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -46519,7 +46532,7 @@ ] }, "stored_completions": { - "$id": "3948", + "$id": "3949", "kind": "model", "name": "EvalStoredCompletionsDataSourceConfigResource", "namespace": "OpenAI", @@ -46530,17 +46543,17 @@ "discriminatorValue": "stored_completions", "decorators": [], "baseModel": { - "$ref": "3934" + "$ref": "3935" }, "properties": [ { - "$id": "3949", + "$id": "3950", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `stored_completions`.", "type": { - "$id": "3950", + "$id": "3951", "kind": "enumvalue", "name": "stored_completions", "value": "stored_completions", @@ -46548,7 +46561,7 @@ "$ref": "388" }, "enumType": { - "$ref": "3939" + "$ref": "3940" }, "decorators": [] }, @@ -46566,13 +46579,13 @@ "isHttpMetadata": false }, { - "$id": "3951", + "$id": "3952", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2443" + "$ref": "2444" }, "optional": false, "readOnly": false, @@ -46588,13 +46601,13 @@ "isHttpMetadata": false }, { - "$id": "3952", + "$id": "3953", "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": "3945" + "$ref": "3946" }, "optional": false, "readOnly": false, @@ -46612,7 +46625,7 @@ ] }, "logs": { - "$id": "3953", + "$id": "3954", "kind": "model", "name": "EvalLogsDataSourceConfigResource", "namespace": "OpenAI", @@ -46622,17 +46635,17 @@ "discriminatorValue": "logs", "decorators": [], "baseModel": { - "$ref": "3934" + "$ref": "3935" }, "properties": [ { - "$id": "3954", + "$id": "3955", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `logs`.", "type": { - "$id": "3955", + "$id": "3956", "kind": "enumvalue", "name": "logs", "value": "logs", @@ -46640,7 +46653,7 @@ "$ref": "388" }, "enumType": { - "$ref": "3939" + "$ref": "3940" }, "decorators": [] }, @@ -46658,13 +46671,13 @@ "isHttpMetadata": false }, { - "$id": "3956", + "$id": "3957", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2443" + "$ref": "2444" }, "optional": false, "readOnly": false, @@ -46680,13 +46693,13 @@ "isHttpMetadata": false }, { - "$id": "3957", + "$id": "3958", "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": "3945" + "$ref": "3946" }, "optional": false, "readOnly": false, @@ -46719,20 +46732,20 @@ "isHttpMetadata": false }, { - "$id": "3958", + "$id": "3959", "kind": "property", "name": "testing_criteria", "serializedName": "testing_criteria", "doc": "A list of testing criteria.", "type": { - "$id": "3959", + "$id": "3960", "kind": "nullable", "type": { - "$id": "3960", + "$id": "3961", "kind": "array", "name": "ArrayEvalGraderResource", "valueType": { - "$id": "3961", + "$id": "3962", "kind": "model", "name": "EvalGraderResource", "namespace": "OpenAI", @@ -46740,7 +46753,7 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3962", + "$id": "3963", "kind": "property", "name": "type", "serializedName": "type", @@ -46762,12 +46775,12 @@ }, "properties": [ { - "$ref": "3962" + "$ref": "3963" } ], "discriminatedSubtypes": { "label_model": { - "$id": "3963", + "$id": "3964", "kind": "model", "name": "EvalGraderLabelModelResource", "namespace": "OpenAI", @@ -46776,17 +46789,17 @@ "discriminatorValue": "label_model", "decorators": [], "baseModel": { - "$ref": "3961" + "$ref": "3962" }, "properties": [ { - "$id": "3964", + "$id": "3965", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `label_model`.", "type": { - "$ref": "3664" + "$ref": "3665" }, "optional": false, "readOnly": false, @@ -46802,13 +46815,13 @@ "isHttpMetadata": false }, { - "$id": "3965", + "$id": "3966", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3966", + "$id": "3967", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46828,13 +46841,13 @@ "isHttpMetadata": false }, { - "$id": "3967", + "$id": "3968", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation. Must support structured outputs.", "type": { - "$id": "3968", + "$id": "3969", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46854,12 +46867,12 @@ "isHttpMetadata": false }, { - "$id": "3969", + "$id": "3970", "kind": "property", "name": "input", "serializedName": "input", "type": { - "$ref": "3631" + "$ref": "3632" }, "optional": false, "readOnly": false, @@ -46875,13 +46888,13 @@ "isHttpMetadata": false }, { - "$id": "3970", + "$id": "3971", "kind": "property", "name": "labels", "serializedName": "labels", "doc": "The labels to assign to each item in the evaluation.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": false, "readOnly": false, @@ -46897,13 +46910,13 @@ "isHttpMetadata": false }, { - "$id": "3971", + "$id": "3972", "kind": "property", "name": "passing_labels", "serializedName": "passing_labels", "doc": "The labels that indicate a passing result. Must be a subset of labels.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": false, "readOnly": false, @@ -46921,7 +46934,7 @@ ] }, "text_similarity": { - "$id": "3972", + "$id": "3973", "kind": "model", "name": "EvalGraderTextSimilarityResource", "namespace": "OpenAI", @@ -46930,17 +46943,17 @@ "discriminatorValue": "text_similarity", "decorators": [], "baseModel": { - "$ref": "3961" + "$ref": "3962" }, "properties": [ { - "$id": "3973", + "$id": "3974", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of grader.", "type": { - "$ref": "3596" + "$ref": "3597" }, "optional": false, "readOnly": false, @@ -46956,13 +46969,13 @@ "isHttpMetadata": false }, { - "$id": "3974", + "$id": "3975", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3975", + "$id": "3976", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46982,13 +46995,13 @@ "isHttpMetadata": false }, { - "$id": "3976", + "$id": "3977", "kind": "property", "name": "input", "serializedName": "input", "doc": "The text being graded.", "type": { - "$id": "3977", + "$id": "3978", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47008,13 +47021,13 @@ "isHttpMetadata": false }, { - "$id": "3978", + "$id": "3979", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The text being graded against.", "type": { - "$id": "3979", + "$id": "3980", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47034,7 +47047,7 @@ "isHttpMetadata": false }, { - "$id": "3980", + "$id": "3981", "kind": "property", "name": "evaluation_metric", "serializedName": "evaluation_metric", @@ -47056,13 +47069,13 @@ "isHttpMetadata": false }, { - "$id": "3981", + "$id": "3982", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "3982", + "$id": "3983", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -47084,7 +47097,7 @@ ] }, "python": { - "$id": "3983", + "$id": "3984", "kind": "model", "name": "EvalGraderPythonResource", "namespace": "OpenAI", @@ -47093,17 +47106,17 @@ "discriminatorValue": "python", "decorators": [], "baseModel": { - "$ref": "3961" + "$ref": "3962" }, "properties": [ { - "$id": "3984", + "$id": "3985", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `python`.", "type": { - "$ref": "3614" + "$ref": "3615" }, "optional": false, "readOnly": false, @@ -47119,13 +47132,13 @@ "isHttpMetadata": false }, { - "$id": "3985", + "$id": "3986", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3986", + "$id": "3987", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47145,13 +47158,13 @@ "isHttpMetadata": false }, { - "$id": "3987", + "$id": "3988", "kind": "property", "name": "source", "serializedName": "source", "doc": "The source code of the python script.", "type": { - "$id": "3988", + "$id": "3989", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47171,13 +47184,13 @@ "isHttpMetadata": false }, { - "$id": "3989", + "$id": "3990", "kind": "property", "name": "image_tag", "serializedName": "image_tag", "doc": "The image tag to use for the python script.", "type": { - "$id": "3990", + "$id": "3991", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47197,13 +47210,13 @@ "isHttpMetadata": false }, { - "$id": "3991", + "$id": "3992", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "3992", + "$id": "3993", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -47225,7 +47238,7 @@ ] }, "score_model": { - "$id": "3993", + "$id": "3994", "kind": "model", "name": "EvalGraderScoreModelResource", "namespace": "OpenAI", @@ -47234,17 +47247,17 @@ "discriminatorValue": "score_model", "decorators": [], "baseModel": { - "$ref": "3961" + "$ref": "3962" }, "properties": [ { - "$id": "3994", + "$id": "3995", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `score_model`.", "type": { - "$ref": "3623" + "$ref": "3624" }, "optional": false, "readOnly": false, @@ -47260,13 +47273,13 @@ "isHttpMetadata": false }, { - "$id": "3995", + "$id": "3996", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3996", + "$id": "3997", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47286,13 +47299,13 @@ "isHttpMetadata": false }, { - "$id": "3997", + "$id": "3998", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation.", "type": { - "$id": "3998", + "$id": "3999", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47312,13 +47325,13 @@ "isHttpMetadata": false }, { - "$id": "3999", + "$id": "4000", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "doc": "The sampling parameters for the model.", "type": { - "$id": "4000", + "$id": "4001", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -47338,13 +47351,13 @@ "isHttpMetadata": false }, { - "$id": "4001", + "$id": "4002", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$ref": "3631" + "$ref": "3632" }, "optional": false, "readOnly": false, @@ -47360,13 +47373,13 @@ "isHttpMetadata": false }, { - "$id": "4002", + "$id": "4003", "kind": "property", "name": "range", "serializedName": "range", "doc": "The range of the score. Defaults to `[0, 1]`.", "type": { - "$ref": "2691" + "$ref": "2692" }, "optional": true, "readOnly": false, @@ -47382,13 +47395,13 @@ "isHttpMetadata": false }, { - "$id": "4003", + "$id": "4004", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "4004", + "$id": "4005", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -47430,18 +47443,18 @@ "isHttpMetadata": false }, { - "$id": "4005", + "$id": "4006", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the eval was created.", "type": { - "$id": "4006", + "$id": "4007", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "4007", + "$id": "4008", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -47464,13 +47477,13 @@ "isHttpMetadata": false }, { - "$id": "4008", + "$id": "4009", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2443" + "$ref": "2444" }, "optional": false, "readOnly": false, @@ -47504,13 +47517,13 @@ "isHttpMetadata": false }, { - "$id": "4009", + "$id": "4010", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The identifier of the first eval in the data array.", "type": { - "$id": "4010", + "$id": "4011", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47530,13 +47543,13 @@ "isHttpMetadata": false }, { - "$id": "4011", + "$id": "4012", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The identifier of the last eval in the data array.", "type": { - "$id": "4012", + "$id": "4013", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47556,13 +47569,13 @@ "isHttpMetadata": false }, { - "$id": "4013", + "$id": "4014", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates whether there are more evals available.", "type": { - "$id": "4014", + "$id": "4015", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -47584,37 +47597,37 @@ ] }, { - "$ref": "3927" + "$ref": "3928" }, { - "$ref": "3934" + "$ref": "3935" }, { - "$ref": "3936" + "$ref": "3937" }, { - "$ref": "3948" + "$ref": "3949" }, { - "$ref": "3953" + "$ref": "3954" }, { - "$ref": "3961" + "$ref": "3962" }, { - "$ref": "3963" + "$ref": "3964" }, { - "$ref": "3972" + "$ref": "3973" }, { - "$ref": "3983" + "$ref": "3984" }, { - "$ref": "3993" + "$ref": "3994" }, { - "$id": "4015", + "$id": "4016", "kind": "model", "name": "CreateEvalRequest", "namespace": "OpenAI", @@ -47623,13 +47636,13 @@ "decorators": [], "properties": [ { - "$id": "4016", + "$id": "4017", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the evaluation.", "type": { - "$id": "4017", + "$id": "4018", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47649,13 +47662,13 @@ "isHttpMetadata": false }, { - "$id": "4018", + "$id": "4019", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": true, "readOnly": false, @@ -47671,13 +47684,13 @@ "isHttpMetadata": false }, { - "$id": "4019", + "$id": "4020", "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": "4020", + "$id": "4021", "kind": "model", "name": "EvalDataSourceConfigParams", "namespace": "OpenAI", @@ -47685,7 +47698,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "4021", + "$id": "4022", "kind": "property", "name": "type", "serializedName": "type", @@ -47707,12 +47720,12 @@ }, "properties": [ { - "$ref": "4021" + "$ref": "4022" } ], "discriminatedSubtypes": { "custom": { - "$id": "4022", + "$id": "4023", "kind": "model", "name": "EvalCustomDataSourceConfigParams", "namespace": "OpenAI", @@ -47722,17 +47735,17 @@ "discriminatorValue": "custom", "decorators": [], "baseModel": { - "$ref": "4020" + "$ref": "4021" }, "properties": [ { - "$id": "4023", + "$id": "4024", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `custom`.", "type": { - "$ref": "3938" + "$ref": "3939" }, "optional": false, "readOnly": false, @@ -47748,13 +47761,13 @@ "isHttpMetadata": false }, { - "$id": "4024", + "$id": "4025", "kind": "property", "name": "item_schema", "serializedName": "item_schema", "doc": "The json schema for each row in the data source.", "type": { - "$ref": "3945" + "$ref": "3946" }, "optional": false, "readOnly": false, @@ -47770,13 +47783,13 @@ "isHttpMetadata": false }, { - "$id": "4025", + "$id": "4026", "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": "4026", + "$id": "4027", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -47798,7 +47811,7 @@ ] }, "logs": { - "$id": "4027", + "$id": "4028", "kind": "model", "name": "EvalLogsDataSourceConfigParams", "namespace": "OpenAI", @@ -47808,17 +47821,17 @@ "discriminatorValue": "logs", "decorators": [], "baseModel": { - "$ref": "4020" + "$ref": "4021" }, "properties": [ { - "$id": "4028", + "$id": "4029", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `logs`.", "type": { - "$ref": "3955" + "$ref": "3956" }, "optional": false, "readOnly": false, @@ -47834,13 +47847,13 @@ "isHttpMetadata": false }, { - "$id": "4029", + "$id": "4030", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": true, "readOnly": false, @@ -47858,7 +47871,7 @@ ] }, "stored_completions": { - "$id": "4030", + "$id": "4031", "kind": "model", "name": "EvalStoredCompletionsDataSourceConfigParams", "namespace": "OpenAI", @@ -47869,17 +47882,17 @@ "discriminatorValue": "stored_completions", "decorators": [], "baseModel": { - "$ref": "4020" + "$ref": "4021" }, "properties": [ { - "$id": "4031", + "$id": "4032", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `stored_completions`.", "type": { - "$ref": "3950" + "$ref": "3951" }, "optional": false, "readOnly": false, @@ -47895,13 +47908,13 @@ "isHttpMetadata": false }, { - "$id": "4032", + "$id": "4033", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Metadata filters for the stored completions data source.", "type": { - "$ref": "3945" + "$ref": "3946" }, "optional": true, "readOnly": false, @@ -47934,17 +47947,17 @@ "isHttpMetadata": false }, { - "$id": "4033", + "$id": "4034", "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": "4034", + "$id": "4035", "kind": "array", "name": "ArrayEvalGraderParams", "valueType": { - "$id": "4035", + "$id": "4036", "kind": "model", "name": "EvalGraderParams", "namespace": "OpenAI", @@ -47952,7 +47965,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "4036", + "$id": "4037", "kind": "property", "name": "type", "serializedName": "type", @@ -47974,12 +47987,12 @@ }, "properties": [ { - "$ref": "4036" + "$ref": "4037" } ], "discriminatedSubtypes": { "label_model": { - "$id": "4037", + "$id": "4038", "kind": "model", "name": "EvalGraderLabelModelParams", "namespace": "OpenAI", @@ -47989,17 +48002,17 @@ "discriminatorValue": "label_model", "decorators": [], "baseModel": { - "$ref": "4035" + "$ref": "4036" }, "properties": [ { - "$id": "4038", + "$id": "4039", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `label_model`.", "type": { - "$ref": "3664" + "$ref": "3665" }, "optional": false, "readOnly": false, @@ -48015,13 +48028,13 @@ "isHttpMetadata": false }, { - "$id": "4039", + "$id": "4040", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "4040", + "$id": "4041", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48041,13 +48054,13 @@ "isHttpMetadata": false }, { - "$id": "4041", + "$id": "4042", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation. Must support structured outputs.", "type": { - "$id": "4042", + "$id": "4043", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48067,22 +48080,22 @@ "isHttpMetadata": false }, { - "$id": "4043", + "$id": "4044", "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": "4044", + "$id": "4045", "kind": "array", "name": "ArrayCreateEvalItem", "valueType": { - "$id": "4045", + "$id": "4046", "kind": "union", "name": "CreateEvalItem", "variantTypes": [ { - "$id": "4046", + "$id": "4047", "kind": "model", "name": "EvalGraderLabelModelParamsInput", "namespace": "OpenAI", @@ -48091,13 +48104,13 @@ "decorators": [], "properties": [ { - "$id": "4047", + "$id": "4048", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message (e.g. \"system\", \"assistant\", \"user\").", "type": { - "$id": "4048", + "$id": "4049", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48117,13 +48130,13 @@ "isHttpMetadata": false }, { - "$id": "4049", + "$id": "4050", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message.", "type": { - "$id": "4050", + "$id": "4051", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48145,7 +48158,7 @@ ] }, { - "$ref": "3632" + "$ref": "3633" } ], "namespace": "OpenAI", @@ -48168,13 +48181,13 @@ "isHttpMetadata": false }, { - "$id": "4051", + "$id": "4052", "kind": "property", "name": "labels", "serializedName": "labels", "doc": "The labels to classify to each item in the evaluation.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": false, "readOnly": false, @@ -48190,13 +48203,13 @@ "isHttpMetadata": false }, { - "$id": "4052", + "$id": "4053", "kind": "property", "name": "passing_labels", "serializedName": "passing_labels", "doc": "The labels that indicate a passing result. Must be a subset of labels.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": false, "readOnly": false, @@ -48214,7 +48227,7 @@ ] }, "string_check": { - "$id": "4053", + "$id": "4054", "kind": "model", "name": "EvalGraderStringCheckParams", "namespace": "OpenAI", @@ -48223,17 +48236,17 @@ "discriminatorValue": "string_check", "decorators": [], "baseModel": { - "$ref": "4035" + "$ref": "4036" }, "properties": [ { - "$id": "4054", + "$id": "4055", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `string_check`.", "type": { - "$ref": "3675" + "$ref": "3676" }, "optional": false, "readOnly": false, @@ -48249,13 +48262,13 @@ "isHttpMetadata": false }, { - "$id": "4055", + "$id": "4056", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "4056", + "$id": "4057", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48275,13 +48288,13 @@ "isHttpMetadata": false }, { - "$id": "4057", + "$id": "4058", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$id": "4058", + "$id": "4059", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48301,13 +48314,13 @@ "isHttpMetadata": false }, { - "$id": "4059", + "$id": "4060", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The reference text. This may include template strings.", "type": { - "$id": "4060", + "$id": "4061", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48327,7 +48340,7 @@ "isHttpMetadata": false }, { - "$id": "4061", + "$id": "4062", "kind": "property", "name": "operation", "serializedName": "operation", @@ -48351,7 +48364,7 @@ ] }, "text_similarity": { - "$id": "4062", + "$id": "4063", "kind": "model", "name": "EvalGraderTextSimilarityParams", "namespace": "OpenAI", @@ -48360,17 +48373,17 @@ "discriminatorValue": "text_similarity", "decorators": [], "baseModel": { - "$ref": "4035" + "$ref": "4036" }, "properties": [ { - "$id": "4063", + "$id": "4064", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of grader.", "type": { - "$ref": "3596" + "$ref": "3597" }, "optional": false, "readOnly": false, @@ -48386,13 +48399,13 @@ "isHttpMetadata": false }, { - "$id": "4064", + "$id": "4065", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "4065", + "$id": "4066", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48412,13 +48425,13 @@ "isHttpMetadata": false }, { - "$id": "4066", + "$id": "4067", "kind": "property", "name": "input", "serializedName": "input", "doc": "The text being graded.", "type": { - "$id": "4067", + "$id": "4068", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48438,13 +48451,13 @@ "isHttpMetadata": false }, { - "$id": "4068", + "$id": "4069", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The text being graded against.", "type": { - "$id": "4069", + "$id": "4070", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48464,7 +48477,7 @@ "isHttpMetadata": false }, { - "$id": "4070", + "$id": "4071", "kind": "property", "name": "evaluation_metric", "serializedName": "evaluation_metric", @@ -48486,13 +48499,13 @@ "isHttpMetadata": false }, { - "$id": "4071", + "$id": "4072", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "4072", + "$id": "4073", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -48514,7 +48527,7 @@ ] }, "python": { - "$id": "4073", + "$id": "4074", "kind": "model", "name": "EvalGraderPythonParams", "namespace": "OpenAI", @@ -48523,17 +48536,17 @@ "discriminatorValue": "python", "decorators": [], "baseModel": { - "$ref": "4035" + "$ref": "4036" }, "properties": [ { - "$id": "4074", + "$id": "4075", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `python`.", "type": { - "$ref": "3614" + "$ref": "3615" }, "optional": false, "readOnly": false, @@ -48549,13 +48562,13 @@ "isHttpMetadata": false }, { - "$id": "4075", + "$id": "4076", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "4076", + "$id": "4077", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48575,13 +48588,13 @@ "isHttpMetadata": false }, { - "$id": "4077", + "$id": "4078", "kind": "property", "name": "source", "serializedName": "source", "doc": "The source code of the python script.", "type": { - "$id": "4078", + "$id": "4079", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48601,13 +48614,13 @@ "isHttpMetadata": false }, { - "$id": "4079", + "$id": "4080", "kind": "property", "name": "image_tag", "serializedName": "image_tag", "doc": "The image tag to use for the python script.", "type": { - "$id": "4080", + "$id": "4081", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48627,13 +48640,13 @@ "isHttpMetadata": false }, { - "$id": "4081", + "$id": "4082", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "4082", + "$id": "4083", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -48655,7 +48668,7 @@ ] }, "score_model": { - "$id": "4083", + "$id": "4084", "kind": "model", "name": "EvalGraderScoreModelParams", "namespace": "OpenAI", @@ -48664,17 +48677,17 @@ "discriminatorValue": "score_model", "decorators": [], "baseModel": { - "$ref": "4035" + "$ref": "4036" }, "properties": [ { - "$id": "4084", + "$id": "4085", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `score_model`.", "type": { - "$ref": "3623" + "$ref": "3624" }, "optional": false, "readOnly": false, @@ -48690,13 +48703,13 @@ "isHttpMetadata": false }, { - "$id": "4085", + "$id": "4086", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "4086", + "$id": "4087", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48716,13 +48729,13 @@ "isHttpMetadata": false }, { - "$id": "4087", + "$id": "4088", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation.", "type": { - "$id": "4088", + "$id": "4089", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48742,13 +48755,13 @@ "isHttpMetadata": false }, { - "$id": "4089", + "$id": "4090", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "doc": "The sampling parameters for the model.", "type": { - "$id": "4090", + "$id": "4091", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -48768,13 +48781,13 @@ "isHttpMetadata": false }, { - "$id": "4091", + "$id": "4092", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$ref": "3631" + "$ref": "3632" }, "optional": false, "readOnly": false, @@ -48790,13 +48803,13 @@ "isHttpMetadata": false }, { - "$id": "4092", + "$id": "4093", "kind": "property", "name": "range", "serializedName": "range", "doc": "The range of the score. Defaults to `[0, 1]`.", "type": { - "$ref": "2691" + "$ref": "2692" }, "optional": true, "readOnly": false, @@ -48812,13 +48825,13 @@ "isHttpMetadata": false }, { - "$id": "4093", + "$id": "4094", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "4094", + "$id": "4095", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -48860,40 +48873,40 @@ ] }, { - "$ref": "4020" + "$ref": "4021" }, { - "$ref": "4022" + "$ref": "4023" }, { - "$ref": "4027" + "$ref": "4028" }, { - "$ref": "4030" + "$ref": "4031" }, { - "$ref": "4035" + "$ref": "4036" }, { - "$ref": "4037" + "$ref": "4038" }, { - "$ref": "4046" + "$ref": "4047" }, { - "$ref": "4053" + "$ref": "4054" }, { - "$ref": "4062" + "$ref": "4063" }, { - "$ref": "4073" + "$ref": "4074" }, { - "$ref": "4083" + "$ref": "4084" }, { - "$id": "4095", + "$id": "4096", "kind": "model", "name": "UpdateEvalRequest", "namespace": "OpenAI", @@ -48902,12 +48915,12 @@ "decorators": [], "properties": [ { - "$id": "4096", + "$id": "4097", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "4097", + "$id": "4098", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48927,12 +48940,12 @@ "isHttpMetadata": false }, { - "$id": "4098", + "$id": "4099", "kind": "property", "name": "metadata", "serializedName": "metadata", "type": { - "$id": "4099", + "$id": "4100", "kind": "model", "name": "MetadataPropertyForRequest", "namespace": "OpenAI", @@ -48942,13 +48955,13 @@ "decorators": [], "properties": [ { - "$id": "4100", + "$id": "4101", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": true, "readOnly": false, @@ -48981,10 +48994,10 @@ ] }, { - "$ref": "4099" + "$ref": "4100" }, { - "$id": "4101", + "$id": "4102", "kind": "model", "name": "DeleteEvalResponse", "namespace": "OpenAI", @@ -48993,12 +49006,12 @@ "decorators": [], "properties": [ { - "$id": "4102", + "$id": "4103", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1643" + "$ref": "1644" }, "optional": false, "readOnly": false, @@ -49014,12 +49027,12 @@ "isHttpMetadata": false }, { - "$id": "4103", + "$id": "4104", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "4104", + "$id": "4105", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -49039,12 +49052,12 @@ "isHttpMetadata": false }, { - "$id": "4105", + "$id": "4106", "kind": "property", "name": "eval_id", "serializedName": "eval_id", "type": { - "$id": "4106", + "$id": "4107", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49066,7 +49079,7 @@ ] }, { - "$id": "4107", + "$id": "4108", "kind": "model", "name": "EvalRunList", "namespace": "OpenAI", @@ -49076,13 +49089,13 @@ "decorators": [], "properties": [ { - "$id": "4108", + "$id": "4109", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of this object. It is always set to \"list\".", "type": { - "$ref": "1645" + "$ref": "1646" }, "optional": false, "readOnly": false, @@ -49098,17 +49111,17 @@ "isHttpMetadata": false }, { - "$id": "4109", + "$id": "4110", "kind": "property", "name": "data", "serializedName": "data", "doc": "An array of eval run objects.", "type": { - "$id": "4110", + "$id": "4111", "kind": "array", "name": "ArrayEvalRun", "valueType": { - "$id": "4111", + "$id": "4112", "kind": "model", "name": "EvalRun", "namespace": "OpenAI", @@ -49118,13 +49131,13 @@ "decorators": [], "properties": [ { - "$id": "4112", + "$id": "4113", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of the object. Always \"eval.run\".", "type": { - "$ref": "1647" + "$ref": "1648" }, "optional": false, "readOnly": false, @@ -49140,13 +49153,13 @@ "isHttpMetadata": false }, { - "$id": "4113", + "$id": "4114", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for the evaluation run.", "type": { - "$id": "4114", + "$id": "4115", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49166,13 +49179,13 @@ "isHttpMetadata": false }, { - "$id": "4115", + "$id": "4116", "kind": "property", "name": "eval_id", "serializedName": "eval_id", "doc": "The identifier of the associated evaluation.", "type": { - "$id": "4116", + "$id": "4117", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49192,13 +49205,13 @@ "isHttpMetadata": false }, { - "$id": "4117", + "$id": "4118", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the evaluation run.", "type": { - "$id": "4118", + "$id": "4119", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49218,13 +49231,13 @@ "isHttpMetadata": false }, { - "$id": "4119", + "$id": "4120", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model that is evaluated, if applicable.", "type": { - "$id": "4120", + "$id": "4121", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49244,13 +49257,13 @@ "isHttpMetadata": false }, { - "$id": "4121", + "$id": "4122", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the evaluation run.", "type": { - "$id": "4122", + "$id": "4123", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49270,18 +49283,18 @@ "isHttpMetadata": false }, { - "$id": "4123", + "$id": "4124", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) when the evaluation run was created.", "type": { - "$id": "4124", + "$id": "4125", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "4125", + "$id": "4126", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49304,13 +49317,13 @@ "isHttpMetadata": false }, { - "$id": "4126", + "$id": "4127", "kind": "property", "name": "report_url", "serializedName": "report_url", "doc": "The URL to the rendered evaluation run report on the UI dashboard.", "type": { - "$id": "4127", + "$id": "4128", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49330,13 +49343,13 @@ "isHttpMetadata": false }, { - "$id": "4128", + "$id": "4129", "kind": "property", "name": "result_counts", "serializedName": "result_counts", "doc": "Counters summarizing the outcomes of the evaluation run.", "type": { - "$id": "4129", + "$id": "4130", "kind": "model", "name": "EvalRunResultCounts", "namespace": "OpenAI", @@ -49345,13 +49358,13 @@ "decorators": [], "properties": [ { - "$id": "4130", + "$id": "4131", "kind": "property", "name": "total", "serializedName": "total", "doc": "Total number of executed output items.", "type": { - "$id": "4131", + "$id": "4132", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49371,13 +49384,13 @@ "isHttpMetadata": false }, { - "$id": "4132", + "$id": "4133", "kind": "property", "name": "errored", "serializedName": "errored", "doc": "Number of output items that resulted in an error.", "type": { - "$id": "4133", + "$id": "4134", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49397,13 +49410,13 @@ "isHttpMetadata": false }, { - "$id": "4134", + "$id": "4135", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "Number of output items that failed to pass the evaluation.", "type": { - "$id": "4135", + "$id": "4136", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49423,13 +49436,13 @@ "isHttpMetadata": false }, { - "$id": "4136", + "$id": "4137", "kind": "property", "name": "passed", "serializedName": "passed", "doc": "Number of output items that passed the evaluation.", "type": { - "$id": "4137", + "$id": "4138", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49464,17 +49477,17 @@ "isHttpMetadata": false }, { - "$id": "4138", + "$id": "4139", "kind": "property", "name": "per_model_usage", "serializedName": "per_model_usage", "doc": "Usage statistics for each model during the evaluation run.", "type": { - "$id": "4139", + "$id": "4140", "kind": "array", "name": "Array15", "valueType": { - "$id": "4140", + "$id": "4141", "kind": "model", "name": "EvalRunPerModelUsage", "namespace": "OpenAI", @@ -49483,13 +49496,13 @@ "decorators": [], "properties": [ { - "$id": "4141", + "$id": "4142", "kind": "property", "name": "model_name", "serializedName": "model_name", "doc": "The name of the model.", "type": { - "$id": "4142", + "$id": "4143", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49509,13 +49522,13 @@ "isHttpMetadata": false }, { - "$id": "4143", + "$id": "4144", "kind": "property", "name": "invocation_count", "serializedName": "invocation_count", "doc": "The number of invocations.", "type": { - "$id": "4144", + "$id": "4145", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49535,13 +49548,13 @@ "isHttpMetadata": false }, { - "$id": "4145", + "$id": "4146", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "The number of prompt tokens used.", "type": { - "$id": "4146", + "$id": "4147", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49561,13 +49574,13 @@ "isHttpMetadata": false }, { - "$id": "4147", + "$id": "4148", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "The number of completion tokens generated.", "type": { - "$id": "4148", + "$id": "4149", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49587,13 +49600,13 @@ "isHttpMetadata": false }, { - "$id": "4149", + "$id": "4150", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens used.", "type": { - "$id": "4150", + "$id": "4151", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49613,13 +49626,13 @@ "isHttpMetadata": false }, { - "$id": "4151", + "$id": "4152", "kind": "property", "name": "cached_tokens", "serializedName": "cached_tokens", "doc": "The number of tokens retrieved from cache.", "type": { - "$id": "4152", + "$id": "4153", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49657,17 +49670,17 @@ "isHttpMetadata": false }, { - "$id": "4153", + "$id": "4154", "kind": "property", "name": "per_testing_criteria_results", "serializedName": "per_testing_criteria_results", "doc": "Results per testing criteria applied during the evaluation run.", "type": { - "$id": "4154", + "$id": "4155", "kind": "array", "name": "Array16", "valueType": { - "$id": "4155", + "$id": "4156", "kind": "model", "name": "EvalRunPerTestingCriteriaResult", "namespace": "OpenAI", @@ -49676,13 +49689,13 @@ "decorators": [], "properties": [ { - "$id": "4156", + "$id": "4157", "kind": "property", "name": "testing_criteria", "serializedName": "testing_criteria", "doc": "A description of the testing criteria.", "type": { - "$id": "4157", + "$id": "4158", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49702,13 +49715,13 @@ "isHttpMetadata": false }, { - "$id": "4158", + "$id": "4159", "kind": "property", "name": "passed", "serializedName": "passed", "doc": "Number of tests passed for this criteria.", "type": { - "$id": "4159", + "$id": "4160", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49728,13 +49741,13 @@ "isHttpMetadata": false }, { - "$id": "4160", + "$id": "4161", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "Number of tests failed for this criteria.", "type": { - "$id": "4161", + "$id": "4162", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49772,13 +49785,13 @@ "isHttpMetadata": false }, { - "$id": "4162", + "$id": "4163", "kind": "property", "name": "data_source", "serializedName": "data_source", "doc": "Information about the run's data source.", "type": { - "$id": "4163", + "$id": "4164", "kind": "model", "name": "EvalRunDataSourceResource", "namespace": "OpenAI", @@ -49787,7 +49800,7 @@ "decorators": [], "properties": [ { - "$id": "4164", + "$id": "4165", "kind": "property", "name": "type", "serializedName": "type", @@ -49823,13 +49836,13 @@ "isHttpMetadata": false }, { - "$id": "4165", + "$id": "4166", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2443" + "$ref": "2444" }, "optional": false, "readOnly": false, @@ -49845,12 +49858,12 @@ "isHttpMetadata": false }, { - "$id": "4166", + "$id": "4167", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$id": "4167", + "$id": "4168", "kind": "model", "name": "EvalApiError", "namespace": "OpenAI", @@ -49860,13 +49873,13 @@ "decorators": [], "properties": [ { - "$id": "4168", + "$id": "4169", "kind": "property", "name": "code", "serializedName": "code", "doc": "The error code.", "type": { - "$id": "4169", + "$id": "4170", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49886,13 +49899,13 @@ "isHttpMetadata": false }, { - "$id": "4170", + "$id": "4171", "kind": "property", "name": "message", "serializedName": "message", "doc": "The error message.", "type": { - "$id": "4171", + "$id": "4172", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49945,13 +49958,13 @@ "isHttpMetadata": false }, { - "$id": "4172", + "$id": "4173", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The identifier of the first eval run in the data array.", "type": { - "$id": "4173", + "$id": "4174", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49971,13 +49984,13 @@ "isHttpMetadata": false }, { - "$id": "4174", + "$id": "4175", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The identifier of the last eval run in the data array.", "type": { - "$id": "4175", + "$id": "4176", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49997,13 +50010,13 @@ "isHttpMetadata": false }, { - "$id": "4176", + "$id": "4177", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates whether there are more evals available.", "type": { - "$id": "4177", + "$id": "4178", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -50025,25 +50038,25 @@ ] }, { - "$ref": "4111" + "$ref": "4112" }, { - "$ref": "4129" + "$ref": "4130" }, { - "$ref": "4140" + "$ref": "4141" }, { - "$ref": "4155" + "$ref": "4156" }, { - "$ref": "4163" + "$ref": "4164" }, { - "$ref": "4167" + "$ref": "4168" }, { - "$id": "4178", + "$id": "4179", "kind": "model", "name": "CreateEvalRunRequest", "namespace": "OpenAI", @@ -50052,13 +50065,13 @@ "decorators": [], "properties": [ { - "$id": "4179", + "$id": "4180", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the run.", "type": { - "$id": "4180", + "$id": "4181", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50078,13 +50091,13 @@ "isHttpMetadata": false }, { - "$id": "4181", + "$id": "4182", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": true, "readOnly": false, @@ -50100,13 +50113,13 @@ "isHttpMetadata": false }, { - "$id": "4182", + "$id": "4183", "kind": "property", "name": "data_source", "serializedName": "data_source", "doc": "Details about the run's data source.", "type": { - "$id": "4183", + "$id": "4184", "kind": "model", "name": "EvalRunDataSourceParams", "namespace": "OpenAI", @@ -50114,7 +50127,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "4184", + "$id": "4185", "kind": "property", "name": "type", "serializedName": "type", @@ -50136,12 +50149,12 @@ }, "properties": [ { - "$ref": "4184" + "$ref": "4185" } ], "discriminatedSubtypes": { "jsonl": { - "$id": "4185", + "$id": "4186", "kind": "model", "name": "EvalJsonlRunDataSourceParams", "namespace": "OpenAI", @@ -50151,17 +50164,17 @@ "discriminatorValue": "jsonl", "decorators": [], "baseModel": { - "$ref": "4183" + "$ref": "4184" }, "properties": [ { - "$id": "4186", + "$id": "4187", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `jsonl`.", "type": { - "$id": "4187", + "$id": "4188", "kind": "enumvalue", "name": "jsonl", "value": "jsonl", @@ -50169,14 +50182,14 @@ "$ref": "393" }, "enumType": { - "$id": "4188", + "$id": "4189", "kind": "enum", "decorators": [], "name": "EvalRunDataSourceType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4189", + "$id": "4190", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -50185,42 +50198,42 @@ }, "values": [ { - "$id": "4190", + "$id": "4191", "kind": "enumvalue", "decorators": [], "name": "jsonl", "value": "jsonl", "valueType": { - "$ref": "4189" + "$ref": "4190" }, "enumType": { - "$ref": "4188" + "$ref": "4189" } }, { - "$id": "4191", + "$id": "4192", "kind": "enumvalue", "decorators": [], "name": "completions", "value": "completions", "valueType": { - "$ref": "4189" + "$ref": "4190" }, "enumType": { - "$ref": "4188" + "$ref": "4189" } }, { - "$id": "4192", + "$id": "4193", "kind": "enumvalue", "decorators": [], "name": "responses", "value": "responses", "valueType": { - "$ref": "4189" + "$ref": "4190" }, "enumType": { - "$ref": "4188" + "$ref": "4189" } } ], @@ -50249,18 +50262,18 @@ "isHttpMetadata": false }, { - "$id": "4193", + "$id": "4194", "kind": "property", "name": "source", "serializedName": "source", "doc": "Determines what populates the `item` namespace in the data source.", "type": { - "$id": "4194", + "$id": "4195", "kind": "union", "name": "EvalJsonlRunDataSourceParamsSource", "variantTypes": [ { - "$id": "4195", + "$id": "4196", "kind": "model", "name": "EvalRunFileContentDataContentSource", "namespace": "OpenAI", @@ -50269,7 +50282,7 @@ "discriminatorValue": "file_content", "decorators": [], "baseModel": { - "$id": "4196", + "$id": "4197", "kind": "model", "name": "EvalRunDataContentSource", "namespace": "OpenAI", @@ -50277,7 +50290,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "4197", + "$id": "4198", "kind": "property", "name": "type", "serializedName": "type", @@ -50299,15 +50312,15 @@ }, "properties": [ { - "$ref": "4197" + "$ref": "4198" } ], "discriminatedSubtypes": { "file_content": { - "$ref": "4195" + "$ref": "4196" }, "file_id": { - "$id": "4198", + "$id": "4199", "kind": "model", "name": "EvalRunFileIdDataContentSource", "namespace": "OpenAI", @@ -50316,17 +50329,17 @@ "discriminatorValue": "file_id", "decorators": [], "baseModel": { - "$ref": "4196" + "$ref": "4197" }, "properties": [ { - "$id": "4199", + "$id": "4200", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of jsonl source. Always `file_id`.", "type": { - "$id": "4200", + "$id": "4201", "kind": "enumvalue", "name": "file_id", "value": "file_id", @@ -50334,14 +50347,14 @@ "$ref": "398" }, "enumType": { - "$id": "4201", + "$id": "4202", "kind": "enum", "decorators": [], "name": "EvalRunDataContentSourceType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4202", + "$id": "4203", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -50350,55 +50363,55 @@ }, "values": [ { - "$id": "4203", + "$id": "4204", "kind": "enumvalue", "decorators": [], "name": "file_id", "value": "file_id", "valueType": { - "$ref": "4202" + "$ref": "4203" }, "enumType": { - "$ref": "4201" + "$ref": "4202" } }, { - "$id": "4204", + "$id": "4205", "kind": "enumvalue", "decorators": [], "name": "file_content", "value": "file_content", "valueType": { - "$ref": "4202" + "$ref": "4203" }, "enumType": { - "$ref": "4201" + "$ref": "4202" } }, { - "$id": "4205", + "$id": "4206", "kind": "enumvalue", "decorators": [], "name": "stored_completions", "value": "stored_completions", "valueType": { - "$ref": "4202" + "$ref": "4203" }, "enumType": { - "$ref": "4201" + "$ref": "4202" } }, { - "$id": "4206", + "$id": "4207", "kind": "enumvalue", "decorators": [], "name": "responses", "value": "responses", "valueType": { - "$ref": "4202" + "$ref": "4203" }, "enumType": { - "$ref": "4201" + "$ref": "4202" } } ], @@ -50427,13 +50440,13 @@ "isHttpMetadata": false }, { - "$id": "4207", + "$id": "4208", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier of the file.", "type": { - "$id": "4208", + "$id": "4209", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50455,7 +50468,7 @@ ] }, "stored_completions": { - "$id": "4209", + "$id": "4210", "kind": "model", "name": "EvalRunStoredCompletionsDataContentSource", "namespace": "OpenAI", @@ -50465,17 +50478,17 @@ "discriminatorValue": "stored_completions", "decorators": [], "baseModel": { - "$ref": "4196" + "$ref": "4197" }, "properties": [ { - "$id": "4210", + "$id": "4211", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of source. Always `stored_completions`.", "type": { - "$id": "4211", + "$id": "4212", "kind": "enumvalue", "name": "stored_completions", "value": "stored_completions", @@ -50483,7 +50496,7 @@ "$ref": "398" }, "enumType": { - "$ref": "4201" + "$ref": "4202" }, "decorators": [] }, @@ -50501,13 +50514,13 @@ "isHttpMetadata": false }, { - "$id": "4212", + "$id": "4213", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2443" + "$ref": "2444" }, "optional": false, "readOnly": false, @@ -50523,16 +50536,16 @@ "isHttpMetadata": false }, { - "$id": "4213", + "$id": "4214", "kind": "property", "name": "model", "serializedName": "model", "doc": "An optional model to filter by (e.g., 'gpt-4o').", "type": { - "$id": "4214", + "$id": "4215", "kind": "nullable", "type": { - "$id": "4215", + "$id": "4216", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50554,16 +50567,16 @@ "isHttpMetadata": false }, { - "$id": "4216", + "$id": "4217", "kind": "property", "name": "created_after", "serializedName": "created_after", "doc": "An optional Unix timestamp to filter items created after this time.", "type": { - "$id": "4217", + "$id": "4218", "kind": "nullable", "type": { - "$id": "4218", + "$id": "4219", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -50585,16 +50598,16 @@ "isHttpMetadata": false }, { - "$id": "4219", + "$id": "4220", "kind": "property", "name": "created_before", "serializedName": "created_before", "doc": "An optional Unix timestamp to filter items created before this time.", "type": { - "$id": "4220", + "$id": "4221", "kind": "nullable", "type": { - "$id": "4221", + "$id": "4222", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -50616,16 +50629,16 @@ "isHttpMetadata": false }, { - "$id": "4222", + "$id": "4223", "kind": "property", "name": "limit", "serializedName": "limit", "doc": "An optional maximum number of items to return.", "type": { - "$id": "4223", + "$id": "4224", "kind": "nullable", "type": { - "$id": "4224", + "$id": "4225", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -50649,7 +50662,7 @@ ] }, "responses": { - "$id": "4225", + "$id": "4226", "kind": "model", "name": "EvalRunResponsesDataContentSource", "namespace": "OpenAI", @@ -50659,17 +50672,17 @@ "discriminatorValue": "responses", "decorators": [], "baseModel": { - "$ref": "4196" + "$ref": "4197" }, "properties": [ { - "$id": "4226", + "$id": "4227", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of run data source. Always `responses`.", "type": { - "$id": "4227", + "$id": "4228", "kind": "enumvalue", "name": "responses", "value": "responses", @@ -50677,7 +50690,7 @@ "$ref": "398" }, "enumType": { - "$ref": "4201" + "$ref": "4202" }, "decorators": [] }, @@ -50695,13 +50708,13 @@ "isHttpMetadata": false }, { - "$id": "4228", + "$id": "4229", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": true, "readOnly": false, @@ -50717,16 +50730,16 @@ "isHttpMetadata": false }, { - "$id": "4229", + "$id": "4230", "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": "4230", + "$id": "4231", "kind": "nullable", "type": { - "$id": "4231", + "$id": "4232", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50748,16 +50761,16 @@ "isHttpMetadata": false }, { - "$id": "4232", + "$id": "4233", "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": "4233", + "$id": "4234", "kind": "nullable", "type": { - "$id": "4234", + "$id": "4235", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50779,16 +50792,16 @@ "isHttpMetadata": false }, { - "$id": "4235", + "$id": "4236", "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": "4236", + "$id": "4237", "kind": "nullable", "type": { - "$id": "4237", + "$id": "4238", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -50810,16 +50823,16 @@ "isHttpMetadata": false }, { - "$id": "4238", + "$id": "4239", "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": "4239", + "$id": "4240", "kind": "nullable", "type": { - "$id": "4240", + "$id": "4241", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -50841,13 +50854,13 @@ "isHttpMetadata": false }, { - "$id": "4241", + "$id": "4242", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", "doc": "Optional reasoning effort parameter. This is a query parameter used to select responses.", "type": { - "$id": "4242", + "$id": "4243", "kind": "nullable", "type": { "$ref": "53" @@ -50868,16 +50881,16 @@ "isHttpMetadata": false }, { - "$id": "4243", + "$id": "4244", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Sampling temperature. This is a query parameter used to select responses.", "type": { - "$id": "4244", + "$id": "4245", "kind": "nullable", "type": { - "$id": "4245", + "$id": "4246", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -50899,16 +50912,16 @@ "isHttpMetadata": false }, { - "$id": "4246", + "$id": "4247", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "Nucleus sampling parameter. This is a query parameter used to select responses.", "type": { - "$id": "4247", + "$id": "4248", "kind": "nullable", "type": { - "$id": "4248", + "$id": "4249", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -50930,16 +50943,16 @@ "isHttpMetadata": false }, { - "$id": "4249", + "$id": "4250", "kind": "property", "name": "users", "serializedName": "users", "doc": "List of user identifiers. This is a query parameter used to select responses.", "type": { - "$id": "4250", + "$id": "4251", "kind": "nullable", "type": { - "$ref": "2437" + "$ref": "2438" }, "namespace": "OpenAI" }, @@ -50957,16 +50970,16 @@ "isHttpMetadata": false }, { - "$id": "4251", + "$id": "4252", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "List of tool names. This is a query parameter used to select responses.", "type": { - "$id": "4252", + "$id": "4253", "kind": "nullable", "type": { - "$ref": "2437" + "$ref": "2438" }, "namespace": "OpenAI" }, @@ -50989,13 +51002,13 @@ }, "properties": [ { - "$id": "4253", + "$id": "4254", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of jsonl source. Always `file_content`.", "type": { - "$id": "4254", + "$id": "4255", "kind": "enumvalue", "name": "file_content", "value": "file_content", @@ -51003,7 +51016,7 @@ "$ref": "398" }, "enumType": { - "$ref": "4201" + "$ref": "4202" }, "decorators": [] }, @@ -51021,17 +51034,17 @@ "isHttpMetadata": false }, { - "$id": "4255", + "$id": "4256", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the jsonl file.", "type": { - "$id": "4256", + "$id": "4257", "kind": "array", "name": "Array17", "valueType": { - "$id": "4257", + "$id": "4258", "kind": "model", "name": "EvalRunFileContentDataContentSourceContent", "namespace": "OpenAI", @@ -51040,12 +51053,12 @@ "decorators": [], "properties": [ { - "$id": "4258", + "$id": "4259", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$ref": "3945" + "$ref": "3946" }, "optional": false, "readOnly": false, @@ -51061,12 +51074,12 @@ "isHttpMetadata": false }, { - "$id": "4259", + "$id": "4260", "kind": "property", "name": "sample", "serializedName": "sample", "type": { - "$ref": "3945" + "$ref": "3946" }, "optional": true, "readOnly": false, @@ -51102,7 +51115,7 @@ ] }, { - "$ref": "4198" + "$ref": "4199" } ], "namespace": "OpenAI", @@ -51124,7 +51137,7 @@ ] }, "completions": { - "$id": "4260", + "$id": "4261", "kind": "model", "name": "EvalCompletionsRunDataSourceParams", "namespace": "OpenAI", @@ -51134,17 +51147,17 @@ "discriminatorValue": "completions", "decorators": [], "baseModel": { - "$ref": "4183" + "$ref": "4184" }, "properties": [ { - "$id": "4261", + "$id": "4262", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of run data source. Always `completions`.", "type": { - "$id": "4262", + "$id": "4263", "kind": "enumvalue", "name": "completions", "value": "completions", @@ -51152,7 +51165,7 @@ "$ref": "393" }, "enumType": { - "$ref": "4188" + "$ref": "4189" }, "decorators": [] }, @@ -51170,18 +51183,18 @@ "isHttpMetadata": false }, { - "$id": "4263", + "$id": "4264", "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": "4264", + "$id": "4265", "kind": "union", "name": "EvalCompletionsRunDataSourceParamsInputMessages", "variantTypes": [ { - "$id": "4265", + "$id": "4266", "kind": "model", "name": "EvalCompletionsRunDataSourceParamsInputMessages1", "namespace": "OpenAI", @@ -51190,13 +51203,13 @@ "decorators": [], "properties": [ { - "$id": "4266", + "$id": "4267", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of input messages. Always `template`.", "type": { - "$ref": "1649" + "$ref": "1650" }, "optional": false, "readOnly": false, @@ -51212,29 +51225,29 @@ "isHttpMetadata": false }, { - "$id": "4267", + "$id": "4268", "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": "4268", + "$id": "4269", "kind": "array", "name": "Array18", "valueType": { - "$id": "4269", + "$id": "4270", "kind": "union", "name": "EvalCompletionsRunDataSourceParamsInputMessagesTemplate", "variantTypes": [ { - "$id": "4270", + "$id": "4271", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", "decorators": [] }, { - "$ref": "3632" + "$ref": "3633" } ], "namespace": "OpenAI", @@ -51259,7 +51272,7 @@ ] }, { - "$id": "4271", + "$id": "4272", "kind": "model", "name": "EvalCompletionsRunDataSourceParamsInputMessages2", "namespace": "OpenAI", @@ -51268,13 +51281,13 @@ "decorators": [], "properties": [ { - "$id": "4272", + "$id": "4273", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of input messages. Always `item_reference`.", "type": { - "$ref": "1651" + "$ref": "1652" }, "optional": false, "readOnly": false, @@ -51290,13 +51303,13 @@ "isHttpMetadata": false }, { - "$id": "4273", + "$id": "4274", "kind": "property", "name": "item_reference", "serializedName": "item_reference", "doc": "A reference to a variable in the `item` namespace. Ie, \"item.input_trajectory\"", "type": { - "$id": "4274", + "$id": "4275", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51335,12 +51348,12 @@ "isHttpMetadata": false }, { - "$id": "4275", + "$id": "4276", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "type": { - "$id": "4276", + "$id": "4277", "kind": "model", "name": "EvalCompletionsRunDataSourceParamsSamplingParams", "namespace": "OpenAI", @@ -51349,13 +51362,13 @@ "decorators": [], "properties": [ { - "$id": "4277", + "$id": "4278", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "A higher temperature increases randomness in the outputs.", "type": { - "$id": "4278", + "$id": "4279", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -51375,13 +51388,13 @@ "isHttpMetadata": false }, { - "$id": "4279", + "$id": "4280", "kind": "property", "name": "max_completion_tokens", "serializedName": "max_completion_tokens", "doc": "The maximum number of tokens in the generated output.", "type": { - "$id": "4280", + "$id": "4281", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -51401,13 +51414,13 @@ "isHttpMetadata": false }, { - "$id": "4281", + "$id": "4282", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "An alternative to temperature for nucleus sampling; 1.0 includes all tokens.", "type": { - "$id": "4282", + "$id": "4283", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -51427,13 +51440,13 @@ "isHttpMetadata": false }, { - "$id": "4283", + "$id": "4284", "kind": "property", "name": "seed", "serializedName": "seed", "doc": "A seed value to initialize the randomness, during sampling.", "type": { - "$id": "4284", + "$id": "4285", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -51453,13 +51466,13 @@ "isHttpMetadata": false }, { - "$id": "4285", + "$id": "4286", "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": "4286", + "$id": "4287", "kind": "model", "name": "ResponseTextFormatConfiguration", "namespace": "OpenAI", @@ -51472,7 +51485,7 @@ } ], "discriminatorProperty": { - "$id": "4287", + "$id": "4288", "kind": "property", "name": "type", "serializedName": "type", @@ -51494,12 +51507,12 @@ }, "properties": [ { - "$ref": "4287" + "$ref": "4288" } ], "discriminatedSubtypes": { "text": { - "$id": "4288", + "$id": "4289", "kind": "model", "name": "ResponseTextFormatConfigurationText", "namespace": "OpenAI", @@ -51513,16 +51526,16 @@ } ], "baseModel": { - "$ref": "4286" + "$ref": "4287" }, "properties": [ { - "$id": "4289", + "$id": "4290", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4290", + "$id": "4291", "kind": "enumvalue", "name": "text", "value": "text", @@ -51530,7 +51543,7 @@ "$ref": "404" }, "enumType": { - "$id": "4291", + "$id": "4292", "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.", @@ -51538,7 +51551,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4292", + "$id": "4293", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -51547,42 +51560,42 @@ }, "values": [ { - "$id": "4293", + "$id": "4294", "kind": "enumvalue", "decorators": [], "name": "text", "value": "text", "valueType": { - "$ref": "4292" + "$ref": "4293" }, "enumType": { - "$ref": "4291" + "$ref": "4292" } }, { - "$id": "4294", + "$id": "4295", "kind": "enumvalue", "decorators": [], "name": "json_schema", "value": "json_schema", "valueType": { - "$ref": "4292" + "$ref": "4293" }, "enumType": { - "$ref": "4291" + "$ref": "4292" } }, { - "$id": "4295", + "$id": "4296", "kind": "enumvalue", "decorators": [], "name": "json_object", "value": "json_object", "valueType": { - "$ref": "4292" + "$ref": "4293" }, "enumType": { - "$ref": "4291" + "$ref": "4292" } } ], @@ -51613,7 +51626,7 @@ ] }, "json_object": { - "$id": "4296", + "$id": "4297", "kind": "model", "name": "ResponseTextFormatConfigurationJsonObject", "namespace": "OpenAI", @@ -51627,16 +51640,16 @@ } ], "baseModel": { - "$ref": "4286" + "$ref": "4287" }, "properties": [ { - "$id": "4297", + "$id": "4298", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4298", + "$id": "4299", "kind": "enumvalue", "name": "json_object", "value": "json_object", @@ -51644,7 +51657,7 @@ "$ref": "404" }, "enumType": { - "$ref": "4291" + "$ref": "4292" }, "decorators": [] }, @@ -51664,7 +51677,7 @@ ] }, "json_schema": { - "$id": "4299", + "$id": "4300", "kind": "model", "name": "ResponseTextFormatConfigurationJsonSchema", "namespace": "OpenAI", @@ -51679,17 +51692,17 @@ } ], "baseModel": { - "$ref": "4286" + "$ref": "4287" }, "properties": [ { - "$id": "4300", + "$id": "4301", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of response format being defined. Always `json_schema`.", "type": { - "$id": "4301", + "$id": "4302", "kind": "enumvalue", "name": "json_schema", "value": "json_schema", @@ -51697,7 +51710,7 @@ "$ref": "404" }, "enumType": { - "$ref": "4291" + "$ref": "4292" }, "decorators": [] }, @@ -51715,13 +51728,13 @@ "isHttpMetadata": false }, { - "$id": "4302", + "$id": "4303", "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": "4303", + "$id": "4304", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51741,13 +51754,13 @@ "isHttpMetadata": false }, { - "$id": "4304", + "$id": "4305", "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": "4305", + "$id": "4306", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51767,12 +51780,12 @@ "isHttpMetadata": false }, { - "$id": "4306", + "$id": "4307", "kind": "property", "name": "schema", "serializedName": "schema", "type": { - "$ref": "2477" + "$ref": "2478" }, "optional": false, "readOnly": false, @@ -51788,16 +51801,16 @@ "isHttpMetadata": false }, { - "$id": "4307", + "$id": "4308", "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": "4308", + "$id": "4309", "kind": "nullable", "type": { - "$id": "4309", + "$id": "4310", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -51836,13 +51849,13 @@ "isHttpMetadata": false }, { - "$id": "4310", + "$id": "4311", "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": "3200" + "$ref": "3201" }, "optional": true, "readOnly": false, @@ -51873,13 +51886,13 @@ "isHttpMetadata": false }, { - "$id": "4311", + "$id": "4312", "kind": "property", "name": "model", "serializedName": "model", "doc": "The name of the model to use for generating completions (e.g. \"o3-mini\").", "type": { - "$id": "4312", + "$id": "4313", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51899,24 +51912,24 @@ "isHttpMetadata": false }, { - "$id": "4313", + "$id": "4314", "kind": "property", "name": "source", "serializedName": "source", "doc": "Determines what populates the `item` namespace in this run's data source.", "type": { - "$id": "4314", + "$id": "4315", "kind": "union", "name": "EvalCompletionsRunDataSourceParamsSource", "variantTypes": [ { - "$ref": "4195" + "$ref": "4196" }, { - "$ref": "4198" + "$ref": "4199" }, { - "$ref": "4209" + "$ref": "4210" } ], "namespace": "OpenAI", @@ -51938,7 +51951,7 @@ ] }, "responses": { - "$id": "4315", + "$id": "4316", "kind": "model", "name": "EvalResponsesRunDataSourceParams", "namespace": "OpenAI", @@ -51948,17 +51961,17 @@ "discriminatorValue": "responses", "decorators": [], "baseModel": { - "$ref": "4183" + "$ref": "4184" }, "properties": [ { - "$id": "4316", + "$id": "4317", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of run data source. Always `responses`.", "type": { - "$id": "4317", + "$id": "4318", "kind": "enumvalue", "name": "responses", "value": "responses", @@ -51966,7 +51979,7 @@ "$ref": "393" }, "enumType": { - "$ref": "4188" + "$ref": "4189" }, "decorators": [] }, @@ -51984,18 +51997,18 @@ "isHttpMetadata": false }, { - "$id": "4318", + "$id": "4319", "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": "4319", + "$id": "4320", "kind": "union", "name": "EvalResponsesRunDataSourceParamsInputMessages", "variantTypes": [ { - "$id": "4320", + "$id": "4321", "kind": "model", "name": "EvalResponsesRunDataSourceParamsInputMessages1", "namespace": "OpenAI", @@ -52004,13 +52017,13 @@ "decorators": [], "properties": [ { - "$id": "4321", + "$id": "4322", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of input messages. Always `template`.", "type": { - "$ref": "1653" + "$ref": "1654" }, "optional": false, "readOnly": false, @@ -52026,22 +52039,22 @@ "isHttpMetadata": false }, { - "$id": "4322", + "$id": "4323", "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": "4323", + "$id": "4324", "kind": "array", "name": "Array19", "valueType": { - "$id": "4324", + "$id": "4325", "kind": "union", "name": "EvalResponsesRunDataSourceParamsInputMessagesTemplate", "variantTypes": [ { - "$id": "4325", + "$id": "4326", "kind": "model", "name": "EvalResponsesRunDataSourceParamsInputMessagesTemplate1", "namespace": "OpenAI", @@ -52050,13 +52063,13 @@ "decorators": [], "properties": [ { - "$id": "4326", + "$id": "4327", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message (e.g. \"system\", \"assistant\", \"user\").", "type": { - "$id": "4327", + "$id": "4328", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52076,13 +52089,13 @@ "isHttpMetadata": false }, { - "$id": "4328", + "$id": "4329", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message.", "type": { - "$id": "4329", + "$id": "4330", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52104,7 +52117,7 @@ ] }, { - "$ref": "3632" + "$ref": "3633" } ], "namespace": "OpenAI", @@ -52129,7 +52142,7 @@ ] }, { - "$id": "4330", + "$id": "4331", "kind": "model", "name": "EvalResponsesRunDataSourceParamsInputMessages2", "namespace": "OpenAI", @@ -52138,13 +52151,13 @@ "decorators": [], "properties": [ { - "$id": "4331", + "$id": "4332", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of input messages. Always `item_reference`.", "type": { - "$ref": "1655" + "$ref": "1656" }, "optional": false, "readOnly": false, @@ -52160,13 +52173,13 @@ "isHttpMetadata": false }, { - "$id": "4332", + "$id": "4333", "kind": "property", "name": "item_reference", "serializedName": "item_reference", "doc": "A reference to a variable in the `item` namespace. Ie, \"item.name\"", "type": { - "$id": "4333", + "$id": "4334", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52205,12 +52218,12 @@ "isHttpMetadata": false }, { - "$id": "4334", + "$id": "4335", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "type": { - "$id": "4335", + "$id": "4336", "kind": "model", "name": "EvalResponsesRunDataSourceParamsSamplingParams", "namespace": "OpenAI", @@ -52219,13 +52232,13 @@ "decorators": [], "properties": [ { - "$id": "4336", + "$id": "4337", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "A higher temperature increases randomness in the outputs.", "type": { - "$id": "4337", + "$id": "4338", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -52245,13 +52258,13 @@ "isHttpMetadata": false }, { - "$id": "4338", + "$id": "4339", "kind": "property", "name": "max_completion_tokens", "serializedName": "max_completion_tokens", "doc": "The maximum number of tokens in the generated output.", "type": { - "$id": "4339", + "$id": "4340", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -52271,13 +52284,13 @@ "isHttpMetadata": false }, { - "$id": "4340", + "$id": "4341", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "An alternative to temperature for nucleus sampling; 1.0 includes all tokens.", "type": { - "$id": "4341", + "$id": "4342", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -52297,13 +52310,13 @@ "isHttpMetadata": false }, { - "$id": "4342", + "$id": "4343", "kind": "property", "name": "seed", "serializedName": "seed", "doc": "A seed value to initialize the randomness, during sampling.", "type": { - "$id": "4343", + "$id": "4344", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -52323,17 +52336,17 @@ "isHttpMetadata": false }, { - "$id": "4344", + "$id": "4345", "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": "4345", + "$id": "4346", "kind": "array", "name": "ArrayTool", "valueType": { - "$id": "4346", + "$id": "4347", "kind": "model", "name": "Tool", "namespace": "OpenAI", @@ -52346,7 +52359,7 @@ } ], "discriminatorProperty": { - "$id": "4347", + "$id": "4348", "kind": "property", "name": "type", "serializedName": "type", @@ -52368,12 +52381,12 @@ }, "properties": [ { - "$ref": "4347" + "$ref": "4348" } ], "discriminatedSubtypes": { "function": { - "$id": "4348", + "$id": "4349", "kind": "model", "name": "FunctionTool", "namespace": "OpenAI", @@ -52388,17 +52401,17 @@ } ], "baseModel": { - "$ref": "4346" + "$ref": "4347" }, "properties": [ { - "$id": "4349", + "$id": "4350", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the function tool. Always `function`.", "type": { - "$id": "4350", + "$id": "4351", "kind": "enumvalue", "name": "function", "value": "function", @@ -52406,7 +52419,7 @@ "$ref": "409" }, "enumType": { - "$id": "4351", + "$id": "4352", "kind": "enum", "decorators": [], "doc": "A tool that can be used to generate a response.", @@ -52414,7 +52427,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4352", + "$id": "4353", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -52423,107 +52436,120 @@ }, "values": [ { - "$id": "4353", + "$id": "4354", "kind": "enumvalue", "decorators": [], "name": "file_search", "value": "file_search", "valueType": { - "$ref": "4352" + "$ref": "4353" }, "enumType": { - "$ref": "4351" + "$ref": "4352" } }, { - "$id": "4354", + "$id": "4355", "kind": "enumvalue", "decorators": [], "name": "function", "value": "function", "valueType": { - "$ref": "4352" + "$ref": "4353" }, "enumType": { - "$ref": "4351" + "$ref": "4352" } }, { - "$id": "4355", + "$id": "4356", "kind": "enumvalue", "decorators": [], "name": "computer_use_preview", "value": "computer_use_preview", "valueType": { + "$ref": "4353" + }, + "enumType": { "$ref": "4352" + } + }, + { + "$id": "4357", + "kind": "enumvalue", + "decorators": [], + "name": "web_search", + "value": "web_search", + "valueType": { + "$ref": "4353" }, "enumType": { - "$ref": "4351" + "$ref": "4352" } }, { - "$id": "4356", + "$id": "4358", "kind": "enumvalue", "decorators": [], "name": "web_search_preview", "value": "web_search_preview", "valueType": { - "$ref": "4352" + "$ref": "4353" }, "enumType": { - "$ref": "4351" + "$ref": "4352" } }, { - "$id": "4357", + "$id": "4359", "kind": "enumvalue", "decorators": [], "name": "mcp", "value": "mcp", "valueType": { - "$ref": "4352" + "$ref": "4353" }, "enumType": { - "$ref": "4351" + "$ref": "4352" } }, { - "$id": "4358", + "$id": "4360", "kind": "enumvalue", "decorators": [], "name": "code_interpreter", "value": "code_interpreter", "valueType": { - "$ref": "4352" + "$ref": "4353" }, "enumType": { - "$ref": "4351" + "$ref": "4352" } }, { - "$id": "4359", + "$id": "4361", "kind": "enumvalue", "decorators": [], "name": "image_generation", "value": "image_generation", "valueType": { - "$ref": "4352" + "$ref": "4353" }, "enumType": { - "$ref": "4351" + "$ref": "4352" } }, { - "$id": "4360", + "$id": "4362", "kind": "enumvalue", "decorators": [], "name": "local_shell", "value": "local_shell", "valueType": { - "$ref": "4352" + "$ref": "4353" }, "enumType": { - "$ref": "4351" + "$ref": "4352" } } ], @@ -52552,13 +52578,13 @@ "isHttpMetadata": false }, { - "$id": "4361", + "$id": "4363", "kind": "property", "name": "FunctionName", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "4362", + "$id": "4364", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52578,16 +52604,16 @@ "isHttpMetadata": false }, { - "$id": "4363", + "$id": "4365", "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": "4364", + "$id": "4366", "kind": "nullable", "type": { - "$id": "4365", + "$id": "4367", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52609,16 +52635,16 @@ "isHttpMetadata": false }, { - "$id": "4366", + "$id": "4368", "kind": "property", "name": "FunctionParameters", "serializedName": "parameters", "doc": "A JSON schema object describing the parameters of the function.", "type": { - "$id": "4367", + "$id": "4369", "kind": "nullable", "type": { - "$id": "4368", + "$id": "4370", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -52640,16 +52666,16 @@ "isHttpMetadata": false }, { - "$id": "4369", + "$id": "4371", "kind": "property", "name": "StrictModeEnabled", "serializedName": "strict", "doc": "Whether to enforce strict parameter validation. Default `true`.", "type": { - "$id": "4370", + "$id": "4372", "kind": "nullable", "type": { - "$id": "4371", + "$id": "4373", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -52673,7 +52699,7 @@ ] }, "file_search": { - "$id": "4372", + "$id": "4374", "kind": "model", "name": "FileSearchTool", "namespace": "OpenAI", @@ -52688,17 +52714,17 @@ } ], "baseModel": { - "$ref": "4346" + "$ref": "4347" }, "properties": [ { - "$id": "4373", + "$id": "4375", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the file search tool. Always `file_search`.", "type": { - "$id": "4374", + "$id": "4376", "kind": "enumvalue", "name": "file_search", "value": "file_search", @@ -52706,7 +52732,7 @@ "$ref": "409" }, "enumType": { - "$ref": "4351" + "$ref": "4352" }, "decorators": [] }, @@ -52724,13 +52750,13 @@ "isHttpMetadata": false }, { - "$id": "4375", + "$id": "4377", "kind": "property", "name": "vector_store_ids", "serializedName": "vector_store_ids", "doc": "The IDs of the vector stores to search.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": false, "readOnly": false, @@ -52746,13 +52772,13 @@ "isHttpMetadata": false }, { - "$id": "4376", + "$id": "4378", "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": "4377", + "$id": "4379", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -52772,13 +52798,13 @@ "isHttpMetadata": false }, { - "$id": "4378", + "$id": "4380", "kind": "property", "name": "ranking_options", "serializedName": "ranking_options", "doc": "Ranking options for search.", "type": { - "$id": "4379", + "$id": "4381", "kind": "model", "name": "RankingOptions", "namespace": "OpenAI", @@ -52792,13 +52818,13 @@ ], "properties": [ { - "$id": "4380", + "$id": "4382", "kind": "property", "name": "ranker", "serializedName": "ranker", "doc": "The ranker to use for the file search.", "type": { - "$ref": "418" + "$ref": "419" }, "optional": true, "readOnly": false, @@ -52814,13 +52840,13 @@ "isHttpMetadata": false }, { - "$id": "4381", + "$id": "4383", "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": "4382", + "$id": "4384", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -52855,21 +52881,21 @@ "isHttpMetadata": false }, { - "$id": "4383", + "$id": "4385", "kind": "property", "name": "filters", "serializedName": "filters", "doc": "A filter to apply.", "type": { - "$id": "4384", + "$id": "4386", "kind": "nullable", "type": { - "$id": "4385", + "$id": "4387", "kind": "union", "name": "Filters", "variantTypes": [ { - "$id": "4386", + "$id": "4388", "kind": "model", "name": "ComparisonFilter", "namespace": "OpenAI", @@ -52882,12 +52908,12 @@ } ], "discriminatorProperty": { - "$id": "4387", + "$id": "4389", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "422" + "$ref": "423" }, "optional": false, "readOnly": false, @@ -52904,15 +52930,15 @@ }, "properties": [ { - "$ref": "4387" + "$ref": "4389" }, { - "$id": "4388", + "$id": "4390", "kind": "property", "name": "key", "serializedName": "key", "type": { - "$id": "4389", + "$id": "4391", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52932,31 +52958,31 @@ "isHttpMetadata": false }, { - "$id": "4390", + "$id": "4392", "kind": "property", "name": "value", "serializedName": "value", "type": { - "$id": "4391", + "$id": "4393", "kind": "union", "name": "ComparisonFilterValue", "variantTypes": [ { - "$id": "4392", + "$id": "4394", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "4393", + "$id": "4395", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", "decorators": [] }, { - "$id": "4394", + "$id": "4396", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -52982,7 +53008,7 @@ ], "discriminatedSubtypes": { "eq": { - "$id": "4395", + "$id": "4397", "kind": "model", "name": "ComparisonFilterEquals", "namespace": "OpenAI", @@ -52996,31 +53022,31 @@ } ], "baseModel": { - "$ref": "4386" + "$ref": "4388" }, "properties": [ { - "$id": "4396", + "$id": "4398", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4397", + "$id": "4399", "kind": "enumvalue", "name": "eq", "value": "eq", "valueType": { - "$ref": "423" + "$ref": "424" }, "enumType": { - "$id": "4398", + "$id": "4400", "kind": "enum", "decorators": [], "name": "ComparisonFilterType", "isGeneratedName": true, "namespace": "OpenAI", "valueType": { - "$id": "4399", + "$id": "4401", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -53029,81 +53055,81 @@ }, "values": [ { - "$id": "4400", + "$id": "4402", "kind": "enumvalue", "decorators": [], "name": "eq", "value": "eq", "valueType": { - "$ref": "4399" + "$ref": "4401" }, "enumType": { - "$ref": "4398" + "$ref": "4400" } }, { - "$id": "4401", + "$id": "4403", "kind": "enumvalue", "decorators": [], "name": "ne", "value": "ne", "valueType": { - "$ref": "4399" + "$ref": "4401" }, "enumType": { - "$ref": "4398" + "$ref": "4400" } }, { - "$id": "4402", + "$id": "4404", "kind": "enumvalue", "decorators": [], "name": "gt", "value": "gt", "valueType": { - "$ref": "4399" + "$ref": "4401" }, "enumType": { - "$ref": "4398" + "$ref": "4400" } }, { - "$id": "4403", + "$id": "4405", "kind": "enumvalue", "decorators": [], "name": "gte", "value": "gte", "valueType": { - "$ref": "4399" + "$ref": "4401" }, "enumType": { - "$ref": "4398" + "$ref": "4400" } }, { - "$id": "4404", + "$id": "4406", "kind": "enumvalue", "decorators": [], "name": "lt", "value": "lt", "valueType": { - "$ref": "4399" + "$ref": "4401" }, "enumType": { - "$ref": "4398" + "$ref": "4400" } }, { - "$id": "4405", + "$id": "4407", "kind": "enumvalue", "decorators": [], "name": "lte", "value": "lte", "valueType": { - "$ref": "4399" + "$ref": "4401" }, "enumType": { - "$ref": "4398" + "$ref": "4400" } } ], @@ -53134,7 +53160,7 @@ ] }, "ne": { - "$id": "4406", + "$id": "4408", "kind": "model", "name": "ComparisonFilterNotEquals", "namespace": "OpenAI", @@ -53148,24 +53174,24 @@ } ], "baseModel": { - "$ref": "4386" + "$ref": "4388" }, "properties": [ { - "$id": "4407", + "$id": "4409", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4408", + "$id": "4410", "kind": "enumvalue", "name": "ne", "value": "ne", "valueType": { - "$ref": "423" + "$ref": "424" }, "enumType": { - "$ref": "4398" + "$ref": "4400" }, "decorators": [] }, @@ -53185,7 +53211,7 @@ ] }, "gt": { - "$id": "4409", + "$id": "4411", "kind": "model", "name": "ComparisonFilterGreaterThan", "namespace": "OpenAI", @@ -53199,24 +53225,24 @@ } ], "baseModel": { - "$ref": "4386" + "$ref": "4388" }, "properties": [ { - "$id": "4410", + "$id": "4412", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4411", + "$id": "4413", "kind": "enumvalue", "name": "gt", "value": "gt", "valueType": { - "$ref": "423" + "$ref": "424" }, "enumType": { - "$ref": "4398" + "$ref": "4400" }, "decorators": [] }, @@ -53236,7 +53262,7 @@ ] }, "gte": { - "$id": "4412", + "$id": "4414", "kind": "model", "name": "ComparisonFilterGreaterThanOrEquals", "namespace": "OpenAI", @@ -53250,24 +53276,24 @@ } ], "baseModel": { - "$ref": "4386" + "$ref": "4388" }, "properties": [ { - "$id": "4413", + "$id": "4415", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4414", + "$id": "4416", "kind": "enumvalue", "name": "gte", "value": "gte", "valueType": { - "$ref": "423" + "$ref": "424" }, "enumType": { - "$ref": "4398" + "$ref": "4400" }, "decorators": [] }, @@ -53287,7 +53313,7 @@ ] }, "lt": { - "$id": "4415", + "$id": "4417", "kind": "model", "name": "ComparisonFilterLessThan", "namespace": "OpenAI", @@ -53301,24 +53327,24 @@ } ], "baseModel": { - "$ref": "4386" + "$ref": "4388" }, "properties": [ { - "$id": "4416", + "$id": "4418", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4417", + "$id": "4419", "kind": "enumvalue", "name": "lt", "value": "lt", "valueType": { - "$ref": "423" + "$ref": "424" }, "enumType": { - "$ref": "4398" + "$ref": "4400" }, "decorators": [] }, @@ -53338,7 +53364,7 @@ ] }, "lte": { - "$id": "4418", + "$id": "4420", "kind": "model", "name": "ComparisonFilterLessThanOrEquals", "namespace": "OpenAI", @@ -53352,24 +53378,24 @@ } ], "baseModel": { - "$ref": "4386" + "$ref": "4388" }, "properties": [ { - "$id": "4419", + "$id": "4421", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4420", + "$id": "4422", "kind": "enumvalue", "name": "lte", "value": "lte", "valueType": { - "$ref": "423" + "$ref": "424" }, "enumType": { - "$ref": "4398" + "$ref": "4400" }, "decorators": [] }, @@ -53391,7 +53417,7 @@ } }, { - "$id": "4421", + "$id": "4423", "kind": "model", "name": "CompoundFilter", "namespace": "OpenAI", @@ -53404,12 +53430,12 @@ } ], "discriminatorProperty": { - "$id": "4422", + "$id": "4424", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "430" + "$ref": "431" }, "optional": false, "readOnly": false, @@ -53426,27 +53452,27 @@ }, "properties": [ { - "$ref": "4422" + "$ref": "4424" }, { - "$id": "4423", + "$id": "4425", "kind": "property", "name": "filters", "serializedName": "filters", "type": { - "$id": "4424", + "$id": "4426", "kind": "array", "name": "Array20", "valueType": { - "$id": "4425", + "$id": "4427", "kind": "union", "name": "CompoundFilterFilter", "variantTypes": [ { - "$ref": "4386" + "$ref": "4388" }, { - "$ref": "4421" + "$ref": "4423" } ], "namespace": "OpenAI", @@ -53471,7 +53497,7 @@ ], "discriminatedSubtypes": { "and": { - "$id": "4426", + "$id": "4428", "kind": "model", "name": "CompoundFilterAnd", "namespace": "OpenAI", @@ -53485,31 +53511,31 @@ } ], "baseModel": { - "$ref": "4421" + "$ref": "4423" }, "properties": [ { - "$id": "4427", + "$id": "4429", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4428", + "$id": "4430", "kind": "enumvalue", "name": "and", "value": "and", "valueType": { - "$ref": "431" + "$ref": "432" }, "enumType": { - "$id": "4429", + "$id": "4431", "kind": "enum", "decorators": [], "name": "CompoundFilterType", "isGeneratedName": true, "namespace": "OpenAI", "valueType": { - "$id": "4430", + "$id": "4432", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -53518,29 +53544,29 @@ }, "values": [ { - "$id": "4431", + "$id": "4433", "kind": "enumvalue", "decorators": [], "name": "and", "value": "and", "valueType": { - "$ref": "4430" + "$ref": "4432" }, "enumType": { - "$ref": "4429" + "$ref": "4431" } }, { - "$id": "4432", + "$id": "4434", "kind": "enumvalue", "decorators": [], "name": "or", "value": "or", "valueType": { - "$ref": "4430" + "$ref": "4432" }, "enumType": { - "$ref": "4429" + "$ref": "4431" } } ], @@ -53571,7 +53597,7 @@ ] }, "or": { - "$id": "4433", + "$id": "4435", "kind": "model", "name": "CompoundFilterOr", "namespace": "OpenAI", @@ -53585,24 +53611,24 @@ } ], "baseModel": { - "$ref": "4421" + "$ref": "4423" }, "properties": [ { - "$id": "4434", + "$id": "4436", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4435", + "$id": "4437", "kind": "enumvalue", "name": "or", "value": "or", "valueType": { - "$ref": "431" + "$ref": "432" }, "enumType": { - "$ref": "4429" + "$ref": "4431" }, "decorators": [] }, @@ -53645,7 +53671,7 @@ ] }, "computer_use_preview": { - "$id": "4436", + "$id": "4438", "kind": "model", "name": "ComputerUsePreviewTool", "namespace": "OpenAI", @@ -53660,17 +53686,17 @@ } ], "baseModel": { - "$ref": "4346" + "$ref": "4347" }, "properties": [ { - "$id": "4437", + "$id": "4439", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the computer use tool. Always `computer_use_preview`.", "type": { - "$id": "4438", + "$id": "4440", "kind": "enumvalue", "name": "computer_use_preview", "value": "computer_use_preview", @@ -53678,7 +53704,7 @@ "$ref": "409" }, "enumType": { - "$ref": "4351" + "$ref": "4352" }, "decorators": [] }, @@ -53696,13 +53722,13 @@ "isHttpMetadata": false }, { - "$id": "4439", + "$id": "4441", "kind": "property", "name": "environment", "serializedName": "environment", "doc": "The type of computer environment to control.", "type": { - "$ref": "434" + "$ref": "435" }, "optional": false, "readOnly": false, @@ -53718,13 +53744,13 @@ "isHttpMetadata": false }, { - "$id": "4440", + "$id": "4442", "kind": "property", "name": "display_width", "serializedName": "display_width", "doc": "The width of the computer display.", "type": { - "$id": "4441", + "$id": "4443", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -53744,13 +53770,13 @@ "isHttpMetadata": false }, { - "$id": "4442", + "$id": "4444", "kind": "property", "name": "display_height", "serializedName": "display_height", "doc": "The height of the computer display.", "type": { - "$id": "4443", + "$id": "4445", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -53772,7 +53798,7 @@ ] }, "web_search_preview": { - "$id": "4444", + "$id": "4446", "kind": "model", "name": "WebSearchPreviewTool", "namespace": "OpenAI", @@ -53787,17 +53813,17 @@ } ], "baseModel": { - "$ref": "4346" + "$ref": "4347" }, "properties": [ { - "$id": "4445", + "$id": "4447", "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": "4446", + "$id": "4448", "kind": "enumvalue", "name": "web_search_preview", "value": "web_search_preview", @@ -53805,7 +53831,7 @@ "$ref": "409" }, "enumType": { - "$ref": "4351" + "$ref": "4352" }, "decorators": [] }, @@ -53823,16 +53849,16 @@ "isHttpMetadata": false }, { - "$id": "4447", + "$id": "4449", "kind": "property", "name": "user_location", "serializedName": "user_location", "doc": "The user's location.", "type": { - "$id": "4448", + "$id": "4450", "kind": "nullable", "type": { - "$id": "4449", + "$id": "4451", "kind": "model", "name": "Location", "namespace": "OpenAI", @@ -53845,12 +53871,12 @@ } ], "discriminatorProperty": { - "$id": "4450", + "$id": "4452", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "441" + "$ref": "442" }, "optional": false, "readOnly": false, @@ -53867,12 +53893,12 @@ }, "properties": [ { - "$ref": "4450" + "$ref": "4452" } ], "discriminatedSubtypes": { "approximate": { - "$id": "4451", + "$id": "4453", "kind": "model", "name": "ApproximateLocation", "namespace": "OpenAI", @@ -53886,31 +53912,31 @@ } ], "baseModel": { - "$ref": "4449" + "$ref": "4451" }, "properties": [ { - "$id": "4452", + "$id": "4454", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4453", + "$id": "4455", "kind": "enumvalue", "name": "approximate", "value": "approximate", "valueType": { - "$ref": "442" + "$ref": "443" }, "enumType": { - "$id": "4454", + "$id": "4456", "kind": "enum", "decorators": [], "name": "LocationType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4455", + "$id": "4457", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -53919,16 +53945,16 @@ }, "values": [ { - "$id": "4456", + "$id": "4458", "kind": "enumvalue", "decorators": [], "name": "approximate", "value": "approximate", "valueType": { - "$ref": "4455" + "$ref": "4457" }, "enumType": { - "$ref": "4454" + "$ref": "4456" } } ], @@ -53957,15 +53983,15 @@ "isHttpMetadata": false }, { - "$id": "4457", + "$id": "4459", "kind": "property", "name": "country", "serializedName": "country", "type": { - "$id": "4458", + "$id": "4460", "kind": "nullable", "type": { - "$id": "4459", + "$id": "4461", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53987,15 +54013,15 @@ "isHttpMetadata": false }, { - "$id": "4460", + "$id": "4462", "kind": "property", "name": "region", "serializedName": "region", "type": { - "$id": "4461", + "$id": "4463", "kind": "nullable", "type": { - "$id": "4462", + "$id": "4464", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54017,15 +54043,15 @@ "isHttpMetadata": false }, { - "$id": "4463", + "$id": "4465", "kind": "property", "name": "city", "serializedName": "city", "type": { - "$id": "4464", + "$id": "4466", "kind": "nullable", "type": { - "$id": "4465", + "$id": "4467", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54047,15 +54073,15 @@ "isHttpMetadata": false }, { - "$id": "4466", + "$id": "4468", "kind": "property", "name": "timezone", "serializedName": "timezone", "type": { - "$id": "4467", + "$id": "4469", "kind": "nullable", "type": { - "$id": "4468", + "$id": "4470", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54096,13 +54122,13 @@ "isHttpMetadata": false }, { - "$id": "4469", + "$id": "4471", "kind": "property", "name": "search_context_size", "serializedName": "search_context_size", "doc": "High level guidance for the amount of context window space to use for the search. One of `low`, `medium`, or `high`. `medium` is the default.", "type": { - "$ref": "444" + "$ref": "445" }, "optional": true, "readOnly": false, @@ -54119,8 +54145,169 @@ } ] }, + "web_search": { + "$id": "4472", + "kind": "model", + "name": "WebSearchTool", + "namespace": "OpenAI", + "crossLanguageDefinitionId": "OpenAI.WebSearchTool", + "usage": "Input,Output,Json", + "doc": "This tool searches the web for relevant results to use in a response. Learn more about the [web search tool](https://platform.openai.com/docs/guides/tools-web-search).", + "discriminatorValue": "web_search", + "decorators": [], + "baseModel": { + "$ref": "4347" + }, + "properties": [ + { + "$id": "4473", + "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", + "kind": "enumvalue", + "name": "web_search", + "value": "web_search", + "valueType": { + "$ref": "409" + }, + "enumType": { + "$ref": "4352" + }, + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": true, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.WebSearchTool.type", + "serializationOptions": { + "json": { + "name": "type" + } + }, + "isHttpMetadata": false + }, + { + "$id": "4475", + "kind": "property", + "name": "filters", + "serializedName": "filters", + "type": { + "$id": "4476", + "kind": "nullable", + "type": { + "$id": "4477", + "kind": "model", + "name": "WebSearchToolFilters", + "namespace": "OpenAI", + "crossLanguageDefinitionId": "OpenAI.WebSearchToolFilters", + "usage": "Input,Output,Json", + "decorators": [ + { + "name": "TypeSpec.HttpClient.CSharp.@dynamicModel", + "arguments": {} + } + ], + "properties": [ + { + "$id": "4478", + "kind": "property", + "name": "allowed_domains", + "serializedName": "allowed_domains", + "type": { + "$id": "4479", + "kind": "nullable", + "type": { + "$ref": "2438" + }, + "namespace": "OpenAI" + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.WebSearchToolFilters.allowed_domains", + "serializationOptions": { + "json": { + "name": "allowed_domains" + } + }, + "isHttpMetadata": false + } + ] + }, + "namespace": "OpenAI" + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.WebSearchTool.filters", + "serializationOptions": { + "json": { + "name": "filters" + } + }, + "isHttpMetadata": false + }, + { + "$id": "4480", + "kind": "property", + "name": "user_location", + "serializedName": "user_location", + "type": { + "$id": "4481", + "kind": "nullable", + "type": { + "$ref": "4451" + }, + "namespace": "OpenAI" + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.WebSearchTool.user_location", + "serializationOptions": { + "json": { + "name": "user_location" + } + }, + "isHttpMetadata": false + }, + { + "$id": "4482", + "kind": "property", + "name": "search_context_size", + "serializedName": "search_context_size", + "doc": "High level guidance for the amount of context window space to use for the search. One of `low`, `medium`, or `high`. `medium` is the default.", + "type": { + "$ref": "445" + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.WebSearchTool.search_context_size", + "serializationOptions": { + "json": { + "name": "search_context_size" + } + }, + "isHttpMetadata": false + } + ] + }, "code_interpreter": { - "$id": "4470", + "$id": "4483", "kind": "model", "name": "CodeInterpreterTool", "namespace": "OpenAI", @@ -54135,17 +54322,17 @@ } ], "baseModel": { - "$ref": "4346" + "$ref": "4347" }, "properties": [ { - "$id": "4471", + "$id": "4484", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the code interpreter tool. Always `code_interpreter`.", "type": { - "$id": "4472", + "$id": "4485", "kind": "enumvalue", "name": "code_interpreter", "value": "code_interpreter", @@ -54153,7 +54340,7 @@ "$ref": "409" }, "enumType": { - "$ref": "4351" + "$ref": "4352" }, "decorators": [] }, @@ -54171,25 +54358,25 @@ "isHttpMetadata": false }, { - "$id": "4473", + "$id": "4486", "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": "4474", + "$id": "4487", "kind": "union", "name": "CodeInterpreterToolContainer", "variantTypes": [ { - "$id": "4475", + "$id": "4488", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "4476", + "$id": "4489", "kind": "model", "name": "CodeInterpreterToolAuto", "namespace": "OpenAI", @@ -54204,7 +54391,7 @@ } ], "baseModel": { - "$id": "4477", + "$id": "4490", "kind": "model", "name": "CodeInterpreterContainerConfiguration", "namespace": "OpenAI", @@ -54217,13 +54404,13 @@ } ], "discriminatorProperty": { - "$id": "4478", + "$id": "4491", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the output.", "type": { - "$ref": "449" + "$ref": "450" }, "optional": false, "readOnly": false, @@ -54240,32 +54427,32 @@ }, "properties": [ { - "$ref": "4478" + "$ref": "4491" } ], "discriminatedSubtypes": { "auto": { - "$ref": "4476" + "$ref": "4489" } } }, "properties": [ { - "$id": "4479", + "$id": "4492", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `auto`.", "type": { - "$id": "4480", + "$id": "4493", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "450" + "$ref": "451" }, "enumType": { - "$id": "4481", + "$id": "4494", "kind": "enum", "decorators": [ { @@ -54277,7 +54464,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4482", + "$id": "4495", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -54286,16 +54473,16 @@ }, "values": [ { - "$id": "4483", + "$id": "4496", "kind": "enumvalue", "decorators": [], "name": "auto", "value": "auto", "valueType": { - "$ref": "4482" + "$ref": "4495" }, "enumType": { - "$ref": "4481" + "$ref": "4494" } } ], @@ -54324,13 +54511,13 @@ "isHttpMetadata": false }, { - "$id": "4484", + "$id": "4497", "kind": "property", "name": "file_ids", "serializedName": "file_ids", "doc": "An optional list of uploaded files to make available to your code.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": true, "readOnly": false, @@ -54367,7 +54554,7 @@ ] }, "image_generation": { - "$id": "4485", + "$id": "4498", "kind": "model", "name": "ImageGenTool", "namespace": "OpenAI", @@ -54382,17 +54569,17 @@ } ], "baseModel": { - "$ref": "4346" + "$ref": "4347" }, "properties": [ { - "$id": "4486", + "$id": "4499", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the image generation tool. Always `image_generation`.", "type": { - "$id": "4487", + "$id": "4500", "kind": "enumvalue", "name": "image_generation", "value": "image_generation", @@ -54400,7 +54587,7 @@ "$ref": "409" }, "enumType": { - "$ref": "4351" + "$ref": "4352" }, "decorators": [] }, @@ -54418,13 +54605,13 @@ "isHttpMetadata": false }, { - "$id": "4488", + "$id": "4501", "kind": "property", "name": "model", "serializedName": "model", "doc": "The image generation model to use. Default: `gpt-image-1`.", "type": { - "$ref": "452" + "$ref": "453" }, "optional": true, "readOnly": false, @@ -54440,13 +54627,13 @@ "isHttpMetadata": false }, { - "$id": "4489", + "$id": "4502", "kind": "property", "name": "quality", "serializedName": "quality", "doc": "The quality of the generated image. One of `low`, `medium`, `high`,\nor `auto`. Default: `auto`.", "type": { - "$ref": "456" + "$ref": "457" }, "optional": true, "readOnly": false, @@ -54462,13 +54649,13 @@ "isHttpMetadata": false }, { - "$id": "4490", + "$id": "4503", "kind": "property", "name": "size", "serializedName": "size", "doc": "The size of the generated image. One of `1024x1024`, `1024x1536`,\n`1536x1024`, or `auto`. Default: `auto`.", "type": { - "$ref": "462" + "$ref": "463" }, "optional": true, "readOnly": false, @@ -54484,13 +54671,13 @@ "isHttpMetadata": false }, { - "$id": "4491", + "$id": "4504", "kind": "property", "name": "output_format", "serializedName": "output_format", "doc": "The output format of the generated image. One of `png`, `webp`, or\n`jpeg`. Default: `png`.", "type": { - "$ref": "468" + "$ref": "469" }, "optional": true, "readOnly": false, @@ -54506,13 +54693,13 @@ "isHttpMetadata": false }, { - "$id": "4492", + "$id": "4505", "kind": "property", "name": "output_compression", "serializedName": "output_compression", "doc": "Compression level for the output image. Default: 100.", "type": { - "$id": "4493", + "$id": "4506", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -54532,13 +54719,13 @@ "isHttpMetadata": false }, { - "$id": "4494", + "$id": "4507", "kind": "property", "name": "moderation", "serializedName": "moderation", "doc": "Moderation level for the generated image. Default: `auto`.", "type": { - "$ref": "473" + "$ref": "474" }, "optional": true, "readOnly": false, @@ -54554,13 +54741,13 @@ "isHttpMetadata": false }, { - "$id": "4495", + "$id": "4508", "kind": "property", "name": "background", "serializedName": "background", "doc": "Background type for the generated image. One of `transparent`,\n`opaque`, or `auto`. Default: `auto`.", "type": { - "$ref": "477" + "$ref": "478" }, "optional": true, "readOnly": false, @@ -54576,13 +54763,13 @@ "isHttpMetadata": false }, { - "$id": "4496", + "$id": "4509", "kind": "property", "name": "input_fidelity", "serializedName": "input_fidelity", "doc": "Control how much effort the model will exert to match the style and features,\nespecially facial features, of input images. This parameter is only supported\nfor `gpt-image-1`. Supports `high` and `low`. Defaults to `low`.", "type": { - "$ref": "482" + "$ref": "483" }, "optional": true, "readOnly": false, @@ -54598,13 +54785,13 @@ "isHttpMetadata": false }, { - "$id": "4497", + "$id": "4510", "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": "4498", + "$id": "4511", "kind": "model", "name": "ImageGenToolInputImageMask", "namespace": "OpenAI", @@ -54613,13 +54800,13 @@ "decorators": [], "properties": [ { - "$id": "4499", + "$id": "4512", "kind": "property", "name": "image_url", "serializedName": "image_url", "doc": "Base64-encoded mask image.", "type": { - "$id": "4500", + "$id": "4513", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54639,13 +54826,13 @@ "isHttpMetadata": false }, { - "$id": "4501", + "$id": "4514", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "File ID for the mask image.", "type": { - "$id": "4502", + "$id": "4515", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54680,13 +54867,13 @@ "isHttpMetadata": false }, { - "$id": "4503", + "$id": "4516", "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": "4504", + "$id": "4517", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -54708,7 +54895,7 @@ ] }, "local_shell": { - "$id": "4505", + "$id": "4518", "kind": "model", "name": "LocalShellTool", "namespace": "OpenAI", @@ -54723,17 +54910,17 @@ } ], "baseModel": { - "$ref": "4346" + "$ref": "4347" }, "properties": [ { - "$id": "4506", + "$id": "4519", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the local shell tool. Always `local_shell`.", "type": { - "$id": "4507", + "$id": "4520", "kind": "enumvalue", "name": "local_shell", "value": "local_shell", @@ -54741,7 +54928,7 @@ "$ref": "409" }, "enumType": { - "$ref": "4351" + "$ref": "4352" }, "decorators": [] }, @@ -54761,7 +54948,7 @@ ] }, "mcp": { - "$id": "4508", + "$id": "4521", "kind": "model", "name": "MCPTool", "namespace": "OpenAI", @@ -54776,17 +54963,17 @@ } ], "baseModel": { - "$ref": "4346" + "$ref": "4347" }, "properties": [ { - "$id": "4509", + "$id": "4522", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the MCP tool. Always `mcp`.", "type": { - "$id": "4510", + "$id": "4523", "kind": "enumvalue", "name": "mcp", "value": "mcp", @@ -54794,7 +54981,7 @@ "$ref": "409" }, "enumType": { - "$ref": "4351" + "$ref": "4352" }, "decorators": [] }, @@ -54812,13 +54999,13 @@ "isHttpMetadata": false }, { - "$id": "4511", + "$id": "4524", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "A label for this MCP server, used to identify it in tool calls.", "type": { - "$id": "4512", + "$id": "4525", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54838,13 +55025,13 @@ "isHttpMetadata": false }, { - "$id": "4513", + "$id": "4526", "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": "4514", + "$id": "4527", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -54864,13 +55051,13 @@ "isHttpMetadata": false }, { - "$id": "4515", + "$id": "4528", "kind": "property", "name": "connector_id", "serializedName": "connector_id", "doc": "Identifier for service connectors, like those available in ChatGPT. One of\n `server_url` or `connector_id` must be provided. Learn more about service\n connectors [here](https://platform.openai.com/docs/guides/tools-remote-mcp#connectors).\n\n Currently supported `connector_id` values are:\n\n - Dropbox: `connector_dropbox`\n - Gmail: `connector_gmail`\n - Google Calendar: `connector_googlecalendar`\n - Google Drive: `connector_googledrive`\n - Microsoft Teams: `connector_microsoftteams`\n - Outlook Calendar: `connector_outlookcalendar`\n - Outlook Email: `connector_outlookemail`\n - SharePoint: `connector_sharepoint`", "type": { - "$ref": "486" + "$ref": "487" }, "optional": true, "readOnly": false, @@ -54886,13 +55073,13 @@ "isHttpMetadata": false }, { - "$id": "4516", + "$id": "4529", "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": "4517", + "$id": "4530", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54912,13 +55099,13 @@ "isHttpMetadata": false }, { - "$id": "4518", + "$id": "4531", "kind": "property", "name": "server_description", "serializedName": "server_description", "doc": "Optional description of the MCP server, used to provide more context.", "type": { - "$id": "4519", + "$id": "4532", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54938,16 +55125,16 @@ "isHttpMetadata": false }, { - "$id": "4520", + "$id": "4533", "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": "4521", + "$id": "4534", "kind": "nullable", "type": { - "$ref": "2444" + "$ref": "2445" }, "namespace": "OpenAI" }, @@ -54965,16 +55152,16 @@ "isHttpMetadata": false }, { - "$id": "4522", + "$id": "4535", "kind": "property", "name": "allowed_tools", "serializedName": "allowed_tools", "doc": "List of allowed tool names or a filter object.", "type": { - "$id": "4523", + "$id": "4536", "kind": "nullable", "type": { - "$id": "4524", + "$id": "4537", "kind": "model", "name": "MCPToolFilter", "namespace": "OpenAI", @@ -54990,14 +55177,14 @@ ], "properties": [ { - "$id": "4525", + "$id": "4538", "kind": "property", "name": "tool_names", "serializedName": "tool_names", "summary": "MCP allowed tools", "doc": "List of allowed tool names.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": true, "readOnly": false, @@ -55013,13 +55200,13 @@ "isHttpMetadata": false }, { - "$id": "4526", + "$id": "4539", "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": "4527", + "$id": "4540", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -55056,21 +55243,21 @@ "isHttpMetadata": false }, { - "$id": "4528", + "$id": "4541", "kind": "property", "name": "require_approval", "serializedName": "require_approval", "doc": "Specify which of the MCP server's tools require approval.", "type": { - "$id": "4529", + "$id": "4542", "kind": "nullable", "type": { - "$id": "4530", + "$id": "4543", "kind": "union", "name": "MCPToolRequireApproval", "variantTypes": [ { - "$id": "4531", + "$id": "4544", "kind": "model", "name": "MCPToolRequireApproval1", "namespace": "OpenAI", @@ -55079,12 +55266,12 @@ "decorators": [], "properties": [ { - "$id": "4532", + "$id": "4545", "kind": "property", "name": "always", "serializedName": "always", "type": { - "$ref": "4524" + "$ref": "4537" }, "optional": true, "readOnly": false, @@ -55100,12 +55287,12 @@ "isHttpMetadata": false }, { - "$id": "4533", + "$id": "4546", "kind": "property", "name": "never", "serializedName": "never", "type": { - "$ref": "4524" + "$ref": "4537" }, "optional": true, "readOnly": false, @@ -55123,10 +55310,10 @@ ] }, { - "$ref": "1657" + "$ref": "1658" }, { - "$ref": "1659" + "$ref": "1660" } ], "namespace": "OpenAI", @@ -55168,13 +55355,13 @@ "isHttpMetadata": false }, { - "$id": "4534", + "$id": "4547", "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": "4535", + "$id": "4548", "kind": "model", "name": "EvalResponsesRunDataSourceParamsSamplingParamsText", "namespace": "OpenAI", @@ -55183,12 +55370,12 @@ "decorators": [], "properties": [ { - "$id": "4536", + "$id": "4549", "kind": "property", "name": "format", "serializedName": "format", "type": { - "$ref": "4286" + "$ref": "4287" }, "optional": true, "readOnly": false, @@ -55234,13 +55421,13 @@ "isHttpMetadata": false }, { - "$id": "4537", + "$id": "4550", "kind": "property", "name": "model", "serializedName": "model", "doc": "The name of the model to use for generating completions (e.g. \"o3-mini\").", "type": { - "$id": "4538", + "$id": "4551", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55260,24 +55447,24 @@ "isHttpMetadata": false }, { - "$id": "4539", + "$id": "4552", "kind": "property", "name": "source", "serializedName": "source", "doc": "Determines what populates the `item` namespace in this run's data source.", "type": { - "$id": "4540", + "$id": "4553", "kind": "union", "name": "EvalResponsesRunDataSourceParamsSource", "variantTypes": [ { - "$ref": "4195" + "$ref": "4196" }, { - "$ref": "4198" + "$ref": "4199" }, { - "$ref": "4225" + "$ref": "4226" } ], "namespace": "OpenAI", @@ -55316,154 +55503,160 @@ ] }, { - "$ref": "4183" - }, - { - "$ref": "4185" + "$ref": "4184" }, { - "$ref": "4195" + "$ref": "4186" }, { - "$ref": "4257" + "$ref": "4196" }, { - "$ref": "4196" + "$ref": "4258" }, { - "$ref": "4198" + "$ref": "4197" }, { - "$ref": "4209" + "$ref": "4199" }, { - "$ref": "4225" + "$ref": "4210" }, { - "$ref": "4260" + "$ref": "4226" }, { - "$ref": "4265" + "$ref": "4261" }, { - "$ref": "4271" + "$ref": "4266" }, { - "$ref": "4276" + "$ref": "4272" }, { - "$ref": "4286" + "$ref": "4277" }, { - "$ref": "4288" + "$ref": "4287" }, { - "$ref": "4296" + "$ref": "4289" }, { - "$ref": "4299" + "$ref": "4297" }, { - "$ref": "4315" + "$ref": "4300" }, { - "$ref": "4320" + "$ref": "4316" }, { - "$ref": "4325" + "$ref": "4321" }, { - "$ref": "4330" + "$ref": "4326" }, { - "$ref": "4335" + "$ref": "4331" }, { - "$ref": "4346" + "$ref": "4336" }, { - "$ref": "4348" + "$ref": "4347" }, { - "$ref": "4372" + "$ref": "4349" }, { - "$ref": "4379" + "$ref": "4374" }, { - "$ref": "4386" + "$ref": "4381" }, { - "$ref": "4395" + "$ref": "4388" }, { - "$ref": "4406" + "$ref": "4397" }, { - "$ref": "4409" + "$ref": "4408" }, { - "$ref": "4412" + "$ref": "4411" }, { - "$ref": "4415" + "$ref": "4414" }, { - "$ref": "4418" + "$ref": "4417" }, { - "$ref": "4421" + "$ref": "4420" }, { - "$ref": "4426" + "$ref": "4423" }, { - "$ref": "4433" + "$ref": "4428" }, { - "$ref": "4436" + "$ref": "4435" }, { - "$ref": "4444" + "$ref": "4438" }, { - "$ref": "4449" + "$ref": "4446" }, { "$ref": "4451" }, { - "$ref": "4470" + "$ref": "4453" }, { - "$ref": "4476" + "$ref": "4472" }, { "$ref": "4477" }, { - "$ref": "4485" + "$ref": "4483" + }, + { + "$ref": "4489" + }, + { + "$ref": "4490" }, { "$ref": "4498" }, { - "$ref": "4505" + "$ref": "4511" + }, + { + "$ref": "4518" }, { - "$ref": "4508" + "$ref": "4521" }, { - "$ref": "4524" + "$ref": "4537" }, { - "$ref": "4531" + "$ref": "4544" }, { - "$ref": "4535" + "$ref": "4548" }, { - "$id": "4541", + "$id": "4554", "kind": "model", "name": "DeleteEvalRunResponse", "namespace": "OpenAI", @@ -55472,12 +55665,12 @@ "decorators": [], "properties": [ { - "$id": "4542", + "$id": "4555", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1661" + "$ref": "1662" }, "optional": false, "readOnly": false, @@ -55493,12 +55686,12 @@ "isHttpMetadata": false }, { - "$id": "4543", + "$id": "4556", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "4544", + "$id": "4557", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -55518,12 +55711,12 @@ "isHttpMetadata": false }, { - "$id": "4545", + "$id": "4558", "kind": "property", "name": "eval_run_id", "serializedName": "eval_run_id", "type": { - "$id": "4546", + "$id": "4559", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55545,7 +55738,7 @@ ] }, { - "$id": "4547", + "$id": "4560", "kind": "model", "name": "EvalRunOutputItemList", "namespace": "OpenAI", @@ -55555,13 +55748,13 @@ "decorators": [], "properties": [ { - "$id": "4548", + "$id": "4561", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of this object. It is always set to \"list\".", "type": { - "$ref": "1663" + "$ref": "1664" }, "optional": false, "readOnly": false, @@ -55577,17 +55770,17 @@ "isHttpMetadata": false }, { - "$id": "4549", + "$id": "4562", "kind": "property", "name": "data", "serializedName": "data", "doc": "An array of eval run output item objects.", "type": { - "$id": "4550", + "$id": "4563", "kind": "array", "name": "ArrayEvalRunOutputItem", "valueType": { - "$id": "4551", + "$id": "4564", "kind": "model", "name": "EvalRunOutputItem", "namespace": "OpenAI", @@ -55597,13 +55790,13 @@ "decorators": [], "properties": [ { - "$id": "4552", + "$id": "4565", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of the object. Always \"eval.run.output_item\".", "type": { - "$ref": "1665" + "$ref": "1666" }, "optional": false, "readOnly": false, @@ -55619,13 +55812,13 @@ "isHttpMetadata": false }, { - "$id": "4553", + "$id": "4566", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for the evaluation run output item.", "type": { - "$id": "4554", + "$id": "4567", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55645,13 +55838,13 @@ "isHttpMetadata": false }, { - "$id": "4555", + "$id": "4568", "kind": "property", "name": "run_id", "serializedName": "run_id", "doc": "The identifier of the evaluation run associated with this output item.", "type": { - "$id": "4556", + "$id": "4569", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55671,13 +55864,13 @@ "isHttpMetadata": false }, { - "$id": "4557", + "$id": "4570", "kind": "property", "name": "eval_id", "serializedName": "eval_id", "doc": "The identifier of the evaluation group.", "type": { - "$id": "4558", + "$id": "4571", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55697,18 +55890,18 @@ "isHttpMetadata": false }, { - "$id": "4559", + "$id": "4572", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) when the evaluation run was created.", "type": { - "$id": "4560", + "$id": "4573", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "4561", + "$id": "4574", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -55731,13 +55924,13 @@ "isHttpMetadata": false }, { - "$id": "4562", + "$id": "4575", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the evaluation run.", "type": { - "$id": "4563", + "$id": "4576", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55757,13 +55950,13 @@ "isHttpMetadata": false }, { - "$id": "4564", + "$id": "4577", "kind": "property", "name": "datasource_item_id", "serializedName": "datasource_item_id", "doc": "The identifier for the data source item.", "type": { - "$id": "4565", + "$id": "4578", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -55783,13 +55976,13 @@ "isHttpMetadata": false }, { - "$id": "4566", + "$id": "4579", "kind": "property", "name": "datasource_item", "serializedName": "datasource_item", "doc": "Details of the input data source item.", "type": { - "$ref": "3945" + "$ref": "3946" }, "optional": false, "readOnly": false, @@ -55805,17 +55998,17 @@ "isHttpMetadata": false }, { - "$id": "4567", + "$id": "4580", "kind": "property", "name": "results", "serializedName": "results", "doc": "A list of results from the evaluation run.", "type": { - "$id": "4568", + "$id": "4581", "kind": "array", "name": "ArrayRecord", "valueType": { - "$ref": "3945" + "$ref": "3946" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -55834,13 +56027,13 @@ "isHttpMetadata": false }, { - "$id": "4569", + "$id": "4582", "kind": "property", "name": "sample", "serializedName": "sample", "doc": "A sample containing the input and output of the evaluation run.", "type": { - "$id": "4570", + "$id": "4583", "kind": "model", "name": "EvalRunOutputItemSample", "namespace": "OpenAI", @@ -55849,17 +56042,17 @@ "decorators": [], "properties": [ { - "$id": "4571", + "$id": "4584", "kind": "property", "name": "input", "serializedName": "input", "doc": "An array of input messages.", "type": { - "$id": "4572", + "$id": "4585", "kind": "array", "name": "Array21", "valueType": { - "$id": "4573", + "$id": "4586", "kind": "model", "name": "EvalRunOutputItemSampleInput", "namespace": "OpenAI", @@ -55868,13 +56061,13 @@ "decorators": [], "properties": [ { - "$id": "4574", + "$id": "4587", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message sender (e.g., system, user, developer).", "type": { - "$id": "4575", + "$id": "4588", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55894,13 +56087,13 @@ "isHttpMetadata": false }, { - "$id": "4576", + "$id": "4589", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message.", "type": { - "$id": "4577", + "$id": "4590", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55938,17 +56131,17 @@ "isHttpMetadata": false }, { - "$id": "4578", + "$id": "4591", "kind": "property", "name": "output", "serializedName": "output", "doc": "An array of output messages.", "type": { - "$id": "4579", + "$id": "4592", "kind": "array", "name": "Array22", "valueType": { - "$id": "4580", + "$id": "4593", "kind": "model", "name": "EvalRunOutputItemSampleOutput", "namespace": "OpenAI", @@ -55957,13 +56150,13 @@ "decorators": [], "properties": [ { - "$id": "4581", + "$id": "4594", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message (e.g. \"system\", \"assistant\", \"user\").", "type": { - "$id": "4582", + "$id": "4595", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55983,13 +56176,13 @@ "isHttpMetadata": false }, { - "$id": "4583", + "$id": "4596", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message.", "type": { - "$id": "4584", + "$id": "4597", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56027,13 +56220,13 @@ "isHttpMetadata": false }, { - "$id": "4585", + "$id": "4598", "kind": "property", "name": "finish_reason", "serializedName": "finish_reason", "doc": "The reason why the sample generation was finished.", "type": { - "$id": "4586", + "$id": "4599", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56053,13 +56246,13 @@ "isHttpMetadata": false }, { - "$id": "4587", + "$id": "4600", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model used for generating the sample.", "type": { - "$id": "4588", + "$id": "4601", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56079,13 +56272,13 @@ "isHttpMetadata": false }, { - "$id": "4589", + "$id": "4602", "kind": "property", "name": "usage", "serializedName": "usage", "doc": "Token usage details for the sample.", "type": { - "$id": "4590", + "$id": "4603", "kind": "model", "name": "EvalRunOutputItemSampleUsage", "namespace": "OpenAI", @@ -56094,13 +56287,13 @@ "decorators": [], "properties": [ { - "$id": "4591", + "$id": "4604", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens used.", "type": { - "$id": "4592", + "$id": "4605", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -56120,13 +56313,13 @@ "isHttpMetadata": false }, { - "$id": "4593", + "$id": "4606", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "The number of completion tokens generated.", "type": { - "$id": "4594", + "$id": "4607", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -56146,13 +56339,13 @@ "isHttpMetadata": false }, { - "$id": "4595", + "$id": "4608", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "The number of prompt tokens used.", "type": { - "$id": "4596", + "$id": "4609", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -56172,13 +56365,13 @@ "isHttpMetadata": false }, { - "$id": "4597", + "$id": "4610", "kind": "property", "name": "cached_tokens", "serializedName": "cached_tokens", "doc": "The number of tokens retrieved from cache.", "type": { - "$id": "4598", + "$id": "4611", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -56213,12 +56406,12 @@ "isHttpMetadata": false }, { - "$id": "4599", + "$id": "4612", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$ref": "4167" + "$ref": "4168" }, "optional": false, "readOnly": false, @@ -56234,13 +56427,13 @@ "isHttpMetadata": false }, { - "$id": "4600", + "$id": "4613", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "The sampling temperature used.", "type": { - "$id": "4601", + "$id": "4614", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -56260,13 +56453,13 @@ "isHttpMetadata": false }, { - "$id": "4602", + "$id": "4615", "kind": "property", "name": "max_completion_tokens", "serializedName": "max_completion_tokens", "doc": "The maximum number of tokens allowed for completion.", "type": { - "$id": "4603", + "$id": "4616", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -56286,13 +56479,13 @@ "isHttpMetadata": false }, { - "$id": "4604", + "$id": "4617", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "The top_p value used for sampling.", "type": { - "$id": "4605", + "$id": "4618", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -56312,13 +56505,13 @@ "isHttpMetadata": false }, { - "$id": "4606", + "$id": "4619", "kind": "property", "name": "seed", "serializedName": "seed", "doc": "The seed used for generating the sample.", "type": { - "$id": "4607", + "$id": "4620", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -56371,13 +56564,13 @@ "isHttpMetadata": false }, { - "$id": "4608", + "$id": "4621", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The identifier of the first eval run output item in the data array.", "type": { - "$id": "4609", + "$id": "4622", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56397,13 +56590,13 @@ "isHttpMetadata": false }, { - "$id": "4610", + "$id": "4623", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The identifier of the last eval run output item in the data array.", "type": { - "$id": "4611", + "$id": "4624", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56423,13 +56616,13 @@ "isHttpMetadata": false }, { - "$id": "4612", + "$id": "4625", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates whether there are more eval run output items available.", "type": { - "$id": "4613", + "$id": "4626", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -56451,22 +56644,22 @@ ] }, { - "$ref": "4551" + "$ref": "4564" }, { - "$ref": "4570" + "$ref": "4583" }, { - "$ref": "4573" + "$ref": "4586" }, { - "$ref": "4580" + "$ref": "4593" }, { - "$ref": "4590" + "$ref": "4603" }, { - "$id": "4614", + "$id": "4627", "kind": "model", "name": "CreateResponse", "namespace": "OpenAI", @@ -56480,13 +56673,13 @@ ], "properties": [ { - "$id": "4615", + "$id": "4628", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": true, "readOnly": false, @@ -56502,13 +56695,13 @@ "isHttpMetadata": false }, { - "$id": "4616", + "$id": "4629", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic.\nWe generally recommend altering this or `top_p` but not both.", "type": { - "$ref": "2976" + "$ref": "2977" }, "optional": true, "readOnly": false, @@ -56524,13 +56717,13 @@ "isHttpMetadata": false }, { - "$id": "4617", + "$id": "4630", "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": "2979" + "$ref": "2980" }, "optional": true, "readOnly": false, @@ -56546,13 +56739,13 @@ "isHttpMetadata": false }, { - "$id": "4618", + "$id": "4631", "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": "4619", + "$id": "4632", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56572,12 +56765,12 @@ "isHttpMetadata": false }, { - "$id": "4620", + "$id": "4633", "kind": "property", "name": "service_tier", "serializedName": "service_tier", "type": { - "$ref": "496" + "$ref": "497" }, "optional": true, "readOnly": false, @@ -56593,16 +56786,16 @@ "isHttpMetadata": false }, { - "$id": "4621", + "$id": "4634", "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": "4622", + "$id": "4635", "kind": "nullable", "type": { - "$id": "4623", + "$id": "4636", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56624,13 +56817,13 @@ "isHttpMetadata": false }, { - "$id": "4624", + "$id": "4637", "kind": "property", "name": "model", "serializedName": "model", "doc": "Model ID used to generate the response, like `gpt-4o` or `o3`. OpenAI\noffers a wide range of models with different capabilities, performance\ncharacteristics, and price points. Refer to the [model guide](/docs/models)\nto browse and compare available models.", "type": { - "$ref": "502" + "$ref": "503" }, "optional": true, "readOnly": false, @@ -56646,15 +56839,15 @@ "isHttpMetadata": false }, { - "$id": "4625", + "$id": "4638", "kind": "property", "name": "reasoning", "serializedName": "reasoning", "type": { - "$id": "4626", + "$id": "4639", "kind": "nullable", "type": { - "$id": "4627", + "$id": "4640", "kind": "model", "name": "Reasoning", "namespace": "OpenAI", @@ -56669,12 +56862,12 @@ ], "properties": [ { - "$id": "4628", + "$id": "4641", "kind": "property", "name": "effort", "serializedName": "effort", "type": { - "$id": "4629", + "$id": "4642", "kind": "nullable", "type": { "$ref": "53" @@ -56695,16 +56888,16 @@ "isHttpMetadata": false }, { - "$id": "4630", + "$id": "4643", "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": "4631", + "$id": "4644", "kind": "nullable", "type": { - "$ref": "565" + "$ref": "566" }, "namespace": "OpenAI" }, @@ -56722,16 +56915,16 @@ "isHttpMetadata": false }, { - "$id": "4632", + "$id": "4645", "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": "4633", + "$id": "4646", "kind": "nullable", "type": { - "$ref": "570" + "$ref": "571" }, "namespace": "OpenAI" }, @@ -56766,16 +56959,16 @@ "isHttpMetadata": false }, { - "$id": "4634", + "$id": "4647", "kind": "property", "name": "background", "serializedName": "background", "doc": "Whether to run the model response in the background.\n[Learn more](/docs/guides/background).", "type": { - "$id": "4635", + "$id": "4648", "kind": "nullable", "type": { - "$id": "4636", + "$id": "4649", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -56797,16 +56990,16 @@ "isHttpMetadata": false }, { - "$id": "4637", + "$id": "4650", "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": "4638", + "$id": "4651", "kind": "nullable", "type": { - "$id": "4639", + "$id": "4652", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -56828,16 +57021,16 @@ "isHttpMetadata": false }, { - "$id": "4640", + "$id": "4653", "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": "4641", + "$id": "4654", "kind": "nullable", "type": { - "$id": "4642", + "$id": "4655", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56859,13 +57052,13 @@ "isHttpMetadata": false }, { - "$id": "4643", + "$id": "4656", "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": "4644", + "$id": "4657", "kind": "model", "name": "CreateResponseText", "namespace": "OpenAI", @@ -56874,12 +57067,12 @@ "decorators": [], "properties": [ { - "$id": "4645", + "$id": "4658", "kind": "property", "name": "format", "serializedName": "format", "type": { - "$ref": "4286" + "$ref": "4287" }, "optional": true, "readOnly": false, @@ -56910,13 +57103,13 @@ "isHttpMetadata": false }, { - "$id": "4646", + "$id": "4659", "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": "4345" + "$ref": "4346" }, "optional": true, "readOnly": false, @@ -56932,21 +57125,21 @@ "isHttpMetadata": false }, { - "$id": "4647", + "$id": "4660", "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": "4648", + "$id": "4661", "kind": "union", "name": "CreateResponseToolChoice", "variantTypes": [ { - "$ref": "575" + "$ref": "576" }, { - "$id": "4649", + "$id": "4662", "kind": "model", "name": "ToolChoiceObject", "namespace": "OpenAI", @@ -56959,12 +57152,12 @@ } ], "discriminatorProperty": { - "$id": "4650", + "$id": "4663", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "580" + "$ref": "581" }, "optional": false, "readOnly": false, @@ -56981,12 +57174,12 @@ }, "properties": [ { - "$ref": "4650" + "$ref": "4663" } ], "discriminatedSubtypes": { "file_search": { - "$id": "4651", + "$id": "4664", "kind": "model", "name": "ToolChoiceObjectFileSearch", "namespace": "OpenAI", @@ -57000,24 +57193,24 @@ } ], "baseModel": { - "$ref": "4649" + "$ref": "4662" }, "properties": [ { - "$id": "4652", + "$id": "4665", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4653", + "$id": "4666", "kind": "enumvalue", "name": "file_search", "value": "file_search", "valueType": { - "$ref": "581" + "$ref": "582" }, "enumType": { - "$id": "4654", + "$id": "4667", "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).", @@ -57025,7 +57218,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4655", + "$id": "4668", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -57034,94 +57227,94 @@ }, "values": [ { - "$id": "4656", + "$id": "4669", "kind": "enumvalue", "decorators": [], "name": "file_search", "value": "file_search", "valueType": { - "$ref": "4655" + "$ref": "4668" }, "enumType": { - "$ref": "4654" + "$ref": "4667" } }, { - "$id": "4657", + "$id": "4670", "kind": "enumvalue", "decorators": [], "name": "function", "value": "function", "valueType": { - "$ref": "4655" + "$ref": "4668" }, "enumType": { - "$ref": "4654" + "$ref": "4667" } }, { - "$id": "4658", + "$id": "4671", "kind": "enumvalue", "decorators": [], "name": "computer", "value": "computer_use_preview", "valueType": { - "$ref": "4655" + "$ref": "4668" }, "enumType": { - "$ref": "4654" + "$ref": "4667" } }, { - "$id": "4659", + "$id": "4672", "kind": "enumvalue", "decorators": [], "name": "web_search", "value": "web_search_preview", "valueType": { - "$ref": "4655" + "$ref": "4668" }, "enumType": { - "$ref": "4654" + "$ref": "4667" } }, { - "$id": "4660", + "$id": "4673", "kind": "enumvalue", "decorators": [], "name": "image_generation", "value": "image_generation", "valueType": { - "$ref": "4655" + "$ref": "4668" }, "enumType": { - "$ref": "4654" + "$ref": "4667" } }, { - "$id": "4661", + "$id": "4674", "kind": "enumvalue", "decorators": [], "name": "code_interpreter", "value": "code_interpreter", "valueType": { - "$ref": "4655" + "$ref": "4668" }, "enumType": { - "$ref": "4654" + "$ref": "4667" } }, { - "$id": "4662", + "$id": "4675", "kind": "enumvalue", "decorators": [], "name": "mcp", "value": "mcp", "valueType": { - "$ref": "4655" + "$ref": "4668" }, "enumType": { - "$ref": "4654" + "$ref": "4667" } } ], @@ -57152,7 +57345,7 @@ ] }, "computer_use_preview": { - "$id": "4663", + "$id": "4676", "kind": "model", "name": "ToolChoiceObjectComputer", "namespace": "OpenAI", @@ -57166,24 +57359,24 @@ } ], "baseModel": { - "$ref": "4649" + "$ref": "4662" }, "properties": [ { - "$id": "4664", + "$id": "4677", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4665", + "$id": "4678", "kind": "enumvalue", "name": "computer", "value": "computer_use_preview", "valueType": { - "$ref": "581" + "$ref": "582" }, "enumType": { - "$ref": "4654" + "$ref": "4667" }, "decorators": [] }, @@ -57203,7 +57396,7 @@ ] }, "web_search_preview": { - "$id": "4666", + "$id": "4679", "kind": "model", "name": "ToolChoiceObjectWebSearch", "namespace": "OpenAI", @@ -57217,24 +57410,24 @@ } ], "baseModel": { - "$ref": "4649" + "$ref": "4662" }, "properties": [ { - "$id": "4667", + "$id": "4680", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4668", + "$id": "4681", "kind": "enumvalue", "name": "web_search", "value": "web_search_preview", "valueType": { - "$ref": "581" + "$ref": "582" }, "enumType": { - "$ref": "4654" + "$ref": "4667" }, "decorators": [] }, @@ -57254,7 +57447,7 @@ ] }, "image_generation": { - "$id": "4669", + "$id": "4682", "kind": "model", "name": "ToolChoiceObjectImageGen", "namespace": "OpenAI", @@ -57268,24 +57461,24 @@ } ], "baseModel": { - "$ref": "4649" + "$ref": "4662" }, "properties": [ { - "$id": "4670", + "$id": "4683", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4671", + "$id": "4684", "kind": "enumvalue", "name": "image_generation", "value": "image_generation", "valueType": { - "$ref": "581" + "$ref": "582" }, "enumType": { - "$ref": "4654" + "$ref": "4667" }, "decorators": [] }, @@ -57305,7 +57498,7 @@ ] }, "code_interpreter": { - "$id": "4672", + "$id": "4685", "kind": "model", "name": "ToolChoiceObjectCodeInterpreter", "namespace": "OpenAI", @@ -57319,24 +57512,24 @@ } ], "baseModel": { - "$ref": "4649" + "$ref": "4662" }, "properties": [ { - "$id": "4673", + "$id": "4686", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4674", + "$id": "4687", "kind": "enumvalue", "name": "code_interpreter", "value": "code_interpreter", "valueType": { - "$ref": "581" + "$ref": "582" }, "enumType": { - "$ref": "4654" + "$ref": "4667" }, "decorators": [] }, @@ -57356,7 +57549,7 @@ ] }, "mcp": { - "$id": "4675", + "$id": "4688", "kind": "model", "name": "ToolChoiceObjectMCP", "namespace": "OpenAI", @@ -57370,24 +57563,24 @@ } ], "baseModel": { - "$ref": "4649" + "$ref": "4662" }, "properties": [ { - "$id": "4676", + "$id": "4689", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4677", + "$id": "4690", "kind": "enumvalue", "name": "mcp", "value": "mcp", "valueType": { - "$ref": "581" + "$ref": "582" }, "enumType": { - "$ref": "4654" + "$ref": "4667" }, "decorators": [] }, @@ -57407,7 +57600,7 @@ ] }, "function": { - "$id": "4678", + "$id": "4691", "kind": "model", "name": "ToolChoiceObjectFunction", "namespace": "OpenAI", @@ -57422,25 +57615,25 @@ } ], "baseModel": { - "$ref": "4649" + "$ref": "4662" }, "properties": [ { - "$id": "4679", + "$id": "4692", "kind": "property", "name": "type", "serializedName": "type", "doc": "For function calling, the type is always `function`.", "type": { - "$id": "4680", + "$id": "4693", "kind": "enumvalue", "name": "function", "value": "function", "valueType": { - "$ref": "581" + "$ref": "582" }, "enumType": { - "$ref": "4654" + "$ref": "4667" }, "decorators": [] }, @@ -57458,13 +57651,13 @@ "isHttpMetadata": false }, { - "$id": "4681", + "$id": "4694", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "4682", + "$id": "4695", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57505,16 +57698,16 @@ "isHttpMetadata": false }, { - "$id": "4683", + "$id": "4696", "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": "4684", + "$id": "4697", "kind": "nullable", "type": { - "$ref": "589" + "$ref": "590" }, "namespace": "OpenAI" }, @@ -57532,34 +57725,34 @@ "isHttpMetadata": false }, { - "$id": "4685", + "$id": "4698", "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": "4686", + "$id": "4699", "kind": "union", "name": "CreateResponseInput", "variantTypes": [ { - "$id": "4687", + "$id": "4700", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "4688", + "$id": "4701", "kind": "array", "name": "Array23", "valueType": { - "$id": "4689", + "$id": "4702", "kind": "union", "name": "CreateResponseInput1", "variantTypes": [ { - "$id": "4690", + "$id": "4703", "kind": "model", "name": "ImplicitUserMessage", "namespace": "OpenAI", @@ -57573,28 +57766,28 @@ ], "properties": [ { - "$id": "4691", + "$id": "4704", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "4692", + "$id": "4705", "kind": "union", "name": "ImplicitUserMessageContent", "variantTypes": [ { - "$id": "4693", + "$id": "4706", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "4694", + "$id": "4707", "kind": "array", "name": "ArrayItemContent", "valueType": { - "$id": "4695", + "$id": "4708", "kind": "model", "name": "ItemContent", "namespace": "OpenAI", @@ -57607,12 +57800,12 @@ } ], "discriminatorProperty": { - "$id": "4696", + "$id": "4709", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "593" + "$ref": "594" }, "optional": false, "readOnly": false, @@ -57629,12 +57822,12 @@ }, "properties": [ { - "$ref": "4696" + "$ref": "4709" } ], "discriminatedSubtypes": { "input_audio": { - "$id": "4697", + "$id": "4710", "kind": "model", "name": "ItemContentInputAudio", "namespace": "OpenAI", @@ -57649,25 +57842,25 @@ } ], "baseModel": { - "$ref": "4695" + "$ref": "4708" }, "properties": [ { - "$id": "4698", + "$id": "4711", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the input item. Always `input_audio`.", "type": { - "$id": "4699", + "$id": "4712", "kind": "enumvalue", "name": "input_audio", "value": "input_audio", "valueType": { - "$ref": "594" + "$ref": "595" }, "enumType": { - "$id": "4700", + "$id": "4713", "kind": "enum", "decorators": [], "doc": "Multi-modal input and output contents.", @@ -57675,7 +57868,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4701", + "$id": "4714", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -57684,94 +57877,94 @@ }, "values": [ { - "$id": "4702", + "$id": "4715", "kind": "enumvalue", "decorators": [], "name": "input_text", "value": "input_text", "valueType": { - "$ref": "4701" + "$ref": "4714" }, "enumType": { - "$ref": "4700" + "$ref": "4713" } }, { - "$id": "4703", + "$id": "4716", "kind": "enumvalue", "decorators": [], "name": "input_audio", "value": "input_audio", "valueType": { - "$ref": "4701" + "$ref": "4714" }, "enumType": { - "$ref": "4700" + "$ref": "4713" } }, { - "$id": "4704", + "$id": "4717", "kind": "enumvalue", "decorators": [], "name": "input_image", "value": "input_image", "valueType": { - "$ref": "4701" + "$ref": "4714" }, "enumType": { - "$ref": "4700" + "$ref": "4713" } }, { - "$id": "4705", + "$id": "4718", "kind": "enumvalue", "decorators": [], "name": "input_file", "value": "input_file", "valueType": { - "$ref": "4701" + "$ref": "4714" }, "enumType": { - "$ref": "4700" + "$ref": "4713" } }, { - "$id": "4706", + "$id": "4719", "kind": "enumvalue", "decorators": [], "name": "output_text", "value": "output_text", "valueType": { - "$ref": "4701" + "$ref": "4714" }, "enumType": { - "$ref": "4700" + "$ref": "4713" } }, { - "$id": "4707", + "$id": "4720", "kind": "enumvalue", "decorators": [], "name": "output_audio", "value": "output_audio", "valueType": { - "$ref": "4701" + "$ref": "4714" }, "enumType": { - "$ref": "4700" + "$ref": "4713" } }, { - "$id": "4708", + "$id": "4721", "kind": "enumvalue", "decorators": [], "name": "refusal", "value": "refusal", "valueType": { - "$ref": "4701" + "$ref": "4714" }, "enumType": { - "$ref": "4700" + "$ref": "4713" } } ], @@ -57800,13 +57993,13 @@ "isHttpMetadata": false }, { - "$id": "4709", + "$id": "4722", "kind": "property", "name": "data", "serializedName": "data", "doc": "Base64-encoded audio data.", "type": { - "$id": "4710", + "$id": "4723", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57826,13 +58019,13 @@ "isHttpMetadata": false }, { - "$id": "4711", + "$id": "4724", "kind": "property", "name": "format", "serializedName": "format", "doc": "The format of the audio data. Currently supported formats are `mp3` and\n`wav`.", "type": { - "$ref": "602" + "$ref": "603" }, "optional": false, "readOnly": false, @@ -57850,7 +58043,7 @@ ] }, "output_audio": { - "$id": "4712", + "$id": "4725", "kind": "model", "name": "ItemContentOutputAudio", "namespace": "OpenAI", @@ -57865,25 +58058,25 @@ } ], "baseModel": { - "$ref": "4695" + "$ref": "4708" }, "properties": [ { - "$id": "4713", + "$id": "4726", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the output audio. Always `output_audio`.", "type": { - "$id": "4714", + "$id": "4727", "kind": "enumvalue", "name": "output_audio", "value": "output_audio", "valueType": { - "$ref": "594" + "$ref": "595" }, "enumType": { - "$ref": "4700" + "$ref": "4713" }, "decorators": [] }, @@ -57901,13 +58094,13 @@ "isHttpMetadata": false }, { - "$id": "4715", + "$id": "4728", "kind": "property", "name": "data", "serializedName": "data", "doc": "Base64-encoded audio data from the model.", "type": { - "$id": "4716", + "$id": "4729", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57927,13 +58120,13 @@ "isHttpMetadata": false }, { - "$id": "4717", + "$id": "4730", "kind": "property", "name": "transcript", "serializedName": "transcript", "doc": "The transcript of the audio data from the model.", "type": { - "$id": "4718", + "$id": "4731", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57955,7 +58148,7 @@ ] }, "refusal": { - "$id": "4719", + "$id": "4732", "kind": "model", "name": "ItemContentRefusal", "namespace": "OpenAI", @@ -57970,25 +58163,25 @@ } ], "baseModel": { - "$ref": "4695" + "$ref": "4708" }, "properties": [ { - "$id": "4720", + "$id": "4733", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the refusal. Always `refusal`.", "type": { - "$id": "4721", + "$id": "4734", "kind": "enumvalue", "name": "refusal", "value": "refusal", "valueType": { - "$ref": "594" + "$ref": "595" }, "enumType": { - "$ref": "4700" + "$ref": "4713" }, "decorators": [] }, @@ -58006,13 +58199,13 @@ "isHttpMetadata": false }, { - "$id": "4722", + "$id": "4735", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "The refusal explanationfrom the model.", "type": { - "$id": "4723", + "$id": "4736", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58034,7 +58227,7 @@ ] }, "input_text": { - "$id": "4724", + "$id": "4737", "kind": "model", "name": "ItemContentInputText", "namespace": "OpenAI", @@ -58049,25 +58242,25 @@ } ], "baseModel": { - "$ref": "4695" + "$ref": "4708" }, "properties": [ { - "$id": "4725", + "$id": "4738", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the input item. Always `input_text`.", "type": { - "$id": "4726", + "$id": "4739", "kind": "enumvalue", "name": "input_text", "value": "input_text", "valueType": { - "$ref": "594" + "$ref": "595" }, "enumType": { - "$ref": "4700" + "$ref": "4713" }, "decorators": [] }, @@ -58085,13 +58278,13 @@ "isHttpMetadata": false }, { - "$id": "4727", + "$id": "4740", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text input to the model.", "type": { - "$id": "4728", + "$id": "4741", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58113,7 +58306,7 @@ ] }, "input_image": { - "$id": "4729", + "$id": "4742", "kind": "model", "name": "ItemContentInputImage", "namespace": "OpenAI", @@ -58128,25 +58321,25 @@ } ], "baseModel": { - "$ref": "4695" + "$ref": "4708" }, "properties": [ { - "$id": "4730", + "$id": "4743", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the input item. Always `input_image`.", "type": { - "$id": "4731", + "$id": "4744", "kind": "enumvalue", "name": "input_image", "value": "input_image", "valueType": { - "$ref": "594" + "$ref": "595" }, "enumType": { - "$ref": "4700" + "$ref": "4713" }, "decorators": [] }, @@ -58164,16 +58357,16 @@ "isHttpMetadata": false }, { - "$id": "4732", + "$id": "4745", "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": "4733", + "$id": "4746", "kind": "nullable", "type": { - "$id": "4734", + "$id": "4747", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58195,16 +58388,16 @@ "isHttpMetadata": false }, { - "$id": "4735", + "$id": "4748", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to be sent to the model.", "type": { - "$id": "4736", + "$id": "4749", "kind": "nullable", "type": { - "$id": "4737", + "$id": "4750", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58226,13 +58419,13 @@ "isHttpMetadata": false }, { - "$id": "4738", + "$id": "4751", "kind": "property", "name": "detail", "serializedName": "detail", "doc": "The detail level of the image to be sent to the model. One of `high`, `low`, or `auto`. Defaults to `auto`.", "type": { - "$ref": "606" + "$ref": "607" }, "optional": true, "readOnly": false, @@ -58250,7 +58443,7 @@ ] }, "input_file": { - "$id": "4739", + "$id": "4752", "kind": "model", "name": "ItemContentInputFile", "namespace": "OpenAI", @@ -58265,25 +58458,25 @@ } ], "baseModel": { - "$ref": "4695" + "$ref": "4708" }, "properties": [ { - "$id": "4740", + "$id": "4753", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the input item. Always `input_file`.", "type": { - "$id": "4741", + "$id": "4754", "kind": "enumvalue", "name": "input_file", "value": "input_file", "valueType": { - "$ref": "594" + "$ref": "595" }, "enumType": { - "$ref": "4700" + "$ref": "4713" }, "decorators": [] }, @@ -58301,16 +58494,16 @@ "isHttpMetadata": false }, { - "$id": "4742", + "$id": "4755", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to be sent to the model.", "type": { - "$id": "4743", + "$id": "4756", "kind": "nullable", "type": { - "$id": "4744", + "$id": "4757", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58332,13 +58525,13 @@ "isHttpMetadata": false }, { - "$id": "4745", + "$id": "4758", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file to be sent to the model.", "type": { - "$id": "4746", + "$id": "4759", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58358,13 +58551,13 @@ "isHttpMetadata": false }, { - "$id": "4747", + "$id": "4760", "kind": "property", "name": "file_data", "serializedName": "file_data", "doc": "The content of the file to be sent to the model.", "type": { - "$id": "4748", + "$id": "4761", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58386,7 +58579,7 @@ ] }, "output_text": { - "$id": "4749", + "$id": "4762", "kind": "model", "name": "ItemContentOutputText", "namespace": "OpenAI", @@ -58401,25 +58594,25 @@ } ], "baseModel": { - "$ref": "4695" + "$ref": "4708" }, "properties": [ { - "$id": "4750", + "$id": "4763", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the output text. Always `output_text`.", "type": { - "$id": "4751", + "$id": "4764", "kind": "enumvalue", "name": "output_text", "value": "output_text", "valueType": { - "$ref": "594" + "$ref": "595" }, "enumType": { - "$ref": "4700" + "$ref": "4713" }, "decorators": [] }, @@ -58437,13 +58630,13 @@ "isHttpMetadata": false }, { - "$id": "4752", + "$id": "4765", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text output from the model.", "type": { - "$id": "4753", + "$id": "4766", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58463,17 +58656,17 @@ "isHttpMetadata": false }, { - "$id": "4754", + "$id": "4767", "kind": "property", "name": "annotations", "serializedName": "annotations", "doc": "The annotations of the text output.", "type": { - "$id": "4755", + "$id": "4768", "kind": "array", "name": "ArrayAnnotation", "valueType": { - "$id": "4756", + "$id": "4769", "kind": "model", "name": "Annotation", "namespace": "OpenAI", @@ -58486,12 +58679,12 @@ } ], "discriminatorProperty": { - "$id": "4757", + "$id": "4770", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "611" + "$ref": "612" }, "optional": false, "readOnly": false, @@ -58508,12 +58701,12 @@ }, "properties": [ { - "$ref": "4757" + "$ref": "4770" } ], "discriminatedSubtypes": { "file_citation": { - "$id": "4758", + "$id": "4771", "kind": "model", "name": "AnnotationFileCitation", "namespace": "OpenAI", @@ -58528,32 +58721,32 @@ } ], "baseModel": { - "$ref": "4756" + "$ref": "4769" }, "properties": [ { - "$id": "4759", + "$id": "4772", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the file citation. Always `file_citation`.", "type": { - "$id": "4760", + "$id": "4773", "kind": "enumvalue", "name": "file_citation", "value": "file_citation", "valueType": { - "$ref": "612" + "$ref": "613" }, "enumType": { - "$id": "4761", + "$id": "4774", "kind": "enum", "decorators": [], "name": "AnnotationType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4762", + "$id": "4775", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -58562,55 +58755,55 @@ }, "values": [ { - "$id": "4763", + "$id": "4776", "kind": "enumvalue", "decorators": [], "name": "file_citation", "value": "file_citation", "valueType": { - "$ref": "4762" + "$ref": "4775" }, "enumType": { - "$ref": "4761" + "$ref": "4774" } }, { - "$id": "4764", + "$id": "4777", "kind": "enumvalue", "decorators": [], "name": "url_citation", "value": "url_citation", "valueType": { - "$ref": "4762" + "$ref": "4775" }, "enumType": { - "$ref": "4761" + "$ref": "4774" } }, { - "$id": "4765", + "$id": "4778", "kind": "enumvalue", "decorators": [], "name": "file_path", "value": "file_path", "valueType": { - "$ref": "4762" + "$ref": "4775" }, "enumType": { - "$ref": "4761" + "$ref": "4774" } }, { - "$id": "4766", + "$id": "4779", "kind": "enumvalue", "decorators": [], "name": "container_file_citation", "value": "container_file_citation", "valueType": { - "$ref": "4762" + "$ref": "4775" }, "enumType": { - "$ref": "4761" + "$ref": "4774" } } ], @@ -58639,13 +58832,13 @@ "isHttpMetadata": false }, { - "$id": "4767", + "$id": "4780", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file.", "type": { - "$id": "4768", + "$id": "4781", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58665,13 +58858,13 @@ "isHttpMetadata": false }, { - "$id": "4769", + "$id": "4782", "kind": "property", "name": "index", "serializedName": "index", "doc": "The index of the file in the list of files.", "type": { - "$id": "4770", + "$id": "4783", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -58691,13 +58884,13 @@ "isHttpMetadata": false }, { - "$id": "4771", + "$id": "4784", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The filename of the file cited.", "type": { - "$id": "4772", + "$id": "4785", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58719,7 +58912,7 @@ ] }, "url_citation": { - "$id": "4773", + "$id": "4786", "kind": "model", "name": "AnnotationUrlCitation", "namespace": "OpenAI", @@ -58734,25 +58927,25 @@ } ], "baseModel": { - "$ref": "4756" + "$ref": "4769" }, "properties": [ { - "$id": "4774", + "$id": "4787", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the URL citation. Always `url_citation`.", "type": { - "$id": "4775", + "$id": "4788", "kind": "enumvalue", "name": "url_citation", "value": "url_citation", "valueType": { - "$ref": "612" + "$ref": "613" }, "enumType": { - "$ref": "4761" + "$ref": "4774" }, "decorators": [] }, @@ -58770,13 +58963,13 @@ "isHttpMetadata": false }, { - "$id": "4776", + "$id": "4789", "kind": "property", "name": "url", "serializedName": "url", "doc": "The URL of the web resource.", "type": { - "$id": "4777", + "$id": "4790", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -58796,13 +58989,13 @@ "isHttpMetadata": false }, { - "$id": "4778", + "$id": "4791", "kind": "property", "name": "start_index", "serializedName": "start_index", "doc": "The index of the first character of the URL citation in the message.", "type": { - "$id": "4779", + "$id": "4792", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -58822,13 +59015,13 @@ "isHttpMetadata": false }, { - "$id": "4780", + "$id": "4793", "kind": "property", "name": "end_index", "serializedName": "end_index", "doc": "The index of the last character of the URL citation in the message.", "type": { - "$id": "4781", + "$id": "4794", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -58848,13 +59041,13 @@ "isHttpMetadata": false }, { - "$id": "4782", + "$id": "4795", "kind": "property", "name": "title", "serializedName": "title", "doc": "The title of the web resource.", "type": { - "$id": "4783", + "$id": "4796", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58876,7 +59069,7 @@ ] }, "container_file_citation": { - "$id": "4784", + "$id": "4797", "kind": "model", "name": "ContainerFileCitationBody", "namespace": "OpenAI", @@ -58891,25 +59084,25 @@ } ], "baseModel": { - "$ref": "4756" + "$ref": "4769" }, "properties": [ { - "$id": "4785", + "$id": "4798", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the container file citation. Always `container_file_citation`.", "type": { - "$id": "4786", + "$id": "4799", "kind": "enumvalue", "name": "container_file_citation", "value": "container_file_citation", "valueType": { - "$ref": "612" + "$ref": "613" }, "enumType": { - "$ref": "4761" + "$ref": "4774" }, "decorators": [] }, @@ -58927,13 +59120,13 @@ "isHttpMetadata": false }, { - "$id": "4787", + "$id": "4800", "kind": "property", "name": "container_id", "serializedName": "container_id", "doc": "The ID of the container file.", "type": { - "$id": "4788", + "$id": "4801", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58953,13 +59146,13 @@ "isHttpMetadata": false }, { - "$id": "4789", + "$id": "4802", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file.", "type": { - "$id": "4790", + "$id": "4803", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58979,13 +59172,13 @@ "isHttpMetadata": false }, { - "$id": "4791", + "$id": "4804", "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": "4792", + "$id": "4805", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59005,13 +59198,13 @@ "isHttpMetadata": false }, { - "$id": "4793", + "$id": "4806", "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": "4794", + "$id": "4807", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59031,13 +59224,13 @@ "isHttpMetadata": false }, { - "$id": "4795", + "$id": "4808", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The filename of the container file cited.", "type": { - "$id": "4796", + "$id": "4809", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59059,7 +59252,7 @@ ] }, "file_path": { - "$id": "4797", + "$id": "4810", "kind": "model", "name": "AnnotationFilePath", "namespace": "OpenAI", @@ -59074,25 +59267,25 @@ } ], "baseModel": { - "$ref": "4756" + "$ref": "4769" }, "properties": [ { - "$id": "4798", + "$id": "4811", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the file path. Always `file_path`.", "type": { - "$id": "4799", + "$id": "4812", "kind": "enumvalue", "name": "file_path", "value": "file_path", "valueType": { - "$ref": "612" + "$ref": "613" }, "enumType": { - "$ref": "4761" + "$ref": "4774" }, "decorators": [] }, @@ -59110,13 +59303,13 @@ "isHttpMetadata": false }, { - "$id": "4800", + "$id": "4813", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file.", "type": { - "$id": "4801", + "$id": "4814", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59136,13 +59329,13 @@ "isHttpMetadata": false }, { - "$id": "4802", + "$id": "4815", "kind": "property", "name": "index", "serializedName": "index", "doc": "The index of the file in the list of files.", "type": { - "$id": "4803", + "$id": "4816", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59182,16 +59375,16 @@ "isHttpMetadata": false }, { - "$id": "4804", + "$id": "4817", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "type": { - "$id": "4805", + "$id": "4818", "kind": "array", "name": "ArrayLogProb", "valueType": { - "$id": "4806", + "$id": "4819", "kind": "model", "name": "LogProb", "namespace": "OpenAI", @@ -59206,12 +59399,12 @@ ], "properties": [ { - "$id": "4807", + "$id": "4820", "kind": "property", "name": "token", "serializedName": "token", "type": { - "$id": "4808", + "$id": "4821", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59231,12 +59424,12 @@ "isHttpMetadata": false }, { - "$id": "4809", + "$id": "4822", "kind": "property", "name": "logprob", "serializedName": "logprob", "type": { - "$id": "4810", + "$id": "4823", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -59256,12 +59449,12 @@ "isHttpMetadata": false }, { - "$id": "4811", + "$id": "4824", "kind": "property", "name": "bytes", "serializedName": "bytes", "type": { - "$ref": "2670" + "$ref": "2671" }, "optional": false, "readOnly": false, @@ -59277,16 +59470,16 @@ "isHttpMetadata": false }, { - "$id": "4812", + "$id": "4825", "kind": "property", "name": "top_logprobs", "serializedName": "top_logprobs", "type": { - "$id": "4813", + "$id": "4826", "kind": "array", "name": "ArrayTopLogProb", "valueType": { - "$id": "4814", + "$id": "4827", "kind": "model", "name": "TopLogProb", "namespace": "OpenAI", @@ -59301,12 +59494,12 @@ ], "properties": [ { - "$id": "4815", + "$id": "4828", "kind": "property", "name": "token", "serializedName": "token", "type": { - "$id": "4816", + "$id": "4829", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59326,12 +59519,12 @@ "isHttpMetadata": false }, { - "$id": "4817", + "$id": "4830", "kind": "property", "name": "logprob", "serializedName": "logprob", "type": { - "$id": "4818", + "$id": "4831", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -59351,12 +59544,12 @@ "isHttpMetadata": false }, { - "$id": "4819", + "$id": "4832", "kind": "property", "name": "bytes", "serializedName": "bytes", "type": { - "$ref": "2670" + "$ref": "2671" }, "optional": false, "readOnly": false, @@ -59434,7 +59627,7 @@ ] }, { - "$id": "4820", + "$id": "4833", "kind": "model", "name": "ItemParam", "namespace": "OpenAI", @@ -59448,12 +59641,12 @@ } ], "discriminatorProperty": { - "$id": "4821", + "$id": "4834", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "617" + "$ref": "618" }, "optional": false, "readOnly": false, @@ -59470,12 +59663,12 @@ }, "properties": [ { - "$ref": "4821" + "$ref": "4834" } ], "discriminatedSubtypes": { "message": { - "$id": "4822", + "$id": "4835", "kind": "model", "name": "ResponsesMessageItemParam", "namespace": "OpenAI", @@ -59490,13 +59683,13 @@ } ], "discriminatorProperty": { - "$id": "4823", + "$id": "4836", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role associated with the message.", "type": { - "$ref": "636" + "$ref": "637" }, "optional": false, "readOnly": false, @@ -59512,32 +59705,32 @@ "isHttpMetadata": false }, "baseModel": { - "$ref": "4820" + "$ref": "4833" }, "properties": [ { - "$id": "4824", + "$id": "4837", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the responses item, which is always 'message'.", "type": { - "$id": "4825", + "$id": "4838", "kind": "enumvalue", "name": "message", "value": "message", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$id": "4826", + "$id": "4839", "kind": "enum", "decorators": [], "name": "ItemType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4827", + "$id": "4840", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -59546,224 +59739,224 @@ }, "values": [ { - "$id": "4828", + "$id": "4841", "kind": "enumvalue", "decorators": [], "name": "message", "value": "message", "valueType": { - "$ref": "4827" + "$ref": "4840" }, "enumType": { - "$ref": "4826" + "$ref": "4839" } }, { - "$id": "4829", + "$id": "4842", "kind": "enumvalue", "decorators": [], "name": "file_search_call", "value": "file_search_call", "valueType": { - "$ref": "4827" + "$ref": "4840" }, "enumType": { - "$ref": "4826" + "$ref": "4839" } }, { - "$id": "4830", + "$id": "4843", "kind": "enumvalue", "decorators": [], "name": "function_call", "value": "function_call", "valueType": { - "$ref": "4827" + "$ref": "4840" }, "enumType": { - "$ref": "4826" + "$ref": "4839" } }, { - "$id": "4831", + "$id": "4844", "kind": "enumvalue", "decorators": [], "name": "function_call_output", "value": "function_call_output", "valueType": { - "$ref": "4827" + "$ref": "4840" }, "enumType": { - "$ref": "4826" + "$ref": "4839" } }, { - "$id": "4832", + "$id": "4845", "kind": "enumvalue", "decorators": [], "name": "computer_call", "value": "computer_call", "valueType": { - "$ref": "4827" + "$ref": "4840" }, "enumType": { - "$ref": "4826" + "$ref": "4839" } }, { - "$id": "4833", + "$id": "4846", "kind": "enumvalue", "decorators": [], "name": "computer_call_output", "value": "computer_call_output", "valueType": { - "$ref": "4827" + "$ref": "4840" }, "enumType": { - "$ref": "4826" + "$ref": "4839" } }, { - "$id": "4834", + "$id": "4847", "kind": "enumvalue", "decorators": [], "name": "web_search_call", "value": "web_search_call", "valueType": { - "$ref": "4827" + "$ref": "4840" }, "enumType": { - "$ref": "4826" + "$ref": "4839" } }, { - "$id": "4835", + "$id": "4848", "kind": "enumvalue", "decorators": [], "name": "reasoning", "value": "reasoning", "valueType": { - "$ref": "4827" + "$ref": "4840" }, "enumType": { - "$ref": "4826" + "$ref": "4839" } }, { - "$id": "4836", + "$id": "4849", "kind": "enumvalue", "decorators": [], "name": "item_reference", "value": "item_reference", "valueType": { - "$ref": "4827" + "$ref": "4840" }, "enumType": { - "$ref": "4826" + "$ref": "4839" } }, { - "$id": "4837", + "$id": "4850", "kind": "enumvalue", "decorators": [], "name": "image_generation_call", "value": "image_generation_call", "valueType": { - "$ref": "4827" + "$ref": "4840" }, "enumType": { - "$ref": "4826" + "$ref": "4839" } }, { - "$id": "4838", + "$id": "4851", "kind": "enumvalue", "decorators": [], "name": "code_interpreter_call", "value": "code_interpreter_call", "valueType": { - "$ref": "4827" + "$ref": "4840" }, "enumType": { - "$ref": "4826" + "$ref": "4839" } }, { - "$id": "4839", + "$id": "4852", "kind": "enumvalue", "decorators": [], "name": "local_shell_call", "value": "local_shell_call", "valueType": { - "$ref": "4827" + "$ref": "4840" }, "enumType": { - "$ref": "4826" + "$ref": "4839" } }, { - "$id": "4840", + "$id": "4853", "kind": "enumvalue", "decorators": [], "name": "local_shell_call_output", "value": "local_shell_call_output", "valueType": { - "$ref": "4827" + "$ref": "4840" }, "enumType": { - "$ref": "4826" + "$ref": "4839" } }, { - "$id": "4841", + "$id": "4854", "kind": "enumvalue", "decorators": [], "name": "mcp_list_tools", "value": "mcp_list_tools", "valueType": { - "$ref": "4827" + "$ref": "4840" }, "enumType": { - "$ref": "4826" + "$ref": "4839" } }, { - "$id": "4842", + "$id": "4855", "kind": "enumvalue", "decorators": [], "name": "mcp_approval_request", "value": "mcp_approval_request", "valueType": { - "$ref": "4827" + "$ref": "4840" }, "enumType": { - "$ref": "4826" + "$ref": "4839" } }, { - "$id": "4843", + "$id": "4856", "kind": "enumvalue", "decorators": [], "name": "mcp_approval_response", "value": "mcp_approval_response", "valueType": { - "$ref": "4827" + "$ref": "4840" }, "enumType": { - "$ref": "4826" + "$ref": "4839" } }, { - "$id": "4844", + "$id": "4857", "kind": "enumvalue", "decorators": [], "name": "mcp_call", "value": "mcp_call", "valueType": { - "$ref": "4827" + "$ref": "4840" }, "enumType": { - "$ref": "4826" + "$ref": "4839" } } ], @@ -59792,12 +59985,12 @@ "isHttpMetadata": false }, { - "$ref": "4823" + "$ref": "4836" } ], "discriminatedSubtypes": { "user": { - "$id": "4845", + "$id": "4858", "kind": "model", "name": "ResponsesUserMessageItemParam", "namespace": "OpenAI", @@ -59812,25 +60005,25 @@ } ], "baseModel": { - "$ref": "4822" + "$ref": "4835" }, "properties": [ { - "$id": "4846", + "$id": "4859", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `user`.", "type": { - "$id": "4847", + "$id": "4860", "kind": "enumvalue", "name": "user", "value": "user", "valueType": { - "$ref": "637" + "$ref": "638" }, "enumType": { - "$id": "4848", + "$id": "4861", "kind": "enum", "decorators": [], "doc": "The collection of valid roles for responses message items.", @@ -59838,7 +60031,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4849", + "$id": "4862", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -59847,55 +60040,55 @@ }, "values": [ { - "$id": "4850", + "$id": "4863", "kind": "enumvalue", "decorators": [], "name": "system", "value": "system", "valueType": { - "$ref": "4849" + "$ref": "4862" }, "enumType": { - "$ref": "4848" + "$ref": "4861" } }, { - "$id": "4851", + "$id": "4864", "kind": "enumvalue", "decorators": [], "name": "developer", "value": "developer", "valueType": { - "$ref": "4849" + "$ref": "4862" }, "enumType": { - "$ref": "4848" + "$ref": "4861" } }, { - "$id": "4852", + "$id": "4865", "kind": "enumvalue", "decorators": [], "name": "user", "value": "user", "valueType": { - "$ref": "4849" + "$ref": "4862" }, "enumType": { - "$ref": "4848" + "$ref": "4861" } }, { - "$id": "4853", + "$id": "4866", "kind": "enumvalue", "decorators": [], "name": "assistant", "value": "assistant", "valueType": { - "$ref": "4849" + "$ref": "4862" }, "enumType": { - "$ref": "4848" + "$ref": "4861" } } ], @@ -59924,13 +60117,13 @@ "isHttpMetadata": false }, { - "$id": "4854", + "$id": "4867", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4694" + "$ref": "4707" }, "optional": false, "readOnly": false, @@ -59948,7 +60141,7 @@ ] }, "system": { - "$id": "4855", + "$id": "4868", "kind": "model", "name": "ResponsesSystemMessageItemParam", "namespace": "OpenAI", @@ -59963,25 +60156,25 @@ } ], "baseModel": { - "$ref": "4822" + "$ref": "4835" }, "properties": [ { - "$id": "4856", + "$id": "4869", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `system`.", "type": { - "$id": "4857", + "$id": "4870", "kind": "enumvalue", "name": "system", "value": "system", "valueType": { - "$ref": "637" + "$ref": "638" }, "enumType": { - "$ref": "4848" + "$ref": "4861" }, "decorators": [] }, @@ -59999,13 +60192,13 @@ "isHttpMetadata": false }, { - "$id": "4858", + "$id": "4871", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4694" + "$ref": "4707" }, "optional": false, "readOnly": false, @@ -60023,7 +60216,7 @@ ] }, "developer": { - "$id": "4859", + "$id": "4872", "kind": "model", "name": "ResponsesDeveloperMessageItemParam", "namespace": "OpenAI", @@ -60038,25 +60231,25 @@ } ], "baseModel": { - "$ref": "4822" + "$ref": "4835" }, "properties": [ { - "$id": "4860", + "$id": "4873", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `developer`.", "type": { - "$id": "4861", + "$id": "4874", "kind": "enumvalue", "name": "developer", "value": "developer", "valueType": { - "$ref": "637" + "$ref": "638" }, "enumType": { - "$ref": "4848" + "$ref": "4861" }, "decorators": [] }, @@ -60074,13 +60267,13 @@ "isHttpMetadata": false }, { - "$id": "4862", + "$id": "4875", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4694" + "$ref": "4707" }, "optional": false, "readOnly": false, @@ -60098,7 +60291,7 @@ ] }, "assistant": { - "$id": "4863", + "$id": "4876", "kind": "model", "name": "ResponsesAssistantMessageItemParam", "namespace": "OpenAI", @@ -60113,25 +60306,25 @@ } ], "baseModel": { - "$ref": "4822" + "$ref": "4835" }, "properties": [ { - "$id": "4864", + "$id": "4877", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `assistant`.", "type": { - "$id": "4865", + "$id": "4878", "kind": "enumvalue", "name": "assistant", "value": "assistant", "valueType": { - "$ref": "637" + "$ref": "638" }, "enumType": { - "$ref": "4848" + "$ref": "4861" }, "decorators": [] }, @@ -60149,13 +60342,13 @@ "isHttpMetadata": false }, { - "$id": "4866", + "$id": "4879", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4694" + "$ref": "4707" }, "optional": false, "readOnly": false, @@ -60175,7 +60368,7 @@ } }, "function_call_output": { - "$id": "4867", + "$id": "4880", "kind": "model", "name": "FunctionToolCallOutputItemParam", "namespace": "OpenAI", @@ -60190,24 +60383,24 @@ } ], "baseModel": { - "$ref": "4820" + "$ref": "4833" }, "properties": [ { - "$id": "4868", + "$id": "4881", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4869", + "$id": "4882", "kind": "enumvalue", "name": "function_call_output", "value": "function_call_output", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "4826" + "$ref": "4839" }, "decorators": [] }, @@ -60225,13 +60418,13 @@ "isHttpMetadata": false }, { - "$id": "4870", + "$id": "4883", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "4871", + "$id": "4884", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60251,13 +60444,13 @@ "isHttpMetadata": false }, { - "$id": "4872", + "$id": "4885", "kind": "property", "name": "output", "serializedName": "output", "doc": "A JSON string of the output of the function tool call.", "type": { - "$id": "4873", + "$id": "4886", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60279,7 +60472,7 @@ ] }, "file_search_call": { - "$id": "4874", + "$id": "4887", "kind": "model", "name": "FileSearchToolCallItemParam", "namespace": "OpenAI", @@ -60294,24 +60487,24 @@ } ], "baseModel": { - "$ref": "4820" + "$ref": "4833" }, "properties": [ { - "$id": "4875", + "$id": "4888", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4876", + "$id": "4889", "kind": "enumvalue", "name": "file_search_call", "value": "file_search_call", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "4826" + "$ref": "4839" }, "decorators": [] }, @@ -60329,13 +60522,13 @@ "isHttpMetadata": false }, { - "$id": "4877", + "$id": "4890", "kind": "property", "name": "queries", "serializedName": "queries", "doc": "The queries used to search for files.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": false, "readOnly": false, @@ -60351,20 +60544,20 @@ "isHttpMetadata": false }, { - "$id": "4878", + "$id": "4891", "kind": "property", "name": "results", "serializedName": "results", "doc": "The results of the file search tool call.", "type": { - "$id": "4879", + "$id": "4892", "kind": "nullable", "type": { - "$id": "4880", + "$id": "4893", "kind": "array", "name": "Array24", "valueType": { - "$id": "4881", + "$id": "4894", "kind": "model", "name": "FileSearchToolCallItemResourceResult", "namespace": "OpenAI", @@ -60373,13 +60566,13 @@ "decorators": [], "properties": [ { - "$id": "4882", + "$id": "4895", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The unique ID of the file.", "type": { - "$id": "4883", + "$id": "4896", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60399,13 +60592,13 @@ "isHttpMetadata": false }, { - "$id": "4884", + "$id": "4897", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text that was retrieved from the file.", "type": { - "$id": "4885", + "$id": "4898", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60425,13 +60618,13 @@ "isHttpMetadata": false }, { - "$id": "4886", + "$id": "4899", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file.", "type": { - "$id": "4887", + "$id": "4900", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60451,12 +60644,12 @@ "isHttpMetadata": false }, { - "$id": "4888", + "$id": "4901", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$ref": "3945" + "$ref": "3946" }, "optional": true, "readOnly": false, @@ -60472,13 +60665,13 @@ "isHttpMetadata": false }, { - "$id": "4889", + "$id": "4902", "kind": "property", "name": "score", "serializedName": "score", "doc": "The relevance score of the file - a value between 0 and 1.", "type": { - "$id": "4890", + "$id": "4903", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -60520,7 +60713,7 @@ ] }, "computer_call": { - "$id": "4891", + "$id": "4904", "kind": "model", "name": "ComputerToolCallItemParam", "namespace": "OpenAI", @@ -60535,24 +60728,24 @@ } ], "baseModel": { - "$ref": "4820" + "$ref": "4833" }, "properties": [ { - "$id": "4892", + "$id": "4905", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4893", + "$id": "4906", "kind": "enumvalue", "name": "computer_call", "value": "computer_call", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "4826" + "$ref": "4839" }, "decorators": [] }, @@ -60570,13 +60763,13 @@ "isHttpMetadata": false }, { - "$id": "4894", + "$id": "4907", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "An identifier used when responding to the tool call with output.", "type": { - "$id": "4895", + "$id": "4908", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60596,12 +60789,12 @@ "isHttpMetadata": false }, { - "$id": "4896", + "$id": "4909", "kind": "property", "name": "action", "serializedName": "action", "type": { - "$id": "4897", + "$id": "4910", "kind": "model", "name": "ComputerAction", "namespace": "OpenAI", @@ -60614,12 +60807,12 @@ } ], "discriminatorProperty": { - "$id": "4898", + "$id": "4911", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "642" + "$ref": "643" }, "optional": false, "readOnly": false, @@ -60636,12 +60829,12 @@ }, "properties": [ { - "$ref": "4898" + "$ref": "4911" } ], "discriminatedSubtypes": { "click": { - "$id": "4899", + "$id": "4912", "kind": "model", "name": "ComputerActionClick", "namespace": "OpenAI", @@ -60656,32 +60849,32 @@ } ], "baseModel": { - "$ref": "4897" + "$ref": "4910" }, "properties": [ { - "$id": "4900", + "$id": "4913", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a click action, this property is\nalways set to `click`.", "type": { - "$id": "4901", + "$id": "4914", "kind": "enumvalue", "name": "click", "value": "click", "valueType": { - "$ref": "643" + "$ref": "644" }, "enumType": { - "$id": "4902", + "$id": "4915", "kind": "enum", "decorators": [], "name": "ComputerActionType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4903", + "$id": "4916", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -60690,120 +60883,120 @@ }, "values": [ { - "$id": "4904", + "$id": "4917", "kind": "enumvalue", "decorators": [], "name": "screenshot", "value": "screenshot", "valueType": { - "$ref": "4903" + "$ref": "4916" }, "enumType": { - "$ref": "4902" + "$ref": "4915" } }, { - "$id": "4905", + "$id": "4918", "kind": "enumvalue", "decorators": [], "name": "click", "value": "click", "valueType": { - "$ref": "4903" + "$ref": "4916" }, "enumType": { - "$ref": "4902" + "$ref": "4915" } }, { - "$id": "4906", + "$id": "4919", "kind": "enumvalue", "decorators": [], "name": "double_click", "value": "double_click", "valueType": { - "$ref": "4903" + "$ref": "4916" }, "enumType": { - "$ref": "4902" + "$ref": "4915" } }, { - "$id": "4907", + "$id": "4920", "kind": "enumvalue", "decorators": [], "name": "scroll", "value": "scroll", "valueType": { - "$ref": "4903" + "$ref": "4916" }, "enumType": { - "$ref": "4902" + "$ref": "4915" } }, { - "$id": "4908", + "$id": "4921", "kind": "enumvalue", "decorators": [], "name": "type", "value": "type", "valueType": { - "$ref": "4903" + "$ref": "4916" }, "enumType": { - "$ref": "4902" + "$ref": "4915" } }, { - "$id": "4909", + "$id": "4922", "kind": "enumvalue", "decorators": [], "name": "wait", "value": "wait", "valueType": { - "$ref": "4903" + "$ref": "4916" }, "enumType": { - "$ref": "4902" + "$ref": "4915" } }, { - "$id": "4910", + "$id": "4923", "kind": "enumvalue", "decorators": [], "name": "keypress", "value": "keypress", "valueType": { - "$ref": "4903" + "$ref": "4916" }, "enumType": { - "$ref": "4902" + "$ref": "4915" } }, { - "$id": "4911", + "$id": "4924", "kind": "enumvalue", "decorators": [], "name": "drag", "value": "drag", "valueType": { - "$ref": "4903" + "$ref": "4916" }, "enumType": { - "$ref": "4902" + "$ref": "4915" } }, { - "$id": "4912", + "$id": "4925", "kind": "enumvalue", "decorators": [], "name": "move", "value": "move", "valueType": { - "$ref": "4903" + "$ref": "4916" }, "enumType": { - "$ref": "4902" + "$ref": "4915" } } ], @@ -60832,13 +61025,13 @@ "isHttpMetadata": false }, { - "$id": "4913", + "$id": "4926", "kind": "property", "name": "button", "serializedName": "button", "doc": "Indicates which mouse button was pressed during the click. One of `left`, `right`, `wheel`, `back`, or `forward`.", "type": { - "$ref": "653" + "$ref": "654" }, "optional": false, "readOnly": false, @@ -60854,13 +61047,13 @@ "isHttpMetadata": false }, { - "$id": "4914", + "$id": "4927", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate where the click occurred.", "type": { - "$id": "4915", + "$id": "4928", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -60880,13 +61073,13 @@ "isHttpMetadata": false }, { - "$id": "4916", + "$id": "4929", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate where the click occurred.", "type": { - "$id": "4917", + "$id": "4930", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -60908,7 +61101,7 @@ ] }, "double_click": { - "$id": "4918", + "$id": "4931", "kind": "model", "name": "ComputerActionDoubleClick", "namespace": "OpenAI", @@ -60923,25 +61116,25 @@ } ], "baseModel": { - "$ref": "4897" + "$ref": "4910" }, "properties": [ { - "$id": "4919", + "$id": "4932", "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": "4920", + "$id": "4933", "kind": "enumvalue", "name": "double_click", "value": "double_click", "valueType": { - "$ref": "643" + "$ref": "644" }, "enumType": { - "$ref": "4902" + "$ref": "4915" }, "decorators": [] }, @@ -60959,13 +61152,13 @@ "isHttpMetadata": false }, { - "$id": "4921", + "$id": "4934", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate where the double click occurred.", "type": { - "$id": "4922", + "$id": "4935", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -60985,13 +61178,13 @@ "isHttpMetadata": false }, { - "$id": "4923", + "$id": "4936", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate where the double click occurred.", "type": { - "$id": "4924", + "$id": "4937", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61013,7 +61206,7 @@ ] }, "drag": { - "$id": "4925", + "$id": "4938", "kind": "model", "name": "ComputerActionDrag", "namespace": "OpenAI", @@ -61028,25 +61221,25 @@ } ], "baseModel": { - "$ref": "4897" + "$ref": "4910" }, "properties": [ { - "$id": "4926", + "$id": "4939", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a drag action, this property is\nalways set to `drag`.", "type": { - "$id": "4927", + "$id": "4940", "kind": "enumvalue", "name": "drag", "value": "drag", "valueType": { - "$ref": "643" + "$ref": "644" }, "enumType": { - "$ref": "4902" + "$ref": "4915" }, "decorators": [] }, @@ -61064,17 +61257,17 @@ "isHttpMetadata": false }, { - "$id": "4928", + "$id": "4941", "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": "4929", + "$id": "4942", "kind": "array", "name": "ArrayCoordinate", "valueType": { - "$id": "4930", + "$id": "4943", "kind": "model", "name": "Coordinate", "namespace": "OpenAI", @@ -61089,13 +61282,13 @@ ], "properties": [ { - "$id": "4931", + "$id": "4944", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate.", "type": { - "$id": "4932", + "$id": "4945", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61115,13 +61308,13 @@ "isHttpMetadata": false }, { - "$id": "4933", + "$id": "4946", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate.", "type": { - "$id": "4934", + "$id": "4947", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61161,7 +61354,7 @@ ] }, "move": { - "$id": "4935", + "$id": "4948", "kind": "model", "name": "ComputerActionMove", "namespace": "OpenAI", @@ -61176,25 +61369,25 @@ } ], "baseModel": { - "$ref": "4897" + "$ref": "4910" }, "properties": [ { - "$id": "4936", + "$id": "4949", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a move action, this property is\nalways set to `move`.", "type": { - "$id": "4937", + "$id": "4950", "kind": "enumvalue", "name": "move", "value": "move", "valueType": { - "$ref": "643" + "$ref": "644" }, "enumType": { - "$ref": "4902" + "$ref": "4915" }, "decorators": [] }, @@ -61212,13 +61405,13 @@ "isHttpMetadata": false }, { - "$id": "4938", + "$id": "4951", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate to move to.", "type": { - "$id": "4939", + "$id": "4952", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61238,13 +61431,13 @@ "isHttpMetadata": false }, { - "$id": "4940", + "$id": "4953", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate to move to.", "type": { - "$id": "4941", + "$id": "4954", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61266,7 +61459,7 @@ ] }, "screenshot": { - "$id": "4942", + "$id": "4955", "kind": "model", "name": "ComputerActionScreenshot", "namespace": "OpenAI", @@ -61281,25 +61474,25 @@ } ], "baseModel": { - "$ref": "4897" + "$ref": "4910" }, "properties": [ { - "$id": "4943", + "$id": "4956", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a screenshot action, this property is\nalways set to `screenshot`.", "type": { - "$id": "4944", + "$id": "4957", "kind": "enumvalue", "name": "screenshot", "value": "screenshot", "valueType": { - "$ref": "643" + "$ref": "644" }, "enumType": { - "$ref": "4902" + "$ref": "4915" }, "decorators": [] }, @@ -61319,7 +61512,7 @@ ] }, "scroll": { - "$id": "4945", + "$id": "4958", "kind": "model", "name": "ComputerActionScroll", "namespace": "OpenAI", @@ -61334,25 +61527,25 @@ } ], "baseModel": { - "$ref": "4897" + "$ref": "4910" }, "properties": [ { - "$id": "4946", + "$id": "4959", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a scroll action, this property is\nalways set to `scroll`.", "type": { - "$id": "4947", + "$id": "4960", "kind": "enumvalue", "name": "scroll", "value": "scroll", "valueType": { - "$ref": "643" + "$ref": "644" }, "enumType": { - "$ref": "4902" + "$ref": "4915" }, "decorators": [] }, @@ -61370,13 +61563,13 @@ "isHttpMetadata": false }, { - "$id": "4948", + "$id": "4961", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate where the scroll occurred.", "type": { - "$id": "4949", + "$id": "4962", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61396,13 +61589,13 @@ "isHttpMetadata": false }, { - "$id": "4950", + "$id": "4963", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate where the scroll occurred.", "type": { - "$id": "4951", + "$id": "4964", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61422,13 +61615,13 @@ "isHttpMetadata": false }, { - "$id": "4952", + "$id": "4965", "kind": "property", "name": "scroll_x", "serializedName": "scroll_x", "doc": "The horizontal scroll distance.", "type": { - "$id": "4953", + "$id": "4966", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61448,13 +61641,13 @@ "isHttpMetadata": false }, { - "$id": "4954", + "$id": "4967", "kind": "property", "name": "scroll_y", "serializedName": "scroll_y", "doc": "The vertical scroll distance.", "type": { - "$id": "4955", + "$id": "4968", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61476,7 +61669,7 @@ ] }, "type": { - "$id": "4956", + "$id": "4969", "kind": "model", "name": "ComputerActionTypeKeys", "namespace": "OpenAI", @@ -61491,25 +61684,25 @@ } ], "baseModel": { - "$ref": "4897" + "$ref": "4910" }, "properties": [ { - "$id": "4957", + "$id": "4970", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a type action, this property is\nalways set to `type`.", "type": { - "$id": "4958", + "$id": "4971", "kind": "enumvalue", "name": "type", "value": "type", "valueType": { - "$ref": "643" + "$ref": "644" }, "enumType": { - "$ref": "4902" + "$ref": "4915" }, "decorators": [] }, @@ -61527,13 +61720,13 @@ "isHttpMetadata": false }, { - "$id": "4959", + "$id": "4972", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text to type.", "type": { - "$id": "4960", + "$id": "4973", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61555,7 +61748,7 @@ ] }, "wait": { - "$id": "4961", + "$id": "4974", "kind": "model", "name": "ComputerActionWait", "namespace": "OpenAI", @@ -61570,25 +61763,25 @@ } ], "baseModel": { - "$ref": "4897" + "$ref": "4910" }, "properties": [ { - "$id": "4962", + "$id": "4975", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a wait action, this property is\nalways set to `wait`.", "type": { - "$id": "4963", + "$id": "4976", "kind": "enumvalue", "name": "wait", "value": "wait", "valueType": { - "$ref": "643" + "$ref": "644" }, "enumType": { - "$ref": "4902" + "$ref": "4915" }, "decorators": [] }, @@ -61608,7 +61801,7 @@ ] }, "keypress": { - "$id": "4964", + "$id": "4977", "kind": "model", "name": "ComputerActionKeyPress", "namespace": "OpenAI", @@ -61623,25 +61816,25 @@ } ], "baseModel": { - "$ref": "4897" + "$ref": "4910" }, "properties": [ { - "$id": "4965", + "$id": "4978", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a keypress action, this property is\nalways set to `keypress`.", "type": { - "$id": "4966", + "$id": "4979", "kind": "enumvalue", "name": "keypress", "value": "keypress", "valueType": { - "$ref": "643" + "$ref": "644" }, "enumType": { - "$ref": "4902" + "$ref": "4915" }, "decorators": [] }, @@ -61659,13 +61852,13 @@ "isHttpMetadata": false }, { - "$id": "4967", + "$id": "4980", "kind": "property", "name": "keys", "serializedName": "keys", "doc": "The combination of keys the model is requesting to be pressed. This is an\narray of strings, each representing a key.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": false, "readOnly": false, @@ -61698,17 +61891,17 @@ "isHttpMetadata": false }, { - "$id": "4968", + "$id": "4981", "kind": "property", "name": "pending_safety_checks", "serializedName": "pending_safety_checks", "doc": "The pending safety checks for the computer call.", "type": { - "$id": "4969", + "$id": "4982", "kind": "array", "name": "ArrayComputerToolCallSafetyCheck", "valueType": { - "$id": "4970", + "$id": "4983", "kind": "model", "name": "ComputerToolCallSafetyCheck", "namespace": "OpenAI", @@ -61723,13 +61916,13 @@ ], "properties": [ { - "$id": "4971", + "$id": "4984", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the pending safety check.", "type": { - "$id": "4972", + "$id": "4985", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61749,13 +61942,13 @@ "isHttpMetadata": false }, { - "$id": "4973", + "$id": "4986", "kind": "property", "name": "code", "serializedName": "code", "doc": "The type of the pending safety check.", "type": { - "$id": "4974", + "$id": "4987", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61775,13 +61968,13 @@ "isHttpMetadata": false }, { - "$id": "4975", + "$id": "4988", "kind": "property", "name": "message", "serializedName": "message", "doc": "Details about the pending safety check.", "type": { - "$id": "4976", + "$id": "4989", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61821,7 +62014,7 @@ ] }, "computer_call_output": { - "$id": "4977", + "$id": "4990", "kind": "model", "name": "ComputerToolCallOutputItemParam", "namespace": "OpenAI", @@ -61836,24 +62029,24 @@ } ], "baseModel": { - "$ref": "4820" + "$ref": "4833" }, "properties": [ { - "$id": "4978", + "$id": "4991", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4979", + "$id": "4992", "kind": "enumvalue", "name": "computer_call_output", "value": "computer_call_output", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "4826" + "$ref": "4839" }, "decorators": [] }, @@ -61871,13 +62064,13 @@ "isHttpMetadata": false }, { - "$id": "4980", + "$id": "4993", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the computer tool call that produced the output.", "type": { - "$id": "4981", + "$id": "4994", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61897,13 +62090,13 @@ "isHttpMetadata": false }, { - "$id": "4982", + "$id": "4995", "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": "4969" + "$ref": "4982" }, "optional": true, "readOnly": false, @@ -61919,12 +62112,12 @@ "isHttpMetadata": false }, { - "$id": "4983", + "$id": "4996", "kind": "property", "name": "output", "serializedName": "output", "type": { - "$id": "4984", + "$id": "4997", "kind": "model", "name": "ComputerToolCallOutputItemOutput", "namespace": "OpenAI", @@ -61937,12 +62130,12 @@ } ], "discriminatorProperty": { - "$id": "4985", + "$id": "4998", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "660" + "$ref": "661" }, "optional": false, "readOnly": false, @@ -61959,12 +62152,12 @@ }, "properties": [ { - "$ref": "4985" + "$ref": "4998" } ], "discriminatedSubtypes": { "computer_screenshot": { - "$id": "4986", + "$id": "4999", "kind": "model", "name": "ComputerToolCallOutputItemOutputComputerScreenshot", "namespace": "OpenAI", @@ -61978,24 +62171,24 @@ } ], "baseModel": { - "$ref": "4984" + "$ref": "4997" }, "properties": [ { - "$id": "4987", + "$id": "5000", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4988", + "$id": "5001", "kind": "enumvalue", "name": "screenshot", "value": "computer_screenshot", "valueType": { - "$ref": "661" + "$ref": "662" }, "enumType": { - "$id": "4989", + "$id": "5002", "kind": "enum", "decorators": [], "doc": "A computer screenshot image used with the computer use tool.", @@ -62003,7 +62196,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4990", + "$id": "5003", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -62012,16 +62205,16 @@ }, "values": [ { - "$id": "4991", + "$id": "5004", "kind": "enumvalue", "decorators": [], "name": "screenshot", "value": "computer_screenshot", "valueType": { - "$ref": "4990" + "$ref": "5003" }, "enumType": { - "$ref": "4989" + "$ref": "5002" } } ], @@ -62050,12 +62243,12 @@ "isHttpMetadata": false }, { - "$id": "4992", + "$id": "5005", "kind": "property", "name": "image_url", "serializedName": "image_url", "type": { - "$id": "4993", + "$id": "5006", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62075,12 +62268,12 @@ "isHttpMetadata": false }, { - "$id": "4994", + "$id": "5007", "kind": "property", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "4995", + "$id": "5008", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62119,7 +62312,7 @@ ] }, "web_search_call": { - "$id": "4996", + "$id": "5009", "kind": "model", "name": "WebSearchToolCallItemParam", "namespace": "OpenAI", @@ -62134,24 +62327,24 @@ } ], "baseModel": { - "$ref": "4820" + "$ref": "4833" }, "properties": [ { - "$id": "4997", + "$id": "5010", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4998", + "$id": "5011", "kind": "enumvalue", "name": "web_search_call", "value": "web_search_call", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "4826" + "$ref": "4839" }, "decorators": [] }, @@ -62171,7 +62364,7 @@ ] }, "function_call": { - "$id": "4999", + "$id": "5012", "kind": "model", "name": "FunctionToolCallItemParam", "namespace": "OpenAI", @@ -62186,24 +62379,24 @@ } ], "baseModel": { - "$ref": "4820" + "$ref": "4833" }, "properties": [ { - "$id": "5000", + "$id": "5013", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5001", + "$id": "5014", "kind": "enumvalue", "name": "function_call", "value": "function_call", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "4826" + "$ref": "4839" }, "decorators": [] }, @@ -62221,13 +62414,13 @@ "isHttpMetadata": false }, { - "$id": "5002", + "$id": "5015", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "5003", + "$id": "5016", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62247,13 +62440,13 @@ "isHttpMetadata": false }, { - "$id": "5004", + "$id": "5017", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to run.", "type": { - "$id": "5005", + "$id": "5018", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62273,13 +62466,13 @@ "isHttpMetadata": false }, { - "$id": "5006", + "$id": "5019", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "A JSON string of the arguments to pass to the function.", "type": { - "$id": "5007", + "$id": "5020", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62301,7 +62494,7 @@ ] }, "reasoning": { - "$id": "5008", + "$id": "5021", "kind": "model", "name": "ReasoningItemParam", "namespace": "OpenAI", @@ -62316,24 +62509,24 @@ } ], "baseModel": { - "$ref": "4820" + "$ref": "4833" }, "properties": [ { - "$id": "5009", + "$id": "5022", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5010", + "$id": "5023", "kind": "enumvalue", "name": "reasoning", "value": "reasoning", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "4826" + "$ref": "4839" }, "decorators": [] }, @@ -62351,16 +62544,16 @@ "isHttpMetadata": false }, { - "$id": "5011", + "$id": "5024", "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": "5012", + "$id": "5025", "kind": "nullable", "type": { - "$id": "5013", + "$id": "5026", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62382,17 +62575,17 @@ "isHttpMetadata": false }, { - "$id": "5014", + "$id": "5027", "kind": "property", "name": "summary", "serializedName": "summary", "doc": "Reasoning text contents.", "type": { - "$id": "5015", + "$id": "5028", "kind": "array", "name": "ArrayReasoningItemSummaryPart", "valueType": { - "$id": "5016", + "$id": "5029", "kind": "model", "name": "ReasoningItemSummaryPart", "namespace": "OpenAI", @@ -62405,12 +62598,12 @@ } ], "discriminatorProperty": { - "$id": "5017", + "$id": "5030", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "663" + "$ref": "664" }, "optional": false, "readOnly": false, @@ -62427,12 +62620,12 @@ }, "properties": [ { - "$ref": "5017" + "$ref": "5030" } ], "discriminatedSubtypes": { "summary_text": { - "$id": "5018", + "$id": "5031", "kind": "model", "name": "ReasoningItemSummaryTextPart", "namespace": "OpenAI", @@ -62446,24 +62639,24 @@ } ], "baseModel": { - "$ref": "5016" + "$ref": "5029" }, "properties": [ { - "$id": "5019", + "$id": "5032", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5020", + "$id": "5033", "kind": "enumvalue", "name": "summary_text", "value": "summary_text", "valueType": { - "$ref": "664" + "$ref": "665" }, "enumType": { - "$id": "5021", + "$id": "5034", "kind": "enum", "decorators": [ { @@ -62475,7 +62668,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "5022", + "$id": "5035", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -62484,16 +62677,16 @@ }, "values": [ { - "$id": "5023", + "$id": "5036", "kind": "enumvalue", "decorators": [], "name": "summary_text", "value": "summary_text", "valueType": { - "$ref": "5022" + "$ref": "5035" }, "enumType": { - "$ref": "5021" + "$ref": "5034" } } ], @@ -62522,12 +62715,12 @@ "isHttpMetadata": false }, { - "$id": "5024", + "$id": "5037", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "5025", + "$id": "5038", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62569,7 +62762,7 @@ ] }, "item_reference": { - "$id": "5026", + "$id": "5039", "kind": "model", "name": "ItemReferenceItemParam", "namespace": "OpenAI", @@ -62584,24 +62777,24 @@ } ], "baseModel": { - "$ref": "4820" + "$ref": "4833" }, "properties": [ { - "$id": "5027", + "$id": "5040", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5028", + "$id": "5041", "kind": "enumvalue", "name": "item_reference", "value": "item_reference", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "4826" + "$ref": "4839" }, "decorators": [] }, @@ -62619,13 +62812,13 @@ "isHttpMetadata": false }, { - "$id": "5029", + "$id": "5042", "kind": "property", "name": "id", "serializedName": "id", "doc": "The service-originated ID of the previously generated response item being referenced.", "type": { - "$id": "5030", + "$id": "5043", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62647,7 +62840,7 @@ ] }, "image_generation_call": { - "$id": "5031", + "$id": "5044", "kind": "model", "name": "ImageGenToolCallItemParam", "namespace": "OpenAI", @@ -62662,24 +62855,24 @@ } ], "baseModel": { - "$ref": "4820" + "$ref": "4833" }, "properties": [ { - "$id": "5032", + "$id": "5045", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5033", + "$id": "5046", "kind": "enumvalue", "name": "image_generation_call", "value": "image_generation_call", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "4826" + "$ref": "4839" }, "decorators": [] }, @@ -62697,16 +62890,16 @@ "isHttpMetadata": false }, { - "$id": "5034", + "$id": "5047", "kind": "property", "name": "result", "serializedName": "result", "doc": "The generated image encoded in base64.", "type": { - "$id": "5035", + "$id": "5048", "kind": "nullable", "type": { - "$id": "5036", + "$id": "5049", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -62731,7 +62924,7 @@ ] }, "code_interpreter_call": { - "$id": "5037", + "$id": "5050", "kind": "model", "name": "CodeInterpreterToolCallItemParam", "namespace": "OpenAI", @@ -62746,24 +62939,24 @@ } ], "baseModel": { - "$ref": "4820" + "$ref": "4833" }, "properties": [ { - "$id": "5038", + "$id": "5051", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5039", + "$id": "5052", "kind": "enumvalue", "name": "code_interpreter_call", "value": "code_interpreter_call", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "4826" + "$ref": "4839" }, "decorators": [] }, @@ -62781,13 +62974,13 @@ "isHttpMetadata": false }, { - "$id": "5040", + "$id": "5053", "kind": "property", "name": "container_id", "serializedName": "container_id", "doc": "The ID of the container used to run the code.", "type": { - "$id": "5041", + "$id": "5054", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62807,13 +63000,13 @@ "isHttpMetadata": false }, { - "$id": "5042", + "$id": "5055", "kind": "property", "name": "code", "serializedName": "code", "doc": "The code to run.", "type": { - "$id": "5043", + "$id": "5056", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62833,17 +63026,17 @@ "isHttpMetadata": false }, { - "$id": "5044", + "$id": "5057", "kind": "property", "name": "outputs", "serializedName": "outputs", "doc": "The outputs of the code interpreter tool call.", "type": { - "$id": "5045", + "$id": "5058", "kind": "array", "name": "ArrayCodeInterpreterToolOutput", "valueType": { - "$id": "5046", + "$id": "5059", "kind": "model", "name": "CodeInterpreterToolOutput", "namespace": "OpenAI", @@ -62856,13 +63049,13 @@ } ], "discriminatorProperty": { - "$id": "5047", + "$id": "5060", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the output.", "type": { - "$ref": "666" + "$ref": "667" }, "optional": false, "readOnly": false, @@ -62879,12 +63072,12 @@ }, "properties": [ { - "$ref": "5047" + "$ref": "5060" } ], "discriminatedSubtypes": { "logs": { - "$id": "5048", + "$id": "5061", "kind": "model", "name": "CodeInterpreterToolLogsOutput", "namespace": "OpenAI", @@ -62898,25 +63091,25 @@ } ], "baseModel": { - "$ref": "5046" + "$ref": "5059" }, "properties": [ { - "$id": "5049", + "$id": "5062", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the output. Always 'logs'.", "type": { - "$id": "5050", + "$id": "5063", "kind": "enumvalue", "name": "logs", "value": "logs", "valueType": { - "$ref": "667" + "$ref": "668" }, "enumType": { - "$id": "5051", + "$id": "5064", "kind": "enum", "decorators": [ { @@ -62928,7 +63121,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "5052", + "$id": "5065", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -62937,29 +63130,29 @@ }, "values": [ { - "$id": "5053", + "$id": "5066", "kind": "enumvalue", "decorators": [], "name": "logs", "value": "logs", "valueType": { - "$ref": "5052" + "$ref": "5065" }, "enumType": { - "$ref": "5051" + "$ref": "5064" } }, { - "$id": "5054", + "$id": "5067", "kind": "enumvalue", "decorators": [], "name": "image", "value": "image", "valueType": { - "$ref": "5052" + "$ref": "5065" }, "enumType": { - "$ref": "5051" + "$ref": "5064" } } ], @@ -62988,13 +63181,13 @@ "isHttpMetadata": false }, { - "$id": "5055", + "$id": "5068", "kind": "property", "name": "logs", "serializedName": "logs", "doc": "The logs output from the code interpreter.", "type": { - "$id": "5056", + "$id": "5069", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63016,7 +63209,7 @@ ] }, "image": { - "$id": "5057", + "$id": "5070", "kind": "model", "name": "CodeInterpreterToolImageOutput", "namespace": "OpenAI", @@ -63030,25 +63223,25 @@ } ], "baseModel": { - "$ref": "5046" + "$ref": "5059" }, "properties": [ { - "$id": "5058", + "$id": "5071", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the output. Always 'image'.", "type": { - "$id": "5059", + "$id": "5072", "kind": "enumvalue", "name": "image", "value": "image", "valueType": { - "$ref": "667" + "$ref": "668" }, "enumType": { - "$ref": "5051" + "$ref": "5064" }, "decorators": [] }, @@ -63066,13 +63259,13 @@ "isHttpMetadata": false }, { - "$id": "5060", + "$id": "5073", "kind": "property", "name": "ImageUri", "serializedName": "url", "doc": "The URL of the image output from the code interpreter.", "type": { - "$id": "5061", + "$id": "5074", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -63114,7 +63307,7 @@ ] }, "local_shell_call": { - "$id": "5062", + "$id": "5075", "kind": "model", "name": "LocalShellToolCallItemParam", "namespace": "OpenAI", @@ -63129,24 +63322,24 @@ } ], "baseModel": { - "$ref": "4820" + "$ref": "4833" }, "properties": [ { - "$id": "5063", + "$id": "5076", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5064", + "$id": "5077", "kind": "enumvalue", "name": "local_shell_call", "value": "local_shell_call", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "4826" + "$ref": "4839" }, "decorators": [] }, @@ -63164,13 +63357,13 @@ "isHttpMetadata": false }, { - "$id": "5065", + "$id": "5078", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the local shell tool call generated by the model.", "type": { - "$id": "5066", + "$id": "5079", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63190,12 +63383,12 @@ "isHttpMetadata": false }, { - "$id": "5067", + "$id": "5080", "kind": "property", "name": "action", "serializedName": "action", "type": { - "$id": "5068", + "$id": "5081", "kind": "model", "name": "LocalShellExecAction", "namespace": "OpenAI", @@ -63210,13 +63403,13 @@ ], "properties": [ { - "$id": "5069", + "$id": "5082", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the local shell action. Always `exec`.", "type": { - "$ref": "1667" + "$ref": "1668" }, "optional": false, "readOnly": false, @@ -63232,13 +63425,13 @@ "isHttpMetadata": false }, { - "$id": "5070", + "$id": "5083", "kind": "property", "name": "command", "serializedName": "command", "doc": "The command to run.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": false, "readOnly": false, @@ -63254,16 +63447,16 @@ "isHttpMetadata": false }, { - "$id": "5071", + "$id": "5084", "kind": "property", "name": "timeout_ms", "serializedName": "timeout_ms", "doc": "Optional timeout in milliseconds for the command.", "type": { - "$id": "5072", + "$id": "5085", "kind": "nullable", "type": { - "$id": "5073", + "$id": "5086", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -63285,16 +63478,16 @@ "isHttpMetadata": false }, { - "$id": "5074", + "$id": "5087", "kind": "property", "name": "working_directory", "serializedName": "working_directory", "doc": "Optional working directory to run the command in.", "type": { - "$id": "5075", + "$id": "5088", "kind": "nullable", "type": { - "$id": "5076", + "$id": "5089", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63316,13 +63509,13 @@ "isHttpMetadata": false }, { - "$id": "5077", + "$id": "5090", "kind": "property", "name": "env", "serializedName": "env", "doc": "Environment variables to set for the command.", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": false, "readOnly": false, @@ -63338,16 +63531,16 @@ "isHttpMetadata": false }, { - "$id": "5078", + "$id": "5091", "kind": "property", "name": "user", "serializedName": "user", "doc": "Optional user to run the command as.", "type": { - "$id": "5079", + "$id": "5092", "kind": "nullable", "type": { - "$id": "5080", + "$id": "5093", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63386,7 +63579,7 @@ ] }, "local_shell_call_output": { - "$id": "5081", + "$id": "5094", "kind": "model", "name": "LocalShellToolCallOutputItemParam", "namespace": "OpenAI", @@ -63401,24 +63594,24 @@ } ], "baseModel": { - "$ref": "4820" + "$ref": "4833" }, "properties": [ { - "$id": "5082", + "$id": "5095", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5083", + "$id": "5096", "kind": "enumvalue", "name": "local_shell_call_output", "value": "local_shell_call_output", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "4826" + "$ref": "4839" }, "decorators": [] }, @@ -63436,13 +63629,13 @@ "isHttpMetadata": false }, { - "$id": "5084", + "$id": "5097", "kind": "property", "name": "output", "serializedName": "output", "doc": "A JSON string of the output of the local shell tool call.", "type": { - "$id": "5085", + "$id": "5098", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63464,7 +63657,7 @@ ] }, "mcp_list_tools": { - "$id": "5086", + "$id": "5099", "kind": "model", "name": "MCPListToolsItemParam", "namespace": "OpenAI", @@ -63479,24 +63672,24 @@ } ], "baseModel": { - "$ref": "4820" + "$ref": "4833" }, "properties": [ { - "$id": "5087", + "$id": "5100", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5088", + "$id": "5101", "kind": "enumvalue", "name": "mcp_list_tools", "value": "mcp_list_tools", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "4826" + "$ref": "4839" }, "decorators": [] }, @@ -63514,13 +63707,13 @@ "isHttpMetadata": false }, { - "$id": "5089", + "$id": "5102", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server.", "type": { - "$id": "5090", + "$id": "5103", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63540,17 +63733,17 @@ "isHttpMetadata": false }, { - "$id": "5091", + "$id": "5104", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "The tools available on the server.", "type": { - "$id": "5092", + "$id": "5105", "kind": "array", "name": "ArrayMcpListToolsTool", "valueType": { - "$id": "5093", + "$id": "5106", "kind": "model", "name": "MCPListToolsTool", "namespace": "OpenAI", @@ -63565,13 +63758,13 @@ ], "properties": [ { - "$id": "5094", + "$id": "5107", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the tool.", "type": { - "$id": "5095", + "$id": "5108", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63591,16 +63784,16 @@ "isHttpMetadata": false }, { - "$id": "5096", + "$id": "5109", "kind": "property", "name": "description", "serializedName": "description", "doc": "The description of the tool.", "type": { - "$id": "5097", + "$id": "5110", "kind": "nullable", "type": { - "$id": "5098", + "$id": "5111", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63622,13 +63815,13 @@ "isHttpMetadata": false }, { - "$id": "5099", + "$id": "5112", "kind": "property", "name": "input_schema", "serializedName": "input_schema", "doc": "The JSON schema describing the tool's input.", "type": { - "$id": "5100", + "$id": "5113", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -63648,16 +63841,16 @@ "isHttpMetadata": false }, { - "$id": "5101", + "$id": "5114", "kind": "property", "name": "annotations", "serializedName": "annotations", "doc": "Additional annotations about the tool.", "type": { - "$id": "5102", + "$id": "5115", "kind": "nullable", "type": { - "$id": "5103", + "$id": "5116", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -63697,16 +63890,16 @@ "isHttpMetadata": false }, { - "$id": "5104", + "$id": "5117", "kind": "property", "name": "error", "serializedName": "error", "doc": "Error message if the server could not list tools.", "type": { - "$id": "5105", + "$id": "5118", "kind": "nullable", "type": { - "$id": "5106", + "$id": "5119", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63730,7 +63923,7 @@ ] }, "mcp_approval_request": { - "$id": "5107", + "$id": "5120", "kind": "model", "name": "MCPApprovalRequestItemParam", "namespace": "OpenAI", @@ -63745,24 +63938,24 @@ } ], "baseModel": { - "$ref": "4820" + "$ref": "4833" }, "properties": [ { - "$id": "5108", + "$id": "5121", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5109", + "$id": "5122", "kind": "enumvalue", "name": "mcp_approval_request", "value": "mcp_approval_request", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "4826" + "$ref": "4839" }, "decorators": [] }, @@ -63780,13 +63973,13 @@ "isHttpMetadata": false }, { - "$id": "5110", + "$id": "5123", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server making the request.", "type": { - "$id": "5111", + "$id": "5124", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63806,13 +63999,13 @@ "isHttpMetadata": false }, { - "$id": "5112", + "$id": "5125", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the tool to run.", "type": { - "$id": "5113", + "$id": "5126", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63832,13 +64025,13 @@ "isHttpMetadata": false }, { - "$id": "5114", + "$id": "5127", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "A JSON string of arguments for the tool.", "type": { - "$id": "5115", + "$id": "5128", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63860,7 +64053,7 @@ ] }, "mcp_approval_response": { - "$id": "5116", + "$id": "5129", "kind": "model", "name": "MCPApprovalResponseItemParam", "namespace": "OpenAI", @@ -63875,24 +64068,24 @@ } ], "baseModel": { - "$ref": "4820" + "$ref": "4833" }, "properties": [ { - "$id": "5117", + "$id": "5130", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5118", + "$id": "5131", "kind": "enumvalue", "name": "mcp_approval_response", "value": "mcp_approval_response", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "4826" + "$ref": "4839" }, "decorators": [] }, @@ -63910,13 +64103,13 @@ "isHttpMetadata": false }, { - "$id": "5119", + "$id": "5132", "kind": "property", "name": "approval_request_id", "serializedName": "approval_request_id", "doc": "The ID of the approval request being answered.", "type": { - "$id": "5120", + "$id": "5133", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63936,13 +64129,13 @@ "isHttpMetadata": false }, { - "$id": "5121", + "$id": "5134", "kind": "property", "name": "approve", "serializedName": "approve", "doc": "Whether the request was approved.", "type": { - "$id": "5122", + "$id": "5135", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -63962,16 +64155,16 @@ "isHttpMetadata": false }, { - "$id": "5123", + "$id": "5136", "kind": "property", "name": "reason", "serializedName": "reason", "doc": "Optional reason for the decision.", "type": { - "$id": "5124", + "$id": "5137", "kind": "nullable", "type": { - "$id": "5125", + "$id": "5138", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63995,7 +64188,7 @@ ] }, "mcp_call": { - "$id": "5126", + "$id": "5139", "kind": "model", "name": "MCPCallItemParam", "namespace": "OpenAI", @@ -64010,24 +64203,24 @@ } ], "baseModel": { - "$ref": "4820" + "$ref": "4833" }, "properties": [ { - "$id": "5127", + "$id": "5140", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5128", + "$id": "5141", "kind": "enumvalue", "name": "mcp_call", "value": "mcp_call", "valueType": { - "$ref": "618" + "$ref": "619" }, "enumType": { - "$ref": "4826" + "$ref": "4839" }, "decorators": [] }, @@ -64045,13 +64238,13 @@ "isHttpMetadata": false }, { - "$id": "5129", + "$id": "5142", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server running the tool.", "type": { - "$id": "5130", + "$id": "5143", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64071,13 +64264,13 @@ "isHttpMetadata": false }, { - "$id": "5131", + "$id": "5144", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the tool that was run.", "type": { - "$id": "5132", + "$id": "5145", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64097,13 +64290,13 @@ "isHttpMetadata": false }, { - "$id": "5133", + "$id": "5146", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "A JSON string of the arguments passed to the tool.", "type": { - "$id": "5134", + "$id": "5147", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64123,16 +64316,16 @@ "isHttpMetadata": false }, { - "$id": "5135", + "$id": "5148", "kind": "property", "name": "output", "serializedName": "output", "doc": "The output from the tool call.", "type": { - "$id": "5136", + "$id": "5149", "kind": "nullable", "type": { - "$id": "5137", + "$id": "5150", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64154,16 +64347,16 @@ "isHttpMetadata": false }, { - "$id": "5138", + "$id": "5151", "kind": "property", "name": "error", "serializedName": "error", "doc": "The error from the tool call, if any.", "type": { - "$id": "5139", + "$id": "5152", "kind": "nullable", "type": { - "$id": "5140", + "$id": "5153", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64213,20 +64406,20 @@ "isHttpMetadata": false }, { - "$id": "5141", + "$id": "5154", "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": "5142", + "$id": "5155", "kind": "nullable", "type": { - "$id": "5143", + "$id": "5156", "kind": "array", "name": "ArrayIncludable", "valueType": { - "$ref": "670" + "$ref": "671" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -64247,16 +64440,16 @@ "isHttpMetadata": false }, { - "$id": "5144", + "$id": "5157", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "doc": "Whether to allow the model to run tool calls in parallel.", "type": { - "$id": "5145", + "$id": "5158", "kind": "nullable", "type": { - "$id": "5146", + "$id": "5159", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -64278,16 +64471,16 @@ "isHttpMetadata": false }, { - "$id": "5147", + "$id": "5160", "kind": "property", "name": "store", "serializedName": "store", "doc": "Whether to store the generated model response for later retrieval via\nAPI.", "type": { - "$id": "5148", + "$id": "5161", "kind": "nullable", "type": { - "$id": "5149", + "$id": "5162", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -64309,16 +64502,16 @@ "isHttpMetadata": false }, { - "$id": "5150", + "$id": "5163", "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": "5151", + "$id": "5164", "kind": "nullable", "type": { - "$id": "5152", + "$id": "5165", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -64342,217 +64535,217 @@ ] }, { - "$ref": "4627" - }, - { - "$ref": "4644" + "$ref": "4640" }, { - "$ref": "4649" + "$ref": "4657" }, { - "$ref": "4651" + "$ref": "4662" }, { - "$ref": "4663" + "$ref": "4664" }, { - "$ref": "4666" + "$ref": "4676" }, { - "$ref": "4669" + "$ref": "4679" }, { - "$ref": "4672" + "$ref": "4682" }, { - "$ref": "4675" + "$ref": "4685" }, { - "$ref": "4678" + "$ref": "4688" }, { - "$ref": "4690" + "$ref": "4691" }, { - "$ref": "4695" + "$ref": "4703" }, { - "$ref": "4697" + "$ref": "4708" }, { - "$ref": "4712" + "$ref": "4710" }, { - "$ref": "4719" + "$ref": "4725" }, { - "$ref": "4724" + "$ref": "4732" }, { - "$ref": "4729" + "$ref": "4737" }, { - "$ref": "4739" + "$ref": "4742" }, { - "$ref": "4749" + "$ref": "4752" }, { - "$ref": "4756" + "$ref": "4762" }, { - "$ref": "4758" + "$ref": "4769" }, { - "$ref": "4773" + "$ref": "4771" }, { - "$ref": "4784" + "$ref": "4786" }, { "$ref": "4797" }, { - "$ref": "4806" - }, - { - "$ref": "4814" + "$ref": "4810" }, { - "$ref": "4820" + "$ref": "4819" }, { - "$ref": "4822" + "$ref": "4827" }, { - "$ref": "4845" + "$ref": "4833" }, { - "$ref": "4855" + "$ref": "4835" }, { - "$ref": "4859" + "$ref": "4858" }, { - "$ref": "4863" + "$ref": "4868" }, { - "$ref": "4867" + "$ref": "4872" }, { - "$ref": "4874" + "$ref": "4876" }, { - "$ref": "4881" + "$ref": "4880" }, { - "$ref": "4891" + "$ref": "4887" }, { - "$ref": "4897" + "$ref": "4894" }, { - "$ref": "4899" + "$ref": "4904" }, { - "$ref": "4918" + "$ref": "4910" }, { - "$ref": "4925" + "$ref": "4912" }, { - "$ref": "4930" + "$ref": "4931" }, { - "$ref": "4935" + "$ref": "4938" }, { - "$ref": "4942" + "$ref": "4943" }, { - "$ref": "4945" + "$ref": "4948" }, { - "$ref": "4956" + "$ref": "4955" }, { - "$ref": "4961" + "$ref": "4958" }, { - "$ref": "4964" + "$ref": "4969" }, { - "$ref": "4970" + "$ref": "4974" }, { "$ref": "4977" }, { - "$ref": "4984" + "$ref": "4983" }, { - "$ref": "4986" + "$ref": "4990" }, { - "$ref": "4996" + "$ref": "4997" }, { "$ref": "4999" }, { - "$ref": "5008" + "$ref": "5009" }, { - "$ref": "5016" + "$ref": "5012" }, { - "$ref": "5018" + "$ref": "5021" }, { - "$ref": "5026" + "$ref": "5029" }, { "$ref": "5031" }, { - "$ref": "5037" + "$ref": "5039" + }, + { + "$ref": "5044" }, { - "$ref": "5046" + "$ref": "5050" }, { - "$ref": "5048" + "$ref": "5059" }, { - "$ref": "5057" + "$ref": "5061" }, { - "$ref": "5062" + "$ref": "5070" }, { - "$ref": "5068" + "$ref": "5075" }, { "$ref": "5081" }, { - "$ref": "5086" + "$ref": "5094" + }, + { + "$ref": "5099" }, { - "$ref": "5093" + "$ref": "5106" }, { - "$ref": "5107" + "$ref": "5120" }, { - "$ref": "5116" + "$ref": "5129" }, { - "$ref": "5126" + "$ref": "5139" }, { - "$id": "5153", + "$id": "5166", "kind": "model", "name": "Response", "namespace": "OpenAI", @@ -64566,13 +64759,13 @@ ], "properties": [ { - "$id": "5154", + "$id": "5167", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2443" + "$ref": "2444" }, "optional": false, "readOnly": false, @@ -64588,16 +64781,16 @@ "isHttpMetadata": false }, { - "$id": "5155", + "$id": "5168", "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": "5156", + "$id": "5169", "kind": "nullable", "type": { - "$id": "5157", + "$id": "5170", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -64619,16 +64812,16 @@ "isHttpMetadata": false }, { - "$id": "5158", + "$id": "5171", "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": "5159", + "$id": "5172", "kind": "nullable", "type": { - "$id": "5160", + "$id": "5173", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -64650,16 +64843,16 @@ "isHttpMetadata": false }, { - "$id": "5161", + "$id": "5174", "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": "5162", + "$id": "5175", "kind": "nullable", "type": { - "$id": "5163", + "$id": "5176", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64681,12 +64874,12 @@ "isHttpMetadata": false }, { - "$id": "5164", + "$id": "5177", "kind": "property", "name": "service_tier", "serializedName": "service_tier", "type": { - "$ref": "496" + "$ref": "497" }, "optional": true, "readOnly": false, @@ -64702,13 +64895,13 @@ "isHttpMetadata": false }, { - "$id": "5165", + "$id": "5178", "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": "4622" + "$ref": "4635" }, "optional": true, "readOnly": false, @@ -64724,13 +64917,13 @@ "isHttpMetadata": false }, { - "$id": "5166", + "$id": "5179", "kind": "property", "name": "model", "serializedName": "model", "doc": "Model ID used to generate the response, like `gpt-4o` or `o3`. OpenAI\noffers a wide range of models with different capabilities, performance\ncharacteristics, and price points. Refer to the [model guide](/docs/models)\nto browse and compare available models.", "type": { - "$ref": "502" + "$ref": "503" }, "optional": true, "readOnly": false, @@ -64746,12 +64939,12 @@ "isHttpMetadata": false }, { - "$id": "5167", + "$id": "5180", "kind": "property", "name": "reasoning", "serializedName": "reasoning", "type": { - "$ref": "4626" + "$ref": "4639" }, "optional": true, "readOnly": false, @@ -64767,13 +64960,13 @@ "isHttpMetadata": false }, { - "$id": "5168", + "$id": "5181", "kind": "property", "name": "background", "serializedName": "background", "doc": "Whether to run the model response in the background.\n[Learn more](/docs/guides/background).", "type": { - "$ref": "4635" + "$ref": "4648" }, "optional": true, "readOnly": false, @@ -64789,13 +64982,13 @@ "isHttpMetadata": false }, { - "$id": "5169", + "$id": "5182", "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": "4638" + "$ref": "4651" }, "optional": true, "readOnly": false, @@ -64811,13 +65004,13 @@ "isHttpMetadata": false }, { - "$id": "5170", + "$id": "5183", "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": "4641" + "$ref": "4654" }, "optional": true, "readOnly": false, @@ -64833,13 +65026,13 @@ "isHttpMetadata": false }, { - "$id": "5171", + "$id": "5184", "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": "4644" + "$ref": "4657" }, "optional": true, "readOnly": false, @@ -64855,13 +65048,13 @@ "isHttpMetadata": false }, { - "$id": "5172", + "$id": "5185", "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": "4345" + "$ref": "4346" }, "optional": true, "readOnly": false, @@ -64877,13 +65070,13 @@ "isHttpMetadata": false }, { - "$id": "5173", + "$id": "5186", "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": "4648" + "$ref": "4661" }, "optional": true, "readOnly": false, @@ -64899,13 +65092,13 @@ "isHttpMetadata": false }, { - "$id": "5174", + "$id": "5187", "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": "4684" + "$ref": "4697" }, "optional": true, "readOnly": false, @@ -64921,13 +65114,13 @@ "isHttpMetadata": false }, { - "$id": "5175", + "$id": "5188", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for this Response.", "type": { - "$id": "5176", + "$id": "5189", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64947,13 +65140,13 @@ "isHttpMetadata": false }, { - "$id": "5177", + "$id": "5190", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type of this resource - always set to `response`.", "type": { - "$ref": "1669" + "$ref": "1670" }, "optional": false, "readOnly": false, @@ -64969,13 +65162,13 @@ "isHttpMetadata": false }, { - "$id": "5178", + "$id": "5191", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the response generation. One of `completed`, `failed`,\n`in_progress`, `cancelled`, `queued`, or `incomplete`.", "type": { - "$ref": "677" + "$ref": "678" }, "optional": true, "readOnly": false, @@ -64991,18 +65184,18 @@ "isHttpMetadata": false }, { - "$id": "5179", + "$id": "5192", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) of when this Response was created.", "type": { - "$id": "5180", + "$id": "5193", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5181", + "$id": "5194", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -65025,15 +65218,15 @@ "isHttpMetadata": false }, { - "$id": "5182", + "$id": "5195", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$id": "5183", + "$id": "5196", "kind": "nullable", "type": { - "$id": "5184", + "$id": "5197", "kind": "model", "name": "ResponseError", "namespace": "OpenAI", @@ -65048,12 +65241,12 @@ ], "properties": [ { - "$id": "5185", + "$id": "5198", "kind": "property", "name": "code", "serializedName": "code", "type": { - "$ref": "685" + "$ref": "686" }, "optional": false, "readOnly": false, @@ -65069,13 +65262,13 @@ "isHttpMetadata": false }, { - "$id": "5186", + "$id": "5199", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "5187", + "$id": "5200", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65112,16 +65305,16 @@ "isHttpMetadata": false }, { - "$id": "5188", + "$id": "5201", "kind": "property", "name": "incomplete_details", "serializedName": "incomplete_details", "doc": "Details about why the response is incomplete.", "type": { - "$id": "5189", + "$id": "5202", "kind": "nullable", "type": { - "$id": "5190", + "$id": "5203", "kind": "model", "name": "ResponseIncompleteDetails1", "namespace": "OpenAI", @@ -65130,13 +65323,13 @@ "decorators": [], "properties": [ { - "$id": "5191", + "$id": "5204", "kind": "property", "name": "reason", "serializedName": "reason", "doc": "The reason why the response is incomplete.", "type": { - "$ref": "705" + "$ref": "706" }, "optional": true, "readOnly": false, @@ -65169,17 +65362,17 @@ "isHttpMetadata": false }, { - "$id": "5192", + "$id": "5205", "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": "5193", + "$id": "5206", "kind": "array", "name": "ArrayItemResource", "valueType": { - "$id": "5194", + "$id": "5207", "kind": "model", "name": "ItemResource", "namespace": "OpenAI", @@ -65193,12 +65386,12 @@ } ], "discriminatorProperty": { - "$id": "5195", + "$id": "5208", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "617" + "$ref": "618" }, "optional": false, "readOnly": false, @@ -65215,15 +65408,15 @@ }, "properties": [ { - "$ref": "5195" + "$ref": "5208" }, { - "$id": "5196", + "$id": "5209", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "5197", + "$id": "5210", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65245,7 +65438,7 @@ ], "discriminatedSubtypes": { "message": { - "$id": "5198", + "$id": "5211", "kind": "model", "name": "ResponsesMessageItemResource", "namespace": "OpenAI", @@ -65260,13 +65453,13 @@ } ], "discriminatorProperty": { - "$id": "5199", + "$id": "5212", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role associated with the message.", "type": { - "$ref": "636" + "$ref": "637" }, "optional": false, "readOnly": false, @@ -65282,17 +65475,17 @@ "isHttpMetadata": false }, "baseModel": { - "$ref": "5194" + "$ref": "5207" }, "properties": [ { - "$id": "5200", + "$id": "5213", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the responses item, which is always 'message'.", "type": { - "$ref": "4825" + "$ref": "4838" }, "optional": false, "readOnly": false, @@ -65308,13 +65501,13 @@ "isHttpMetadata": false }, { - "$id": "5201", + "$id": "5214", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the item. One of `in_progress`, `completed`, or\n`incomplete`. Populated when items are returned via API.", "type": { - "$ref": "709" + "$ref": "710" }, "optional": false, "readOnly": true, @@ -65330,12 +65523,12 @@ "isHttpMetadata": false }, { - "$ref": "5199" + "$ref": "5212" } ], "discriminatedSubtypes": { "user": { - "$id": "5202", + "$id": "5215", "kind": "model", "name": "ResponsesUserMessageItemResource", "namespace": "OpenAI", @@ -65350,17 +65543,17 @@ } ], "baseModel": { - "$ref": "5198" + "$ref": "5211" }, "properties": [ { - "$id": "5203", + "$id": "5216", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `user`.", "type": { - "$ref": "4847" + "$ref": "4860" }, "optional": false, "readOnly": false, @@ -65376,13 +65569,13 @@ "isHttpMetadata": false }, { - "$id": "5204", + "$id": "5217", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4694" + "$ref": "4707" }, "optional": false, "readOnly": false, @@ -65400,7 +65593,7 @@ ] }, "system": { - "$id": "5205", + "$id": "5218", "kind": "model", "name": "ResponsesSystemMessageItemResource", "namespace": "OpenAI", @@ -65415,17 +65608,17 @@ } ], "baseModel": { - "$ref": "5198" + "$ref": "5211" }, "properties": [ { - "$id": "5206", + "$id": "5219", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `system`.", "type": { - "$ref": "4857" + "$ref": "4870" }, "optional": false, "readOnly": false, @@ -65441,13 +65634,13 @@ "isHttpMetadata": false }, { - "$id": "5207", + "$id": "5220", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4694" + "$ref": "4707" }, "optional": false, "readOnly": false, @@ -65465,7 +65658,7 @@ ] }, "developer": { - "$id": "5208", + "$id": "5221", "kind": "model", "name": "ResponsesDeveloperMessageItemResource", "namespace": "OpenAI", @@ -65480,17 +65673,17 @@ } ], "baseModel": { - "$ref": "5198" + "$ref": "5211" }, "properties": [ { - "$id": "5209", + "$id": "5222", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `developer`.", "type": { - "$ref": "4861" + "$ref": "4874" }, "optional": false, "readOnly": false, @@ -65506,13 +65699,13 @@ "isHttpMetadata": false }, { - "$id": "5210", + "$id": "5223", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4694" + "$ref": "4707" }, "optional": false, "readOnly": false, @@ -65530,7 +65723,7 @@ ] }, "assistant": { - "$id": "5211", + "$id": "5224", "kind": "model", "name": "ResponsesAssistantMessageItemResource", "namespace": "OpenAI", @@ -65545,17 +65738,17 @@ } ], "baseModel": { - "$ref": "5198" + "$ref": "5211" }, "properties": [ { - "$id": "5212", + "$id": "5225", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `assistant`.", "type": { - "$ref": "4865" + "$ref": "4878" }, "optional": false, "readOnly": false, @@ -65571,13 +65764,13 @@ "isHttpMetadata": false }, { - "$id": "5213", + "$id": "5226", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4694" + "$ref": "4707" }, "optional": false, "readOnly": false, @@ -65597,7 +65790,7 @@ } }, "computer_call_output": { - "$id": "5214", + "$id": "5227", "kind": "model", "name": "ComputerToolCallOutputItemResource", "namespace": "OpenAI", @@ -65612,16 +65805,16 @@ } ], "baseModel": { - "$ref": "5194" + "$ref": "5207" }, "properties": [ { - "$id": "5215", + "$id": "5228", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4979" + "$ref": "4992" }, "optional": false, "readOnly": false, @@ -65637,13 +65830,13 @@ "isHttpMetadata": false }, { - "$id": "5216", + "$id": "5229", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the item. One of `in_progress`, `completed`, or\n`incomplete`. Populated when items are returned via API.", "type": { - "$ref": "714" + "$ref": "715" }, "optional": false, "readOnly": true, @@ -65659,13 +65852,13 @@ "isHttpMetadata": false }, { - "$id": "5217", + "$id": "5230", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the computer tool call that produced the output.", "type": { - "$id": "5218", + "$id": "5231", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65685,13 +65878,13 @@ "isHttpMetadata": false }, { - "$id": "5219", + "$id": "5232", "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": "4969" + "$ref": "4982" }, "optional": true, "readOnly": false, @@ -65707,12 +65900,12 @@ "isHttpMetadata": false }, { - "$id": "5220", + "$id": "5233", "kind": "property", "name": "output", "serializedName": "output", "type": { - "$ref": "4984" + "$ref": "4997" }, "optional": false, "readOnly": false, @@ -65730,7 +65923,7 @@ ] }, "function_call": { - "$id": "5221", + "$id": "5234", "kind": "model", "name": "FunctionToolCallItemResource", "namespace": "OpenAI", @@ -65745,16 +65938,16 @@ } ], "baseModel": { - "$ref": "5194" + "$ref": "5207" }, "properties": [ { - "$id": "5222", + "$id": "5235", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5001" + "$ref": "5014" }, "optional": false, "readOnly": false, @@ -65770,13 +65963,13 @@ "isHttpMetadata": false }, { - "$id": "5223", + "$id": "5236", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the item. One of `in_progress`, `completed`, or\n`incomplete`. Populated when items are returned via API.", "type": { - "$ref": "719" + "$ref": "720" }, "optional": false, "readOnly": true, @@ -65792,13 +65985,13 @@ "isHttpMetadata": false }, { - "$id": "5224", + "$id": "5237", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "5225", + "$id": "5238", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65818,13 +66011,13 @@ "isHttpMetadata": false }, { - "$id": "5226", + "$id": "5239", "kind": "property", "name": "FunctionName", "serializedName": "name", "doc": "The name of the function to run.", "type": { - "$id": "5227", + "$id": "5240", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65844,13 +66037,13 @@ "isHttpMetadata": false }, { - "$id": "5228", + "$id": "5241", "kind": "property", "name": "FunctionArguments", "serializedName": "arguments", "doc": "A JSON string of the arguments to pass to the function.", "type": { - "$id": "5229", + "$id": "5242", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -65872,7 +66065,7 @@ ] }, "function_call_output": { - "$id": "5230", + "$id": "5243", "kind": "model", "name": "FunctionToolCallOutputItemResource", "namespace": "OpenAI", @@ -65887,16 +66080,16 @@ } ], "baseModel": { - "$ref": "5194" + "$ref": "5207" }, "properties": [ { - "$id": "5231", + "$id": "5244", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4869" + "$ref": "4882" }, "optional": false, "readOnly": false, @@ -65912,13 +66105,13 @@ "isHttpMetadata": false }, { - "$id": "5232", + "$id": "5245", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the item. One of `in_progress`, `completed`, or\n`incomplete`. Populated when items are returned via API.", "type": { - "$ref": "724" + "$ref": "725" }, "optional": false, "readOnly": true, @@ -65934,13 +66127,13 @@ "isHttpMetadata": false }, { - "$id": "5233", + "$id": "5246", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "5234", + "$id": "5247", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65960,13 +66153,13 @@ "isHttpMetadata": false }, { - "$id": "5235", + "$id": "5248", "kind": "property", "name": "FunctionOutput", "serializedName": "output", "doc": "A JSON string of the output of the function tool call.", "type": { - "$id": "5236", + "$id": "5249", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65988,7 +66181,7 @@ ] }, "mcp_approval_response": { - "$id": "5237", + "$id": "5250", "kind": "model", "name": "MCPApprovalResponseItemResource", "namespace": "OpenAI", @@ -66003,16 +66196,16 @@ } ], "baseModel": { - "$ref": "5194" + "$ref": "5207" }, "properties": [ { - "$id": "5238", + "$id": "5251", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5118" + "$ref": "5131" }, "optional": false, "readOnly": false, @@ -66028,13 +66221,13 @@ "isHttpMetadata": false }, { - "$id": "5239", + "$id": "5252", "kind": "property", "name": "approval_request_id", "serializedName": "approval_request_id", "doc": "The ID of the approval request being answered.", "type": { - "$id": "5240", + "$id": "5253", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66054,13 +66247,13 @@ "isHttpMetadata": false }, { - "$id": "5241", + "$id": "5254", "kind": "property", "name": "Approved", "serializedName": "approve", "doc": "Whether the request was approved.", "type": { - "$id": "5242", + "$id": "5255", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -66080,13 +66273,13 @@ "isHttpMetadata": false }, { - "$id": "5243", + "$id": "5256", "kind": "property", "name": "reason", "serializedName": "reason", "doc": "Optional reason for the decision.", "type": { - "$ref": "5124" + "$ref": "5137" }, "optional": true, "readOnly": false, @@ -66104,7 +66297,7 @@ ] }, "file_search_call": { - "$id": "5244", + "$id": "5257", "kind": "model", "name": "FileSearchToolCallItemResource", "namespace": "OpenAI", @@ -66119,16 +66312,16 @@ } ], "baseModel": { - "$ref": "5194" + "$ref": "5207" }, "properties": [ { - "$id": "5245", + "$id": "5258", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4876" + "$ref": "4889" }, "optional": false, "readOnly": false, @@ -66144,13 +66337,13 @@ "isHttpMetadata": false }, { - "$id": "5246", + "$id": "5259", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the file search tool call. One of `in_progress`, \n`searching`, `incomplete` or `failed`,", "type": { - "$ref": "729" + "$ref": "730" }, "optional": false, "readOnly": true, @@ -66166,13 +66359,13 @@ "isHttpMetadata": false }, { - "$id": "5247", + "$id": "5260", "kind": "property", "name": "queries", "serializedName": "queries", "doc": "The queries used to search for files.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": false, "readOnly": false, @@ -66188,13 +66381,13 @@ "isHttpMetadata": false }, { - "$id": "5248", + "$id": "5261", "kind": "property", "name": "results", "serializedName": "results", "doc": "The results of the file search tool call.", "type": { - "$ref": "4879" + "$ref": "4892" }, "optional": true, "readOnly": false, @@ -66212,7 +66405,7 @@ ] }, "computer_call": { - "$id": "5249", + "$id": "5262", "kind": "model", "name": "ComputerToolCallItemResource", "namespace": "OpenAI", @@ -66227,16 +66420,16 @@ } ], "baseModel": { - "$ref": "5194" + "$ref": "5207" }, "properties": [ { - "$id": "5250", + "$id": "5263", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4893" + "$ref": "4906" }, "optional": false, "readOnly": false, @@ -66252,13 +66445,13 @@ "isHttpMetadata": false }, { - "$id": "5251", + "$id": "5264", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the item. One of `in_progress`, `completed`, or\n`incomplete`. Populated when items are returned via API.", "type": { - "$ref": "736" + "$ref": "737" }, "optional": false, "readOnly": true, @@ -66274,13 +66467,13 @@ "isHttpMetadata": false }, { - "$id": "5252", + "$id": "5265", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "An identifier used when responding to the tool call with output.", "type": { - "$id": "5253", + "$id": "5266", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66300,12 +66493,12 @@ "isHttpMetadata": false }, { - "$id": "5254", + "$id": "5267", "kind": "property", "name": "action", "serializedName": "action", "type": { - "$ref": "4897" + "$ref": "4910" }, "optional": false, "readOnly": false, @@ -66321,13 +66514,13 @@ "isHttpMetadata": false }, { - "$id": "5255", + "$id": "5268", "kind": "property", "name": "pending_safety_checks", "serializedName": "pending_safety_checks", "doc": "The pending safety checks for the computer call.", "type": { - "$ref": "4969" + "$ref": "4982" }, "optional": false, "readOnly": false, @@ -66345,7 +66538,7 @@ ] }, "web_search_call": { - "$id": "5256", + "$id": "5269", "kind": "model", "name": "WebSearchToolCallItemResource", "namespace": "OpenAI", @@ -66360,16 +66553,16 @@ } ], "baseModel": { - "$ref": "5194" + "$ref": "5207" }, "properties": [ { - "$id": "5257", + "$id": "5270", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4998" + "$ref": "5011" }, "optional": false, "readOnly": false, @@ -66385,13 +66578,13 @@ "isHttpMetadata": false }, { - "$id": "5258", + "$id": "5271", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the web search tool call.", "type": { - "$ref": "741" + "$ref": "742" }, "optional": false, "readOnly": true, @@ -66409,7 +66602,7 @@ ] }, "reasoning": { - "$id": "5259", + "$id": "5272", "kind": "model", "name": "ReasoningItemResource", "namespace": "OpenAI", @@ -66424,16 +66617,16 @@ } ], "baseModel": { - "$ref": "5194" + "$ref": "5207" }, "properties": [ { - "$id": "5260", + "$id": "5273", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5010" + "$ref": "5023" }, "optional": false, "readOnly": false, @@ -66449,13 +66642,13 @@ "isHttpMetadata": false }, { - "$id": "5261", + "$id": "5274", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the item. One of `in_progress`, `completed`, or\n`incomplete`. Populated when items are returned via API.", "type": { - "$ref": "747" + "$ref": "748" }, "optional": false, "readOnly": true, @@ -66471,13 +66664,13 @@ "isHttpMetadata": false }, { - "$id": "5262", + "$id": "5275", "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": "5012" + "$ref": "5025" }, "optional": true, "readOnly": false, @@ -66493,13 +66686,13 @@ "isHttpMetadata": false }, { - "$id": "5263", + "$id": "5276", "kind": "property", "name": "SummaryParts", "serializedName": "summary", "doc": "Reasoning text contents.", "type": { - "$ref": "5015" + "$ref": "5028" }, "optional": false, "readOnly": false, @@ -66517,7 +66710,7 @@ ] }, "image_generation_call": { - "$id": "5264", + "$id": "5277", "kind": "model", "name": "ImageGenToolCallItemResource", "namespace": "OpenAI", @@ -66532,16 +66725,16 @@ } ], "baseModel": { - "$ref": "5194" + "$ref": "5207" }, "properties": [ { - "$id": "5265", + "$id": "5278", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5033" + "$ref": "5046" }, "optional": false, "readOnly": false, @@ -66557,12 +66750,12 @@ "isHttpMetadata": false }, { - "$id": "5266", + "$id": "5279", "kind": "property", "name": "status", "serializedName": "status", "type": { - "$ref": "752" + "$ref": "753" }, "optional": false, "readOnly": true, @@ -66578,13 +66771,13 @@ "isHttpMetadata": false }, { - "$id": "5267", + "$id": "5280", "kind": "property", "name": "ImageResultBytes", "serializedName": "result", "doc": "The generated image encoded in base64.", "type": { - "$ref": "5035" + "$ref": "5048" }, "optional": false, "readOnly": false, @@ -66602,7 +66795,7 @@ ] }, "code_interpreter_call": { - "$id": "5268", + "$id": "5281", "kind": "model", "name": "CodeInterpreterToolCallItemResource", "namespace": "OpenAI", @@ -66617,16 +66810,16 @@ } ], "baseModel": { - "$ref": "5194" + "$ref": "5207" }, "properties": [ { - "$id": "5269", + "$id": "5282", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5039" + "$ref": "5052" }, "optional": false, "readOnly": false, @@ -66642,12 +66835,12 @@ "isHttpMetadata": false }, { - "$id": "5270", + "$id": "5283", "kind": "property", "name": "status", "serializedName": "status", "type": { - "$ref": "758" + "$ref": "759" }, "optional": false, "readOnly": true, @@ -66663,13 +66856,13 @@ "isHttpMetadata": false }, { - "$id": "5271", + "$id": "5284", "kind": "property", "name": "container_id", "serializedName": "container_id", "doc": "The ID of the container used to run the code.", "type": { - "$id": "5272", + "$id": "5285", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66689,13 +66882,13 @@ "isHttpMetadata": false }, { - "$id": "5273", + "$id": "5286", "kind": "property", "name": "code", "serializedName": "code", "doc": "The code to run.", "type": { - "$id": "5274", + "$id": "5287", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66715,13 +66908,13 @@ "isHttpMetadata": false }, { - "$id": "5275", + "$id": "5288", "kind": "property", "name": "outputs", "serializedName": "outputs", "doc": "The outputs of the code interpreter tool call.", "type": { - "$ref": "5045" + "$ref": "5058" }, "optional": true, "readOnly": false, @@ -66739,7 +66932,7 @@ ] }, "local_shell_call": { - "$id": "5276", + "$id": "5289", "kind": "model", "name": "LocalShellToolCallItemResource", "namespace": "OpenAI", @@ -66754,16 +66947,16 @@ } ], "baseModel": { - "$ref": "5194" + "$ref": "5207" }, "properties": [ { - "$id": "5277", + "$id": "5290", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5064" + "$ref": "5077" }, "optional": false, "readOnly": false, @@ -66779,12 +66972,12 @@ "isHttpMetadata": false }, { - "$id": "5278", + "$id": "5291", "kind": "property", "name": "status", "serializedName": "status", "type": { - "$ref": "763" + "$ref": "764" }, "optional": false, "readOnly": false, @@ -66800,13 +66993,13 @@ "isHttpMetadata": false }, { - "$id": "5279", + "$id": "5292", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the local shell tool call generated by the model.", "type": { - "$id": "5280", + "$id": "5293", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66826,12 +67019,12 @@ "isHttpMetadata": false }, { - "$id": "5281", + "$id": "5294", "kind": "property", "name": "action", "serializedName": "action", "type": { - "$ref": "5068" + "$ref": "5081" }, "optional": false, "readOnly": false, @@ -66849,7 +67042,7 @@ ] }, "local_shell_call_output": { - "$id": "5282", + "$id": "5295", "kind": "model", "name": "LocalShellToolCallOutputItemResource", "namespace": "OpenAI", @@ -66864,16 +67057,16 @@ } ], "baseModel": { - "$ref": "5194" + "$ref": "5207" }, "properties": [ { - "$id": "5283", + "$id": "5296", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5083" + "$ref": "5096" }, "optional": false, "readOnly": false, @@ -66889,12 +67082,12 @@ "isHttpMetadata": false }, { - "$id": "5284", + "$id": "5297", "kind": "property", "name": "status", "serializedName": "status", "type": { - "$ref": "768" + "$ref": "769" }, "optional": false, "readOnly": false, @@ -66910,13 +67103,13 @@ "isHttpMetadata": false }, { - "$id": "5285", + "$id": "5298", "kind": "property", "name": "output", "serializedName": "output", "doc": "A JSON string of the output of the local shell tool call.", "type": { - "$id": "5286", + "$id": "5299", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66938,7 +67131,7 @@ ] }, "mcp_list_tools": { - "$id": "5287", + "$id": "5300", "kind": "model", "name": "MCPListToolsItemResource", "namespace": "OpenAI", @@ -66953,16 +67146,16 @@ } ], "baseModel": { - "$ref": "5194" + "$ref": "5207" }, "properties": [ { - "$id": "5288", + "$id": "5301", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5088" + "$ref": "5101" }, "optional": false, "readOnly": false, @@ -66978,13 +67171,13 @@ "isHttpMetadata": false }, { - "$id": "5289", + "$id": "5302", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server.", "type": { - "$id": "5290", + "$id": "5303", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67004,13 +67197,13 @@ "isHttpMetadata": false }, { - "$id": "5291", + "$id": "5304", "kind": "property", "name": "ToolDefinitions", "serializedName": "tools", "doc": "The tools available on the server.", "type": { - "$ref": "5092" + "$ref": "5105" }, "optional": false, "readOnly": false, @@ -67026,16 +67219,16 @@ "isHttpMetadata": false }, { - "$id": "5292", + "$id": "5305", "kind": "property", "name": "error", "serializedName": "error", "doc": "Error message if the server could not list tools.", "type": { - "$id": "5293", + "$id": "5306", "kind": "nullable", "type": { - "$id": "5294", + "$id": "5307", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -67059,7 +67252,7 @@ ] }, "mcp_approval_request": { - "$id": "5295", + "$id": "5308", "kind": "model", "name": "MCPApprovalRequestItemResource", "namespace": "OpenAI", @@ -67074,16 +67267,16 @@ } ], "baseModel": { - "$ref": "5194" + "$ref": "5207" }, "properties": [ { - "$id": "5296", + "$id": "5309", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5109" + "$ref": "5122" }, "optional": false, "readOnly": false, @@ -67099,13 +67292,13 @@ "isHttpMetadata": false }, { - "$id": "5297", + "$id": "5310", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server making the request.", "type": { - "$id": "5298", + "$id": "5311", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67125,13 +67318,13 @@ "isHttpMetadata": false }, { - "$id": "5299", + "$id": "5312", "kind": "property", "name": "ToolName", "serializedName": "name", "doc": "The name of the tool to run.", "type": { - "$id": "5300", + "$id": "5313", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67151,13 +67344,13 @@ "isHttpMetadata": false }, { - "$id": "5301", + "$id": "5314", "kind": "property", "name": "ToolArguments", "serializedName": "arguments", "doc": "A JSON string of arguments for the tool.", "type": { - "$id": "5302", + "$id": "5315", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -67179,7 +67372,7 @@ ] }, "mcp_call": { - "$id": "5303", + "$id": "5316", "kind": "model", "name": "MCPCallItemResource", "namespace": "OpenAI", @@ -67194,16 +67387,16 @@ } ], "baseModel": { - "$ref": "5194" + "$ref": "5207" }, "properties": [ { - "$id": "5304", + "$id": "5317", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5128" + "$ref": "5141" }, "optional": false, "readOnly": false, @@ -67219,13 +67412,13 @@ "isHttpMetadata": false }, { - "$id": "5305", + "$id": "5318", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server running the tool.", "type": { - "$id": "5306", + "$id": "5319", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67245,13 +67438,13 @@ "isHttpMetadata": false }, { - "$id": "5307", + "$id": "5320", "kind": "property", "name": "ToolName", "serializedName": "name", "doc": "The name of the tool that was run.", "type": { - "$id": "5308", + "$id": "5321", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67271,13 +67464,13 @@ "isHttpMetadata": false }, { - "$id": "5309", + "$id": "5322", "kind": "property", "name": "ToolArguments", "serializedName": "arguments", "doc": "A JSON string of the arguments passed to the tool.", "type": { - "$id": "5310", + "$id": "5323", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -67297,13 +67490,13 @@ "isHttpMetadata": false }, { - "$id": "5311", + "$id": "5324", "kind": "property", "name": "ToolOutput", "serializedName": "output", "doc": "The output from the tool call.", "type": { - "$ref": "5136" + "$ref": "5149" }, "optional": true, "readOnly": false, @@ -67319,16 +67512,16 @@ "isHttpMetadata": false }, { - "$id": "5312", + "$id": "5325", "kind": "property", "name": "error", "serializedName": "error", "doc": "The error from the tool call, if any.", "type": { - "$id": "5313", + "$id": "5326", "kind": "nullable", "type": { - "$id": "5314", + "$id": "5327", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -67352,7 +67545,7 @@ ] }, "item_reference": { - "$id": "5315", + "$id": "5328", "kind": "model", "name": "DotNetItemReferenceItemResource", "namespace": "OpenAI", @@ -67367,16 +67560,16 @@ } ], "baseModel": { - "$ref": "5194" + "$ref": "5207" }, "properties": [ { - "$id": "5316", + "$id": "5329", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5028" + "$ref": "5041" }, "optional": false, "readOnly": false, @@ -67412,16 +67605,16 @@ "isHttpMetadata": false }, { - "$id": "5317", + "$id": "5330", "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": "5318", + "$id": "5331", "kind": "nullable", "type": { - "$id": "5319", + "$id": "5332", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67443,12 +67636,12 @@ "isHttpMetadata": false }, { - "$id": "5320", + "$id": "5333", "kind": "property", "name": "usage", "serializedName": "usage", "type": { - "$id": "5321", + "$id": "5334", "kind": "model", "name": "ResponseUsage", "namespace": "OpenAI", @@ -67463,13 +67656,13 @@ ], "properties": [ { - "$id": "5322", + "$id": "5335", "kind": "property", "name": "input_tokens", "serializedName": "input_tokens", "doc": "The number of input tokens.", "type": { - "$id": "5323", + "$id": "5336", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67489,13 +67682,13 @@ "isHttpMetadata": false }, { - "$id": "5324", + "$id": "5337", "kind": "property", "name": "input_tokens_details", "serializedName": "input_tokens_details", "doc": "A detailed breakdown of the input tokens.", "type": { - "$id": "5325", + "$id": "5338", "kind": "model", "name": "ResponseUsageInputTokensDetails", "namespace": "OpenAI", @@ -67504,13 +67697,13 @@ "decorators": [], "properties": [ { - "$id": "5326", + "$id": "5339", "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": "5327", + "$id": "5340", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67545,13 +67738,13 @@ "isHttpMetadata": false }, { - "$id": "5328", + "$id": "5341", "kind": "property", "name": "output_tokens", "serializedName": "output_tokens", "doc": "The number of output tokens.", "type": { - "$id": "5329", + "$id": "5342", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67571,13 +67764,13 @@ "isHttpMetadata": false }, { - "$id": "5330", + "$id": "5343", "kind": "property", "name": "output_tokens_details", "serializedName": "output_tokens_details", "doc": "A detailed breakdown of the output tokens.", "type": { - "$id": "5331", + "$id": "5344", "kind": "model", "name": "ResponseUsageOutputTokensDetails", "namespace": "OpenAI", @@ -67586,13 +67779,13 @@ "decorators": [], "properties": [ { - "$id": "5332", + "$id": "5345", "kind": "property", "name": "reasoning_tokens", "serializedName": "reasoning_tokens", "doc": "The number of reasoning tokens.", "type": { - "$id": "5333", + "$id": "5346", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67627,13 +67820,13 @@ "isHttpMetadata": false }, { - "$id": "5334", + "$id": "5347", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens used.", "type": { - "$id": "5335", + "$id": "5348", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67668,13 +67861,13 @@ "isHttpMetadata": false }, { - "$id": "5336", + "$id": "5349", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "doc": "Whether to allow the model to run tool calls in parallel.", "type": { - "$id": "5337", + "$id": "5350", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -67696,88 +67889,88 @@ ] }, { - "$ref": "5184" + "$ref": "5197" }, { - "$ref": "5190" + "$ref": "5203" }, { - "$ref": "5194" + "$ref": "5207" }, { - "$ref": "5198" + "$ref": "5211" }, { - "$ref": "5202" + "$ref": "5215" }, { - "$ref": "5205" + "$ref": "5218" }, { - "$ref": "5208" + "$ref": "5221" }, { - "$ref": "5211" + "$ref": "5224" }, { - "$ref": "5214" + "$ref": "5227" }, { - "$ref": "5221" + "$ref": "5234" }, { - "$ref": "5230" + "$ref": "5243" }, { - "$ref": "5237" + "$ref": "5250" }, { - "$ref": "5244" + "$ref": "5257" }, { - "$ref": "5249" + "$ref": "5262" }, { - "$ref": "5256" + "$ref": "5269" }, { - "$ref": "5259" + "$ref": "5272" }, { - "$ref": "5264" + "$ref": "5277" }, { - "$ref": "5268" + "$ref": "5281" }, { - "$ref": "5276" + "$ref": "5289" }, { - "$ref": "5282" + "$ref": "5295" }, { - "$ref": "5287" + "$ref": "5300" }, { - "$ref": "5295" + "$ref": "5308" }, { - "$ref": "5303" + "$ref": "5316" }, { - "$ref": "5315" + "$ref": "5328" }, { - "$ref": "5321" + "$ref": "5334" }, { - "$ref": "5325" + "$ref": "5338" }, { - "$ref": "5331" + "$ref": "5344" }, { - "$id": "5338", + "$id": "5351", "kind": "model", "name": "ResponseStreamEvent", "namespace": "OpenAI", @@ -67790,11 +67983,11 @@ } ], "discriminatorProperty": { - "$id": "5339", + "$id": "5352", "kind": "property", "name": "type", "type": { - "$ref": "773" + "$ref": "774" }, "optional": false, "readOnly": false, @@ -67807,15 +68000,15 @@ }, "properties": [ { - "$ref": "5339" + "$ref": "5352" }, { - "$id": "5340", + "$id": "5353", "kind": "property", "name": "sequence_number", "doc": "The sequence number for this event.", "type": { - "$id": "5341", + "$id": "5354", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67833,7 +68026,7 @@ ], "discriminatedSubtypes": { "response.completed": { - "$id": "5342", + "$id": "5355", "kind": "model", "name": "ResponseCompletedEvent", "namespace": "OpenAI", @@ -67848,31 +68041,31 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5343", + "$id": "5356", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.completed`.", "type": { - "$id": "5344", + "$id": "5357", "kind": "enumvalue", "name": "response_completed", "value": "response.completed", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$id": "5345", + "$id": "5358", "kind": "enum", "decorators": [], "name": "ResponseStreamEventType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "5346", + "$id": "5359", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -67881,718 +68074,718 @@ }, "values": [ { - "$id": "5347", + "$id": "5360", "kind": "enumvalue", "decorators": [], "name": "response_audio_delta", "value": "response.audio.delta", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5348", + "$id": "5361", "kind": "enumvalue", "decorators": [], "name": "response_audio_done", "value": "response.audio.done", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5349", + "$id": "5362", "kind": "enumvalue", "decorators": [], "name": "response_audio_transcript_delta", "value": "response.audio_transcript.delta", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5350", + "$id": "5363", "kind": "enumvalue", "decorators": [], "name": "response_audio_transcript_done", "value": "response.audio_transcript.done", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5351", + "$id": "5364", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_code_delta", "value": "response.code_interpreter_call_code.delta", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5352", + "$id": "5365", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_code_done", "value": "response.code_interpreter_call_code.done", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5353", + "$id": "5366", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_completed", "value": "response.code_interpreter_call.completed", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5354", + "$id": "5367", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_in_progress", "value": "response.code_interpreter_call.in_progress", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5355", + "$id": "5368", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_interpreting", "value": "response.code_interpreter_call.interpreting", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5356", + "$id": "5369", "kind": "enumvalue", "decorators": [], "name": "response_completed", "value": "response.completed", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5357", + "$id": "5370", "kind": "enumvalue", "decorators": [], "name": "response_content_part_added", "value": "response.content_part.added", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5358", + "$id": "5371", "kind": "enumvalue", "decorators": [], "name": "response_content_part_done", "value": "response.content_part.done", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5359", + "$id": "5372", "kind": "enumvalue", "decorators": [], "name": "response_created", "value": "response.created", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5360", + "$id": "5373", "kind": "enumvalue", "decorators": [], "name": "error", "value": "error", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5361", + "$id": "5374", "kind": "enumvalue", "decorators": [], "name": "response_file_search_call_completed", "value": "response.file_search_call.completed", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5362", + "$id": "5375", "kind": "enumvalue", "decorators": [], "name": "response_file_search_call_in_progress", "value": "response.file_search_call.in_progress", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5363", + "$id": "5376", "kind": "enumvalue", "decorators": [], "name": "response_file_search_call_searching", "value": "response.file_search_call.searching", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5364", + "$id": "5377", "kind": "enumvalue", "decorators": [], "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5365", + "$id": "5378", "kind": "enumvalue", "decorators": [], "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5366", + "$id": "5379", "kind": "enumvalue", "decorators": [], "name": "response_in_progress", "value": "response.in_progress", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5367", + "$id": "5380", "kind": "enumvalue", "decorators": [], "name": "response_failed", "value": "response.failed", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5368", + "$id": "5381", "kind": "enumvalue", "decorators": [], "name": "response_incomplete", "value": "response.incomplete", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5369", + "$id": "5382", "kind": "enumvalue", "decorators": [], "name": "response_output_item_added", "value": "response.output_item.added", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5370", + "$id": "5383", "kind": "enumvalue", "decorators": [], "name": "response_output_item_done", "value": "response.output_item.done", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5371", + "$id": "5384", "kind": "enumvalue", "decorators": [], "name": "response_refusal_delta", "value": "response.refusal.delta", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5372", + "$id": "5385", "kind": "enumvalue", "decorators": [], "name": "response_refusal_done", "value": "response.refusal.done", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5373", + "$id": "5386", "kind": "enumvalue", "decorators": [], "name": "response_output_text_annotation_added", "value": "response.output_text.annotation.added", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5374", + "$id": "5387", "kind": "enumvalue", "decorators": [], "name": "response_output_text_delta", "value": "response.output_text.delta", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5375", + "$id": "5388", "kind": "enumvalue", "decorators": [], "name": "response_output_text_done", "value": "response.output_text.done", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5376", + "$id": "5389", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_part_added", "value": "response.reasoning_summary_part.added", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5377", + "$id": "5390", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_part_done", "value": "response.reasoning_summary_part.done", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5378", + "$id": "5391", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_text_delta", "value": "response.reasoning_summary_text.delta", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5379", + "$id": "5392", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_text_done", "value": "response.reasoning_summary_text.done", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5380", + "$id": "5393", "kind": "enumvalue", "decorators": [], "name": "response_web_search_call_completed", "value": "response.web_search_call.completed", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5381", + "$id": "5394", "kind": "enumvalue", "decorators": [], "name": "response_web_search_call_in_progress", "value": "response.web_search_call.in_progress", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5382", + "$id": "5395", "kind": "enumvalue", "decorators": [], "name": "response_web_search_call_searching", "value": "response.web_search_call.searching", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5383", + "$id": "5396", "kind": "enumvalue", "decorators": [], "name": "response_image_generation_call_completed", "value": "response.image_generation_call.completed", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5384", + "$id": "5397", "kind": "enumvalue", "decorators": [], "name": "response_image_generation_call_generating", "value": "response.image_generation_call.generating", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5385", + "$id": "5398", "kind": "enumvalue", "decorators": [], "name": "response_image_generation_call_in_progress", "value": "response.image_generation_call.in_progress", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5386", + "$id": "5399", "kind": "enumvalue", "decorators": [], "name": "response_image_generation_call_partial_image", "value": "response.image_generation_call.partial_image", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5387", + "$id": "5400", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_arguments_delta", "value": "response.mcp_call_arguments.delta", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5388", + "$id": "5401", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_arguments_done", "value": "response.mcp_call_arguments.done", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5389", + "$id": "5402", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_completed", "value": "response.mcp_call.completed", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5390", + "$id": "5403", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_failed", "value": "response.mcp_call.failed", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5391", + "$id": "5404", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_in_progress", "value": "response.mcp_call.in_progress", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5392", + "$id": "5405", "kind": "enumvalue", "decorators": [], "name": "response_mcp_list_tools_completed", "value": "response.mcp_list_tools.completed", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5393", + "$id": "5406", "kind": "enumvalue", "decorators": [], "name": "response_mcp_list_tools_failed", "value": "response.mcp_list_tools.failed", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5394", + "$id": "5407", "kind": "enumvalue", "decorators": [], "name": "response_mcp_list_tools_in_progress", "value": "response.mcp_list_tools.in_progress", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5395", + "$id": "5408", "kind": "enumvalue", "decorators": [], "name": "response_queued", "value": "response.queued", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5396", + "$id": "5409", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_delta", "value": "response.reasoning.delta", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5397", + "$id": "5410", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_done", "value": "response.reasoning.done", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5398", + "$id": "5411", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_delta", "value": "response.reasoning_summary.delta", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5399", + "$id": "5412", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_done", "value": "response.reasoning_summary.done", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5400", + "$id": "5413", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_text_delta", "value": "response.reasoning_text.delta", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } }, { - "$id": "5401", + "$id": "5414", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_text_done", "value": "response.reasoning_text.done", "valueType": { - "$ref": "5346" + "$ref": "5359" }, "enumType": { - "$ref": "5345" + "$ref": "5358" } } ], @@ -68617,12 +68810,12 @@ "isHttpMetadata": false }, { - "$id": "5402", + "$id": "5415", "kind": "property", "name": "response", "doc": "Properties of the completed response.", "type": { - "$ref": "5153" + "$ref": "5166" }, "optional": false, "readOnly": false, @@ -68636,7 +68829,7 @@ ] }, "response.content_part.added": { - "$id": "5403", + "$id": "5416", "kind": "model", "name": "ResponseContentPartAddedEvent", "namespace": "OpenAI", @@ -68651,24 +68844,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5404", + "$id": "5417", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.content_part.added`.", "type": { - "$id": "5405", + "$id": "5418", "kind": "enumvalue", "name": "response_content_part_added", "value": "response.content_part.added", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -68682,12 +68875,12 @@ "isHttpMetadata": false }, { - "$id": "5406", + "$id": "5419", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the content part was added to.", "type": { - "$id": "5407", + "$id": "5420", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -68703,12 +68896,12 @@ "isHttpMetadata": false }, { - "$id": "5408", + "$id": "5421", "kind": "property", "name": "output_index", "doc": "The index of the output item that the content part was added to.", "type": { - "$id": "5409", + "$id": "5422", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -68724,12 +68917,12 @@ "isHttpMetadata": false }, { - "$id": "5410", + "$id": "5423", "kind": "property", "name": "content_index", "doc": "The index of the content part that was added.", "type": { - "$id": "5411", + "$id": "5424", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -68745,12 +68938,12 @@ "isHttpMetadata": false }, { - "$id": "5412", + "$id": "5425", "kind": "property", "name": "part", "doc": "The content part that was added.", "type": { - "$ref": "4695" + "$ref": "4708" }, "optional": false, "readOnly": false, @@ -68764,7 +68957,7 @@ ] }, "response.content_part.done": { - "$id": "5413", + "$id": "5426", "kind": "model", "name": "ResponseContentPartDoneEvent", "namespace": "OpenAI", @@ -68779,24 +68972,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5414", + "$id": "5427", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.content_part.done`.", "type": { - "$id": "5415", + "$id": "5428", "kind": "enumvalue", "name": "response_content_part_done", "value": "response.content_part.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -68810,12 +69003,12 @@ "isHttpMetadata": false }, { - "$id": "5416", + "$id": "5429", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the content part was added to.", "type": { - "$id": "5417", + "$id": "5430", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -68831,12 +69024,12 @@ "isHttpMetadata": false }, { - "$id": "5418", + "$id": "5431", "kind": "property", "name": "output_index", "doc": "The index of the output item that the content part was added to.", "type": { - "$id": "5419", + "$id": "5432", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -68852,12 +69045,12 @@ "isHttpMetadata": false }, { - "$id": "5420", + "$id": "5433", "kind": "property", "name": "content_index", "doc": "The index of the content part that is done.", "type": { - "$id": "5421", + "$id": "5434", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -68873,12 +69066,12 @@ "isHttpMetadata": false }, { - "$id": "5422", + "$id": "5435", "kind": "property", "name": "part", "doc": "The content part that is done.", "type": { - "$ref": "4695" + "$ref": "4708" }, "optional": false, "readOnly": false, @@ -68892,7 +69085,7 @@ ] }, "response.created": { - "$id": "5423", + "$id": "5436", "kind": "model", "name": "ResponseCreatedEvent", "namespace": "OpenAI", @@ -68907,24 +69100,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5424", + "$id": "5437", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.created`.", "type": { - "$id": "5425", + "$id": "5438", "kind": "enumvalue", "name": "response_created", "value": "response.created", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -68938,12 +69131,12 @@ "isHttpMetadata": false }, { - "$id": "5426", + "$id": "5439", "kind": "property", "name": "response", "doc": "The response that was created.", "type": { - "$ref": "5153" + "$ref": "5166" }, "optional": false, "readOnly": false, @@ -68957,7 +69150,7 @@ ] }, "error": { - "$id": "5427", + "$id": "5440", "kind": "model", "name": "ResponseErrorEvent", "namespace": "OpenAI", @@ -68972,24 +69165,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5428", + "$id": "5441", "kind": "property", "name": "type", "doc": "The type of the event. Always `error`.", "type": { - "$id": "5429", + "$id": "5442", "kind": "enumvalue", "name": "error", "value": "error", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -69003,15 +69196,15 @@ "isHttpMetadata": false }, { - "$id": "5430", + "$id": "5443", "kind": "property", "name": "code", "doc": "The error code.", "type": { - "$id": "5431", + "$id": "5444", "kind": "nullable", "type": { - "$id": "5432", + "$id": "5445", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69029,12 +69222,12 @@ "isHttpMetadata": false }, { - "$id": "5433", + "$id": "5446", "kind": "property", "name": "message", "doc": "The error message.", "type": { - "$id": "5434", + "$id": "5447", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69050,15 +69243,15 @@ "isHttpMetadata": false }, { - "$id": "5435", + "$id": "5448", "kind": "property", "name": "param", "doc": "The error parameter.", "type": { - "$id": "5436", + "$id": "5449", "kind": "nullable", "type": { - "$id": "5437", + "$id": "5450", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69078,7 +69271,7 @@ ] }, "response.file_search_call.completed": { - "$id": "5438", + "$id": "5451", "kind": "model", "name": "ResponseFileSearchCallCompletedEvent", "namespace": "OpenAI", @@ -69093,24 +69286,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5439", + "$id": "5452", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.file_search_call.completed`.", "type": { - "$id": "5440", + "$id": "5453", "kind": "enumvalue", "name": "response_file_search_call_completed", "value": "response.file_search_call.completed", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -69124,12 +69317,12 @@ "isHttpMetadata": false }, { - "$id": "5441", + "$id": "5454", "kind": "property", "name": "output_index", "doc": "The index of the output item that the file search call is initiated.", "type": { - "$id": "5442", + "$id": "5455", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69145,12 +69338,12 @@ "isHttpMetadata": false }, { - "$id": "5443", + "$id": "5456", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the file search call is initiated.", "type": { - "$id": "5444", + "$id": "5457", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69168,7 +69361,7 @@ ] }, "response.file_search_call.in_progress": { - "$id": "5445", + "$id": "5458", "kind": "model", "name": "ResponseFileSearchCallInProgressEvent", "namespace": "OpenAI", @@ -69183,24 +69376,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5446", + "$id": "5459", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.file_search_call.in_progress`.", "type": { - "$id": "5447", + "$id": "5460", "kind": "enumvalue", "name": "response_file_search_call_in_progress", "value": "response.file_search_call.in_progress", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -69214,12 +69407,12 @@ "isHttpMetadata": false }, { - "$id": "5448", + "$id": "5461", "kind": "property", "name": "output_index", "doc": "The index of the output item that the file search call is initiated.", "type": { - "$id": "5449", + "$id": "5462", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69235,12 +69428,12 @@ "isHttpMetadata": false }, { - "$id": "5450", + "$id": "5463", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the file search call is initiated.", "type": { - "$id": "5451", + "$id": "5464", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69258,7 +69451,7 @@ ] }, "response.file_search_call.searching": { - "$id": "5452", + "$id": "5465", "kind": "model", "name": "ResponseFileSearchCallSearchingEvent", "namespace": "OpenAI", @@ -69273,24 +69466,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5453", + "$id": "5466", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.file_search_call.searching`.", "type": { - "$id": "5454", + "$id": "5467", "kind": "enumvalue", "name": "response_file_search_call_searching", "value": "response.file_search_call.searching", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -69304,12 +69497,12 @@ "isHttpMetadata": false }, { - "$id": "5455", + "$id": "5468", "kind": "property", "name": "output_index", "doc": "The index of the output item that the file search call is searching.", "type": { - "$id": "5456", + "$id": "5469", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69325,12 +69518,12 @@ "isHttpMetadata": false }, { - "$id": "5457", + "$id": "5470", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the file search call is initiated.", "type": { - "$id": "5458", + "$id": "5471", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69348,7 +69541,7 @@ ] }, "response.function_call_arguments.delta": { - "$id": "5459", + "$id": "5472", "kind": "model", "name": "ResponseFunctionCallArgumentsDeltaEvent", "namespace": "OpenAI", @@ -69363,24 +69556,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5460", + "$id": "5473", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.function_call_arguments.delta`.", "type": { - "$id": "5461", + "$id": "5474", "kind": "enumvalue", "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -69394,12 +69587,12 @@ "isHttpMetadata": false }, { - "$id": "5462", + "$id": "5475", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the function-call arguments delta is added to.", "type": { - "$id": "5463", + "$id": "5476", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69415,12 +69608,12 @@ "isHttpMetadata": false }, { - "$id": "5464", + "$id": "5477", "kind": "property", "name": "output_index", "doc": "The index of the output item that the function-call arguments delta is added to.", "type": { - "$id": "5465", + "$id": "5478", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69436,12 +69629,12 @@ "isHttpMetadata": false }, { - "$id": "5466", + "$id": "5479", "kind": "property", "name": "delta", "doc": "The function-call arguments delta that is added.", "type": { - "$id": "5467", + "$id": "5480", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -69459,7 +69652,7 @@ ] }, "response.function_call_arguments.done": { - "$id": "5468", + "$id": "5481", "kind": "model", "name": "ResponseFunctionCallArgumentsDoneEvent", "namespace": "OpenAI", @@ -69474,23 +69667,23 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5469", + "$id": "5482", "kind": "property", "name": "type", "type": { - "$id": "5470", + "$id": "5483", "kind": "enumvalue", "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -69504,12 +69697,12 @@ "isHttpMetadata": false }, { - "$id": "5471", + "$id": "5484", "kind": "property", "name": "item_id", "doc": "The ID of the item.", "type": { - "$id": "5472", + "$id": "5485", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69525,12 +69718,12 @@ "isHttpMetadata": false }, { - "$id": "5473", + "$id": "5486", "kind": "property", "name": "output_index", "doc": "The index of the output item.", "type": { - "$id": "5474", + "$id": "5487", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69546,12 +69739,12 @@ "isHttpMetadata": false }, { - "$id": "5475", + "$id": "5488", "kind": "property", "name": "arguments", "doc": "The function-call arguments.", "type": { - "$id": "5476", + "$id": "5489", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -69569,7 +69762,7 @@ ] }, "response.in_progress": { - "$id": "5477", + "$id": "5490", "kind": "model", "name": "ResponseInProgressEvent", "namespace": "OpenAI", @@ -69584,24 +69777,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5478", + "$id": "5491", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.in_progress`.", "type": { - "$id": "5479", + "$id": "5492", "kind": "enumvalue", "name": "response_in_progress", "value": "response.in_progress", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -69615,12 +69808,12 @@ "isHttpMetadata": false }, { - "$id": "5480", + "$id": "5493", "kind": "property", "name": "response", "doc": "The response that is in progress.", "type": { - "$ref": "5153" + "$ref": "5166" }, "optional": false, "readOnly": false, @@ -69634,7 +69827,7 @@ ] }, "response.failed": { - "$id": "5481", + "$id": "5494", "kind": "model", "name": "ResponseFailedEvent", "namespace": "OpenAI", @@ -69649,24 +69842,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5482", + "$id": "5495", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.failed`.", "type": { - "$id": "5483", + "$id": "5496", "kind": "enumvalue", "name": "response_failed", "value": "response.failed", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -69680,12 +69873,12 @@ "isHttpMetadata": false }, { - "$id": "5484", + "$id": "5497", "kind": "property", "name": "response", "doc": "The response that failed.", "type": { - "$ref": "5153" + "$ref": "5166" }, "optional": false, "readOnly": false, @@ -69699,7 +69892,7 @@ ] }, "response.incomplete": { - "$id": "5485", + "$id": "5498", "kind": "model", "name": "ResponseIncompleteEvent", "namespace": "OpenAI", @@ -69714,24 +69907,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5486", + "$id": "5499", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.incomplete`.", "type": { - "$id": "5487", + "$id": "5500", "kind": "enumvalue", "name": "response_incomplete", "value": "response.incomplete", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -69745,12 +69938,12 @@ "isHttpMetadata": false }, { - "$id": "5488", + "$id": "5501", "kind": "property", "name": "response", "doc": "The response that was incomplete.", "type": { - "$ref": "5153" + "$ref": "5166" }, "optional": false, "readOnly": false, @@ -69764,7 +69957,7 @@ ] }, "response.output_item.added": { - "$id": "5489", + "$id": "5502", "kind": "model", "name": "ResponseOutputItemAddedEvent", "namespace": "OpenAI", @@ -69779,24 +69972,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5490", + "$id": "5503", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.output_item.added`.", "type": { - "$id": "5491", + "$id": "5504", "kind": "enumvalue", "name": "response_output_item_added", "value": "response.output_item.added", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -69810,12 +70003,12 @@ "isHttpMetadata": false }, { - "$id": "5492", + "$id": "5505", "kind": "property", "name": "output_index", "doc": "The index of the output item that was added.", "type": { - "$id": "5493", + "$id": "5506", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69831,12 +70024,12 @@ "isHttpMetadata": false }, { - "$id": "5494", + "$id": "5507", "kind": "property", "name": "item", "doc": "The output item that was added.", "type": { - "$ref": "5194" + "$ref": "5207" }, "optional": false, "readOnly": false, @@ -69850,7 +70043,7 @@ ] }, "response.output_item.done": { - "$id": "5495", + "$id": "5508", "kind": "model", "name": "ResponseOutputItemDoneEvent", "namespace": "OpenAI", @@ -69865,24 +70058,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5496", + "$id": "5509", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.output_item.done`.", "type": { - "$id": "5497", + "$id": "5510", "kind": "enumvalue", "name": "response_output_item_done", "value": "response.output_item.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -69896,12 +70089,12 @@ "isHttpMetadata": false }, { - "$id": "5498", + "$id": "5511", "kind": "property", "name": "output_index", "doc": "The index of the output item that was marked done.", "type": { - "$id": "5499", + "$id": "5512", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69917,12 +70110,12 @@ "isHttpMetadata": false }, { - "$id": "5500", + "$id": "5513", "kind": "property", "name": "item", "doc": "The output item that was marked done.", "type": { - "$ref": "5194" + "$ref": "5207" }, "optional": false, "readOnly": false, @@ -69936,7 +70129,7 @@ ] }, "response.refusal.delta": { - "$id": "5501", + "$id": "5514", "kind": "model", "name": "ResponseRefusalDeltaEvent", "namespace": "OpenAI", @@ -69951,24 +70144,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5502", + "$id": "5515", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.refusal.delta`.", "type": { - "$id": "5503", + "$id": "5516", "kind": "enumvalue", "name": "response_refusal_delta", "value": "response.refusal.delta", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -69982,12 +70175,12 @@ "isHttpMetadata": false }, { - "$id": "5504", + "$id": "5517", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the refusal text is added to.", "type": { - "$id": "5505", + "$id": "5518", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70003,12 +70196,12 @@ "isHttpMetadata": false }, { - "$id": "5506", + "$id": "5519", "kind": "property", "name": "output_index", "doc": "The index of the output item that the refusal text is added to.", "type": { - "$id": "5507", + "$id": "5520", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70024,12 +70217,12 @@ "isHttpMetadata": false }, { - "$id": "5508", + "$id": "5521", "kind": "property", "name": "content_index", "doc": "The index of the content part that the refusal text is added to.", "type": { - "$id": "5509", + "$id": "5522", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70045,12 +70238,12 @@ "isHttpMetadata": false }, { - "$id": "5510", + "$id": "5523", "kind": "property", "name": "delta", "doc": "The refusal text that is added.", "type": { - "$id": "5511", + "$id": "5524", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70068,7 +70261,7 @@ ] }, "response.refusal.done": { - "$id": "5512", + "$id": "5525", "kind": "model", "name": "ResponseRefusalDoneEvent", "namespace": "OpenAI", @@ -70083,24 +70276,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5513", + "$id": "5526", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.refusal.done`.", "type": { - "$id": "5514", + "$id": "5527", "kind": "enumvalue", "name": "response_refusal_done", "value": "response.refusal.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -70114,12 +70307,12 @@ "isHttpMetadata": false }, { - "$id": "5515", + "$id": "5528", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the refusal text is finalized.", "type": { - "$id": "5516", + "$id": "5529", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70135,12 +70328,12 @@ "isHttpMetadata": false }, { - "$id": "5517", + "$id": "5530", "kind": "property", "name": "output_index", "doc": "The index of the output item that the refusal text is finalized.", "type": { - "$id": "5518", + "$id": "5531", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70156,12 +70349,12 @@ "isHttpMetadata": false }, { - "$id": "5519", + "$id": "5532", "kind": "property", "name": "content_index", "doc": "The index of the content part that the refusal text is finalized.", "type": { - "$id": "5520", + "$id": "5533", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70177,12 +70370,12 @@ "isHttpMetadata": false }, { - "$id": "5521", + "$id": "5534", "kind": "property", "name": "refusal", "doc": "The refusal text that is finalized.", "type": { - "$id": "5522", + "$id": "5535", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70200,7 +70393,7 @@ ] }, "response.output_text.delta": { - "$id": "5523", + "$id": "5536", "kind": "model", "name": "ResponseTextDeltaEvent", "namespace": "OpenAI", @@ -70215,24 +70408,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5524", + "$id": "5537", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.output_text.delta`.", "type": { - "$id": "5525", + "$id": "5538", "kind": "enumvalue", "name": "response_output_text_delta", "value": "response.output_text.delta", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -70246,12 +70439,12 @@ "isHttpMetadata": false }, { - "$id": "5526", + "$id": "5539", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the text delta was added to.", "type": { - "$id": "5527", + "$id": "5540", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70267,12 +70460,12 @@ "isHttpMetadata": false }, { - "$id": "5528", + "$id": "5541", "kind": "property", "name": "output_index", "doc": "The index of the output item that the text delta was added to.", "type": { - "$id": "5529", + "$id": "5542", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70288,12 +70481,12 @@ "isHttpMetadata": false }, { - "$id": "5530", + "$id": "5543", "kind": "property", "name": "content_index", "doc": "The index of the content part that the text delta was added to.", "type": { - "$id": "5531", + "$id": "5544", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70309,12 +70502,12 @@ "isHttpMetadata": false }, { - "$id": "5532", + "$id": "5545", "kind": "property", "name": "delta", "doc": "The text delta that was added.", "type": { - "$id": "5533", + "$id": "5546", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70332,7 +70525,7 @@ ] }, "response.output_text.done": { - "$id": "5534", + "$id": "5547", "kind": "model", "name": "ResponseTextDoneEvent", "namespace": "OpenAI", @@ -70347,24 +70540,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5535", + "$id": "5548", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.output_text.done`.", "type": { - "$id": "5536", + "$id": "5549", "kind": "enumvalue", "name": "response_output_text_done", "value": "response.output_text.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -70378,12 +70571,12 @@ "isHttpMetadata": false }, { - "$id": "5537", + "$id": "5550", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the text content is finalized.", "type": { - "$id": "5538", + "$id": "5551", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70399,12 +70592,12 @@ "isHttpMetadata": false }, { - "$id": "5539", + "$id": "5552", "kind": "property", "name": "output_index", "doc": "The index of the output item that the text content is finalized.", "type": { - "$id": "5540", + "$id": "5553", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70420,12 +70613,12 @@ "isHttpMetadata": false }, { - "$id": "5541", + "$id": "5554", "kind": "property", "name": "content_index", "doc": "The index of the content part that the text content is finalized.", "type": { - "$id": "5542", + "$id": "5555", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70441,12 +70634,12 @@ "isHttpMetadata": false }, { - "$id": "5543", + "$id": "5556", "kind": "property", "name": "text", "doc": "The text content that is finalized.", "type": { - "$id": "5544", + "$id": "5557", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70464,7 +70657,7 @@ ] }, "response.reasoning_summary_part.added": { - "$id": "5545", + "$id": "5558", "kind": "model", "name": "ResponseReasoningSummaryPartAddedEvent", "namespace": "OpenAI", @@ -70479,24 +70672,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5546", + "$id": "5559", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.reasoning_summary_part.added`.", "type": { - "$id": "5547", + "$id": "5560", "kind": "enumvalue", "name": "response_reasoning_summary_part_added", "value": "response.reasoning_summary_part.added", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -70510,12 +70703,12 @@ "isHttpMetadata": false }, { - "$id": "5548", + "$id": "5561", "kind": "property", "name": "item_id", "doc": "The ID of the item this summary part is associated with.", "type": { - "$id": "5549", + "$id": "5562", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70531,12 +70724,12 @@ "isHttpMetadata": false }, { - "$id": "5550", + "$id": "5563", "kind": "property", "name": "output_index", "doc": "The index of the output item this summary part is associated with.", "type": { - "$id": "5551", + "$id": "5564", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70552,12 +70745,12 @@ "isHttpMetadata": false }, { - "$id": "5552", + "$id": "5565", "kind": "property", "name": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "5553", + "$id": "5566", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70573,12 +70766,12 @@ "isHttpMetadata": false }, { - "$id": "5554", + "$id": "5567", "kind": "property", "name": "part", "doc": "The summary part that was added.", "type": { - "$ref": "5016" + "$ref": "5029" }, "optional": false, "readOnly": false, @@ -70592,7 +70785,7 @@ ] }, "response.reasoning_summary_part.done": { - "$id": "5555", + "$id": "5568", "kind": "model", "name": "ResponseReasoningSummaryPartDoneEvent", "namespace": "OpenAI", @@ -70607,24 +70800,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5556", + "$id": "5569", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.reasoning_summary_part.done`.", "type": { - "$id": "5557", + "$id": "5570", "kind": "enumvalue", "name": "response_reasoning_summary_part_done", "value": "response.reasoning_summary_part.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -70638,12 +70831,12 @@ "isHttpMetadata": false }, { - "$id": "5558", + "$id": "5571", "kind": "property", "name": "item_id", "doc": "The ID of the item this summary part is associated with.", "type": { - "$id": "5559", + "$id": "5572", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70659,12 +70852,12 @@ "isHttpMetadata": false }, { - "$id": "5560", + "$id": "5573", "kind": "property", "name": "output_index", "doc": "The index of the output item this summary part is associated with.", "type": { - "$id": "5561", + "$id": "5574", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70680,12 +70873,12 @@ "isHttpMetadata": false }, { - "$id": "5562", + "$id": "5575", "kind": "property", "name": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "5563", + "$id": "5576", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70701,12 +70894,12 @@ "isHttpMetadata": false }, { - "$id": "5564", + "$id": "5577", "kind": "property", "name": "part", "doc": "The completed summary part.", "type": { - "$ref": "5016" + "$ref": "5029" }, "optional": false, "readOnly": false, @@ -70720,7 +70913,7 @@ ] }, "response.reasoning_summary_text.delta": { - "$id": "5565", + "$id": "5578", "kind": "model", "name": "ResponseReasoningSummaryTextDeltaEvent", "namespace": "OpenAI", @@ -70735,24 +70928,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5566", + "$id": "5579", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.reasoning_summary_text.delta`.", "type": { - "$id": "5567", + "$id": "5580", "kind": "enumvalue", "name": "response_reasoning_summary_text_delta", "value": "response.reasoning_summary_text.delta", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -70766,12 +70959,12 @@ "isHttpMetadata": false }, { - "$id": "5568", + "$id": "5581", "kind": "property", "name": "item_id", "doc": "The ID of the item this summary text delta is associated with.", "type": { - "$id": "5569", + "$id": "5582", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70787,12 +70980,12 @@ "isHttpMetadata": false }, { - "$id": "5570", + "$id": "5583", "kind": "property", "name": "output_index", "doc": "The index of the output item this summary text delta is associated with.", "type": { - "$id": "5571", + "$id": "5584", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70808,12 +71001,12 @@ "isHttpMetadata": false }, { - "$id": "5572", + "$id": "5585", "kind": "property", "name": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "5573", + "$id": "5586", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70829,12 +71022,12 @@ "isHttpMetadata": false }, { - "$id": "5574", + "$id": "5587", "kind": "property", "name": "delta", "doc": "The text delta that was added to the summary.", "type": { - "$id": "5575", + "$id": "5588", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70852,7 +71045,7 @@ ] }, "response.reasoning_summary_text.done": { - "$id": "5576", + "$id": "5589", "kind": "model", "name": "ResponseReasoningSummaryTextDoneEvent", "namespace": "OpenAI", @@ -70867,24 +71060,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5577", + "$id": "5590", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.reasoning_summary_text.done`.", "type": { - "$id": "5578", + "$id": "5591", "kind": "enumvalue", "name": "response_reasoning_summary_text_done", "value": "response.reasoning_summary_text.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -70898,12 +71091,12 @@ "isHttpMetadata": false }, { - "$id": "5579", + "$id": "5592", "kind": "property", "name": "item_id", "doc": "The ID of the item this summary text is associated with.", "type": { - "$id": "5580", + "$id": "5593", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70919,12 +71112,12 @@ "isHttpMetadata": false }, { - "$id": "5581", + "$id": "5594", "kind": "property", "name": "output_index", "doc": "The index of the output item this summary text is associated with.", "type": { - "$id": "5582", + "$id": "5595", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70940,12 +71133,12 @@ "isHttpMetadata": false }, { - "$id": "5583", + "$id": "5596", "kind": "property", "name": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "5584", + "$id": "5597", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70961,12 +71154,12 @@ "isHttpMetadata": false }, { - "$id": "5585", + "$id": "5598", "kind": "property", "name": "text", "doc": "The full text of the completed reasoning summary.", "type": { - "$id": "5586", + "$id": "5599", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70984,7 +71177,7 @@ ] }, "response.reasoning_text.delta": { - "$id": "5587", + "$id": "5600", "kind": "model", "name": "ResponseReasoningTextDeltaEvent", "namespace": "OpenAI", @@ -70994,24 +71187,24 @@ "discriminatorValue": "response.reasoning_text.delta", "decorators": [], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5588", + "$id": "5601", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.reasoning_text.delta`.", "type": { - "$id": "5589", + "$id": "5602", "kind": "enumvalue", "name": "response_reasoning_text_delta", "value": "response.reasoning_text.delta", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -71025,12 +71218,12 @@ "isHttpMetadata": false }, { - "$id": "5590", + "$id": "5603", "kind": "property", "name": "item_id", "doc": "The ID of the item this reasoning text delta is associated with.", "type": { - "$id": "5591", + "$id": "5604", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71046,12 +71239,12 @@ "isHttpMetadata": false }, { - "$id": "5592", + "$id": "5605", "kind": "property", "name": "output_index", "doc": "The index of the output item this reasoning text delta is associated with.", "type": { - "$id": "5593", + "$id": "5606", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71067,12 +71260,12 @@ "isHttpMetadata": false }, { - "$id": "5594", + "$id": "5607", "kind": "property", "name": "content_index", "doc": "The index of the reasoning content part this delta is associated with.", "type": { - "$id": "5595", + "$id": "5608", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71088,12 +71281,12 @@ "isHttpMetadata": false }, { - "$id": "5596", + "$id": "5609", "kind": "property", "name": "delta", "doc": "The text delta that was added to the reasoning content.", "type": { - "$id": "5597", + "$id": "5610", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71111,7 +71304,7 @@ ] }, "response.reasoning_text.done": { - "$id": "5598", + "$id": "5611", "kind": "model", "name": "ResponseReasoningTextDoneEvent", "namespace": "OpenAI", @@ -71121,24 +71314,24 @@ "discriminatorValue": "response.reasoning_text.done", "decorators": [], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5599", + "$id": "5612", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.reasoning_text.done`.", "type": { - "$id": "5600", + "$id": "5613", "kind": "enumvalue", "name": "response_reasoning_text_done", "value": "response.reasoning_text.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -71152,12 +71345,12 @@ "isHttpMetadata": false }, { - "$id": "5601", + "$id": "5614", "kind": "property", "name": "item_id", "doc": "The ID of the item this reasoning text is associated with.", "type": { - "$id": "5602", + "$id": "5615", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71173,12 +71366,12 @@ "isHttpMetadata": false }, { - "$id": "5603", + "$id": "5616", "kind": "property", "name": "output_index", "doc": "The index of the output item this reasoning text is associated with.", "type": { - "$id": "5604", + "$id": "5617", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71194,12 +71387,12 @@ "isHttpMetadata": false }, { - "$id": "5605", + "$id": "5618", "kind": "property", "name": "content_index", "doc": "The index of the reasoning content part.", "type": { - "$id": "5606", + "$id": "5619", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71215,12 +71408,12 @@ "isHttpMetadata": false }, { - "$id": "5607", + "$id": "5620", "kind": "property", "name": "text", "doc": "The full text of the completed reasoning content.", "type": { - "$id": "5608", + "$id": "5621", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71238,7 +71431,7 @@ ] }, "response.web_search_call.completed": { - "$id": "5609", + "$id": "5622", "kind": "model", "name": "ResponseWebSearchCallCompletedEvent", "namespace": "OpenAI", @@ -71253,24 +71446,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5610", + "$id": "5623", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.web_search_call.completed`.", "type": { - "$id": "5611", + "$id": "5624", "kind": "enumvalue", "name": "response_web_search_call_completed", "value": "response.web_search_call.completed", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -71284,12 +71477,12 @@ "isHttpMetadata": false }, { - "$id": "5612", + "$id": "5625", "kind": "property", "name": "output_index", "doc": "The index of the output item that the web search call is associated with.", "type": { - "$id": "5613", + "$id": "5626", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71305,12 +71498,12 @@ "isHttpMetadata": false }, { - "$id": "5614", + "$id": "5627", "kind": "property", "name": "item_id", "doc": "Unique ID for the output item associated with the web search call.", "type": { - "$id": "5615", + "$id": "5628", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71328,7 +71521,7 @@ ] }, "response.web_search_call.in_progress": { - "$id": "5616", + "$id": "5629", "kind": "model", "name": "ResponseWebSearchCallInProgressEvent", "namespace": "OpenAI", @@ -71343,24 +71536,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5617", + "$id": "5630", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.web_search_call.in_progress`.", "type": { - "$id": "5618", + "$id": "5631", "kind": "enumvalue", "name": "response_web_search_call_in_progress", "value": "response.web_search_call.in_progress", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -71374,12 +71567,12 @@ "isHttpMetadata": false }, { - "$id": "5619", + "$id": "5632", "kind": "property", "name": "output_index", "doc": "The index of the output item that the web search call is associated with.", "type": { - "$id": "5620", + "$id": "5633", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71395,12 +71588,12 @@ "isHttpMetadata": false }, { - "$id": "5621", + "$id": "5634", "kind": "property", "name": "item_id", "doc": "Unique ID for the output item associated with the web search call.", "type": { - "$id": "5622", + "$id": "5635", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71418,7 +71611,7 @@ ] }, "response.web_search_call.searching": { - "$id": "5623", + "$id": "5636", "kind": "model", "name": "ResponseWebSearchCallSearchingEvent", "namespace": "OpenAI", @@ -71433,24 +71626,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5624", + "$id": "5637", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.web_search_call.searching`.", "type": { - "$id": "5625", + "$id": "5638", "kind": "enumvalue", "name": "response_web_search_call_searching", "value": "response.web_search_call.searching", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -71464,12 +71657,12 @@ "isHttpMetadata": false }, { - "$id": "5626", + "$id": "5639", "kind": "property", "name": "output_index", "doc": "The index of the output item that the web search call is associated with.", "type": { - "$id": "5627", + "$id": "5640", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71485,12 +71678,12 @@ "isHttpMetadata": false }, { - "$id": "5628", + "$id": "5641", "kind": "property", "name": "item_id", "doc": "Unique ID for the output item associated with the web search call.", "type": { - "$id": "5629", + "$id": "5642", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71508,7 +71701,7 @@ ] }, "response.image_generation_call.completed": { - "$id": "5630", + "$id": "5643", "kind": "model", "name": "ResponseImageGenCallCompletedEvent", "namespace": "OpenAI", @@ -71523,24 +71716,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5631", + "$id": "5644", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.image_generation_call.completed'.", "type": { - "$id": "5632", + "$id": "5645", "kind": "enumvalue", "name": "response_image_generation_call_completed", "value": "response.image_generation_call.completed", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -71554,12 +71747,12 @@ "isHttpMetadata": false }, { - "$id": "5633", + "$id": "5646", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5634", + "$id": "5647", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71575,12 +71768,12 @@ "isHttpMetadata": false }, { - "$id": "5635", + "$id": "5648", "kind": "property", "name": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "5636", + "$id": "5649", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71598,7 +71791,7 @@ ] }, "response.image_generation_call.generating": { - "$id": "5637", + "$id": "5650", "kind": "model", "name": "ResponseImageGenCallGeneratingEvent", "namespace": "OpenAI", @@ -71613,24 +71806,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5638", + "$id": "5651", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.image_generation_call.generating'.", "type": { - "$id": "5639", + "$id": "5652", "kind": "enumvalue", "name": "response_image_generation_call_generating", "value": "response.image_generation_call.generating", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -71644,12 +71837,12 @@ "isHttpMetadata": false }, { - "$id": "5640", + "$id": "5653", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5641", + "$id": "5654", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71665,12 +71858,12 @@ "isHttpMetadata": false }, { - "$id": "5642", + "$id": "5655", "kind": "property", "name": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "5643", + "$id": "5656", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71688,7 +71881,7 @@ ] }, "response.image_generation_call.in_progress": { - "$id": "5644", + "$id": "5657", "kind": "model", "name": "ResponseImageGenCallInProgressEvent", "namespace": "OpenAI", @@ -71703,24 +71896,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5645", + "$id": "5658", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.image_generation_call.in_progress'.", "type": { - "$id": "5646", + "$id": "5659", "kind": "enumvalue", "name": "response_image_generation_call_in_progress", "value": "response.image_generation_call.in_progress", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -71734,12 +71927,12 @@ "isHttpMetadata": false }, { - "$id": "5647", + "$id": "5660", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5648", + "$id": "5661", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71755,12 +71948,12 @@ "isHttpMetadata": false }, { - "$id": "5649", + "$id": "5662", "kind": "property", "name": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "5650", + "$id": "5663", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71778,7 +71971,7 @@ ] }, "response.image_generation_call.partial_image": { - "$id": "5651", + "$id": "5664", "kind": "model", "name": "ResponseImageGenCallPartialImageEvent", "namespace": "OpenAI", @@ -71793,24 +71986,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5652", + "$id": "5665", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.image_generation_call.partial_image'.", "type": { - "$id": "5653", + "$id": "5666", "kind": "enumvalue", "name": "response_image_generation_call_partial_image", "value": "response.image_generation_call.partial_image", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -71824,12 +72017,12 @@ "isHttpMetadata": false }, { - "$id": "5654", + "$id": "5667", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5655", + "$id": "5668", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71845,12 +72038,12 @@ "isHttpMetadata": false }, { - "$id": "5656", + "$id": "5669", "kind": "property", "name": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "5657", + "$id": "5670", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71866,12 +72059,12 @@ "isHttpMetadata": false }, { - "$id": "5658", + "$id": "5671", "kind": "property", "name": "partial_image_index", "doc": "0-based index for the partial image (backend is 1-based, but this is 0-based for the user).", "type": { - "$id": "5659", + "$id": "5672", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71887,12 +72080,12 @@ "isHttpMetadata": false }, { - "$id": "5660", + "$id": "5673", "kind": "property", "name": "PartialImageBytes", "doc": "Base64-encoded partial image data, suitable for rendering as an image.", "type": { - "$id": "5661", + "$id": "5674", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -71911,7 +72104,7 @@ ] }, "response.mcp_call_arguments.delta": { - "$id": "5662", + "$id": "5675", "kind": "model", "name": "ResponseMCPCallArgumentsDeltaEvent", "namespace": "OpenAI", @@ -71926,24 +72119,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5663", + "$id": "5676", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_call.arguments_delta'.", "type": { - "$id": "5664", + "$id": "5677", "kind": "enumvalue", "name": "response_mcp_call_arguments_delta", "value": "response.mcp_call_arguments.delta", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -71957,12 +72150,12 @@ "isHttpMetadata": false }, { - "$id": "5665", + "$id": "5678", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5666", + "$id": "5679", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71978,12 +72171,12 @@ "isHttpMetadata": false }, { - "$id": "5667", + "$id": "5680", "kind": "property", "name": "item_id", "doc": "The unique identifier of the MCP tool call item being processed.", "type": { - "$id": "5668", + "$id": "5681", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71999,12 +72192,12 @@ "isHttpMetadata": false }, { - "$id": "5669", + "$id": "5682", "kind": "property", "name": "delta", "doc": "The partial update to the arguments for the MCP tool call.", "type": { - "$id": "5670", + "$id": "5683", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -72022,7 +72215,7 @@ ] }, "response.mcp_call_arguments.done": { - "$id": "5671", + "$id": "5684", "kind": "model", "name": "ResponseMCPCallArgumentsDoneEvent", "namespace": "OpenAI", @@ -72037,24 +72230,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5672", + "$id": "5685", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_call.arguments_done'.", "type": { - "$id": "5673", + "$id": "5686", "kind": "enumvalue", "name": "response_mcp_call_arguments_done", "value": "response.mcp_call_arguments.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -72068,12 +72261,12 @@ "isHttpMetadata": false }, { - "$id": "5674", + "$id": "5687", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5675", + "$id": "5688", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72089,12 +72282,12 @@ "isHttpMetadata": false }, { - "$id": "5676", + "$id": "5689", "kind": "property", "name": "item_id", "doc": "The unique identifier of the MCP tool call item being processed.", "type": { - "$id": "5677", + "$id": "5690", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72110,12 +72303,12 @@ "isHttpMetadata": false }, { - "$id": "5678", + "$id": "5691", "kind": "property", "name": "arguments", "doc": "A JSON string containing the finalized arguments for the MCP tool call.", "type": { - "$id": "5679", + "$id": "5692", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -72133,7 +72326,7 @@ ] }, "response.mcp_call.completed": { - "$id": "5680", + "$id": "5693", "kind": "model", "name": "ResponseMCPCallCompletedEvent", "namespace": "OpenAI", @@ -72148,24 +72341,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5681", + "$id": "5694", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_call.completed'.", "type": { - "$id": "5682", + "$id": "5695", "kind": "enumvalue", "name": "response_mcp_call_completed", "value": "response.mcp_call.completed", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -72179,12 +72372,12 @@ "isHttpMetadata": false }, { - "$id": "5683", + "$id": "5696", "kind": "property", "name": "item_id", "doc": "The ID of the MCP tool call item that completed.", "type": { - "$id": "5684", + "$id": "5697", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72200,12 +72393,12 @@ "isHttpMetadata": false }, { - "$id": "5685", + "$id": "5698", "kind": "property", "name": "output_index", "doc": "The index of the output item that completed.", "type": { - "$id": "5686", + "$id": "5699", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72223,7 +72416,7 @@ ] }, "response.mcp_call.failed": { - "$id": "5687", + "$id": "5700", "kind": "model", "name": "ResponseMCPCallFailedEvent", "namespace": "OpenAI", @@ -72238,24 +72431,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5688", + "$id": "5701", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_call.failed'.", "type": { - "$id": "5689", + "$id": "5702", "kind": "enumvalue", "name": "response_mcp_call_failed", "value": "response.mcp_call.failed", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -72269,12 +72462,12 @@ "isHttpMetadata": false }, { - "$id": "5690", + "$id": "5703", "kind": "property", "name": "item_id", "doc": "The ID of the MCP tool call item that failed.", "type": { - "$id": "5691", + "$id": "5704", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72290,12 +72483,12 @@ "isHttpMetadata": false }, { - "$id": "5692", + "$id": "5705", "kind": "property", "name": "output_index", "doc": "The index of the output item that failed.", "type": { - "$id": "5693", + "$id": "5706", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72313,7 +72506,7 @@ ] }, "response.mcp_call.in_progress": { - "$id": "5694", + "$id": "5707", "kind": "model", "name": "ResponseMCPCallInProgressEvent", "namespace": "OpenAI", @@ -72328,24 +72521,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5695", + "$id": "5708", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_call.in_progress'.", "type": { - "$id": "5696", + "$id": "5709", "kind": "enumvalue", "name": "response_mcp_call_in_progress", "value": "response.mcp_call.in_progress", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -72359,12 +72552,12 @@ "isHttpMetadata": false }, { - "$id": "5697", + "$id": "5710", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5698", + "$id": "5711", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72380,12 +72573,12 @@ "isHttpMetadata": false }, { - "$id": "5699", + "$id": "5712", "kind": "property", "name": "item_id", "doc": "The unique identifier of the MCP tool call item being processed.", "type": { - "$id": "5700", + "$id": "5713", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72403,7 +72596,7 @@ ] }, "response.mcp_list_tools.completed": { - "$id": "5701", + "$id": "5714", "kind": "model", "name": "ResponseMCPListToolsCompletedEvent", "namespace": "OpenAI", @@ -72418,24 +72611,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5702", + "$id": "5715", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_list_tools.completed'.", "type": { - "$id": "5703", + "$id": "5716", "kind": "enumvalue", "name": "response_mcp_list_tools_completed", "value": "response.mcp_list_tools.completed", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -72449,12 +72642,12 @@ "isHttpMetadata": false }, { - "$id": "5704", + "$id": "5717", "kind": "property", "name": "item_id", "doc": "The ID of the MCP tool call item that produced this output.", "type": { - "$id": "5705", + "$id": "5718", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72470,12 +72663,12 @@ "isHttpMetadata": false }, { - "$id": "5706", + "$id": "5719", "kind": "property", "name": "output_index", "doc": "The index of the output item that was processed.", "type": { - "$id": "5707", + "$id": "5720", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72493,7 +72686,7 @@ ] }, "response.mcp_list_tools.failed": { - "$id": "5708", + "$id": "5721", "kind": "model", "name": "ResponseMCPListToolsFailedEvent", "namespace": "OpenAI", @@ -72508,24 +72701,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5709", + "$id": "5722", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_list_tools.failed'.", "type": { - "$id": "5710", + "$id": "5723", "kind": "enumvalue", "name": "response_mcp_list_tools_failed", "value": "response.mcp_list_tools.failed", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -72539,12 +72732,12 @@ "isHttpMetadata": false }, { - "$id": "5711", + "$id": "5724", "kind": "property", "name": "item_id", "doc": "The ID of the MCP tool call item that failed.", "type": { - "$id": "5712", + "$id": "5725", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72560,12 +72753,12 @@ "isHttpMetadata": false }, { - "$id": "5713", + "$id": "5726", "kind": "property", "name": "output_index", "doc": "The index of the output item that failed.", "type": { - "$id": "5714", + "$id": "5727", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72583,7 +72776,7 @@ ] }, "response.mcp_list_tools.in_progress": { - "$id": "5715", + "$id": "5728", "kind": "model", "name": "ResponseMCPListToolsInProgressEvent", "namespace": "OpenAI", @@ -72598,24 +72791,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5716", + "$id": "5729", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_list_tools.in_progress'.", "type": { - "$id": "5717", + "$id": "5730", "kind": "enumvalue", "name": "response_mcp_list_tools_in_progress", "value": "response.mcp_list_tools.in_progress", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -72629,12 +72822,12 @@ "isHttpMetadata": false }, { - "$id": "5718", + "$id": "5731", "kind": "property", "name": "item_id", "doc": "The ID of the MCP tool call item that is being processed.", "type": { - "$id": "5719", + "$id": "5732", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72650,12 +72843,12 @@ "isHttpMetadata": false }, { - "$id": "5720", + "$id": "5733", "kind": "property", "name": "output_index", "doc": "The index of the output item that is being processed.", "type": { - "$id": "5721", + "$id": "5734", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72673,7 +72866,7 @@ ] }, "response.output_text.annotation.added": { - "$id": "5722", + "$id": "5735", "kind": "model", "name": "ResponseOutputTextAnnotationAddedEvent", "namespace": "OpenAI", @@ -72688,24 +72881,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5723", + "$id": "5736", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.output_text_annotation.added'.", "type": { - "$id": "5724", + "$id": "5737", "kind": "enumvalue", "name": "response_output_text_annotation_added", "value": "response.output_text.annotation.added", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -72719,12 +72912,12 @@ "isHttpMetadata": false }, { - "$id": "5725", + "$id": "5738", "kind": "property", "name": "item_id", "doc": "The unique identifier of the item to which the annotation is being added.", "type": { - "$id": "5726", + "$id": "5739", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72740,12 +72933,12 @@ "isHttpMetadata": false }, { - "$id": "5727", + "$id": "5740", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5728", + "$id": "5741", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72761,12 +72954,12 @@ "isHttpMetadata": false }, { - "$id": "5729", + "$id": "5742", "kind": "property", "name": "content_index", "doc": "The index of the content part within the output item.", "type": { - "$id": "5730", + "$id": "5743", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72782,12 +72975,12 @@ "isHttpMetadata": false }, { - "$id": "5731", + "$id": "5744", "kind": "property", "name": "annotation_index", "doc": "The index of the annotation within the content part.", "type": { - "$id": "5732", + "$id": "5745", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72803,12 +72996,12 @@ "isHttpMetadata": false }, { - "$id": "5733", + "$id": "5746", "kind": "property", "name": "annotation", "doc": "The annotation object being added. (See annotation schema for details.)", "type": { - "$id": "5734", + "$id": "5747", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -72826,7 +73019,7 @@ ] }, "response.queued": { - "$id": "5735", + "$id": "5748", "kind": "model", "name": "ResponseQueuedEvent", "namespace": "OpenAI", @@ -72841,24 +73034,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5736", + "$id": "5749", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.queued'.", "type": { - "$id": "5737", + "$id": "5750", "kind": "enumvalue", "name": "response_queued", "value": "response.queued", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -72872,12 +73065,12 @@ "isHttpMetadata": false }, { - "$id": "5738", + "$id": "5751", "kind": "property", "name": "response", "doc": "The full response object that is queued.", "type": { - "$ref": "5153" + "$ref": "5166" }, "optional": false, "readOnly": false, @@ -72891,7 +73084,7 @@ ] }, "response.reasoning.delta": { - "$id": "5739", + "$id": "5752", "kind": "model", "name": "ResponseReasoningDeltaEvent", "namespace": "OpenAI", @@ -72906,24 +73099,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5740", + "$id": "5753", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.reasoning.delta'.", "type": { - "$id": "5741", + "$id": "5754", "kind": "enumvalue", "name": "response_reasoning_delta", "value": "response.reasoning.delta", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -72937,12 +73130,12 @@ "isHttpMetadata": false }, { - "$id": "5742", + "$id": "5755", "kind": "property", "name": "item_id", "doc": "The unique identifier of the item for which reasoning is being updated.", "type": { - "$id": "5743", + "$id": "5756", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72958,12 +73151,12 @@ "isHttpMetadata": false }, { - "$id": "5744", + "$id": "5757", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5745", + "$id": "5758", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72979,12 +73172,12 @@ "isHttpMetadata": false }, { - "$id": "5746", + "$id": "5759", "kind": "property", "name": "content_index", "doc": "The index of the reasoning content part within the output item.", "type": { - "$id": "5747", + "$id": "5760", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73000,12 +73193,12 @@ "isHttpMetadata": false }, { - "$id": "5748", + "$id": "5761", "kind": "property", "name": "delta", "doc": "The partial update to the reasoning content.", "type": { - "$id": "5749", + "$id": "5762", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -73023,7 +73216,7 @@ ] }, "response.reasoning.done": { - "$id": "5750", + "$id": "5763", "kind": "model", "name": "ResponseReasoningDoneEvent", "namespace": "OpenAI", @@ -73038,24 +73231,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5751", + "$id": "5764", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.reasoning.done'.", "type": { - "$id": "5752", + "$id": "5765", "kind": "enumvalue", "name": "response_reasoning_done", "value": "response.reasoning.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -73069,12 +73262,12 @@ "isHttpMetadata": false }, { - "$id": "5753", + "$id": "5766", "kind": "property", "name": "item_id", "doc": "The unique identifier of the item for which reasoning is finalized.", "type": { - "$id": "5754", + "$id": "5767", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73090,12 +73283,12 @@ "isHttpMetadata": false }, { - "$id": "5755", + "$id": "5768", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5756", + "$id": "5769", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73111,12 +73304,12 @@ "isHttpMetadata": false }, { - "$id": "5757", + "$id": "5770", "kind": "property", "name": "content_index", "doc": "The index of the reasoning content part within the output item.", "type": { - "$id": "5758", + "$id": "5771", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73132,12 +73325,12 @@ "isHttpMetadata": false }, { - "$id": "5759", + "$id": "5772", "kind": "property", "name": "text", "doc": "The finalized reasoning text.", "type": { - "$id": "5760", + "$id": "5773", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73155,7 +73348,7 @@ ] }, "response.reasoning_summary.delta": { - "$id": "5761", + "$id": "5774", "kind": "model", "name": "ResponseReasoningSummaryDeltaEvent", "namespace": "OpenAI", @@ -73170,24 +73363,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5762", + "$id": "5775", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.reasoning_summary.delta'.", "type": { - "$id": "5763", + "$id": "5776", "kind": "enumvalue", "name": "response_reasoning_summary_delta", "value": "response.reasoning_summary.delta", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -73201,12 +73394,12 @@ "isHttpMetadata": false }, { - "$id": "5764", + "$id": "5777", "kind": "property", "name": "item_id", "doc": "The unique identifier of the item for which the reasoning summary is being updated.", "type": { - "$id": "5765", + "$id": "5778", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73222,12 +73415,12 @@ "isHttpMetadata": false }, { - "$id": "5766", + "$id": "5779", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5767", + "$id": "5780", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73243,12 +73436,12 @@ "isHttpMetadata": false }, { - "$id": "5768", + "$id": "5781", "kind": "property", "name": "summary_index", "doc": "The index of the summary part within the output item.", "type": { - "$id": "5769", + "$id": "5782", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73264,12 +73457,12 @@ "isHttpMetadata": false }, { - "$id": "5770", + "$id": "5783", "kind": "property", "name": "delta", "doc": "The partial update to the reasoning summary content.", "type": { - "$id": "5771", + "$id": "5784", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -73287,7 +73480,7 @@ ] }, "response.reasoning_summary.done": { - "$id": "5772", + "$id": "5785", "kind": "model", "name": "ResponseReasoningSummaryDoneEvent", "namespace": "OpenAI", @@ -73302,24 +73495,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5773", + "$id": "5786", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.reasoning_summary.done'.", "type": { - "$id": "5774", + "$id": "5787", "kind": "enumvalue", "name": "response_reasoning_summary_done", "value": "response.reasoning_summary.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -73333,12 +73526,12 @@ "isHttpMetadata": false }, { - "$id": "5775", + "$id": "5788", "kind": "property", "name": "item_id", "doc": "The unique identifier of the item for which the reasoning summary is finalized.", "type": { - "$id": "5776", + "$id": "5789", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73354,12 +73547,12 @@ "isHttpMetadata": false }, { - "$id": "5777", + "$id": "5790", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5778", + "$id": "5791", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73375,12 +73568,12 @@ "isHttpMetadata": false }, { - "$id": "5779", + "$id": "5792", "kind": "property", "name": "summary_index", "doc": "The index of the summary part within the output item.", "type": { - "$id": "5780", + "$id": "5793", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73396,12 +73589,12 @@ "isHttpMetadata": false }, { - "$id": "5781", + "$id": "5794", "kind": "property", "name": "text", "doc": "The finalized reasoning summary text.", "type": { - "$id": "5782", + "$id": "5795", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73419,7 +73612,7 @@ ] }, "response.code_interpreter_call_code.delta": { - "$id": "5783", + "$id": "5796", "kind": "model", "name": "ResponseCodeInterpreterCallCodeDeltaEvent", "namespace": "OpenAI", @@ -73434,24 +73627,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5784", + "$id": "5797", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.code_interpreter_call_code.delta`.", "type": { - "$id": "5785", + "$id": "5798", "kind": "enumvalue", "name": "response_code_interpreter_call_code_delta", "value": "response.code_interpreter_call_code.delta", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -73465,12 +73658,12 @@ "isHttpMetadata": false }, { - "$id": "5786", + "$id": "5799", "kind": "property", "name": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5787", + "$id": "5800", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73486,12 +73679,12 @@ "isHttpMetadata": false }, { - "$id": "5788", + "$id": "5801", "kind": "property", "name": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5789", + "$id": "5802", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73507,12 +73700,12 @@ "isHttpMetadata": false }, { - "$id": "5790", + "$id": "5803", "kind": "property", "name": "delta", "doc": "The partial code snippet added by the code interpreter.", "type": { - "$id": "5791", + "$id": "5804", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73530,7 +73723,7 @@ ] }, "response.code_interpreter_call_code.done": { - "$id": "5792", + "$id": "5805", "kind": "model", "name": "ResponseCodeInterpreterCallCodeDoneEvent", "namespace": "OpenAI", @@ -73545,24 +73738,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5793", + "$id": "5806", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.code_interpreter_call_code.done`.", "type": { - "$id": "5794", + "$id": "5807", "kind": "enumvalue", "name": "response_code_interpreter_call_code_done", "value": "response.code_interpreter_call_code.done", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -73576,12 +73769,12 @@ "isHttpMetadata": false }, { - "$id": "5795", + "$id": "5808", "kind": "property", "name": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5796", + "$id": "5809", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73597,12 +73790,12 @@ "isHttpMetadata": false }, { - "$id": "5797", + "$id": "5810", "kind": "property", "name": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5798", + "$id": "5811", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73618,12 +73811,12 @@ "isHttpMetadata": false }, { - "$id": "5799", + "$id": "5812", "kind": "property", "name": "code", "doc": "The final code snippet output by the code interpreter.", "type": { - "$id": "5800", + "$id": "5813", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73641,7 +73834,7 @@ ] }, "response.code_interpreter_call.completed": { - "$id": "5801", + "$id": "5814", "kind": "model", "name": "ResponseCodeInterpreterCallCompletedEvent", "namespace": "OpenAI", @@ -73656,24 +73849,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5802", + "$id": "5815", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.code_interpreter_call.completed`.", "type": { - "$id": "5803", + "$id": "5816", "kind": "enumvalue", "name": "response_code_interpreter_call_completed", "value": "response.code_interpreter_call.completed", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -73687,12 +73880,12 @@ "isHttpMetadata": false }, { - "$id": "5804", + "$id": "5817", "kind": "property", "name": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5805", + "$id": "5818", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73708,12 +73901,12 @@ "isHttpMetadata": false }, { - "$id": "5806", + "$id": "5819", "kind": "property", "name": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5807", + "$id": "5820", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73731,7 +73924,7 @@ ] }, "response.code_interpreter_call.in_progress": { - "$id": "5808", + "$id": "5821", "kind": "model", "name": "ResponseCodeInterpreterCallInProgressEvent", "namespace": "OpenAI", @@ -73746,24 +73939,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5809", + "$id": "5822", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.code_interpreter_call.in_progress`.", "type": { - "$id": "5810", + "$id": "5823", "kind": "enumvalue", "name": "response_code_interpreter_call_in_progress", "value": "response.code_interpreter_call.in_progress", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -73777,12 +73970,12 @@ "isHttpMetadata": false }, { - "$id": "5811", + "$id": "5824", "kind": "property", "name": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5812", + "$id": "5825", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73798,12 +73991,12 @@ "isHttpMetadata": false }, { - "$id": "5813", + "$id": "5826", "kind": "property", "name": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5814", + "$id": "5827", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73821,7 +74014,7 @@ ] }, "response.code_interpreter_call.interpreting": { - "$id": "5815", + "$id": "5828", "kind": "model", "name": "ResponseCodeInterpreterCallInterpretingEvent", "namespace": "OpenAI", @@ -73836,24 +74029,24 @@ } ], "baseModel": { - "$ref": "5338" + "$ref": "5351" }, "properties": [ { - "$id": "5816", + "$id": "5829", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.code_interpreter_call.interpreting`.", "type": { - "$id": "5817", + "$id": "5830", "kind": "enumvalue", "name": "response_code_interpreter_call_interpreting", "value": "response.code_interpreter_call.interpreting", "valueType": { - "$ref": "774" + "$ref": "775" }, "enumType": { - "$ref": "5345" + "$ref": "5358" }, "decorators": [] }, @@ -73867,12 +74060,12 @@ "isHttpMetadata": false }, { - "$id": "5818", + "$id": "5831", "kind": "property", "name": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5819", + "$id": "5832", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73888,12 +74081,12 @@ "isHttpMetadata": false }, { - "$id": "5820", + "$id": "5833", "kind": "property", "name": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5821", + "$id": "5834", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73913,160 +74106,160 @@ } }, { - "$ref": "5342" + "$ref": "5355" }, { - "$ref": "5403" + "$ref": "5416" }, { - "$ref": "5413" + "$ref": "5426" }, { - "$ref": "5423" + "$ref": "5436" }, { - "$ref": "5427" + "$ref": "5440" }, { - "$ref": "5438" + "$ref": "5451" }, { - "$ref": "5445" + "$ref": "5458" }, { - "$ref": "5452" + "$ref": "5465" }, { - "$ref": "5459" + "$ref": "5472" }, { - "$ref": "5468" + "$ref": "5481" }, { - "$ref": "5477" + "$ref": "5490" }, { - "$ref": "5481" + "$ref": "5494" }, { - "$ref": "5485" + "$ref": "5498" }, { - "$ref": "5489" + "$ref": "5502" }, { - "$ref": "5495" + "$ref": "5508" }, { - "$ref": "5501" + "$ref": "5514" }, { - "$ref": "5512" + "$ref": "5525" }, { - "$ref": "5523" + "$ref": "5536" }, { - "$ref": "5534" + "$ref": "5547" }, { - "$ref": "5545" + "$ref": "5558" }, { - "$ref": "5555" + "$ref": "5568" }, { - "$ref": "5565" + "$ref": "5578" }, { - "$ref": "5576" + "$ref": "5589" }, { - "$ref": "5587" + "$ref": "5600" }, { - "$ref": "5598" + "$ref": "5611" }, { - "$ref": "5609" + "$ref": "5622" }, { - "$ref": "5616" + "$ref": "5629" }, { - "$ref": "5623" + "$ref": "5636" }, { - "$ref": "5630" + "$ref": "5643" }, { - "$ref": "5637" + "$ref": "5650" }, { - "$ref": "5644" + "$ref": "5657" }, { - "$ref": "5651" + "$ref": "5664" }, { - "$ref": "5662" + "$ref": "5675" }, { - "$ref": "5671" + "$ref": "5684" }, { - "$ref": "5680" + "$ref": "5693" }, { - "$ref": "5687" + "$ref": "5700" }, { - "$ref": "5694" + "$ref": "5707" }, { - "$ref": "5701" + "$ref": "5714" }, { - "$ref": "5708" + "$ref": "5721" }, { - "$ref": "5715" + "$ref": "5728" }, { - "$ref": "5722" + "$ref": "5735" }, { - "$ref": "5735" + "$ref": "5748" }, { - "$ref": "5739" + "$ref": "5752" }, { - "$ref": "5750" + "$ref": "5763" }, { - "$ref": "5761" + "$ref": "5774" }, { - "$ref": "5772" + "$ref": "5785" }, { - "$ref": "5783" + "$ref": "5796" }, { - "$ref": "5792" + "$ref": "5805" }, { - "$ref": "5801" + "$ref": "5814" }, { - "$ref": "5808" + "$ref": "5821" }, { - "$ref": "5815" + "$ref": "5828" }, { - "$id": "5822", + "$id": "5835", "kind": "model", "name": "ResponseErrorResponse", "namespace": "OpenAI", @@ -74080,12 +74273,12 @@ ], "properties": [ { - "$id": "5823", + "$id": "5836", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$ref": "5184" + "$ref": "5197" }, "optional": false, "readOnly": false, @@ -74103,7 +74296,7 @@ ] }, { - "$id": "5824", + "$id": "5837", "kind": "model", "name": "DeleteResponseResponse", "namespace": "OpenAI", @@ -74117,12 +74310,12 @@ ], "properties": [ { - "$id": "5825", + "$id": "5838", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "5826", + "$id": "5839", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74142,12 +74335,12 @@ "isHttpMetadata": false }, { - "$id": "5827", + "$id": "5840", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1671" + "$ref": "1672" }, "optional": false, "readOnly": false, @@ -74163,12 +74356,12 @@ "isHttpMetadata": false }, { - "$id": "5828", + "$id": "5841", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$ref": "1673" + "$ref": "1674" }, "optional": false, "readOnly": false, @@ -74186,7 +74379,7 @@ ] }, { - "$id": "5829", + "$id": "5842", "kind": "model", "name": "ResponseItemList", "namespace": "OpenAI", @@ -74201,13 +74394,13 @@ ], "properties": [ { - "$id": "5830", + "$id": "5843", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of object returned, must be `list`.", "type": { - "$ref": "1675" + "$ref": "1676" }, "optional": false, "readOnly": false, @@ -74223,13 +74416,13 @@ "isHttpMetadata": false }, { - "$id": "5831", + "$id": "5844", "kind": "property", "name": "data", "serializedName": "data", "doc": "A list of items used to generate this response.", "type": { - "$ref": "5193" + "$ref": "5206" }, "optional": false, "readOnly": false, @@ -74245,13 +74438,13 @@ "isHttpMetadata": false }, { - "$id": "5832", + "$id": "5845", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Whether there are more items available.", "type": { - "$id": "5833", + "$id": "5846", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -74271,13 +74464,13 @@ "isHttpMetadata": false }, { - "$id": "5834", + "$id": "5847", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The ID of the first item in the list.", "type": { - "$id": "5835", + "$id": "5848", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74297,13 +74490,13 @@ "isHttpMetadata": false }, { - "$id": "5836", + "$id": "5849", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The ID of the last item in the list.", "type": { - "$id": "5837", + "$id": "5850", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74325,7 +74518,7 @@ ] }, { - "$id": "5838", + "$id": "5851", "kind": "model", "name": "CreateImageRequest", "namespace": "OpenAI", @@ -74334,13 +74527,13 @@ "decorators": [], "properties": [ { - "$id": "5839", + "$id": "5852", "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": "5840", + "$id": "5853", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74360,16 +74553,16 @@ "isHttpMetadata": false }, { - "$id": "5841", + "$id": "5854", "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": "5842", + "$id": "5855", "kind": "nullable", "type": { - "$ref": "830" + "$ref": "831" }, "namespace": "OpenAI" }, @@ -74387,16 +74580,16 @@ "isHttpMetadata": false }, { - "$id": "5843", + "$id": "5856", "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": "5844", + "$id": "5857", "kind": "nullable", "type": { - "$id": "5845", + "$id": "5858", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74418,16 +74611,16 @@ "isHttpMetadata": false }, { - "$id": "5846", + "$id": "5859", "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": "5847", + "$id": "5860", "kind": "nullable", "type": { - "$ref": "835" + "$ref": "836" }, "namespace": "OpenAI" }, @@ -74445,16 +74638,16 @@ "isHttpMetadata": false }, { - "$id": "5848", + "$id": "5861", "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": "5849", + "$id": "5862", "kind": "nullable", "type": { - "$ref": "843" + "$ref": "844" }, "namespace": "OpenAI" }, @@ -74472,16 +74665,16 @@ "isHttpMetadata": false }, { - "$id": "5850", + "$id": "5863", "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": "5851", + "$id": "5864", "kind": "nullable", "type": { - "$ref": "847" + "$ref": "848" }, "namespace": "OpenAI" }, @@ -74499,16 +74692,16 @@ "isHttpMetadata": false }, { - "$id": "5852", + "$id": "5865", "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": "5853", + "$id": "5866", "kind": "nullable", "type": { - "$id": "5854", + "$id": "5867", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74530,16 +74723,16 @@ "isHttpMetadata": false }, { - "$id": "5855", + "$id": "5868", "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": "5856", + "$id": "5869", "kind": "nullable", "type": { - "$ref": "852" + "$ref": "853" }, "namespace": "OpenAI" }, @@ -74557,16 +74750,16 @@ "isHttpMetadata": false }, { - "$id": "5857", + "$id": "5870", "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": "5858", + "$id": "5871", "kind": "nullable", "type": { - "$ref": "862" + "$ref": "863" }, "namespace": "OpenAI" }, @@ -74584,16 +74777,16 @@ "isHttpMetadata": false }, { - "$id": "5859", + "$id": "5872", "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": "5860", + "$id": "5873", "kind": "nullable", "type": { - "$ref": "866" + "$ref": "867" }, "namespace": "OpenAI" }, @@ -74611,16 +74804,16 @@ "isHttpMetadata": false }, { - "$id": "5861", + "$id": "5874", "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": "5862", + "$id": "5875", "kind": "nullable", "type": { - "$ref": "871" + "$ref": "872" }, "namespace": "OpenAI" }, @@ -74638,13 +74831,13 @@ "isHttpMetadata": false }, { - "$id": "5863", + "$id": "5876", "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": "5864", + "$id": "5877", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74666,7 +74859,7 @@ ] }, { - "$id": "5865", + "$id": "5878", "kind": "model", "name": "ImagesResponse", "namespace": "OpenAI", @@ -74676,18 +74869,18 @@ "decorators": [], "properties": [ { - "$id": "5866", + "$id": "5879", "kind": "property", "name": "created", "serializedName": "created", "doc": "The Unix timestamp (in seconds) of when the image was created.", "type": { - "$id": "5867", + "$id": "5880", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5868", + "$id": "5881", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74710,17 +74903,17 @@ "isHttpMetadata": false }, { - "$id": "5869", + "$id": "5882", "kind": "property", "name": "data", "serializedName": "data", "doc": "The list of generated images.", "type": { - "$id": "5870", + "$id": "5883", "kind": "array", "name": "ArrayImage", "valueType": { - "$id": "5871", + "$id": "5884", "kind": "model", "name": "Image", "namespace": "OpenAI", @@ -74730,13 +74923,13 @@ "decorators": [], "properties": [ { - "$id": "5872", + "$id": "5885", "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": "5873", + "$id": "5886", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -74757,13 +74950,13 @@ "isHttpMetadata": false }, { - "$id": "5874", + "$id": "5887", "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": "5875", + "$id": "5888", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -74783,13 +74976,13 @@ "isHttpMetadata": false }, { - "$id": "5876", + "$id": "5889", "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": "5877", + "$id": "5890", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74827,13 +75020,13 @@ "isHttpMetadata": false }, { - "$id": "5878", + "$id": "5891", "kind": "property", "name": "usage", "serializedName": "usage", "doc": "For `gpt-image-1` only, the token usage information for the image generation.", "type": { - "$id": "5879", + "$id": "5892", "kind": "model", "name": "ImagesResponseUsage", "namespace": "OpenAI", @@ -74842,13 +75035,13 @@ "decorators": [], "properties": [ { - "$id": "5880", + "$id": "5893", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens (images and text) used for the image generation.", "type": { - "$id": "5881", + "$id": "5894", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74868,13 +75061,13 @@ "isHttpMetadata": false }, { - "$id": "5882", + "$id": "5895", "kind": "property", "name": "input_tokens", "serializedName": "input_tokens", "doc": "The number of tokens (images and text) in the input prompt.", "type": { - "$id": "5883", + "$id": "5896", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74894,13 +75087,13 @@ "isHttpMetadata": false }, { - "$id": "5884", + "$id": "5897", "kind": "property", "name": "output_tokens", "serializedName": "output_tokens", "doc": "The number of image tokens in the output image.", "type": { - "$id": "5885", + "$id": "5898", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74920,13 +75113,13 @@ "isHttpMetadata": false }, { - "$id": "5886", + "$id": "5899", "kind": "property", "name": "input_tokens_details", "serializedName": "input_tokens_details", "doc": "The input tokens detailed information for the image generation.", "type": { - "$id": "5887", + "$id": "5900", "kind": "model", "name": "ImagesResponseUsageInputTokensDetails", "namespace": "OpenAI", @@ -74935,13 +75128,13 @@ "decorators": [], "properties": [ { - "$id": "5888", + "$id": "5901", "kind": "property", "name": "text_tokens", "serializedName": "text_tokens", "doc": "The number of text tokens in the input prompt.", "type": { - "$id": "5889", + "$id": "5902", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74961,13 +75154,13 @@ "isHttpMetadata": false }, { - "$id": "5890", + "$id": "5903", "kind": "property", "name": "image_tokens", "serializedName": "image_tokens", "doc": "The number of image tokens in the input prompt.", "type": { - "$id": "5891", + "$id": "5904", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -75019,16 +75212,16 @@ ] }, { - "$ref": "5871" + "$ref": "5884" }, { - "$ref": "5879" + "$ref": "5892" }, { - "$ref": "5887" + "$ref": "5900" }, { - "$id": "5892", + "$id": "5905", "kind": "model", "name": "CreateImageEditRequest", "namespace": "OpenAI", @@ -75037,18 +75230,18 @@ "decorators": [], "properties": [ { - "$id": "5893", + "$id": "5906", "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": "5894", + "$id": "5907", "kind": "union", "name": "CreateImageEditRequestImage", "variantTypes": [ { - "$id": "5895", + "$id": "5908", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -75056,11 +75249,11 @@ "decorators": [] }, { - "$id": "5896", + "$id": "5909", "kind": "array", "name": "Array25", "valueType": { - "$id": "5897", + "$id": "5910", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -75095,13 +75288,13 @@ "isHttpMetadata": false }, { - "$id": "5898", + "$id": "5911", "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": "5899", + "$id": "5912", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75127,13 +75320,13 @@ "isHttpMetadata": false }, { - "$id": "5900", + "$id": "5913", "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": "5901", + "$id": "5914", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -75160,16 +75353,16 @@ "isHttpMetadata": false }, { - "$id": "5902", + "$id": "5915", "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": "5903", + "$id": "5916", "kind": "nullable", "type": { - "$ref": "875" + "$ref": "876" }, "namespace": "OpenAI" }, @@ -75193,16 +75386,16 @@ "isHttpMetadata": false }, { - "$id": "5904", + "$id": "5917", "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": "5905", + "$id": "5918", "kind": "nullable", "type": { - "$ref": "880" + "$ref": "881" }, "namespace": "OpenAI" }, @@ -75226,21 +75419,21 @@ "isHttpMetadata": false }, { - "$id": "5906", + "$id": "5919", "kind": "property", "name": "n", "serializedName": "n", "doc": "The number of images to generate. Must be between 1 and 10.", "type": { - "$id": "5907", + "$id": "5920", "kind": "nullable", "type": { - "$id": "5908", + "$id": "5921", "kind": "int32", "name": "OneToTenInt", "crossLanguageDefinitionId": "OpenAI.OneToTenInt", "baseType": { - "$id": "5909", + "$id": "5922", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -75270,16 +75463,16 @@ "isHttpMetadata": false }, { - "$id": "5910", + "$id": "5923", "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": "5911", + "$id": "5924", "kind": "nullable", "type": { - "$ref": "884" + "$ref": "885" }, "namespace": "OpenAI" }, @@ -75303,16 +75496,16 @@ "isHttpMetadata": false }, { - "$id": "5912", + "$id": "5925", "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": "5913", + "$id": "5926", "kind": "nullable", "type": { - "$ref": "892" + "$ref": "893" }, "namespace": "OpenAI" }, @@ -75336,13 +75529,13 @@ "isHttpMetadata": false }, { - "$id": "5914", + "$id": "5927", "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": "5915", + "$id": "5928", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75368,16 +75561,16 @@ "isHttpMetadata": false }, { - "$id": "5916", + "$id": "5929", "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": "5917", + "$id": "5930", "kind": "nullable", "type": { - "$ref": "896" + "$ref": "897" }, "namespace": "OpenAI" }, @@ -75403,7 +75596,7 @@ ] }, { - "$id": "5918", + "$id": "5931", "kind": "model", "name": "CreateImageVariationRequest", "namespace": "OpenAI", @@ -75412,13 +75605,13 @@ "decorators": [], "properties": [ { - "$id": "5919", + "$id": "5932", "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": "5920", + "$id": "5933", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -75445,16 +75638,16 @@ "isHttpMetadata": false }, { - "$id": "5921", + "$id": "5934", "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": "5922", + "$id": "5935", "kind": "nullable", "type": { - "$ref": "903" + "$ref": "904" }, "namespace": "OpenAI" }, @@ -75478,21 +75671,21 @@ "isHttpMetadata": false }, { - "$id": "5923", + "$id": "5936", "kind": "property", "name": "n", "serializedName": "n", "doc": "The number of images to generate. Must be between 1 and 10.", "type": { - "$id": "5924", + "$id": "5937", "kind": "nullable", "type": { - "$id": "5925", + "$id": "5938", "kind": "int32", "name": "OneToTenInt", "crossLanguageDefinitionId": "OpenAI.OneToTenInt", "baseType": { - "$id": "5926", + "$id": "5939", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -75522,16 +75715,16 @@ "isHttpMetadata": false }, { - "$id": "5927", + "$id": "5940", "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": "5928", + "$id": "5941", "kind": "nullable", "type": { - "$ref": "906" + "$ref": "907" }, "namespace": "OpenAI" }, @@ -75555,16 +75748,16 @@ "isHttpMetadata": false }, { - "$id": "5929", + "$id": "5942", "kind": "property", "name": "size", "serializedName": "size", "doc": "The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`.", "type": { - "$id": "5930", + "$id": "5943", "kind": "nullable", "type": { - "$ref": "910" + "$ref": "911" }, "namespace": "OpenAI" }, @@ -75588,13 +75781,13 @@ "isHttpMetadata": false }, { - "$id": "5931", + "$id": "5944", "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": "5932", + "$id": "5945", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75622,7 +75815,7 @@ ] }, { - "$id": "5933", + "$id": "5946", "kind": "model", "name": "CreateMessageRequest", "namespace": "OpenAI", @@ -75631,13 +75824,13 @@ "decorators": [], "properties": [ { - "$id": "5934", + "$id": "5947", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the entity that is creating the message. Allowed values include:\n- `user`: Indicates the message is sent by an actual user and should be used in most cases to represent user-generated messages.\n- `assistant`: Indicates the message is generated by the assistant. Use this value to insert messages from the assistant into the conversation.", "type": { - "$ref": "915" + "$ref": "916" }, "optional": false, "readOnly": false, @@ -75653,16 +75846,16 @@ "isHttpMetadata": false }, { - "$id": "5935", + "$id": "5948", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "5936", + "$id": "5949", "kind": "array", "name": "ArrayMessageContent", "valueType": { - "$id": "5937", + "$id": "5950", "kind": "model", "name": "MessageContent", "namespace": "OpenAI", @@ -75672,12 +75865,12 @@ "doc": "Represents a single piece of content in an Assistants API message.", "decorators": [], "discriminatorProperty": { - "$id": "5938", + "$id": "5951", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "919" + "$ref": "920" }, "optional": false, "readOnly": false, @@ -75694,12 +75887,12 @@ }, "properties": [ { - "$ref": "5938" + "$ref": "5951" } ], "discriminatedSubtypes": { "image_file": { - "$id": "5939", + "$id": "5952", "kind": "model", "name": "MessageContentImageFileObject", "namespace": "OpenAI", @@ -75710,32 +75903,32 @@ "discriminatorValue": "image_file", "decorators": [], "baseModel": { - "$ref": "5937" + "$ref": "5950" }, "properties": [ { - "$id": "5940", + "$id": "5953", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `image_file`.", "type": { - "$id": "5941", + "$id": "5954", "kind": "enumvalue", "name": "image_file", "value": "image_file", "valueType": { - "$ref": "920" + "$ref": "921" }, "enumType": { - "$id": "5942", + "$id": "5955", "kind": "enum", "decorators": [], "name": "MessageContentType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "5943", + "$id": "5956", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -75744,59 +75937,59 @@ }, "values": [ { - "$id": "5944", + "$id": "5957", "kind": "enumvalue", "decorators": [], "doc": "The content is a text message.", "name": "text", "value": "text", "valueType": { - "$ref": "5943" + "$ref": "5956" }, "enumType": { - "$ref": "5942" + "$ref": "5955" } }, { - "$id": "5945", + "$id": "5958", "kind": "enumvalue", "decorators": [], "doc": "The content is an image file.", "name": "image_file", "value": "image_file", "valueType": { - "$ref": "5943" + "$ref": "5956" }, "enumType": { - "$ref": "5942" + "$ref": "5955" } }, { - "$id": "5946", + "$id": "5959", "kind": "enumvalue", "decorators": [], "doc": "The content is an image URL.", "name": "image_url", "value": "image_url", "valueType": { - "$ref": "5943" + "$ref": "5956" }, "enumType": { - "$ref": "5942" + "$ref": "5955" } }, { - "$id": "5947", + "$id": "5960", "kind": "enumvalue", "decorators": [], "doc": "The content is a refusal message.", "name": "refusal", "value": "refusal", "valueType": { - "$ref": "5943" + "$ref": "5956" }, "enumType": { - "$ref": "5942" + "$ref": "5955" } } ], @@ -75826,12 +76019,12 @@ "isHttpMetadata": false }, { - "$id": "5948", + "$id": "5961", "kind": "property", "name": "image_file", "serializedName": "image_file", "type": { - "$id": "5949", + "$id": "5962", "kind": "model", "name": "MessageContentImageFileObjectImageFile", "namespace": "OpenAI", @@ -75840,13 +76033,13 @@ "decorators": [], "properties": [ { - "$id": "5950", + "$id": "5963", "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": "5951", + "$id": "5964", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75866,13 +76059,13 @@ "isHttpMetadata": false }, { - "$id": "5952", + "$id": "5965", "kind": "property", "name": "detail", "serializedName": "detail", "doc": "Specifies the detail level of the image if specified by the user. `low` uses fewer tokens, you can opt in to high resolution using `high`.", "type": { - "$ref": "925" + "$ref": "926" }, "optional": true, "readOnly": false, @@ -75905,7 +76098,7 @@ ] }, "text": { - "$id": "5953", + "$id": "5966", "kind": "model", "name": "MessageContentTextObject", "namespace": "OpenAI", @@ -75916,25 +76109,25 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "5937" + "$ref": "5950" }, "properties": [ { - "$id": "5954", + "$id": "5967", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `text`.", "type": { - "$id": "5955", + "$id": "5968", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "920" + "$ref": "921" }, "enumType": { - "$ref": "5942" + "$ref": "5955" }, "doc": "The content is a text message.", "decorators": [] @@ -75953,24 +76146,24 @@ "isHttpMetadata": false }, { - "$id": "5956", + "$id": "5969", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "5957", + "$id": "5970", "kind": "union", "name": "MessageContentTextObjectText", "variantTypes": [ { - "$id": "5958", + "$id": "5971", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "5959", + "$id": "5972", "kind": "model", "name": "MessageContentTextObjectText1", "namespace": "OpenAI", @@ -75979,12 +76172,12 @@ "decorators": [], "properties": [ { - "$id": "5960", + "$id": "5973", "kind": "property", "name": "value", "serializedName": "value", "type": { - "$id": "5961", + "$id": "5974", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76004,16 +76197,16 @@ "isHttpMetadata": false }, { - "$id": "5962", + "$id": "5975", "kind": "property", "name": "annotations", "serializedName": "annotations", "type": { - "$id": "5963", + "$id": "5976", "kind": "array", "name": "ArrayMessageContentTextObjectAnnotation", "valueType": { - "$id": "5964", + "$id": "5977", "kind": "model", "name": "MessageContentTextObjectAnnotation", "namespace": "OpenAI", @@ -76022,13 +76215,13 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "5965", + "$id": "5978", "kind": "property", "name": "type", "serializedName": "type", "doc": "The discriminated type identifier for the content item.", "type": { - "$ref": "930" + "$ref": "931" }, "optional": false, "readOnly": false, @@ -76045,12 +76238,12 @@ }, "properties": [ { - "$ref": "5965" + "$ref": "5978" } ], "discriminatedSubtypes": { "file_citation": { - "$id": "5966", + "$id": "5979", "kind": "model", "name": "MessageContentTextAnnotationsFileCitationObject", "namespace": "OpenAI", @@ -76061,32 +76254,32 @@ "discriminatorValue": "file_citation", "decorators": [], "baseModel": { - "$ref": "5964" + "$ref": "5977" }, "properties": [ { - "$id": "5967", + "$id": "5980", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `file_citation`.", "type": { - "$id": "5968", + "$id": "5981", "kind": "enumvalue", "name": "file_citation", "value": "file_citation", "valueType": { - "$ref": "931" + "$ref": "932" }, "enumType": { - "$id": "5969", + "$id": "5982", "kind": "enum", "decorators": [], "name": "MessageContentTextAnnotationType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "5970", + "$id": "5983", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -76095,29 +76288,29 @@ }, "values": [ { - "$id": "5971", + "$id": "5984", "kind": "enumvalue", "decorators": [], "name": "file_citation", "value": "file_citation", "valueType": { - "$ref": "5970" + "$ref": "5983" }, "enumType": { - "$ref": "5969" + "$ref": "5982" } }, { - "$id": "5972", + "$id": "5985", "kind": "enumvalue", "decorators": [], "name": "file_path", "value": "file_path", "valueType": { - "$ref": "5970" + "$ref": "5983" }, "enumType": { - "$ref": "5969" + "$ref": "5982" } } ], @@ -76146,13 +76339,13 @@ "isHttpMetadata": false }, { - "$id": "5973", + "$id": "5986", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "5974", + "$id": "5987", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76172,12 +76365,12 @@ "isHttpMetadata": false }, { - "$id": "5975", + "$id": "5988", "kind": "property", "name": "file_citation", "serializedName": "file_citation", "type": { - "$id": "5976", + "$id": "5989", "kind": "model", "name": "MessageContentTextAnnotationsFileCitationObjectFileCitation", "namespace": "OpenAI", @@ -76186,13 +76379,13 @@ "decorators": [], "properties": [ { - "$id": "5977", + "$id": "5990", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the specific File the citation is from.", "type": { - "$id": "5978", + "$id": "5991", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76227,12 +76420,12 @@ "isHttpMetadata": false }, { - "$id": "5979", + "$id": "5992", "kind": "property", "name": "start_index", "serializedName": "start_index", "type": { - "$id": "5980", + "$id": "5993", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76252,12 +76445,12 @@ "isHttpMetadata": false }, { - "$id": "5981", + "$id": "5994", "kind": "property", "name": "end_index", "serializedName": "end_index", "type": { - "$id": "5982", + "$id": "5995", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76279,7 +76472,7 @@ ] }, "file_path": { - "$id": "5983", + "$id": "5996", "kind": "model", "name": "MessageContentTextAnnotationsFilePathObject", "namespace": "OpenAI", @@ -76290,25 +76483,25 @@ "discriminatorValue": "file_path", "decorators": [], "baseModel": { - "$ref": "5964" + "$ref": "5977" }, "properties": [ { - "$id": "5984", + "$id": "5997", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `file_path`.", "type": { - "$id": "5985", + "$id": "5998", "kind": "enumvalue", "name": "file_path", "value": "file_path", "valueType": { - "$ref": "931" + "$ref": "932" }, "enumType": { - "$ref": "5969" + "$ref": "5982" }, "decorators": [] }, @@ -76326,13 +76519,13 @@ "isHttpMetadata": false }, { - "$id": "5986", + "$id": "5999", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "5987", + "$id": "6000", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76352,12 +76545,12 @@ "isHttpMetadata": false }, { - "$id": "5988", + "$id": "6001", "kind": "property", "name": "file_path", "serializedName": "file_path", "type": { - "$id": "5989", + "$id": "6002", "kind": "model", "name": "MessageContentTextAnnotationsFilePathObjectFilePath", "namespace": "OpenAI", @@ -76366,13 +76559,13 @@ "decorators": [], "properties": [ { - "$id": "5990", + "$id": "6003", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file that was generated.", "type": { - "$id": "5991", + "$id": "6004", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76407,12 +76600,12 @@ "isHttpMetadata": false }, { - "$id": "5992", + "$id": "6005", "kind": "property", "name": "start_index", "serializedName": "start_index", "type": { - "$id": "5993", + "$id": "6006", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76432,12 +76625,12 @@ "isHttpMetadata": false }, { - "$id": "5994", + "$id": "6007", "kind": "property", "name": "end_index", "serializedName": "end_index", "type": { - "$id": "5995", + "$id": "6008", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76498,7 +76691,7 @@ ] }, "refusal": { - "$id": "5996", + "$id": "6009", "kind": "model", "name": "MessageContentRefusalObject", "namespace": "OpenAI", @@ -76509,25 +76702,25 @@ "discriminatorValue": "refusal", "decorators": [], "baseModel": { - "$ref": "5937" + "$ref": "5950" }, "properties": [ { - "$id": "5997", + "$id": "6010", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `refusal`.", "type": { - "$id": "5998", + "$id": "6011", "kind": "enumvalue", "name": "refusal", "value": "refusal", "valueType": { - "$ref": "920" + "$ref": "921" }, "enumType": { - "$ref": "5942" + "$ref": "5955" }, "doc": "The content is a refusal message.", "decorators": [] @@ -76546,12 +76739,12 @@ "isHttpMetadata": false }, { - "$id": "5999", + "$id": "6012", "kind": "property", "name": "refusal", "serializedName": "refusal", "type": { - "$id": "6000", + "$id": "6013", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76573,7 +76766,7 @@ ] }, "image_url": { - "$id": "6001", + "$id": "6014", "kind": "model", "name": "MessageContentImageUrlObject", "namespace": "OpenAI", @@ -76584,25 +76777,25 @@ "discriminatorValue": "image_url", "decorators": [], "baseModel": { - "$ref": "5937" + "$ref": "5950" }, "properties": [ { - "$id": "6002", + "$id": "6015", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content part.", "type": { - "$id": "6003", + "$id": "6016", "kind": "enumvalue", "name": "image_url", "value": "image_url", "valueType": { - "$ref": "920" + "$ref": "921" }, "enumType": { - "$ref": "5942" + "$ref": "5955" }, "doc": "The content is an image URL.", "decorators": [] @@ -76621,12 +76814,12 @@ "isHttpMetadata": false }, { - "$id": "6004", + "$id": "6017", "kind": "property", "name": "image_url", "serializedName": "image_url", "type": { - "$id": "6005", + "$id": "6018", "kind": "model", "name": "MessageContentImageUrlObjectImageUrl", "namespace": "OpenAI", @@ -76635,13 +76828,13 @@ "decorators": [], "properties": [ { - "$id": "6006", + "$id": "6019", "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": "6007", + "$id": "6020", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -76661,13 +76854,13 @@ "isHttpMetadata": false }, { - "$id": "6008", + "$id": "6021", "kind": "property", "name": "detail", "serializedName": "detail", "doc": "Specifies the detail level of the image. `low` uses fewer tokens, you can opt in to high resolution using `high`. Default value is `auto`", "type": { - "$ref": "934" + "$ref": "935" }, "optional": true, "readOnly": false, @@ -76718,20 +76911,20 @@ "isHttpMetadata": false }, { - "$id": "6009", + "$id": "6022", "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": "6010", + "$id": "6023", "kind": "nullable", "type": { - "$id": "6011", + "$id": "6024", "kind": "array", "name": "Array26", "valueType": { - "$id": "6012", + "$id": "6025", "kind": "model", "name": "CreateMessageRequestAttachment", "namespace": "OpenAI", @@ -76740,13 +76933,13 @@ "decorators": [], "properties": [ { - "$id": "6013", + "$id": "6026", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to attach to the message.", "type": { - "$id": "6014", + "$id": "6027", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76766,25 +76959,25 @@ "isHttpMetadata": false }, { - "$id": "6015", + "$id": "6028", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "The tools to add this file to.", "type": { - "$id": "6016", + "$id": "6029", "kind": "array", "name": "Array27", "valueType": { - "$id": "6017", + "$id": "6030", "kind": "union", "name": "CreateMessageRequestAttachmentTool", "variantTypes": [ { - "$ref": "2397" + "$ref": "2398" }, { - "$id": "6018", + "$id": "6031", "kind": "model", "name": "AssistantToolsFileSearchTypeOnly", "namespace": "OpenAI", @@ -76793,13 +76986,13 @@ "decorators": [], "properties": [ { - "$id": "6019", + "$id": "6032", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of tool being defined: `file_search`", "type": { - "$ref": "1677" + "$ref": "1678" }, "optional": false, "readOnly": false, @@ -76857,13 +77050,13 @@ "isHttpMetadata": false }, { - "$id": "6020", + "$id": "6033", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": true, "readOnly": false, @@ -76881,52 +77074,52 @@ ] }, { - "$ref": "5937" + "$ref": "5950" }, { - "$ref": "5939" + "$ref": "5952" }, { - "$ref": "5949" + "$ref": "5962" }, { - "$ref": "5953" + "$ref": "5966" }, { - "$ref": "5959" + "$ref": "5972" }, { - "$ref": "5964" + "$ref": "5977" }, { - "$ref": "5966" + "$ref": "5979" }, { - "$ref": "5976" + "$ref": "5989" }, { - "$ref": "5983" + "$ref": "5996" }, { - "$ref": "5989" + "$ref": "6002" }, { - "$ref": "5996" + "$ref": "6009" }, { - "$ref": "6001" + "$ref": "6014" }, { - "$ref": "6005" + "$ref": "6018" }, { - "$ref": "6012" + "$ref": "6025" }, { - "$ref": "6018" + "$ref": "6031" }, { - "$id": "6021", + "$id": "6034", "kind": "model", "name": "MessageObject", "namespace": "OpenAI", @@ -76936,13 +77129,13 @@ "decorators": [], "properties": [ { - "$id": "6022", + "$id": "6035", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6023", + "$id": "6036", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76962,13 +77155,13 @@ "isHttpMetadata": false }, { - "$id": "6024", + "$id": "6037", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `thread.message`.", "type": { - "$ref": "1679" + "$ref": "1680" }, "optional": false, "readOnly": false, @@ -76984,18 +77177,18 @@ "isHttpMetadata": false }, { - "$id": "6025", + "$id": "6038", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the message was created.", "type": { - "$id": "6026", + "$id": "6039", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6027", + "$id": "6040", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -77018,13 +77211,13 @@ "isHttpMetadata": false }, { - "$id": "6028", + "$id": "6041", "kind": "property", "name": "thread_id", "serializedName": "thread_id", "doc": "The [thread](/docs/api-reference/threads) ID that this message belongs to.", "type": { - "$id": "6029", + "$id": "6042", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77044,13 +77237,13 @@ "isHttpMetadata": false }, { - "$id": "6030", + "$id": "6043", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the message, which can be either `in_progress`, `incomplete`, or `completed`.", "type": { - "$ref": "939" + "$ref": "940" }, "optional": false, "readOnly": false, @@ -77066,16 +77259,16 @@ "isHttpMetadata": false }, { - "$id": "6031", + "$id": "6044", "kind": "property", "name": "incomplete_details", "serializedName": "incomplete_details", "doc": "On an incomplete message, details about why the message is incomplete.", "type": { - "$id": "6032", + "$id": "6045", "kind": "nullable", "type": { - "$id": "6033", + "$id": "6046", "kind": "model", "name": "MessageObjectIncompleteDetails1", "namespace": "OpenAI", @@ -77084,13 +77277,13 @@ "decorators": [], "properties": [ { - "$id": "6034", + "$id": "6047", "kind": "property", "name": "reason", "serializedName": "reason", "doc": "The reason the message is incomplete.", "type": { - "$ref": "944" + "$ref": "945" }, "optional": false, "readOnly": false, @@ -77123,21 +77316,21 @@ "isHttpMetadata": false }, { - "$id": "6035", + "$id": "6048", "kind": "property", "name": "completed_at", "serializedName": "completed_at", "doc": "The Unix timestamp (in seconds) for when the message was completed.", "type": { - "$id": "6036", + "$id": "6049", "kind": "nullable", "type": { - "$id": "6037", + "$id": "6050", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6038", + "$id": "6051", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -77162,21 +77355,21 @@ "isHttpMetadata": false }, { - "$id": "6039", + "$id": "6052", "kind": "property", "name": "incomplete_at", "serializedName": "incomplete_at", "doc": "The Unix timestamp (in seconds) for when the message was marked as incomplete.", "type": { - "$id": "6040", + "$id": "6053", "kind": "nullable", "type": { - "$id": "6041", + "$id": "6054", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6042", + "$id": "6055", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -77201,13 +77394,13 @@ "isHttpMetadata": false }, { - "$id": "6043", + "$id": "6056", "kind": "property", "name": "role", "serializedName": "role", "doc": "The entity that produced the message. One of `user` or `assistant`.", "type": { - "$ref": "951" + "$ref": "952" }, "optional": false, "readOnly": false, @@ -77223,13 +77416,13 @@ "isHttpMetadata": false }, { - "$id": "6044", + "$id": "6057", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message in array of text and/or images.", "type": { - "$ref": "5936" + "$ref": "5949" }, "optional": false, "readOnly": true, @@ -77245,16 +77438,16 @@ "isHttpMetadata": false }, { - "$id": "6045", + "$id": "6058", "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": "6046", + "$id": "6059", "kind": "nullable", "type": { - "$id": "6047", + "$id": "6060", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77276,16 +77469,16 @@ "isHttpMetadata": false }, { - "$id": "6048", + "$id": "6061", "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": "6049", + "$id": "6062", "kind": "nullable", "type": { - "$id": "6050", + "$id": "6063", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77307,20 +77500,20 @@ "isHttpMetadata": false }, { - "$id": "6051", + "$id": "6064", "kind": "property", "name": "attachments", "serializedName": "attachments", "doc": "A list of files attached to the message, and the tools they were added to.", "type": { - "$id": "6052", + "$id": "6065", "kind": "nullable", "type": { - "$id": "6053", + "$id": "6066", "kind": "array", "name": "Array28", "valueType": { - "$id": "6054", + "$id": "6067", "kind": "model", "name": "MessageObjectAttachment", "namespace": "OpenAI", @@ -77329,13 +77522,13 @@ "decorators": [], "properties": [ { - "$id": "6055", + "$id": "6068", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to attach to the message.", "type": { - "$id": "6056", + "$id": "6069", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77355,25 +77548,25 @@ "isHttpMetadata": false }, { - "$id": "6057", + "$id": "6070", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "The tools to add this file to.", "type": { - "$id": "6058", + "$id": "6071", "kind": "array", "name": "Array29", "valueType": { - "$id": "6059", + "$id": "6072", "kind": "union", "name": "MessageObjectAttachmentTool", "variantTypes": [ { - "$ref": "2397" + "$ref": "2398" }, { - "$ref": "6018" + "$ref": "6031" } ], "namespace": "OpenAI", @@ -77416,13 +77609,13 @@ "isHttpMetadata": false }, { - "$id": "6060", + "$id": "6073", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2443" + "$ref": "2444" }, "optional": false, "readOnly": true, @@ -77440,13 +77633,13 @@ ] }, { - "$ref": "6033" + "$ref": "6046" }, { - "$ref": "6054" + "$ref": "6067" }, { - "$id": "6061", + "$id": "6074", "kind": "model", "name": "ListMessagesResponse", "namespace": "OpenAI", @@ -77455,12 +77648,12 @@ "decorators": [], "properties": [ { - "$id": "6062", + "$id": "6075", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1681" + "$ref": "1682" }, "optional": false, "readOnly": false, @@ -77476,16 +77669,16 @@ "isHttpMetadata": false }, { - "$id": "6063", + "$id": "6076", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6064", + "$id": "6077", "kind": "array", "name": "ArrayMessageObject", "valueType": { - "$ref": "6021" + "$ref": "6034" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -77504,12 +77697,12 @@ "isHttpMetadata": false }, { - "$id": "6065", + "$id": "6078", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6066", + "$id": "6079", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77529,12 +77722,12 @@ "isHttpMetadata": false }, { - "$id": "6067", + "$id": "6080", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6068", + "$id": "6081", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77554,12 +77747,12 @@ "isHttpMetadata": false }, { - "$id": "6069", + "$id": "6082", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6070", + "$id": "6083", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -77581,7 +77774,7 @@ ] }, { - "$id": "6071", + "$id": "6084", "kind": "model", "name": "ModifyMessageRequest", "namespace": "OpenAI", @@ -77590,13 +77783,13 @@ "decorators": [], "properties": [ { - "$id": "6072", + "$id": "6085", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": true, "readOnly": false, @@ -77614,7 +77807,7 @@ ] }, { - "$id": "6073", + "$id": "6086", "kind": "model", "name": "DeleteMessageResponse", "namespace": "OpenAI", @@ -77623,12 +77816,12 @@ "decorators": [], "properties": [ { - "$id": "6074", + "$id": "6087", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6075", + "$id": "6088", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77648,12 +77841,12 @@ "isHttpMetadata": false }, { - "$id": "6076", + "$id": "6089", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6077", + "$id": "6090", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -77673,12 +77866,12 @@ "isHttpMetadata": false }, { - "$id": "6078", + "$id": "6091", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1683" + "$ref": "1684" }, "optional": false, "readOnly": false, @@ -77696,7 +77889,7 @@ ] }, { - "$id": "6079", + "$id": "6092", "kind": "model", "name": "CreateModerationRequest", "namespace": "OpenAI", @@ -77705,37 +77898,37 @@ "decorators": [], "properties": [ { - "$id": "6080", + "$id": "6093", "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": "6081", + "$id": "6094", "kind": "union", "name": "CreateModerationRequestInput", "variantTypes": [ { - "$id": "6082", + "$id": "6095", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$ref": "2437" + "$ref": "2438" }, { - "$id": "6083", + "$id": "6096", "kind": "array", "name": "Array30", "valueType": { - "$id": "6084", + "$id": "6097", "kind": "union", "name": "CreateModerationRequestInput1", "variantTypes": [ { - "$id": "6085", + "$id": "6098", "kind": "model", "name": "CreateModerationRequestInput2", "namespace": "OpenAI", @@ -77744,13 +77937,13 @@ "decorators": [], "properties": [ { - "$id": "6086", + "$id": "6099", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `image_url`.", "type": { - "$ref": "1685" + "$ref": "1686" }, "optional": false, "readOnly": false, @@ -77766,13 +77959,13 @@ "isHttpMetadata": false }, { - "$id": "6087", + "$id": "6100", "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": "6088", + "$id": "6101", "kind": "model", "name": "CreateModerationRequestInputImageUrl", "namespace": "OpenAI", @@ -77781,13 +77974,13 @@ "decorators": [], "properties": [ { - "$id": "6089", + "$id": "6102", "kind": "property", "name": "url", "serializedName": "url", "doc": "Either a URL of the image or the base64 encoded image data.", "type": { - "$id": "6090", + "$id": "6103", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77824,7 +78017,7 @@ ] }, { - "$id": "6091", + "$id": "6104", "kind": "model", "name": "CreateModerationRequestInput3", "namespace": "OpenAI", @@ -77833,13 +78026,13 @@ "decorators": [], "properties": [ { - "$id": "6092", + "$id": "6105", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `text`.", "type": { - "$ref": "1687" + "$ref": "1688" }, "optional": false, "readOnly": false, @@ -77855,13 +78048,13 @@ "isHttpMetadata": false }, { - "$id": "6093", + "$id": "6106", "kind": "property", "name": "text", "serializedName": "text", "doc": "A string of text to classify.", "type": { - "$id": "6094", + "$id": "6107", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77907,13 +78100,13 @@ "isHttpMetadata": false }, { - "$id": "6095", + "$id": "6108", "kind": "property", "name": "model", "serializedName": "model", "doc": "The content moderation model you would like to use. Learn more in\n[the moderation guide](/docs/guides/moderation), and learn about\navailable models [here](/docs/models#moderation).", "type": { - "$ref": "955" + "$ref": "956" }, "optional": true, "readOnly": false, @@ -77931,16 +78124,16 @@ ] }, { - "$ref": "6085" + "$ref": "6098" }, { - "$ref": "6088" + "$ref": "6101" }, { - "$ref": "6091" + "$ref": "6104" }, { - "$id": "6096", + "$id": "6109", "kind": "model", "name": "CreateModerationResponse", "namespace": "OpenAI", @@ -77950,13 +78143,13 @@ "decorators": [], "properties": [ { - "$id": "6097", + "$id": "6110", "kind": "property", "name": "id", "serializedName": "id", "doc": "The unique identifier for the moderation request.", "type": { - "$id": "6098", + "$id": "6111", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77976,13 +78169,13 @@ "isHttpMetadata": false }, { - "$id": "6099", + "$id": "6112", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model used to generate the moderation results.", "type": { - "$id": "6100", + "$id": "6113", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78002,17 +78195,17 @@ "isHttpMetadata": false }, { - "$id": "6101", + "$id": "6114", "kind": "property", "name": "results", "serializedName": "results", "doc": "A list of moderation objects.", "type": { - "$id": "6102", + "$id": "6115", "kind": "array", "name": "ArrayCreateModerationResponseResult", "valueType": { - "$id": "6103", + "$id": "6116", "kind": "model", "name": "CreateModerationResponseResult", "namespace": "OpenAI", @@ -78021,13 +78214,13 @@ "decorators": [], "properties": [ { - "$id": "6104", + "$id": "6117", "kind": "property", "name": "flagged", "serializedName": "flagged", "doc": "Whether any of the below categories are flagged.", "type": { - "$id": "6105", + "$id": "6118", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78047,13 +78240,13 @@ "isHttpMetadata": false }, { - "$id": "6106", + "$id": "6119", "kind": "property", "name": "categories", "serializedName": "categories", "doc": "A list of the categories, and whether they are flagged or not.", "type": { - "$id": "6107", + "$id": "6120", "kind": "model", "name": "CreateModerationResponseResultCategories", "namespace": "OpenAI", @@ -78062,13 +78255,13 @@ "decorators": [], "properties": [ { - "$id": "6108", + "$id": "6121", "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": "6109", + "$id": "6122", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78088,13 +78281,13 @@ "isHttpMetadata": false }, { - "$id": "6110", + "$id": "6123", "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": "6111", + "$id": "6124", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78114,13 +78307,13 @@ "isHttpMetadata": false }, { - "$id": "6112", + "$id": "6125", "kind": "property", "name": "harassment", "serializedName": "harassment", "doc": "Content that expresses, incites, or promotes harassing language towards any target.", "type": { - "$id": "6113", + "$id": "6126", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78140,13 +78333,13 @@ "isHttpMetadata": false }, { - "$id": "6114", + "$id": "6127", "kind": "property", "name": "harassment/threatening", "serializedName": "harassment/threatening", "doc": "Harassment content that also includes violence or serious harm towards any target.", "type": { - "$id": "6115", + "$id": "6128", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78166,13 +78359,13 @@ "isHttpMetadata": false }, { - "$id": "6116", + "$id": "6129", "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": "6117", + "$id": "6130", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78192,13 +78385,13 @@ "isHttpMetadata": false }, { - "$id": "6118", + "$id": "6131", "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": "6119", + "$id": "6132", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78218,13 +78411,13 @@ "isHttpMetadata": false }, { - "$id": "6120", + "$id": "6133", "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": "6121", + "$id": "6134", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78244,13 +78437,13 @@ "isHttpMetadata": false }, { - "$id": "6122", + "$id": "6135", "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": "6123", + "$id": "6136", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78270,13 +78463,13 @@ "isHttpMetadata": false }, { - "$id": "6124", + "$id": "6137", "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": "6125", + "$id": "6138", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78296,13 +78489,13 @@ "isHttpMetadata": false }, { - "$id": "6126", + "$id": "6139", "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": "6127", + "$id": "6140", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78322,13 +78515,13 @@ "isHttpMetadata": false }, { - "$id": "6128", + "$id": "6141", "kind": "property", "name": "sexual/minors", "serializedName": "sexual/minors", "doc": "Sexual content that includes an individual who is under 18 years old.", "type": { - "$id": "6129", + "$id": "6142", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78348,13 +78541,13 @@ "isHttpMetadata": false }, { - "$id": "6130", + "$id": "6143", "kind": "property", "name": "violence", "serializedName": "violence", "doc": "Content that depicts death, violence, or physical injury.", "type": { - "$id": "6131", + "$id": "6144", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78374,13 +78567,13 @@ "isHttpMetadata": false }, { - "$id": "6132", + "$id": "6145", "kind": "property", "name": "violence/graphic", "serializedName": "violence/graphic", "doc": "Content that depicts death, violence, or physical injury in graphic detail.", "type": { - "$id": "6133", + "$id": "6146", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78415,13 +78608,13 @@ "isHttpMetadata": false }, { - "$id": "6134", + "$id": "6147", "kind": "property", "name": "category_scores", "serializedName": "category_scores", "doc": "A list of the categories along with their scores as predicted by model.", "type": { - "$id": "6135", + "$id": "6148", "kind": "model", "name": "CreateModerationResponseResultCategoryScores", "namespace": "OpenAI", @@ -78430,13 +78623,13 @@ "decorators": [], "properties": [ { - "$id": "6136", + "$id": "6149", "kind": "property", "name": "hate", "serializedName": "hate", "doc": "The score for the category 'hate'.", "type": { - "$id": "6137", + "$id": "6150", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78456,13 +78649,13 @@ "isHttpMetadata": false }, { - "$id": "6138", + "$id": "6151", "kind": "property", "name": "hate/threatening", "serializedName": "hate/threatening", "doc": "The score for the category 'hate/threatening'.", "type": { - "$id": "6139", + "$id": "6152", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78482,13 +78675,13 @@ "isHttpMetadata": false }, { - "$id": "6140", + "$id": "6153", "kind": "property", "name": "harassment", "serializedName": "harassment", "doc": "The score for the category 'harassment'.", "type": { - "$id": "6141", + "$id": "6154", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78508,13 +78701,13 @@ "isHttpMetadata": false }, { - "$id": "6142", + "$id": "6155", "kind": "property", "name": "harassment/threatening", "serializedName": "harassment/threatening", "doc": "The score for the category 'harassment/threatening'.", "type": { - "$id": "6143", + "$id": "6156", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78534,13 +78727,13 @@ "isHttpMetadata": false }, { - "$id": "6144", + "$id": "6157", "kind": "property", "name": "illicit", "serializedName": "illicit", "doc": "The score for the category 'illicit'.", "type": { - "$id": "6145", + "$id": "6158", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78560,13 +78753,13 @@ "isHttpMetadata": false }, { - "$id": "6146", + "$id": "6159", "kind": "property", "name": "illicit/violent", "serializedName": "illicit/violent", "doc": "The score for the category 'illicit/violent'.", "type": { - "$id": "6147", + "$id": "6160", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78586,13 +78779,13 @@ "isHttpMetadata": false }, { - "$id": "6148", + "$id": "6161", "kind": "property", "name": "self-harm", "serializedName": "self-harm", "doc": "The score for the category 'self-harm'.", "type": { - "$id": "6149", + "$id": "6162", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78612,13 +78805,13 @@ "isHttpMetadata": false }, { - "$id": "6150", + "$id": "6163", "kind": "property", "name": "self-harm/intent", "serializedName": "self-harm/intent", "doc": "The score for the category 'self-harm/intent'.", "type": { - "$id": "6151", + "$id": "6164", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78638,13 +78831,13 @@ "isHttpMetadata": false }, { - "$id": "6152", + "$id": "6165", "kind": "property", "name": "self-harm/instructions", "serializedName": "self-harm/instructions", "doc": "The score for the category 'self-harm/instructions'.", "type": { - "$id": "6153", + "$id": "6166", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78664,13 +78857,13 @@ "isHttpMetadata": false }, { - "$id": "6154", + "$id": "6167", "kind": "property", "name": "sexual", "serializedName": "sexual", "doc": "The score for the category 'sexual'.", "type": { - "$id": "6155", + "$id": "6168", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78690,13 +78883,13 @@ "isHttpMetadata": false }, { - "$id": "6156", + "$id": "6169", "kind": "property", "name": "sexual/minors", "serializedName": "sexual/minors", "doc": "The score for the category 'sexual/minors'.", "type": { - "$id": "6157", + "$id": "6170", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78716,13 +78909,13 @@ "isHttpMetadata": false }, { - "$id": "6158", + "$id": "6171", "kind": "property", "name": "violence", "serializedName": "violence", "doc": "The score for the category 'violence'.", "type": { - "$id": "6159", + "$id": "6172", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78742,13 +78935,13 @@ "isHttpMetadata": false }, { - "$id": "6160", + "$id": "6173", "kind": "property", "name": "violence/graphic", "serializedName": "violence/graphic", "doc": "The score for the category 'violence/graphic'.", "type": { - "$id": "6161", + "$id": "6174", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78783,13 +78976,13 @@ "isHttpMetadata": false }, { - "$id": "6162", + "$id": "6175", "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": "6163", + "$id": "6176", "kind": "model", "name": "CreateModerationResponseResultCategoryAppliedInputTypes", "namespace": "OpenAI", @@ -78798,32 +78991,32 @@ "decorators": [], "properties": [ { - "$id": "6164", + "$id": "6177", "kind": "property", "name": "hate", "serializedName": "hate", "doc": "The applied input type(s) for the category 'hate'.", "type": { - "$id": "6165", + "$id": "6178", "kind": "array", "name": "Array31", "valueType": { - "$id": "6166", + "$id": "6179", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "1450" + "$ref": "1451" }, "enumType": { - "$id": "6167", + "$id": "6180", "kind": "enum", "decorators": [], "name": "ModerationAppliedInputType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6168", + "$id": "6181", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -78832,29 +79025,29 @@ }, "values": [ { - "$id": "6169", + "$id": "6182", "kind": "enumvalue", "decorators": [], "name": "text", "value": "text", "valueType": { - "$ref": "6168" + "$ref": "6181" }, "enumType": { - "$ref": "6167" + "$ref": "6180" } }, { - "$id": "6170", + "$id": "6183", "kind": "enumvalue", "decorators": [], "name": "image", "value": "image", "valueType": { - "$ref": "6168" + "$ref": "6181" }, "enumType": { - "$ref": "6167" + "$ref": "6180" } } ], @@ -78886,13 +79079,13 @@ "isHttpMetadata": false }, { - "$id": "6171", + "$id": "6184", "kind": "property", "name": "hate/threatening", "serializedName": "hate/threatening", "doc": "The applied input type(s) for the category 'hate/threatening'.", "type": { - "$ref": "6165" + "$ref": "6178" }, "optional": false, "readOnly": false, @@ -78908,13 +79101,13 @@ "isHttpMetadata": false }, { - "$id": "6172", + "$id": "6185", "kind": "property", "name": "harassment", "serializedName": "harassment", "doc": "The applied input type(s) for the category 'harassment'.", "type": { - "$ref": "6165" + "$ref": "6178" }, "optional": false, "readOnly": false, @@ -78930,13 +79123,13 @@ "isHttpMetadata": false }, { - "$id": "6173", + "$id": "6186", "kind": "property", "name": "harassment/threatening", "serializedName": "harassment/threatening", "doc": "The applied input type(s) for the category 'harassment/threatening'.", "type": { - "$ref": "6165" + "$ref": "6178" }, "optional": false, "readOnly": false, @@ -78952,13 +79145,13 @@ "isHttpMetadata": false }, { - "$id": "6174", + "$id": "6187", "kind": "property", "name": "illicit", "serializedName": "illicit", "doc": "The applied input type(s) for the category 'illicit'.", "type": { - "$ref": "6165" + "$ref": "6178" }, "optional": false, "readOnly": false, @@ -78974,13 +79167,13 @@ "isHttpMetadata": false }, { - "$id": "6175", + "$id": "6188", "kind": "property", "name": "illicit/violent", "serializedName": "illicit/violent", "doc": "The applied input type(s) for the category 'illicit/violent'.", "type": { - "$ref": "6165" + "$ref": "6178" }, "optional": false, "readOnly": false, @@ -78996,33 +79189,33 @@ "isHttpMetadata": false }, { - "$id": "6176", + "$id": "6189", "kind": "property", "name": "self-harm", "serializedName": "self-harm", "doc": "The applied input type(s) for the category 'self-harm'.", "type": { - "$id": "6177", + "$id": "6190", "kind": "array", "name": "Array32", "valueType": { - "$id": "6178", + "$id": "6191", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSelfHarm", "variantTypes": [ { - "$ref": "6166" + "$ref": "6179" }, { - "$id": "6179", + "$id": "6192", "kind": "enumvalue", "name": "image", "value": "image", "valueType": { - "$ref": "1450" + "$ref": "1451" }, "enumType": { - "$ref": "6167" + "$ref": "6180" }, "decorators": [] } @@ -79047,25 +79240,25 @@ "isHttpMetadata": false }, { - "$id": "6180", + "$id": "6193", "kind": "property", "name": "self-harm/intent", "serializedName": "self-harm/intent", "doc": "The applied input type(s) for the category 'self-harm/intent'.", "type": { - "$id": "6181", + "$id": "6194", "kind": "array", "name": "Array33", "valueType": { - "$id": "6182", + "$id": "6195", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmIntent", "variantTypes": [ { - "$ref": "6166" + "$ref": "6179" }, { - "$ref": "6179" + "$ref": "6192" } ], "namespace": "OpenAI", @@ -79088,25 +79281,25 @@ "isHttpMetadata": false }, { - "$id": "6183", + "$id": "6196", "kind": "property", "name": "self-harm/instructions", "serializedName": "self-harm/instructions", "doc": "The applied input type(s) for the category 'self-harm/instructions'.", "type": { - "$id": "6184", + "$id": "6197", "kind": "array", "name": "Array34", "valueType": { - "$id": "6185", + "$id": "6198", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmInstruction", "variantTypes": [ { - "$ref": "6166" + "$ref": "6179" }, { - "$ref": "6179" + "$ref": "6192" } ], "namespace": "OpenAI", @@ -79129,25 +79322,25 @@ "isHttpMetadata": false }, { - "$id": "6186", + "$id": "6199", "kind": "property", "name": "sexual", "serializedName": "sexual", "doc": "The applied input type(s) for the category 'sexual'.", "type": { - "$id": "6187", + "$id": "6200", "kind": "array", "name": "Array35", "valueType": { - "$id": "6188", + "$id": "6201", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSexual", "variantTypes": [ { - "$ref": "6166" + "$ref": "6179" }, { - "$ref": "6179" + "$ref": "6192" } ], "namespace": "OpenAI", @@ -79170,13 +79363,13 @@ "isHttpMetadata": false }, { - "$id": "6189", + "$id": "6202", "kind": "property", "name": "sexual/minors", "serializedName": "sexual/minors", "doc": "The applied input type(s) for the category 'sexual/minors'.", "type": { - "$ref": "6165" + "$ref": "6178" }, "optional": false, "readOnly": false, @@ -79192,25 +79385,25 @@ "isHttpMetadata": false }, { - "$id": "6190", + "$id": "6203", "kind": "property", "name": "violence", "serializedName": "violence", "doc": "The applied input type(s) for the category 'violence'.", "type": { - "$id": "6191", + "$id": "6204", "kind": "array", "name": "Array36", "valueType": { - "$id": "6192", + "$id": "6205", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesViolence", "variantTypes": [ { - "$ref": "6166" + "$ref": "6179" }, { - "$ref": "6179" + "$ref": "6192" } ], "namespace": "OpenAI", @@ -79233,25 +79426,25 @@ "isHttpMetadata": false }, { - "$id": "6193", + "$id": "6206", "kind": "property", "name": "violence/graphic", "serializedName": "violence/graphic", "doc": "The applied input type(s) for the category 'violence/graphic'.", "type": { - "$id": "6194", + "$id": "6207", "kind": "array", "name": "Array37", "valueType": { - "$id": "6195", + "$id": "6208", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesViolenceGraphic", "variantTypes": [ { - "$ref": "6166" + "$ref": "6179" }, { - "$ref": "6179" + "$ref": "6192" } ], "namespace": "OpenAI", @@ -79309,19 +79502,19 @@ ] }, { - "$ref": "6103" + "$ref": "6116" }, { - "$ref": "6107" + "$ref": "6120" }, { - "$ref": "6135" + "$ref": "6148" }, { - "$ref": "6163" + "$ref": "6176" }, { - "$id": "6196", + "$id": "6209", "kind": "model", "name": "CreateThreadAndRunRequest", "namespace": "OpenAI", @@ -79330,13 +79523,13 @@ "decorators": [], "properties": [ { - "$id": "6197", + "$id": "6210", "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": "6198", + "$id": "6211", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79356,12 +79549,12 @@ "isHttpMetadata": false }, { - "$id": "6199", + "$id": "6212", "kind": "property", "name": "thread", "serializedName": "thread", "type": { - "$id": "6200", + "$id": "6213", "kind": "model", "name": "CreateThreadRequest", "namespace": "OpenAI", @@ -79371,17 +79564,17 @@ "decorators": [], "properties": [ { - "$id": "6201", + "$id": "6214", "kind": "property", "name": "messages", "serializedName": "messages", "doc": "A list of [messages](/docs/api-reference/messages) to start the thread with.", "type": { - "$id": "6202", + "$id": "6215", "kind": "array", "name": "ArrayCreateMessageRequest", "valueType": { - "$ref": "5933" + "$ref": "5946" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -79400,16 +79593,16 @@ "isHttpMetadata": false }, { - "$id": "6203", + "$id": "6216", "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": "6204", + "$id": "6217", "kind": "nullable", "type": { - "$id": "6205", + "$id": "6218", "kind": "model", "name": "CreateThreadRequestToolResources1", "namespace": "OpenAI", @@ -79418,12 +79611,12 @@ "decorators": [], "properties": [ { - "$id": "6206", + "$id": "6219", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "6207", + "$id": "6220", "kind": "model", "name": "CreateThreadRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -79432,13 +79625,13 @@ "decorators": [], "properties": [ { - "$id": "6208", + "$id": "6221", "kind": "property", "name": "file_ids", "serializedName": "file_ids", "doc": "A list of [file](/docs/api-reference/files) IDs made available to the `code_interpreter` tool. There can be a maximum of 20 files associated with the tool.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": true, "readOnly": false, @@ -79469,12 +79662,12 @@ "isHttpMetadata": false }, { - "$id": "6209", + "$id": "6222", "kind": "property", "name": "file_search", "serializedName": "file_search", "type": { - "$ref": "2524" + "$ref": "2525" }, "optional": true, "readOnly": false, @@ -79507,13 +79700,13 @@ "isHttpMetadata": false }, { - "$id": "6210", + "$id": "6223", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": true, "readOnly": false, @@ -79544,16 +79737,16 @@ "isHttpMetadata": false }, { - "$id": "6211", + "$id": "6224", "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": "6212", + "$id": "6225", "kind": "nullable", "type": { - "$ref": "961" + "$ref": "962" }, "namespace": "OpenAI" }, @@ -79571,16 +79764,16 @@ "isHttpMetadata": false }, { - "$id": "6213", + "$id": "6226", "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": "6214", + "$id": "6227", "kind": "nullable", "type": { - "$id": "6215", + "$id": "6228", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79602,16 +79795,16 @@ "isHttpMetadata": false }, { - "$id": "6216", + "$id": "6229", "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": "6217", + "$id": "6230", "kind": "nullable", "type": { - "$ref": "2394" + "$ref": "2395" }, "namespace": "OpenAI" }, @@ -79629,16 +79822,16 @@ "isHttpMetadata": false }, { - "$id": "6218", + "$id": "6231", "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": "6219", + "$id": "6232", "kind": "nullable", "type": { - "$id": "6220", + "$id": "6233", "kind": "model", "name": "CreateThreadAndRunRequestToolResources1", "namespace": "OpenAI", @@ -79647,12 +79840,12 @@ "decorators": [], "properties": [ { - "$id": "6221", + "$id": "6234", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "6222", + "$id": "6235", "kind": "model", "name": "CreateThreadAndRunRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -79661,13 +79854,13 @@ "decorators": [], "properties": [ { - "$id": "6223", + "$id": "6236", "kind": "property", "name": "file_ids", "serializedName": "file_ids", "doc": "A list of [file](/docs/api-reference/files) IDs made available to the `code_interpreter` tool. There can be a maximum of 20 files associated with the tool.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": true, "readOnly": false, @@ -79698,12 +79891,12 @@ "isHttpMetadata": false }, { - "$id": "6224", + "$id": "6237", "kind": "property", "name": "file_search", "serializedName": "file_search", "type": { - "$ref": "2440" + "$ref": "2441" }, "optional": true, "readOnly": false, @@ -79736,13 +79929,13 @@ "isHttpMetadata": false }, { - "$id": "6225", + "$id": "6238", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": true, "readOnly": false, @@ -79758,16 +79951,16 @@ "isHttpMetadata": false }, { - "$id": "6226", + "$id": "6239", "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": "6227", + "$id": "6240", "kind": "nullable", "type": { - "$id": "6228", + "$id": "6241", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79789,16 +79982,16 @@ "isHttpMetadata": false }, { - "$id": "6229", + "$id": "6242", "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": "6230", + "$id": "6243", "kind": "nullable", "type": { - "$id": "6231", + "$id": "6244", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79820,16 +80013,16 @@ "isHttpMetadata": false }, { - "$id": "6232", + "$id": "6245", "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": "6233", + "$id": "6246", "kind": "nullable", "type": { - "$id": "6234", + "$id": "6247", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79851,16 +80044,16 @@ "isHttpMetadata": false }, { - "$id": "6235", + "$id": "6248", "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": "6236", + "$id": "6249", "kind": "nullable", "type": { - "$id": "6237", + "$id": "6250", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -79882,16 +80075,16 @@ "isHttpMetadata": false }, { - "$id": "6238", + "$id": "6251", "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": "6239", + "$id": "6252", "kind": "nullable", "type": { - "$id": "6240", + "$id": "6253", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -79913,15 +80106,15 @@ "isHttpMetadata": false }, { - "$id": "6241", + "$id": "6254", "kind": "property", "name": "truncation_strategy", "serializedName": "truncation_strategy", "type": { - "$id": "6242", + "$id": "6255", "kind": "nullable", "type": { - "$id": "6243", + "$id": "6256", "kind": "model", "name": "TruncationObject", "namespace": "OpenAI", @@ -79931,13 +80124,13 @@ "decorators": [], "properties": [ { - "$id": "6244", + "$id": "6257", "kind": "property", "name": "type", "serializedName": "type", "doc": "The truncation strategy to use for the thread. The default is `auto`. If set to `last_messages`, the thread will be truncated to the n most recent messages in the thread. When set to `auto`, messages in the middle of the thread will be dropped to fit the context length of the model, `max_prompt_tokens`.", "type": { - "$ref": "995" + "$ref": "996" }, "optional": false, "readOnly": false, @@ -79953,16 +80146,16 @@ "isHttpMetadata": false }, { - "$id": "6245", + "$id": "6258", "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": "6246", + "$id": "6259", "kind": "nullable", "type": { - "$id": "6247", + "$id": "6260", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80001,23 +80194,23 @@ "isHttpMetadata": false }, { - "$id": "6248", + "$id": "6261", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "6249", + "$id": "6262", "kind": "nullable", "type": { - "$id": "6250", + "$id": "6263", "kind": "union", "name": "AssistantsApiToolChoiceOption", "variantTypes": [ { - "$ref": "999" + "$ref": "1000" }, { - "$id": "6251", + "$id": "6264", "kind": "model", "name": "AssistantsNamedToolChoice", "namespace": "OpenAI", @@ -80027,13 +80220,13 @@ "decorators": [], "properties": [ { - "$id": "6252", + "$id": "6265", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the tool. If type is `function`, the function name must be set", "type": { - "$ref": "1004" + "$ref": "1005" }, "optional": false, "readOnly": false, @@ -80049,12 +80242,12 @@ "isHttpMetadata": false }, { - "$id": "6253", + "$id": "6266", "kind": "property", "name": "function", "serializedName": "function", "type": { - "$id": "6254", + "$id": "6267", "kind": "model", "name": "AssistantsNamedToolChoiceFunction", "namespace": "OpenAI", @@ -80063,13 +80256,13 @@ "decorators": [], "properties": [ { - "$id": "6255", + "$id": "6268", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "6256", + "$id": "6269", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80125,17 +80318,17 @@ "isHttpMetadata": false }, { - "$id": "6257", + "$id": "6270", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "type": { - "$id": "6258", + "$id": "6271", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "6259", + "$id": "6272", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -80157,15 +80350,15 @@ "isHttpMetadata": false }, { - "$id": "6260", + "$id": "6273", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "6261", + "$id": "6274", "kind": "nullable", "type": { - "$ref": "2455" + "$ref": "2456" }, "namespace": "OpenAI" }, @@ -80185,31 +80378,31 @@ ] }, { - "$ref": "6200" + "$ref": "6213" }, { - "$ref": "6205" + "$ref": "6218" }, { - "$ref": "6207" + "$ref": "6220" }, { - "$ref": "6220" + "$ref": "6233" }, { - "$ref": "6222" + "$ref": "6235" }, { - "$ref": "6243" + "$ref": "6256" }, { - "$ref": "6251" + "$ref": "6264" }, { - "$ref": "6254" + "$ref": "6267" }, { - "$id": "6262", + "$id": "6275", "kind": "model", "name": "RunObject", "namespace": "OpenAI", @@ -80219,13 +80412,13 @@ "decorators": [], "properties": [ { - "$id": "6263", + "$id": "6276", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6264", + "$id": "6277", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80245,13 +80438,13 @@ "isHttpMetadata": false }, { - "$id": "6265", + "$id": "6278", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `thread.run`.", "type": { - "$ref": "1689" + "$ref": "1690" }, "optional": false, "readOnly": false, @@ -80267,18 +80460,18 @@ "isHttpMetadata": false }, { - "$id": "6266", + "$id": "6279", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the run was created.", "type": { - "$id": "6267", + "$id": "6280", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6268", + "$id": "6281", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80301,13 +80494,13 @@ "isHttpMetadata": false }, { - "$id": "6269", + "$id": "6282", "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": "6270", + "$id": "6283", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80327,13 +80520,13 @@ "isHttpMetadata": false }, { - "$id": "6271", + "$id": "6284", "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": "6272", + "$id": "6285", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80353,13 +80546,13 @@ "isHttpMetadata": false }, { - "$id": "6273", + "$id": "6286", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the run, which can be either `queued`, `in_progress`, `requires_action`, `cancelling`, `cancelled`, `failed`, `completed`, `incomplete`, or `expired`.", "type": { - "$ref": "1009" + "$ref": "1010" }, "optional": false, "readOnly": false, @@ -80375,16 +80568,16 @@ "isHttpMetadata": false }, { - "$id": "6274", + "$id": "6287", "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": "6275", + "$id": "6288", "kind": "nullable", "type": { - "$id": "6276", + "$id": "6289", "kind": "model", "name": "RunObjectRequiredAction1", "namespace": "OpenAI", @@ -80393,13 +80586,13 @@ "decorators": [], "properties": [ { - "$id": "6277", + "$id": "6290", "kind": "property", "name": "type", "serializedName": "type", "doc": "For now, this is always `submit_tool_outputs`.", "type": { - "$ref": "1691" + "$ref": "1692" }, "optional": false, "readOnly": false, @@ -80415,13 +80608,13 @@ "isHttpMetadata": false }, { - "$id": "6278", + "$id": "6291", "kind": "property", "name": "submit_tool_outputs", "serializedName": "submit_tool_outputs", "doc": "Details on the tool outputs needed for this run to continue.", "type": { - "$id": "6279", + "$id": "6292", "kind": "model", "name": "RunObjectRequiredActionSubmitToolOutputs", "namespace": "OpenAI", @@ -80430,17 +80623,17 @@ "decorators": [], "properties": [ { - "$id": "6280", + "$id": "6293", "kind": "property", "name": "tool_calls", "serializedName": "tool_calls", "doc": "A list of the relevant tool calls.", "type": { - "$id": "6281", + "$id": "6294", "kind": "array", "name": "ArrayRunToolCallObject", "valueType": { - "$id": "6282", + "$id": "6295", "kind": "model", "name": "RunToolCallObject", "namespace": "OpenAI", @@ -80450,13 +80643,13 @@ "decorators": [], "properties": [ { - "$id": "6283", + "$id": "6296", "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": "6284", + "$id": "6297", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80476,13 +80669,13 @@ "isHttpMetadata": false }, { - "$id": "6285", + "$id": "6298", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of tool call the output is required for. For now, this is always `function`.", "type": { - "$ref": "1693" + "$ref": "1694" }, "optional": false, "readOnly": false, @@ -80498,13 +80691,13 @@ "isHttpMetadata": false }, { - "$id": "6286", + "$id": "6299", "kind": "property", "name": "function", "serializedName": "function", "doc": "The function definition.", "type": { - "$id": "6287", + "$id": "6300", "kind": "model", "name": "RunToolCallObjectFunction", "namespace": "OpenAI", @@ -80513,13 +80706,13 @@ "decorators": [], "properties": [ { - "$id": "6288", + "$id": "6301", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function.", "type": { - "$id": "6289", + "$id": "6302", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80539,13 +80732,13 @@ "isHttpMetadata": false }, { - "$id": "6290", + "$id": "6303", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "The arguments that the model expects you to pass to the function.", "type": { - "$id": "6291", + "$id": "6304", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80630,16 +80823,16 @@ "isHttpMetadata": false }, { - "$id": "6292", + "$id": "6305", "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": "6293", + "$id": "6306", "kind": "nullable", "type": { - "$id": "6294", + "$id": "6307", "kind": "model", "name": "RunObjectLastError1", "namespace": "OpenAI", @@ -80648,13 +80841,13 @@ "decorators": [], "properties": [ { - "$id": "6295", + "$id": "6308", "kind": "property", "name": "code", "serializedName": "code", "doc": "One of `server_error`, `rate_limit_exceeded`, or `invalid_prompt`.", "type": { - "$ref": "1020" + "$ref": "1021" }, "optional": false, "readOnly": false, @@ -80670,13 +80863,13 @@ "isHttpMetadata": false }, { - "$id": "6296", + "$id": "6309", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "6297", + "$id": "6310", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80713,21 +80906,21 @@ "isHttpMetadata": false }, { - "$id": "6298", + "$id": "6311", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the run will expire.", "type": { - "$id": "6299", + "$id": "6312", "kind": "nullable", "type": { - "$id": "6300", + "$id": "6313", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6301", + "$id": "6314", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80752,21 +80945,21 @@ "isHttpMetadata": false }, { - "$id": "6302", + "$id": "6315", "kind": "property", "name": "started_at", "serializedName": "started_at", "doc": "The Unix timestamp (in seconds) for when the run was started.", "type": { - "$id": "6303", + "$id": "6316", "kind": "nullable", "type": { - "$id": "6304", + "$id": "6317", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6305", + "$id": "6318", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80791,21 +80984,21 @@ "isHttpMetadata": false }, { - "$id": "6306", + "$id": "6319", "kind": "property", "name": "cancelled_at", "serializedName": "cancelled_at", "doc": "The Unix timestamp (in seconds) for when the run was cancelled.", "type": { - "$id": "6307", + "$id": "6320", "kind": "nullable", "type": { - "$id": "6308", + "$id": "6321", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6309", + "$id": "6322", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80830,21 +81023,21 @@ "isHttpMetadata": false }, { - "$id": "6310", + "$id": "6323", "kind": "property", "name": "failed_at", "serializedName": "failed_at", "doc": "The Unix timestamp (in seconds) for when the run failed.", "type": { - "$id": "6311", + "$id": "6324", "kind": "nullable", "type": { - "$id": "6312", + "$id": "6325", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6313", + "$id": "6326", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80869,21 +81062,21 @@ "isHttpMetadata": false }, { - "$id": "6314", + "$id": "6327", "kind": "property", "name": "completed_at", "serializedName": "completed_at", "doc": "The Unix timestamp (in seconds) for when the run was completed.", "type": { - "$id": "6315", + "$id": "6328", "kind": "nullable", "type": { - "$id": "6316", + "$id": "6329", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6317", + "$id": "6330", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80908,16 +81101,16 @@ "isHttpMetadata": false }, { - "$id": "6318", + "$id": "6331", "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": "6319", + "$id": "6332", "kind": "nullable", "type": { - "$id": "6320", + "$id": "6333", "kind": "model", "name": "RunObjectIncompleteDetails1", "namespace": "OpenAI", @@ -80926,13 +81119,13 @@ "decorators": [], "properties": [ { - "$id": "6321", + "$id": "6334", "kind": "property", "name": "reason", "serializedName": "reason", "doc": "The reason why the run is incomplete. This will point to which specific token limit was reached over the course of the run.", "type": { - "$ref": "1025" + "$ref": "1026" }, "optional": true, "readOnly": false, @@ -80965,13 +81158,13 @@ "isHttpMetadata": false }, { - "$id": "6322", + "$id": "6335", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model that the [assistant](/docs/api-reference/assistants) used for this run.", "type": { - "$id": "6323", + "$id": "6336", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80991,13 +81184,13 @@ "isHttpMetadata": false }, { - "$id": "6324", + "$id": "6337", "kind": "property", "name": "instructions", "serializedName": "instructions", "doc": "The instructions that the [assistant](/docs/api-reference/assistants) used for this run.", "type": { - "$id": "6325", + "$id": "6338", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81017,13 +81210,13 @@ "isHttpMetadata": false }, { - "$id": "6326", + "$id": "6339", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "The list of tools that the [assistant](/docs/api-reference/assistants) used for this run.", "type": { - "$ref": "2394" + "$ref": "2395" }, "optional": false, "readOnly": true, @@ -81039,13 +81232,13 @@ "isHttpMetadata": false }, { - "$id": "6327", + "$id": "6340", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2443" + "$ref": "2444" }, "optional": false, "readOnly": true, @@ -81061,15 +81254,15 @@ "isHttpMetadata": false }, { - "$id": "6328", + "$id": "6341", "kind": "property", "name": "usage", "serializedName": "usage", "type": { - "$id": "6329", + "$id": "6342", "kind": "nullable", "type": { - "$id": "6330", + "$id": "6343", "kind": "model", "name": "RunCompletionUsage", "namespace": "OpenAI", @@ -81079,13 +81272,13 @@ "decorators": [], "properties": [ { - "$id": "6331", + "$id": "6344", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "Number of completion tokens used over the course of the run.", "type": { - "$id": "6332", + "$id": "6345", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81105,13 +81298,13 @@ "isHttpMetadata": false }, { - "$id": "6333", + "$id": "6346", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "Number of prompt tokens used over the course of the run.", "type": { - "$id": "6334", + "$id": "6347", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81131,13 +81324,13 @@ "isHttpMetadata": false }, { - "$id": "6335", + "$id": "6348", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "Total number of tokens used (prompt + completion).", "type": { - "$id": "6336", + "$id": "6349", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81174,16 +81367,16 @@ "isHttpMetadata": false }, { - "$id": "6337", + "$id": "6350", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "The sampling temperature used for this run. If not set, defaults to 1.", "type": { - "$id": "6338", + "$id": "6351", "kind": "nullable", "type": { - "$id": "6339", + "$id": "6352", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -81205,16 +81398,16 @@ "isHttpMetadata": false }, { - "$id": "6340", + "$id": "6353", "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": "6341", + "$id": "6354", "kind": "nullable", "type": { - "$id": "6342", + "$id": "6355", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -81236,16 +81429,16 @@ "isHttpMetadata": false }, { - "$id": "6343", + "$id": "6356", "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": "6344", + "$id": "6357", "kind": "nullable", "type": { - "$id": "6345", + "$id": "6358", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81267,16 +81460,16 @@ "isHttpMetadata": false }, { - "$id": "6346", + "$id": "6359", "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": "6347", + "$id": "6360", "kind": "nullable", "type": { - "$id": "6348", + "$id": "6361", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81298,15 +81491,15 @@ "isHttpMetadata": false }, { - "$id": "6349", + "$id": "6362", "kind": "property", "name": "truncation_strategy", "serializedName": "truncation_strategy", "type": { - "$id": "6350", + "$id": "6363", "kind": "nullable", "type": { - "$ref": "6243" + "$ref": "6256" }, "namespace": "OpenAI" }, @@ -81324,15 +81517,15 @@ "isHttpMetadata": false }, { - "$id": "6351", + "$id": "6364", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "6352", + "$id": "6365", "kind": "nullable", "type": { - "$ref": "6250" + "$ref": "6263" }, "namespace": "OpenAI" }, @@ -81350,17 +81543,17 @@ "isHttpMetadata": false }, { - "$id": "6353", + "$id": "6366", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "type": { - "$id": "6354", + "$id": "6367", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "6355", + "$id": "6368", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -81382,15 +81575,15 @@ "isHttpMetadata": false }, { - "$id": "6356", + "$id": "6369", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "6357", + "$id": "6370", "kind": "nullable", "type": { - "$ref": "2455" + "$ref": "2456" }, "namespace": "OpenAI" }, @@ -81410,28 +81603,28 @@ ] }, { - "$ref": "6276" + "$ref": "6289" }, { - "$ref": "6279" + "$ref": "6292" }, { - "$ref": "6282" + "$ref": "6295" }, { - "$ref": "6287" + "$ref": "6300" }, { - "$ref": "6294" + "$ref": "6307" }, { - "$ref": "6320" + "$ref": "6333" }, { - "$ref": "6330" + "$ref": "6343" }, { - "$id": "6358", + "$id": "6371", "kind": "model", "name": "CreateRunRequest", "namespace": "OpenAI", @@ -81440,13 +81633,13 @@ "decorators": [], "properties": [ { - "$id": "6359", + "$id": "6372", "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": "6360", + "$id": "6373", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81466,13 +81659,13 @@ "isHttpMetadata": false }, { - "$id": "6361", + "$id": "6374", "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": "6362", + "$id": "6375", "kind": "nullable", "type": { "$ref": "15" @@ -81493,12 +81686,12 @@ "isHttpMetadata": false }, { - "$id": "6363", + "$id": "6376", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", "type": { - "$id": "6364", + "$id": "6377", "kind": "nullable", "type": { "$ref": "53" @@ -81519,16 +81712,16 @@ "isHttpMetadata": false }, { - "$id": "6365", + "$id": "6378", "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": "6366", + "$id": "6379", "kind": "nullable", "type": { - "$id": "6367", + "$id": "6380", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81550,16 +81743,16 @@ "isHttpMetadata": false }, { - "$id": "6368", + "$id": "6381", "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": "6369", + "$id": "6382", "kind": "nullable", "type": { - "$id": "6370", + "$id": "6383", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81581,16 +81774,16 @@ "isHttpMetadata": false }, { - "$id": "6371", + "$id": "6384", "kind": "property", "name": "additional_messages", "serializedName": "additional_messages", "doc": "Adds additional messages to the thread before creating the run.", "type": { - "$id": "6372", + "$id": "6385", "kind": "nullable", "type": { - "$ref": "6202" + "$ref": "6215" }, "namespace": "OpenAI" }, @@ -81608,16 +81801,16 @@ "isHttpMetadata": false }, { - "$id": "6373", + "$id": "6386", "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": "6374", + "$id": "6387", "kind": "nullable", "type": { - "$ref": "2394" + "$ref": "2395" }, "namespace": "OpenAI" }, @@ -81635,13 +81828,13 @@ "isHttpMetadata": false }, { - "$id": "6375", + "$id": "6388", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": true, "readOnly": false, @@ -81657,16 +81850,16 @@ "isHttpMetadata": false }, { - "$id": "6376", + "$id": "6389", "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": "6377", + "$id": "6390", "kind": "nullable", "type": { - "$id": "6378", + "$id": "6391", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -81688,16 +81881,16 @@ "isHttpMetadata": false }, { - "$id": "6379", + "$id": "6392", "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": "6380", + "$id": "6393", "kind": "nullable", "type": { - "$id": "6381", + "$id": "6394", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -81719,16 +81912,16 @@ "isHttpMetadata": false }, { - "$id": "6382", + "$id": "6395", "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": "6383", + "$id": "6396", "kind": "nullable", "type": { - "$id": "6384", + "$id": "6397", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -81750,16 +81943,16 @@ "isHttpMetadata": false }, { - "$id": "6385", + "$id": "6398", "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": "6386", + "$id": "6399", "kind": "nullable", "type": { - "$id": "6387", + "$id": "6400", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81781,16 +81974,16 @@ "isHttpMetadata": false }, { - "$id": "6388", + "$id": "6401", "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": "6389", + "$id": "6402", "kind": "nullable", "type": { - "$id": "6390", + "$id": "6403", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81812,15 +82005,15 @@ "isHttpMetadata": false }, { - "$id": "6391", + "$id": "6404", "kind": "property", "name": "truncation_strategy", "serializedName": "truncation_strategy", "type": { - "$id": "6392", + "$id": "6405", "kind": "nullable", "type": { - "$ref": "6243" + "$ref": "6256" }, "namespace": "OpenAI" }, @@ -81838,15 +82031,15 @@ "isHttpMetadata": false }, { - "$id": "6393", + "$id": "6406", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "6394", + "$id": "6407", "kind": "nullable", "type": { - "$ref": "6250" + "$ref": "6263" }, "namespace": "OpenAI" }, @@ -81864,17 +82057,17 @@ "isHttpMetadata": false }, { - "$id": "6395", + "$id": "6408", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "type": { - "$id": "6396", + "$id": "6409", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "6397", + "$id": "6410", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -81896,15 +82089,15 @@ "isHttpMetadata": false }, { - "$id": "6398", + "$id": "6411", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "6399", + "$id": "6412", "kind": "nullable", "type": { - "$ref": "2455" + "$ref": "2456" }, "namespace": "OpenAI" }, @@ -81924,7 +82117,7 @@ ] }, { - "$id": "6400", + "$id": "6413", "kind": "model", "name": "ListRunsResponse", "namespace": "OpenAI", @@ -81933,12 +82126,12 @@ "decorators": [], "properties": [ { - "$id": "6401", + "$id": "6414", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1695" + "$ref": "1696" }, "optional": false, "readOnly": false, @@ -81954,16 +82147,16 @@ "isHttpMetadata": false }, { - "$id": "6402", + "$id": "6415", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6403", + "$id": "6416", "kind": "array", "name": "ArrayRunObject", "valueType": { - "$ref": "6262" + "$ref": "6275" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -81982,12 +82175,12 @@ "isHttpMetadata": false }, { - "$id": "6404", + "$id": "6417", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6405", + "$id": "6418", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82007,12 +82200,12 @@ "isHttpMetadata": false }, { - "$id": "6406", + "$id": "6419", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6407", + "$id": "6420", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82032,12 +82225,12 @@ "isHttpMetadata": false }, { - "$id": "6408", + "$id": "6421", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6409", + "$id": "6422", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -82059,7 +82252,7 @@ ] }, { - "$id": "6410", + "$id": "6423", "kind": "model", "name": "ModifyRunRequest", "namespace": "OpenAI", @@ -82068,13 +82261,13 @@ "decorators": [], "properties": [ { - "$id": "6411", + "$id": "6424", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": true, "readOnly": false, @@ -82092,7 +82285,7 @@ ] }, { - "$id": "6412", + "$id": "6425", "kind": "model", "name": "SubmitToolOutputsRunRequest", "namespace": "OpenAI", @@ -82101,17 +82294,17 @@ "decorators": [], "properties": [ { - "$id": "6413", + "$id": "6426", "kind": "property", "name": "tool_outputs", "serializedName": "tool_outputs", "doc": "A list of tools for which the outputs are being submitted.", "type": { - "$id": "6414", + "$id": "6427", "kind": "array", "name": "Array38", "valueType": { - "$id": "6415", + "$id": "6428", "kind": "model", "name": "SubmitToolOutputsRunRequestToolOutput", "namespace": "OpenAI", @@ -82120,13 +82313,13 @@ "decorators": [], "properties": [ { - "$id": "6416", + "$id": "6429", "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": "6417", + "$id": "6430", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82146,13 +82339,13 @@ "isHttpMetadata": false }, { - "$id": "6418", + "$id": "6431", "kind": "property", "name": "output", "serializedName": "output", "doc": "The output of the tool call to be submitted to continue the run.", "type": { - "$id": "6419", + "$id": "6432", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82190,16 +82383,16 @@ "isHttpMetadata": false }, { - "$id": "6420", + "$id": "6433", "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": "6421", + "$id": "6434", "kind": "nullable", "type": { - "$id": "6422", + "$id": "6435", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -82223,10 +82416,10 @@ ] }, { - "$ref": "6415" + "$ref": "6428" }, { - "$id": "6423", + "$id": "6436", "kind": "model", "name": "ListRunStepsResponse", "namespace": "OpenAI", @@ -82235,12 +82428,12 @@ "decorators": [], "properties": [ { - "$id": "6424", + "$id": "6437", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1697" + "$ref": "1698" }, "optional": false, "readOnly": false, @@ -82256,16 +82449,16 @@ "isHttpMetadata": false }, { - "$id": "6425", + "$id": "6438", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6426", + "$id": "6439", "kind": "array", "name": "ArrayRunStepObject", "valueType": { - "$id": "6427", + "$id": "6440", "kind": "model", "name": "RunStepObject", "namespace": "OpenAI", @@ -82275,13 +82468,13 @@ "decorators": [], "properties": [ { - "$id": "6428", + "$id": "6441", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier of the run step, which can be referenced in API endpoints.", "type": { - "$id": "6429", + "$id": "6442", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82301,13 +82494,13 @@ "isHttpMetadata": false }, { - "$id": "6430", + "$id": "6443", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `thread.run.step`.", "type": { - "$ref": "1699" + "$ref": "1700" }, "optional": false, "readOnly": false, @@ -82323,18 +82516,18 @@ "isHttpMetadata": false }, { - "$id": "6431", + "$id": "6444", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the run step was created.", "type": { - "$id": "6432", + "$id": "6445", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6433", + "$id": "6446", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82357,13 +82550,13 @@ "isHttpMetadata": false }, { - "$id": "6434", + "$id": "6447", "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": "6435", + "$id": "6448", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82383,13 +82576,13 @@ "isHttpMetadata": false }, { - "$id": "6436", + "$id": "6449", "kind": "property", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "6437", + "$id": "6450", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82409,13 +82602,13 @@ "isHttpMetadata": false }, { - "$id": "6438", + "$id": "6451", "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": "6439", + "$id": "6452", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82435,13 +82628,13 @@ "isHttpMetadata": false }, { - "$id": "6440", + "$id": "6453", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of run step, which can be either `message_creation` or `tool_calls`.", "type": { - "$ref": "1029" + "$ref": "1030" }, "optional": false, "readOnly": false, @@ -82457,13 +82650,13 @@ "isHttpMetadata": false }, { - "$id": "6441", + "$id": "6454", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the run step, which can be either `in_progress`, `cancelled`, `failed`, `completed`, or `expired`.", "type": { - "$ref": "1033" + "$ref": "1034" }, "optional": false, "readOnly": false, @@ -82479,13 +82672,13 @@ "isHttpMetadata": false }, { - "$id": "6442", + "$id": "6455", "kind": "property", "name": "step_details", "serializedName": "step_details", "doc": "The details of the run step.", "type": { - "$id": "6443", + "$id": "6456", "kind": "model", "name": "RunStepObjectStepDetails", "namespace": "OpenAI", @@ -82494,13 +82687,13 @@ "doc": "Abstractly represents a run step details object.", "decorators": [], "discriminatorProperty": { - "$id": "6444", + "$id": "6457", "kind": "property", "name": "type", "serializedName": "type", "doc": "The discriminated type identifier for the details object.", "type": { - "$ref": "1040" + "$ref": "1041" }, "optional": false, "readOnly": false, @@ -82517,12 +82710,12 @@ }, "properties": [ { - "$ref": "6444" + "$ref": "6457" } ], "discriminatedSubtypes": { "message_creation": { - "$id": "6445", + "$id": "6458", "kind": "model", "name": "RunStepDetailsMessageCreationObject", "namespace": "OpenAI", @@ -82532,32 +82725,32 @@ "discriminatorValue": "message_creation", "decorators": [], "baseModel": { - "$ref": "6443" + "$ref": "6456" }, "properties": [ { - "$id": "6446", + "$id": "6459", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `message_creation`.", "type": { - "$id": "6447", + "$id": "6460", "kind": "enumvalue", "name": "message_creation", "value": "message_creation", "valueType": { - "$ref": "1041" + "$ref": "1042" }, "enumType": { - "$id": "6448", + "$id": "6461", "kind": "enum", "decorators": [], "name": "RunStepDetailsType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6449", + "$id": "6462", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -82566,29 +82759,29 @@ }, "values": [ { - "$id": "6450", + "$id": "6463", "kind": "enumvalue", "decorators": [], "name": "message_creation", "value": "message_creation", "valueType": { - "$ref": "6449" + "$ref": "6462" }, "enumType": { - "$ref": "6448" + "$ref": "6461" } }, { - "$id": "6451", + "$id": "6464", "kind": "enumvalue", "decorators": [], "name": "tool_calls", "value": "tool_calls", "valueType": { - "$ref": "6449" + "$ref": "6462" }, "enumType": { - "$ref": "6448" + "$ref": "6461" } } ], @@ -82617,12 +82810,12 @@ "isHttpMetadata": false }, { - "$id": "6452", + "$id": "6465", "kind": "property", "name": "message_creation", "serializedName": "message_creation", "type": { - "$id": "6453", + "$id": "6466", "kind": "model", "name": "RunStepDetailsMessageCreationObjectMessageCreation", "namespace": "OpenAI", @@ -82631,13 +82824,13 @@ "decorators": [], "properties": [ { - "$id": "6454", + "$id": "6467", "kind": "property", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message that was created by this run step.", "type": { - "$id": "6455", + "$id": "6468", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82674,7 +82867,7 @@ ] }, "tool_calls": { - "$id": "6456", + "$id": "6469", "kind": "model", "name": "RunStepDetailsToolCallsObject", "namespace": "OpenAI", @@ -82684,25 +82877,25 @@ "discriminatorValue": "tool_calls", "decorators": [], "baseModel": { - "$ref": "6443" + "$ref": "6456" }, "properties": [ { - "$id": "6457", + "$id": "6470", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `tool_calls`.", "type": { - "$id": "6458", + "$id": "6471", "kind": "enumvalue", "name": "tool_calls", "value": "tool_calls", "valueType": { - "$ref": "1041" + "$ref": "1042" }, "enumType": { - "$ref": "6448" + "$ref": "6461" }, "decorators": [] }, @@ -82720,17 +82913,17 @@ "isHttpMetadata": false }, { - "$id": "6459", + "$id": "6472", "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": "6460", + "$id": "6473", "kind": "array", "name": "ArrayRunStepDetailsToolCallsObjectToolCallsObject", "valueType": { - "$id": "6461", + "$id": "6474", "kind": "model", "name": "RunStepDetailsToolCallsObjectToolCallsObject", "namespace": "OpenAI", @@ -82739,13 +82932,13 @@ "doc": "Abstractly represents a run step tool call details inner object.", "decorators": [], "discriminatorProperty": { - "$id": "6462", + "$id": "6475", "kind": "property", "name": "type", "serializedName": "type", "doc": "The discriminated type identifier for the details object.", "type": { - "$ref": "1044" + "$ref": "1045" }, "optional": false, "readOnly": false, @@ -82762,16 +82955,16 @@ }, "properties": [ { - "$ref": "6462" + "$ref": "6475" }, { - "$id": "6463", + "$id": "6476", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the tool call object.", "type": { - "$id": "6464", + "$id": "6477", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82793,7 +82986,7 @@ ], "discriminatedSubtypes": { "code_interpreter": { - "$id": "6465", + "$id": "6478", "kind": "model", "name": "RunStepDetailsToolCallsCodeObject", "namespace": "OpenAI", @@ -82803,32 +82996,32 @@ "discriminatorValue": "code_interpreter", "decorators": [], "baseModel": { - "$ref": "6461" + "$ref": "6474" }, "properties": [ { - "$id": "6466", + "$id": "6479", "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": "6467", + "$id": "6480", "kind": "enumvalue", "name": "code_interpreter", "value": "code_interpreter", "valueType": { - "$ref": "1045" + "$ref": "1046" }, "enumType": { - "$id": "6468", + "$id": "6481", "kind": "enum", "decorators": [], "name": "RunStepDetailsToolCallType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6469", + "$id": "6482", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -82837,42 +83030,42 @@ }, "values": [ { - "$id": "6470", + "$id": "6483", "kind": "enumvalue", "decorators": [], "name": "code_interpreter", "value": "code_interpreter", "valueType": { - "$ref": "6469" + "$ref": "6482" }, "enumType": { - "$ref": "6468" + "$ref": "6481" } }, { - "$id": "6471", + "$id": "6484", "kind": "enumvalue", "decorators": [], "name": "file_search", "value": "file_search", "valueType": { - "$ref": "6469" + "$ref": "6482" }, "enumType": { - "$ref": "6468" + "$ref": "6481" } }, { - "$id": "6472", + "$id": "6485", "kind": "enumvalue", "decorators": [], "name": "function", "value": "function", "valueType": { - "$ref": "6469" + "$ref": "6482" }, "enumType": { - "$ref": "6468" + "$ref": "6481" } } ], @@ -82901,13 +83094,13 @@ "isHttpMetadata": false }, { - "$id": "6473", + "$id": "6486", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "doc": "The Code Interpreter tool call definition.", "type": { - "$id": "6474", + "$id": "6487", "kind": "model", "name": "RunStepDetailsToolCallsCodeObjectCodeInterpreter", "namespace": "OpenAI", @@ -82916,13 +83109,13 @@ "decorators": [], "properties": [ { - "$id": "6475", + "$id": "6488", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input to the Code Interpreter tool call.", "type": { - "$id": "6476", + "$id": "6489", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82942,17 +83135,17 @@ "isHttpMetadata": false }, { - "$id": "6477", + "$id": "6490", "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": "6478", + "$id": "6491", "kind": "array", "name": "ArrayRunStepDetailsToolCallsCodeObjectCodeInterpreterOutputsObject", "valueType": { - "$id": "6479", + "$id": "6492", "kind": "model", "name": "RunStepDetailsToolCallsCodeObjectCodeInterpreterOutputsObject", "namespace": "OpenAI", @@ -82961,13 +83154,13 @@ "doc": "Abstractly represents a run step tool call details code interpreter output.", "decorators": [], "discriminatorProperty": { - "$id": "6480", + "$id": "6493", "kind": "property", "name": "type", "serializedName": "type", "doc": "The discriminated type identifier for the details object.", "type": { - "$ref": "1049" + "$ref": "1050" }, "optional": false, "readOnly": false, @@ -82984,12 +83177,12 @@ }, "properties": [ { - "$ref": "6480" + "$ref": "6493" } ], "discriminatedSubtypes": { "logs": { - "$id": "6481", + "$id": "6494", "kind": "model", "name": "RunStepDetailsToolCallsCodeOutputLogsObject", "namespace": "OpenAI", @@ -82999,32 +83192,32 @@ "discriminatorValue": "logs", "decorators": [], "baseModel": { - "$ref": "6479" + "$ref": "6492" }, "properties": [ { - "$id": "6482", + "$id": "6495", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `logs`.", "type": { - "$id": "6483", + "$id": "6496", "kind": "enumvalue", "name": "logs", "value": "logs", "valueType": { - "$ref": "1050" + "$ref": "1051" }, "enumType": { - "$id": "6484", + "$id": "6497", "kind": "enum", "decorators": [], "name": "RunStepDetailsCodeInterpreterOutputType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6485", + "$id": "6498", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -83033,29 +83226,29 @@ }, "values": [ { - "$id": "6486", + "$id": "6499", "kind": "enumvalue", "decorators": [], "name": "logs", "value": "logs", "valueType": { - "$ref": "6485" + "$ref": "6498" }, "enumType": { - "$ref": "6484" + "$ref": "6497" } }, { - "$id": "6487", + "$id": "6500", "kind": "enumvalue", "decorators": [], "name": "image", "value": "image", "valueType": { - "$ref": "6485" + "$ref": "6498" }, "enumType": { - "$ref": "6484" + "$ref": "6497" } } ], @@ -83084,13 +83277,13 @@ "isHttpMetadata": false }, { - "$id": "6488", + "$id": "6501", "kind": "property", "name": "logs", "serializedName": "logs", "doc": "The text output from the Code Interpreter tool call.", "type": { - "$id": "6489", + "$id": "6502", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83112,7 +83305,7 @@ ] }, "image": { - "$id": "6490", + "$id": "6503", "kind": "model", "name": "RunStepDetailsToolCallsCodeOutputImageObject", "namespace": "OpenAI", @@ -83121,25 +83314,25 @@ "discriminatorValue": "image", "decorators": [], "baseModel": { - "$ref": "6479" + "$ref": "6492" }, "properties": [ { - "$id": "6491", + "$id": "6504", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `image`.", "type": { - "$id": "6492", + "$id": "6505", "kind": "enumvalue", "name": "image", "value": "image", "valueType": { - "$ref": "1050" + "$ref": "1051" }, "enumType": { - "$ref": "6484" + "$ref": "6497" }, "decorators": [] }, @@ -83157,12 +83350,12 @@ "isHttpMetadata": false }, { - "$id": "6493", + "$id": "6506", "kind": "property", "name": "image", "serializedName": "image", "type": { - "$id": "6494", + "$id": "6507", "kind": "model", "name": "RunStepDetailsToolCallsCodeOutputImageObjectImage", "namespace": "OpenAI", @@ -83171,13 +83364,13 @@ "decorators": [], "properties": [ { - "$id": "6495", + "$id": "6508", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The [file](/docs/api-reference/files) ID of the image.", "type": { - "$id": "6496", + "$id": "6509", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83249,7 +83442,7 @@ ] }, "file_search": { - "$id": "6497", + "$id": "6510", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchObject", "namespace": "OpenAI", @@ -83258,25 +83451,25 @@ "discriminatorValue": "file_search", "decorators": [], "baseModel": { - "$ref": "6461" + "$ref": "6474" }, "properties": [ { - "$id": "6498", + "$id": "6511", "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": "6499", + "$id": "6512", "kind": "enumvalue", "name": "file_search", "value": "file_search", "valueType": { - "$ref": "1045" + "$ref": "1046" }, "enumType": { - "$ref": "6468" + "$ref": "6481" }, "decorators": [] }, @@ -83294,13 +83487,13 @@ "isHttpMetadata": false }, { - "$id": "6500", + "$id": "6513", "kind": "property", "name": "file_search", "serializedName": "file_search", "doc": "For now, this is always going to be an empty object.", "type": { - "$id": "6501", + "$id": "6514", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchObjectFileSearch", "namespace": "OpenAI", @@ -83309,12 +83502,12 @@ "decorators": [], "properties": [ { - "$id": "6502", + "$id": "6515", "kind": "property", "name": "ranking_options", "serializedName": "ranking_options", "type": { - "$id": "6503", + "$id": "6516", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchRankingOptionsObject", "namespace": "OpenAI", @@ -83324,7 +83517,7 @@ "decorators": [], "properties": [ { - "$id": "6504", + "$id": "6517", "kind": "property", "name": "ranker", "serializedName": "ranker", @@ -83345,13 +83538,13 @@ "isHttpMetadata": false }, { - "$id": "6505", + "$id": "6518", "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": "6506", + "$id": "6519", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -83386,17 +83579,17 @@ "isHttpMetadata": false }, { - "$id": "6507", + "$id": "6520", "kind": "property", "name": "results", "serializedName": "results", "doc": "The results of the file search.", "type": { - "$id": "6508", + "$id": "6521", "kind": "array", "name": "ArrayRunStepDetailsToolCallsFileSearchResultObject", "valueType": { - "$id": "6509", + "$id": "6522", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchResultObject", "namespace": "OpenAI", @@ -83406,13 +83599,13 @@ "decorators": [], "properties": [ { - "$id": "6510", + "$id": "6523", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file that result was found in.", "type": { - "$id": "6511", + "$id": "6524", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83432,13 +83625,13 @@ "isHttpMetadata": false }, { - "$id": "6512", + "$id": "6525", "kind": "property", "name": "file_name", "serializedName": "file_name", "doc": "The name of the file that result was found in.", "type": { - "$id": "6513", + "$id": "6526", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83458,13 +83651,13 @@ "isHttpMetadata": false }, { - "$id": "6514", + "$id": "6527", "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": "6515", + "$id": "6528", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -83484,17 +83677,17 @@ "isHttpMetadata": false }, { - "$id": "6516", + "$id": "6529", "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": "6517", + "$id": "6530", "kind": "array", "name": "Array39", "valueType": { - "$id": "6518", + "$id": "6531", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchResultObjectContent", "namespace": "OpenAI", @@ -83503,28 +83696,28 @@ "decorators": [], "properties": [ { - "$id": "6519", + "$id": "6532", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content.", "type": { - "$id": "6520", + "$id": "6533", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "1457" + "$ref": "1458" }, "enumType": { - "$id": "6521", + "$id": "6534", "kind": "enum", "decorators": [], "name": "RunStepDetailsToolCallsFileSearchResultObjectContentType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6522", + "$id": "6535", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -83533,16 +83726,16 @@ }, "values": [ { - "$id": "6523", + "$id": "6536", "kind": "enumvalue", "decorators": [], "name": "text", "value": "text", "enumType": { - "$ref": "6521" + "$ref": "6534" }, "valueType": { - "$ref": "6522" + "$ref": "6535" } } ], @@ -83571,13 +83764,13 @@ "isHttpMetadata": false }, { - "$id": "6524", + "$id": "6537", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content of the file.", "type": { - "$id": "6525", + "$id": "6538", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83650,7 +83843,7 @@ ] }, "function": { - "$id": "6526", + "$id": "6539", "kind": "model", "name": "RunStepDetailsToolCallsFunctionObject", "namespace": "OpenAI", @@ -83659,25 +83852,25 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "6461" + "$ref": "6474" }, "properties": [ { - "$id": "6527", + "$id": "6540", "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": "6528", + "$id": "6541", "kind": "enumvalue", "name": "function", "value": "function", "valueType": { - "$ref": "1045" + "$ref": "1046" }, "enumType": { - "$ref": "6468" + "$ref": "6481" }, "decorators": [] }, @@ -83695,13 +83888,13 @@ "isHttpMetadata": false }, { - "$id": "6529", + "$id": "6542", "kind": "property", "name": "function", "serializedName": "function", "doc": "The definition of the function that was called.", "type": { - "$id": "6530", + "$id": "6543", "kind": "model", "name": "RunStepDetailsToolCallsFunctionObjectFunction", "namespace": "OpenAI", @@ -83710,13 +83903,13 @@ "decorators": [], "properties": [ { - "$id": "6531", + "$id": "6544", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function.", "type": { - "$id": "6532", + "$id": "6545", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83736,13 +83929,13 @@ "isHttpMetadata": false }, { - "$id": "6533", + "$id": "6546", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "The arguments passed to the function.", "type": { - "$id": "6534", + "$id": "6547", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83762,16 +83955,16 @@ "isHttpMetadata": false }, { - "$id": "6535", + "$id": "6548", "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": "6536", + "$id": "6549", "kind": "nullable", "type": { - "$id": "6537", + "$id": "6550", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83845,16 +84038,16 @@ "isHttpMetadata": false }, { - "$id": "6538", + "$id": "6551", "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": "6539", + "$id": "6552", "kind": "nullable", "type": { - "$id": "6540", + "$id": "6553", "kind": "model", "name": "RunStepObjectLastError1", "namespace": "OpenAI", @@ -83863,13 +84056,13 @@ "decorators": [], "properties": [ { - "$id": "6541", + "$id": "6554", "kind": "property", "name": "code", "serializedName": "code", "doc": "One of `server_error` or `rate_limit_exceeded`.", "type": { - "$ref": "1053" + "$ref": "1054" }, "optional": false, "readOnly": false, @@ -83885,13 +84078,13 @@ "isHttpMetadata": false }, { - "$id": "6542", + "$id": "6555", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "6543", + "$id": "6556", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83928,21 +84121,21 @@ "isHttpMetadata": false }, { - "$id": "6544", + "$id": "6557", "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": "6545", + "$id": "6558", "kind": "nullable", "type": { - "$id": "6546", + "$id": "6559", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6547", + "$id": "6560", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -83967,21 +84160,21 @@ "isHttpMetadata": false }, { - "$id": "6548", + "$id": "6561", "kind": "property", "name": "cancelled_at", "serializedName": "cancelled_at", "doc": "The Unix timestamp (in seconds) for when the run step was cancelled.", "type": { - "$id": "6549", + "$id": "6562", "kind": "nullable", "type": { - "$id": "6550", + "$id": "6563", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6551", + "$id": "6564", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84006,21 +84199,21 @@ "isHttpMetadata": false }, { - "$id": "6552", + "$id": "6565", "kind": "property", "name": "failed_at", "serializedName": "failed_at", "doc": "The Unix timestamp (in seconds) for when the run step failed.", "type": { - "$id": "6553", + "$id": "6566", "kind": "nullable", "type": { - "$id": "6554", + "$id": "6567", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6555", + "$id": "6568", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84045,21 +84238,21 @@ "isHttpMetadata": false }, { - "$id": "6556", + "$id": "6569", "kind": "property", "name": "completed_at", "serializedName": "completed_at", "doc": "The Unix timestamp (in seconds) for when the run step completed.", "type": { - "$id": "6557", + "$id": "6570", "kind": "nullable", "type": { - "$id": "6558", + "$id": "6571", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6559", + "$id": "6572", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84084,13 +84277,13 @@ "isHttpMetadata": false }, { - "$id": "6560", + "$id": "6573", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2443" + "$ref": "2444" }, "optional": false, "readOnly": true, @@ -84106,15 +84299,15 @@ "isHttpMetadata": false }, { - "$id": "6561", + "$id": "6574", "kind": "property", "name": "usage", "serializedName": "usage", "type": { - "$id": "6562", + "$id": "6575", "kind": "nullable", "type": { - "$id": "6563", + "$id": "6576", "kind": "model", "name": "RunStepCompletionUsage", "namespace": "OpenAI", @@ -84124,13 +84317,13 @@ "decorators": [], "properties": [ { - "$id": "6564", + "$id": "6577", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "Number of completion tokens used over the course of the run step.", "type": { - "$id": "6565", + "$id": "6578", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84150,13 +84343,13 @@ "isHttpMetadata": false }, { - "$id": "6566", + "$id": "6579", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "Number of prompt tokens used over the course of the run step.", "type": { - "$id": "6567", + "$id": "6580", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84176,13 +84369,13 @@ "isHttpMetadata": false }, { - "$id": "6568", + "$id": "6581", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "Total number of tokens used (prompt + completion).", "type": { - "$id": "6569", + "$id": "6582", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84237,12 +84430,12 @@ "isHttpMetadata": false }, { - "$id": "6570", + "$id": "6583", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6571", + "$id": "6584", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84262,12 +84455,12 @@ "isHttpMetadata": false }, { - "$id": "6572", + "$id": "6585", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6573", + "$id": "6586", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84287,12 +84480,12 @@ "isHttpMetadata": false }, { - "$id": "6574", + "$id": "6587", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6575", + "$id": "6588", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -84314,70 +84507,70 @@ ] }, { - "$ref": "6427" + "$ref": "6440" }, { - "$ref": "6443" + "$ref": "6456" }, { - "$ref": "6445" + "$ref": "6458" }, { - "$ref": "6453" + "$ref": "6466" }, { - "$ref": "6456" + "$ref": "6469" }, { - "$ref": "6461" + "$ref": "6474" }, { - "$ref": "6465" + "$ref": "6478" }, { - "$ref": "6474" + "$ref": "6487" }, { - "$ref": "6479" + "$ref": "6492" }, { - "$ref": "6481" + "$ref": "6494" }, { - "$ref": "6490" + "$ref": "6503" }, { - "$ref": "6494" + "$ref": "6507" }, { - "$ref": "6497" + "$ref": "6510" }, { - "$ref": "6501" + "$ref": "6514" }, { - "$ref": "6503" + "$ref": "6516" }, { - "$ref": "6509" + "$ref": "6522" }, { - "$ref": "6518" + "$ref": "6531" }, { - "$ref": "6526" + "$ref": "6539" }, { - "$ref": "6530" + "$ref": "6543" }, { - "$ref": "6540" + "$ref": "6553" }, { - "$ref": "6563" + "$ref": "6576" }, { - "$id": "6576", + "$id": "6589", "kind": "model", "name": "ThreadObject", "namespace": "OpenAI", @@ -84387,13 +84580,13 @@ "decorators": [], "properties": [ { - "$id": "6577", + "$id": "6590", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6578", + "$id": "6591", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84413,13 +84606,13 @@ "isHttpMetadata": false }, { - "$id": "6579", + "$id": "6592", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `thread`.", "type": { - "$ref": "1701" + "$ref": "1702" }, "optional": false, "readOnly": false, @@ -84435,18 +84628,18 @@ "isHttpMetadata": false }, { - "$id": "6580", + "$id": "6593", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the thread was created.", "type": { - "$id": "6581", + "$id": "6594", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6582", + "$id": "6595", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84469,16 +84662,16 @@ "isHttpMetadata": false }, { - "$id": "6583", + "$id": "6596", "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": "6584", + "$id": "6597", "kind": "nullable", "type": { - "$id": "6585", + "$id": "6598", "kind": "model", "name": "ThreadObjectToolResources1", "namespace": "OpenAI", @@ -84487,12 +84680,12 @@ "decorators": [], "properties": [ { - "$id": "6586", + "$id": "6599", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "6587", + "$id": "6600", "kind": "model", "name": "ThreadObjectToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -84501,13 +84694,13 @@ "decorators": [], "properties": [ { - "$id": "6588", + "$id": "6601", "kind": "property", "name": "file_ids", "serializedName": "file_ids", "doc": "A list of [file](/docs/api-reference/files) IDs made available to the `code_interpreter` tool. There can be a maximum of 20 files associated with the tool.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": true, "readOnly": false, @@ -84538,12 +84731,12 @@ "isHttpMetadata": false }, { - "$id": "6589", + "$id": "6602", "kind": "property", "name": "file_search", "serializedName": "file_search", "type": { - "$id": "6590", + "$id": "6603", "kind": "model", "name": "ThreadObjectToolResourcesFileSearch", "namespace": "OpenAI", @@ -84552,13 +84745,13 @@ "decorators": [], "properties": [ { - "$id": "6591", + "$id": "6604", "kind": "property", "name": "vector_store_ids", "serializedName": "vector_store_ids", "doc": "The [vector store](/docs/api-reference/vector-stores/object) attached to this thread. There can be a maximum of 1 vector store attached to the thread.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": true, "readOnly": false, @@ -84606,13 +84799,13 @@ "isHttpMetadata": false }, { - "$id": "6592", + "$id": "6605", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2443" + "$ref": "2444" }, "optional": false, "readOnly": true, @@ -84630,16 +84823,16 @@ ] }, { - "$ref": "6585" + "$ref": "6598" }, { - "$ref": "6587" + "$ref": "6600" }, { - "$ref": "6590" + "$ref": "6603" }, { - "$id": "6593", + "$id": "6606", "kind": "model", "name": "ModifyThreadRequest", "namespace": "OpenAI", @@ -84648,16 +84841,16 @@ "decorators": [], "properties": [ { - "$id": "6594", + "$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": "6595", + "$id": "6608", "kind": "nullable", "type": { - "$id": "6596", + "$id": "6609", "kind": "model", "name": "ModifyThreadRequestToolResources1", "namespace": "OpenAI", @@ -84666,12 +84859,12 @@ "decorators": [], "properties": [ { - "$id": "6597", + "$id": "6610", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "6598", + "$id": "6611", "kind": "model", "name": "ModifyThreadRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -84680,13 +84873,13 @@ "decorators": [], "properties": [ { - "$id": "6599", + "$id": "6612", "kind": "property", "name": "file_ids", "serializedName": "file_ids", "doc": "A list of [file](/docs/api-reference/files) IDs made available to the `code_interpreter` tool. There can be a maximum of 20 files associated with the tool.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": true, "readOnly": false, @@ -84717,12 +84910,12 @@ "isHttpMetadata": false }, { - "$id": "6600", + "$id": "6613", "kind": "property", "name": "file_search", "serializedName": "file_search", "type": { - "$ref": "2440" + "$ref": "2441" }, "optional": true, "readOnly": false, @@ -84755,13 +84948,13 @@ "isHttpMetadata": false }, { - "$id": "6601", + "$id": "6614", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": true, "readOnly": false, @@ -84779,13 +84972,13 @@ ] }, { - "$ref": "6596" + "$ref": "6609" }, { - "$ref": "6598" + "$ref": "6611" }, { - "$id": "6602", + "$id": "6615", "kind": "model", "name": "DeleteThreadResponse", "namespace": "OpenAI", @@ -84794,12 +84987,12 @@ "decorators": [], "properties": [ { - "$id": "6603", + "$id": "6616", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6604", + "$id": "6617", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84819,12 +85012,12 @@ "isHttpMetadata": false }, { - "$id": "6605", + "$id": "6618", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6606", + "$id": "6619", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -84844,12 +85037,12 @@ "isHttpMetadata": false }, { - "$id": "6607", + "$id": "6620", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1703" + "$ref": "1704" }, "optional": false, "readOnly": false, @@ -84867,7 +85060,7 @@ ] }, { - "$id": "6608", + "$id": "6621", "kind": "model", "name": "ListVectorStoresResponse", "namespace": "OpenAI", @@ -84876,12 +85069,12 @@ "decorators": [], "properties": [ { - "$id": "6609", + "$id": "6622", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1705" + "$ref": "1706" }, "optional": false, "readOnly": false, @@ -84897,16 +85090,16 @@ "isHttpMetadata": false }, { - "$id": "6610", + "$id": "6623", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6611", + "$id": "6624", "kind": "array", "name": "ArrayVectorStoreObject", "valueType": { - "$id": "6612", + "$id": "6625", "kind": "model", "name": "VectorStoreObject", "namespace": "OpenAI", @@ -84916,13 +85109,13 @@ "decorators": [], "properties": [ { - "$id": "6613", + "$id": "6626", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6614", + "$id": "6627", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84942,13 +85135,13 @@ "isHttpMetadata": false }, { - "$id": "6615", + "$id": "6628", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `vector_store`.", "type": { - "$ref": "1707" + "$ref": "1708" }, "optional": false, "readOnly": false, @@ -84964,18 +85157,18 @@ "isHttpMetadata": false }, { - "$id": "6616", + "$id": "6629", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the vector store was created.", "type": { - "$id": "6617", + "$id": "6630", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6618", + "$id": "6631", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84998,13 +85191,13 @@ "isHttpMetadata": false }, { - "$id": "6619", + "$id": "6632", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the vector store.", "type": { - "$id": "6620", + "$id": "6633", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85024,13 +85217,13 @@ "isHttpMetadata": false }, { - "$id": "6621", + "$id": "6634", "kind": "property", "name": "usage_bytes", "serializedName": "usage_bytes", "doc": "The total number of bytes used by the files in the vector store.", "type": { - "$id": "6622", + "$id": "6635", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85050,12 +85243,12 @@ "isHttpMetadata": false }, { - "$id": "6623", + "$id": "6636", "kind": "property", "name": "file_counts", "serializedName": "file_counts", "type": { - "$id": "6624", + "$id": "6637", "kind": "model", "name": "VectorStoreObjectFileCounts", "namespace": "OpenAI", @@ -85064,13 +85257,13 @@ "decorators": [], "properties": [ { - "$id": "6625", + "$id": "6638", "kind": "property", "name": "in_progress", "serializedName": "in_progress", "doc": "The number of files that are currently being processed.", "type": { - "$id": "6626", + "$id": "6639", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85090,13 +85283,13 @@ "isHttpMetadata": false }, { - "$id": "6627", + "$id": "6640", "kind": "property", "name": "completed", "serializedName": "completed", "doc": "The number of files that have been successfully processed.", "type": { - "$id": "6628", + "$id": "6641", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85116,13 +85309,13 @@ "isHttpMetadata": false }, { - "$id": "6629", + "$id": "6642", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "The number of files that have failed to process.", "type": { - "$id": "6630", + "$id": "6643", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85142,13 +85335,13 @@ "isHttpMetadata": false }, { - "$id": "6631", + "$id": "6644", "kind": "property", "name": "cancelled", "serializedName": "cancelled", "doc": "The number of files that were cancelled.", "type": { - "$id": "6632", + "$id": "6645", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85168,13 +85361,13 @@ "isHttpMetadata": false }, { - "$id": "6633", + "$id": "6646", "kind": "property", "name": "total", "serializedName": "total", "doc": "The total number of files.", "type": { - "$id": "6634", + "$id": "6647", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85209,13 +85402,13 @@ "isHttpMetadata": false }, { - "$id": "6635", + "$id": "6648", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the vector store, which can be either `expired`, `in_progress`, or `completed`. A status of `completed` indicates that the vector store is ready for use.", "type": { - "$ref": "1057" + "$ref": "1058" }, "optional": false, "readOnly": false, @@ -85231,12 +85424,12 @@ "isHttpMetadata": false }, { - "$id": "6636", + "$id": "6649", "kind": "property", "name": "expires_after", "serializedName": "expires_after", "type": { - "$id": "6637", + "$id": "6650", "kind": "model", "name": "VectorStoreExpirationAfter", "namespace": "OpenAI", @@ -85246,28 +85439,28 @@ "decorators": [], "properties": [ { - "$id": "6638", + "$id": "6651", "kind": "property", "name": "anchor", "serializedName": "anchor", "doc": "Anchor timestamp after which the expiration policy applies. Supported anchors: `last_active_at`.", "type": { - "$id": "6639", + "$id": "6652", "kind": "enumvalue", "name": "last_active_at", "value": "last_active_at", "valueType": { - "$ref": "1460" + "$ref": "1461" }, "enumType": { - "$id": "6640", + "$id": "6653", "kind": "enum", "decorators": [], "name": "VectorStoreExpirationAnchor", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6641", + "$id": "6654", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -85276,16 +85469,16 @@ }, "values": [ { - "$id": "6642", + "$id": "6655", "kind": "enumvalue", "decorators": [], "name": "last_active_at", "value": "last_active_at", "enumType": { - "$ref": "6640" + "$ref": "6653" }, "valueType": { - "$ref": "6641" + "$ref": "6654" } } ], @@ -85314,13 +85507,13 @@ "isHttpMetadata": false }, { - "$id": "6643", + "$id": "6656", "kind": "property", "name": "days", "serializedName": "days", "doc": "The number of days after the anchor time that the vector store will expire.", "type": { - "$id": "6644", + "$id": "6657", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85355,21 +85548,21 @@ "isHttpMetadata": false }, { - "$id": "6645", + "$id": "6658", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the vector store will expire.", "type": { - "$id": "6646", + "$id": "6659", "kind": "nullable", "type": { - "$id": "6647", + "$id": "6660", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6648", + "$id": "6661", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85394,21 +85587,21 @@ "isHttpMetadata": false }, { - "$id": "6649", + "$id": "6662", "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": "6650", + "$id": "6663", "kind": "nullable", "type": { - "$id": "6651", + "$id": "6664", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6652", + "$id": "6665", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85433,13 +85626,13 @@ "isHttpMetadata": false }, { - "$id": "6653", + "$id": "6666", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2443" + "$ref": "2444" }, "optional": false, "readOnly": true, @@ -85473,12 +85666,12 @@ "isHttpMetadata": false }, { - "$id": "6654", + "$id": "6667", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6655", + "$id": "6668", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85498,12 +85691,12 @@ "isHttpMetadata": false }, { - "$id": "6656", + "$id": "6669", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6657", + "$id": "6670", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85523,12 +85716,12 @@ "isHttpMetadata": false }, { - "$id": "6658", + "$id": "6671", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6659", + "$id": "6672", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -85550,16 +85743,16 @@ ] }, { - "$ref": "6612" + "$ref": "6625" }, { - "$ref": "6624" + "$ref": "6637" }, { - "$ref": "6637" + "$ref": "6650" }, { - "$id": "6660", + "$id": "6673", "kind": "model", "name": "CreateVectorStoreRequest", "namespace": "OpenAI", @@ -85568,13 +85761,13 @@ "decorators": [], "properties": [ { - "$id": "6661", + "$id": "6674", "kind": "property", "name": "file_ids", "serializedName": "file_ids", "doc": "A list of [File](/docs/api-reference/files) IDs that the vector store should use. Useful for tools like `file_search` that can access files.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": true, "readOnly": false, @@ -85590,13 +85783,13 @@ "isHttpMetadata": false }, { - "$id": "6662", + "$id": "6675", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the vector store.", "type": { - "$id": "6663", + "$id": "6676", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85616,12 +85809,12 @@ "isHttpMetadata": false }, { - "$id": "6664", + "$id": "6677", "kind": "property", "name": "expires_after", "serializedName": "expires_after", "type": { - "$ref": "6637" + "$ref": "6650" }, "optional": true, "readOnly": false, @@ -85637,21 +85830,21 @@ "isHttpMetadata": false }, { - "$id": "6665", + "$id": "6678", "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": "6666", + "$id": "6679", "kind": "union", "name": "CreateVectorStoreRequestChunkingStrategy", "variantTypes": [ { - "$ref": "2533" + "$ref": "2534" }, { - "$ref": "2540" + "$ref": "2541" } ], "namespace": "OpenAI", @@ -85671,13 +85864,13 @@ "isHttpMetadata": false }, { - "$id": "6667", + "$id": "6680", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": true, "readOnly": false, @@ -85695,7 +85888,7 @@ ] }, { - "$id": "6668", + "$id": "6681", "kind": "model", "name": "UpdateVectorStoreRequest", "namespace": "OpenAI", @@ -85704,16 +85897,16 @@ "decorators": [], "properties": [ { - "$id": "6669", + "$id": "6682", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the vector store.", "type": { - "$id": "6670", + "$id": "6683", "kind": "nullable", "type": { - "$id": "6671", + "$id": "6684", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85735,15 +85928,15 @@ "isHttpMetadata": false }, { - "$id": "6672", + "$id": "6685", "kind": "property", "name": "expires_after", "serializedName": "expires_after", "type": { - "$id": "6673", + "$id": "6686", "kind": "nullable", "type": { - "$ref": "6637" + "$ref": "6650" }, "namespace": "OpenAI" }, @@ -85761,13 +85954,13 @@ "isHttpMetadata": false }, { - "$id": "6674", + "$id": "6687", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": true, "readOnly": false, @@ -85785,7 +85978,7 @@ ] }, { - "$id": "6675", + "$id": "6688", "kind": "model", "name": "DeleteVectorStoreResponse", "namespace": "OpenAI", @@ -85794,12 +85987,12 @@ "decorators": [], "properties": [ { - "$id": "6676", + "$id": "6689", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6677", + "$id": "6690", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85819,12 +86012,12 @@ "isHttpMetadata": false }, { - "$id": "6678", + "$id": "6691", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6679", + "$id": "6692", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -85844,12 +86037,12 @@ "isHttpMetadata": false }, { - "$id": "6680", + "$id": "6693", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1709" + "$ref": "1710" }, "optional": false, "readOnly": false, @@ -85867,7 +86060,7 @@ ] }, { - "$id": "6681", + "$id": "6694", "kind": "model", "name": "CreateVectorStoreFileBatchRequest", "namespace": "OpenAI", @@ -85876,13 +86069,13 @@ "decorators": [], "properties": [ { - "$id": "6682", + "$id": "6695", "kind": "property", "name": "file_ids", "serializedName": "file_ids", "doc": "A list of [File](/docs/api-reference/files) IDs that the vector store should use. Useful for tools like `file_search` that can access files.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": false, "readOnly": false, @@ -85898,12 +86091,12 @@ "isHttpMetadata": false }, { - "$id": "6683", + "$id": "6696", "kind": "property", "name": "chunking_strategy", "serializedName": "chunking_strategy", "type": { - "$ref": "2531" + "$ref": "2532" }, "optional": true, "readOnly": false, @@ -85919,15 +86112,15 @@ "isHttpMetadata": false }, { - "$id": "6684", + "$id": "6697", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6685", + "$id": "6698", "kind": "nullable", "type": { - "$ref": "3945" + "$ref": "3946" }, "namespace": "OpenAI" }, @@ -85947,7 +86140,7 @@ ] }, { - "$id": "6686", + "$id": "6699", "kind": "model", "name": "VectorStoreFileBatchObject", "namespace": "OpenAI", @@ -85957,13 +86150,13 @@ "decorators": [], "properties": [ { - "$id": "6687", + "$id": "6700", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6688", + "$id": "6701", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85983,13 +86176,13 @@ "isHttpMetadata": false }, { - "$id": "6689", + "$id": "6702", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `vector_store.file_batch`.", "type": { - "$ref": "1711" + "$ref": "1712" }, "optional": false, "readOnly": false, @@ -86005,18 +86198,18 @@ "isHttpMetadata": false }, { - "$id": "6690", + "$id": "6703", "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": "6691", + "$id": "6704", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6692", + "$id": "6705", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86039,13 +86232,13 @@ "isHttpMetadata": false }, { - "$id": "6693", + "$id": "6706", "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": "6694", + "$id": "6707", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86065,13 +86258,13 @@ "isHttpMetadata": false }, { - "$id": "6695", + "$id": "6708", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the vector store files batch, which can be either `in_progress`, `completed`, `cancelled` or `failed`.", "type": { - "$ref": "1062" + "$ref": "1063" }, "optional": false, "readOnly": false, @@ -86087,12 +86280,12 @@ "isHttpMetadata": false }, { - "$id": "6696", + "$id": "6709", "kind": "property", "name": "file_counts", "serializedName": "file_counts", "type": { - "$id": "6697", + "$id": "6710", "kind": "model", "name": "VectorStoreFileBatchObjectFileCounts", "namespace": "OpenAI", @@ -86101,13 +86294,13 @@ "decorators": [], "properties": [ { - "$id": "6698", + "$id": "6711", "kind": "property", "name": "in_progress", "serializedName": "in_progress", "doc": "The number of files that are currently being processed.", "type": { - "$id": "6699", + "$id": "6712", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86127,13 +86320,13 @@ "isHttpMetadata": false }, { - "$id": "6700", + "$id": "6713", "kind": "property", "name": "completed", "serializedName": "completed", "doc": "The number of files that have been processed.", "type": { - "$id": "6701", + "$id": "6714", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86153,13 +86346,13 @@ "isHttpMetadata": false }, { - "$id": "6702", + "$id": "6715", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "The number of files that have failed to process.", "type": { - "$id": "6703", + "$id": "6716", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86179,13 +86372,13 @@ "isHttpMetadata": false }, { - "$id": "6704", + "$id": "6717", "kind": "property", "name": "cancelled", "serializedName": "cancelled", "doc": "The number of files that where cancelled.", "type": { - "$id": "6705", + "$id": "6718", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86205,13 +86398,13 @@ "isHttpMetadata": false }, { - "$id": "6706", + "$id": "6719", "kind": "property", "name": "total", "serializedName": "total", "doc": "The total number of files.", "type": { - "$id": "6707", + "$id": "6720", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86248,10 +86441,10 @@ ] }, { - "$ref": "6697" + "$ref": "6710" }, { - "$id": "6708", + "$id": "6721", "kind": "model", "name": "ListVectorStoreFilesResponse", "namespace": "OpenAI", @@ -86260,12 +86453,12 @@ "decorators": [], "properties": [ { - "$id": "6709", + "$id": "6722", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1713" + "$ref": "1714" }, "optional": false, "readOnly": false, @@ -86281,16 +86474,16 @@ "isHttpMetadata": false }, { - "$id": "6710", + "$id": "6723", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6711", + "$id": "6724", "kind": "array", "name": "ArrayVectorStoreFileObject", "valueType": { - "$id": "6712", + "$id": "6725", "kind": "model", "name": "VectorStoreFileObject", "namespace": "OpenAI", @@ -86300,13 +86493,13 @@ "decorators": [], "properties": [ { - "$id": "6713", + "$id": "6726", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6714", + "$id": "6727", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86326,13 +86519,13 @@ "isHttpMetadata": false }, { - "$id": "6715", + "$id": "6728", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `vector_store.file`.", "type": { - "$ref": "1715" + "$ref": "1716" }, "optional": false, "readOnly": false, @@ -86348,13 +86541,13 @@ "isHttpMetadata": false }, { - "$id": "6716", + "$id": "6729", "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": "6717", + "$id": "6730", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86374,18 +86567,18 @@ "isHttpMetadata": false }, { - "$id": "6718", + "$id": "6731", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the vector store file was created.", "type": { - "$id": "6719", + "$id": "6732", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6720", + "$id": "6733", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86408,13 +86601,13 @@ "isHttpMetadata": false }, { - "$id": "6721", + "$id": "6734", "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": "6722", + "$id": "6735", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86434,13 +86627,13 @@ "isHttpMetadata": false }, { - "$id": "6723", + "$id": "6736", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the vector store file, which can be either `in_progress`, `completed`, `cancelled`, or `failed`. The status `completed` indicates that the vector store file is ready for use.", "type": { - "$ref": "1068" + "$ref": "1069" }, "optional": false, "readOnly": false, @@ -86456,16 +86649,16 @@ "isHttpMetadata": false }, { - "$id": "6724", + "$id": "6737", "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": "6725", + "$id": "6738", "kind": "nullable", "type": { - "$id": "6726", + "$id": "6739", "kind": "model", "name": "VectorStoreFileObjectLastError1", "namespace": "OpenAI", @@ -86474,13 +86667,13 @@ "decorators": [], "properties": [ { - "$id": "6727", + "$id": "6740", "kind": "property", "name": "code", "serializedName": "code", "doc": "One of `server_error` or `rate_limit_exceeded`.", "type": { - "$ref": "1074" + "$ref": "1075" }, "optional": false, "readOnly": false, @@ -86496,13 +86689,13 @@ "isHttpMetadata": false }, { - "$id": "6728", + "$id": "6741", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "6729", + "$id": "6742", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86539,13 +86732,13 @@ "isHttpMetadata": false }, { - "$id": "6730", + "$id": "6743", "kind": "property", "name": "chunking_strategy", "serializedName": "chunking_strategy", "doc": "The strategy used to chunk the file.", "type": { - "$id": "6731", + "$id": "6744", "kind": "model", "name": "ChunkingStrategyResponseParam", "namespace": "OpenAI", @@ -86553,12 +86746,12 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "6732", + "$id": "6745", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1079" + "$ref": "1080" }, "optional": false, "readOnly": false, @@ -86575,12 +86768,12 @@ }, "properties": [ { - "$ref": "6732" + "$ref": "6745" } ], "discriminatedSubtypes": { "other": { - "$id": "6733", + "$id": "6746", "kind": "model", "name": "OtherChunkingStrategyResponseParam", "namespace": "OpenAI", @@ -86590,32 +86783,32 @@ "discriminatorValue": "other", "decorators": [], "baseModel": { - "$ref": "6731" + "$ref": "6744" }, "properties": [ { - "$id": "6734", + "$id": "6747", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `other`.", "type": { - "$id": "6735", + "$id": "6748", "kind": "enumvalue", "name": "other", "value": "other", "valueType": { - "$ref": "1080" + "$ref": "1081" }, "enumType": { - "$id": "6736", + "$id": "6749", "kind": "enum", "decorators": [], "name": "ChunkingStrategyResponseParamType", "isGeneratedName": true, "namespace": "OpenAI", "valueType": { - "$id": "6737", + "$id": "6750", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -86624,29 +86817,29 @@ }, "values": [ { - "$id": "6738", + "$id": "6751", "kind": "enumvalue", "decorators": [], "name": "static", "value": "static", "valueType": { - "$ref": "6737" + "$ref": "6750" }, "enumType": { - "$ref": "6736" + "$ref": "6749" } }, { - "$id": "6739", + "$id": "6752", "kind": "enumvalue", "decorators": [], "name": "other", "value": "other", "valueType": { - "$ref": "6737" + "$ref": "6750" }, "enumType": { - "$ref": "6736" + "$ref": "6749" } } ], @@ -86677,7 +86870,7 @@ ] }, "static": { - "$id": "6740", + "$id": "6753", "kind": "model", "name": "StaticChunkingStrategyResponseParam", "namespace": "OpenAI", @@ -86686,25 +86879,25 @@ "discriminatorValue": "static", "decorators": [], "baseModel": { - "$ref": "6731" + "$ref": "6744" }, "properties": [ { - "$id": "6741", + "$id": "6754", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `static`.", "type": { - "$id": "6742", + "$id": "6755", "kind": "enumvalue", "name": "static", "value": "static", "valueType": { - "$ref": "1080" + "$ref": "1081" }, "enumType": { - "$ref": "6736" + "$ref": "6749" }, "decorators": [] }, @@ -86722,12 +86915,12 @@ "isHttpMetadata": false }, { - "$id": "6743", + "$id": "6756", "kind": "property", "name": "static", "serializedName": "static", "type": { - "$ref": "2544" + "$ref": "2545" }, "optional": false, "readOnly": false, @@ -86760,15 +86953,15 @@ "isHttpMetadata": false }, { - "$id": "6744", + "$id": "6757", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6745", + "$id": "6758", "kind": "nullable", "type": { - "$ref": "3945" + "$ref": "3946" }, "namespace": "OpenAI" }, @@ -86804,12 +86997,12 @@ "isHttpMetadata": false }, { - "$id": "6746", + "$id": "6759", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6747", + "$id": "6760", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86829,12 +87022,12 @@ "isHttpMetadata": false }, { - "$id": "6748", + "$id": "6761", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6749", + "$id": "6762", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86854,12 +87047,12 @@ "isHttpMetadata": false }, { - "$id": "6750", + "$id": "6763", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6751", + "$id": "6764", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -86881,22 +87074,22 @@ ] }, { - "$ref": "6712" + "$ref": "6725" }, { - "$ref": "6726" + "$ref": "6739" }, { - "$ref": "6731" + "$ref": "6744" }, { - "$ref": "6733" + "$ref": "6746" }, { - "$ref": "6740" + "$ref": "6753" }, { - "$id": "6752", + "$id": "6765", "kind": "model", "name": "CreateVectorStoreFileRequest", "namespace": "OpenAI", @@ -86905,13 +87098,13 @@ "decorators": [], "properties": [ { - "$id": "6753", + "$id": "6766", "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": "6754", + "$id": "6767", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86931,12 +87124,12 @@ "isHttpMetadata": false }, { - "$id": "6755", + "$id": "6768", "kind": "property", "name": "chunking_strategy", "serializedName": "chunking_strategy", "type": { - "$ref": "2531" + "$ref": "2532" }, "optional": true, "readOnly": false, @@ -86952,15 +87145,15 @@ "isHttpMetadata": false }, { - "$id": "6756", + "$id": "6769", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6757", + "$id": "6770", "kind": "nullable", "type": { - "$ref": "3945" + "$ref": "3946" }, "namespace": "OpenAI" }, @@ -86980,7 +87173,7 @@ ] }, { - "$id": "6758", + "$id": "6771", "kind": "model", "name": "DeleteVectorStoreFileResponse", "namespace": "OpenAI", @@ -86989,12 +87182,12 @@ "decorators": [], "properties": [ { - "$id": "6759", + "$id": "6772", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6760", + "$id": "6773", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87014,12 +87207,12 @@ "isHttpMetadata": false }, { - "$id": "6761", + "$id": "6774", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6762", + "$id": "6775", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -87039,12 +87232,12 @@ "isHttpMetadata": false }, { - "$id": "6763", + "$id": "6776", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1717" + "$ref": "1718" }, "optional": false, "readOnly": false, @@ -87062,7 +87255,7 @@ ] }, { - "$id": "6764", + "$id": "6777", "kind": "model", "name": "UpdateVectorStoreFileAttributesRequest", "namespace": "OpenAI", @@ -87071,15 +87264,15 @@ "decorators": [], "properties": [ { - "$id": "6765", + "$id": "6778", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6766", + "$id": "6779", "kind": "nullable", "type": { - "$ref": "3945" + "$ref": "3946" }, "namespace": "OpenAI" }, @@ -87099,7 +87292,7 @@ ] }, { - "$id": "6767", + "$id": "6780", "kind": "model", "name": "VectorStoreFileContentResponse", "namespace": "OpenAI", @@ -87109,13 +87302,13 @@ "decorators": [], "properties": [ { - "$id": "6768", + "$id": "6781", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `vector_store.file_content.page`", "type": { - "$ref": "1719" + "$ref": "1720" }, "optional": false, "readOnly": false, @@ -87131,17 +87324,17 @@ "isHttpMetadata": false }, { - "$id": "6769", + "$id": "6782", "kind": "property", "name": "data", "serializedName": "data", "doc": "Parsed content of the file.", "type": { - "$id": "6770", + "$id": "6783", "kind": "array", "name": "Array40", "valueType": { - "$id": "6771", + "$id": "6784", "kind": "model", "name": "VectorStoreFileContentResponseDatum", "namespace": "OpenAI", @@ -87150,13 +87343,13 @@ "decorators": [], "properties": [ { - "$id": "6772", + "$id": "6785", "kind": "property", "name": "type", "serializedName": "type", "doc": "The content type (currently only `\"text\"`)", "type": { - "$id": "6773", + "$id": "6786", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87176,13 +87369,13 @@ "isHttpMetadata": false }, { - "$id": "6774", + "$id": "6787", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content", "type": { - "$id": "6775", + "$id": "6788", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87220,13 +87413,13 @@ "isHttpMetadata": false }, { - "$id": "6776", + "$id": "6789", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates if there are more content pages to fetch.", "type": { - "$id": "6777", + "$id": "6790", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -87246,16 +87439,16 @@ "isHttpMetadata": false }, { - "$id": "6778", + "$id": "6791", "kind": "property", "name": "next_page", "serializedName": "next_page", "doc": "The token for the next page, if any.", "type": { - "$id": "6779", + "$id": "6792", "kind": "nullable", "type": { - "$id": "6780", + "$id": "6793", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87279,10 +87472,10 @@ ] }, { - "$ref": "6771" + "$ref": "6784" }, { - "$id": "6781", + "$id": "6794", "kind": "model", "name": "VectorStoreSearchRequestRankingOptions", "namespace": "OpenAI", @@ -87291,12 +87484,12 @@ "decorators": [], "properties": [ { - "$id": "6782", + "$id": "6795", "kind": "property", "name": "ranker", "serializedName": "ranker", "type": { - "$ref": "1083" + "$ref": "1084" }, "optional": true, "readOnly": false, @@ -87312,12 +87505,12 @@ "isHttpMetadata": false }, { - "$id": "6783", + "$id": "6796", "kind": "property", "name": "score_threshold", "serializedName": "score_threshold", "type": { - "$id": "6784", + "$id": "6797", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -87339,7 +87532,7 @@ ] }, { - "$id": "6785", + "$id": "6798", "kind": "model", "name": "VectorStoreSearchRequest", "namespace": "OpenAI", @@ -87348,25 +87541,25 @@ "decorators": [], "properties": [ { - "$id": "6786", + "$id": "6799", "kind": "property", "name": "query", "serializedName": "query", "doc": "A query string for a search", "type": { - "$id": "6787", + "$id": "6800", "kind": "union", "name": "VectorStoreSearchRequestQuery", "variantTypes": [ { - "$id": "6788", + "$id": "6801", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$ref": "2437" + "$ref": "2438" } ], "namespace": "OpenAI", @@ -87386,13 +87579,13 @@ "isHttpMetadata": false }, { - "$id": "6789", + "$id": "6802", "kind": "property", "name": "rewrite_query", "serializedName": "rewrite_query", "doc": "Whether to rewrite the natural language query for vector search.", "type": { - "$id": "6790", + "$id": "6803", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -87412,13 +87605,13 @@ "isHttpMetadata": false }, { - "$id": "6791", + "$id": "6804", "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": "6792", + "$id": "6805", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87438,21 +87631,21 @@ "isHttpMetadata": false }, { - "$id": "6793", + "$id": "6806", "kind": "property", "name": "filters", "serializedName": "filters", "doc": "A filter to apply based on file attributes.", "type": { - "$id": "6794", + "$id": "6807", "kind": "union", "name": "VectorStoreSearchRequestFilters", "variantTypes": [ { - "$ref": "4386" + "$ref": "4388" }, { - "$ref": "4421" + "$ref": "4423" } ], "namespace": "OpenAI", @@ -87472,13 +87665,13 @@ "isHttpMetadata": false }, { - "$id": "6795", + "$id": "6808", "kind": "property", "name": "ranking_options", "serializedName": "ranking_options", "doc": "Ranking options for search.", "type": { - "$ref": "6781" + "$ref": "6794" }, "optional": true, "readOnly": false, @@ -87496,7 +87689,7 @@ ] }, { - "$id": "6796", + "$id": "6809", "kind": "model", "name": "VectorStoreSearchResultsPage", "namespace": "OpenAI", @@ -87505,13 +87698,13 @@ "decorators": [], "properties": [ { - "$id": "6797", + "$id": "6810", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `vector_store.search_results.page`", "type": { - "$ref": "1721" + "$ref": "1722" }, "optional": false, "readOnly": false, @@ -87527,12 +87720,12 @@ "isHttpMetadata": false }, { - "$id": "6798", + "$id": "6811", "kind": "property", "name": "search_query", "serializedName": "search_query", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": false, "readOnly": false, @@ -87548,17 +87741,17 @@ "isHttpMetadata": false }, { - "$id": "6799", + "$id": "6812", "kind": "property", "name": "data", "serializedName": "data", "doc": "The list of search result items.", "type": { - "$id": "6800", + "$id": "6813", "kind": "array", "name": "ArrayVectorStoreSearchResultItem", "valueType": { - "$id": "6801", + "$id": "6814", "kind": "model", "name": "VectorStoreSearchResultItem", "namespace": "OpenAI", @@ -87567,13 +87760,13 @@ "decorators": [], "properties": [ { - "$id": "6802", + "$id": "6815", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the vector store file.", "type": { - "$id": "6803", + "$id": "6816", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87593,13 +87786,13 @@ "isHttpMetadata": false }, { - "$id": "6804", + "$id": "6817", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the vector store file.", "type": { - "$id": "6805", + "$id": "6818", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87619,13 +87812,13 @@ "isHttpMetadata": false }, { - "$id": "6806", + "$id": "6819", "kind": "property", "name": "score", "serializedName": "score", "doc": "The similarity score for the result.", "type": { - "$id": "6807", + "$id": "6820", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -87645,15 +87838,15 @@ "isHttpMetadata": false }, { - "$id": "6808", + "$id": "6821", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6809", + "$id": "6822", "kind": "nullable", "type": { - "$ref": "3945" + "$ref": "3946" }, "namespace": "OpenAI" }, @@ -87671,17 +87864,17 @@ "isHttpMetadata": false }, { - "$id": "6810", + "$id": "6823", "kind": "property", "name": "content", "serializedName": "content", "doc": "Content chunks from the file.", "type": { - "$id": "6811", + "$id": "6824", "kind": "array", "name": "ArrayVectorStoreSearchResultContentObject", "valueType": { - "$id": "6812", + "$id": "6825", "kind": "model", "name": "VectorStoreSearchResultContentObject", "namespace": "OpenAI", @@ -87690,13 +87883,13 @@ "decorators": [], "properties": [ { - "$id": "6813", + "$id": "6826", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of content.", "type": { - "$ref": "1723" + "$ref": "1724" }, "optional": false, "readOnly": false, @@ -87712,13 +87905,13 @@ "isHttpMetadata": false }, { - "$id": "6814", + "$id": "6827", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content returned from search.", "type": { - "$id": "6815", + "$id": "6828", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87774,13 +87967,13 @@ "isHttpMetadata": false }, { - "$id": "6816", + "$id": "6829", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates if there are more results to fetch.", "type": { - "$id": "6817", + "$id": "6830", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -87800,16 +87993,16 @@ "isHttpMetadata": false }, { - "$id": "6818", + "$id": "6831", "kind": "property", "name": "next_page", "serializedName": "next_page", "doc": "The token for the next page, if any.", "type": { - "$id": "6819", + "$id": "6832", "kind": "nullable", "type": { - "$id": "6820", + "$id": "6833", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87833,13 +88026,13 @@ ] }, { - "$ref": "6801" + "$ref": "6814" }, { - "$ref": "6812" + "$ref": "6825" }, { - "$id": "6821", + "$id": "6834", "kind": "model", "name": "CreateCompletionRequest", "namespace": "OpenAI", @@ -87848,13 +88041,13 @@ "decorators": [], "properties": [ { - "$id": "6822", + "$id": "6835", "kind": "property", "name": "model", "serializedName": "model", "doc": "ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models) for descriptions of them.", "type": { - "$ref": "1087" + "$ref": "1088" }, "optional": false, "readOnly": false, @@ -87870,34 +88063,34 @@ "isHttpMetadata": false }, { - "$id": "6823", + "$id": "6836", "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": "6824", + "$id": "6837", "kind": "nullable", "type": { - "$id": "6825", + "$id": "6838", "kind": "union", "name": "CreateCompletionRequestPrompt", "variantTypes": [ { - "$id": "6826", + "$id": "6839", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$ref": "2437" + "$ref": "2438" }, { - "$ref": "2670" + "$ref": "2671" }, { - "$ref": "3413" + "$ref": "3414" } ], "namespace": "OpenAI", @@ -87919,16 +88112,16 @@ "isHttpMetadata": false }, { - "$id": "6827", + "$id": "6840", "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": "6828", + "$id": "6841", "kind": "nullable", "type": { - "$id": "6829", + "$id": "6842", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87950,16 +88143,16 @@ "isHttpMetadata": false }, { - "$id": "6830", + "$id": "6843", "kind": "property", "name": "echo", "serializedName": "echo", "doc": "Echo back the prompt in addition to the completion", "type": { - "$id": "6831", + "$id": "6844", "kind": "nullable", "type": { - "$id": "6832", + "$id": "6845", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -87981,16 +88174,16 @@ "isHttpMetadata": false }, { - "$id": "6833", + "$id": "6846", "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": "6834", + "$id": "6847", "kind": "nullable", "type": { - "$id": "6835", + "$id": "6848", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -88012,16 +88205,16 @@ "isHttpMetadata": false }, { - "$id": "6836", + "$id": "6849", "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": "6837", + "$id": "6850", "kind": "nullable", "type": { - "$ref": "3166" + "$ref": "3167" }, "namespace": "OpenAI" }, @@ -88039,16 +88232,16 @@ "isHttpMetadata": false }, { - "$id": "6838", + "$id": "6851", "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": "6839", + "$id": "6852", "kind": "nullable", "type": { - "$id": "6840", + "$id": "6853", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88070,16 +88263,16 @@ "isHttpMetadata": false }, { - "$id": "6841", + "$id": "6854", "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": "6842", + "$id": "6855", "kind": "nullable", "type": { - "$id": "6843", + "$id": "6856", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88101,16 +88294,16 @@ "isHttpMetadata": false }, { - "$id": "6844", + "$id": "6857", "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": "6845", + "$id": "6858", "kind": "nullable", "type": { - "$id": "6846", + "$id": "6859", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88132,16 +88325,16 @@ "isHttpMetadata": false }, { - "$id": "6847", + "$id": "6860", "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": "6848", + "$id": "6861", "kind": "nullable", "type": { - "$id": "6849", + "$id": "6862", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -88163,16 +88356,16 @@ "isHttpMetadata": false }, { - "$id": "6850", + "$id": "6863", "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": "6851", + "$id": "6864", "kind": "nullable", "type": { - "$id": "6852", + "$id": "6865", "kind": "int64", "name": "int64", "crossLanguageDefinitionId": "TypeSpec.int64", @@ -88194,15 +88387,15 @@ "isHttpMetadata": false }, { - "$id": "6853", + "$id": "6866", "kind": "property", "name": "stop", "serializedName": "stop", "type": { - "$id": "6854", + "$id": "6867", "kind": "nullable", "type": { - "$ref": "3162" + "$ref": "3163" }, "namespace": "OpenAI" }, @@ -88220,16 +88413,16 @@ "isHttpMetadata": false }, { - "$id": "6855", + "$id": "6868", "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": "6856", + "$id": "6869", "kind": "nullable", "type": { - "$id": "6857", + "$id": "6870", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -88251,15 +88444,15 @@ "isHttpMetadata": false }, { - "$id": "6858", + "$id": "6871", "kind": "property", "name": "stream_options", "serializedName": "stream_options", "type": { - "$id": "6859", + "$id": "6872", "kind": "nullable", "type": { - "$ref": "3196" + "$ref": "3197" }, "namespace": "OpenAI" }, @@ -88277,16 +88470,16 @@ "isHttpMetadata": false }, { - "$id": "6860", + "$id": "6873", "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": "6861", + "$id": "6874", "kind": "nullable", "type": { - "$id": "6862", + "$id": "6875", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88308,16 +88501,16 @@ "isHttpMetadata": false }, { - "$id": "6863", + "$id": "6876", "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": "6864", + "$id": "6877", "kind": "nullable", "type": { - "$id": "6865", + "$id": "6878", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -88339,16 +88532,16 @@ "isHttpMetadata": false }, { - "$id": "6866", + "$id": "6879", "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": "6867", + "$id": "6880", "kind": "nullable", "type": { - "$id": "6868", + "$id": "6881", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -88370,13 +88563,13 @@ "isHttpMetadata": false }, { - "$id": "6869", + "$id": "6882", "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": "6870", + "$id": "6883", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88398,7 +88591,7 @@ ] }, { - "$id": "6871", + "$id": "6884", "kind": "model", "name": "CreateCompletionResponse", "namespace": "OpenAI", @@ -88408,13 +88601,13 @@ "decorators": [], "properties": [ { - "$id": "6872", + "$id": "6885", "kind": "property", "name": "id", "serializedName": "id", "doc": "A unique identifier for the completion.", "type": { - "$id": "6873", + "$id": "6886", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88434,17 +88627,17 @@ "isHttpMetadata": false }, { - "$id": "6874", + "$id": "6887", "kind": "property", "name": "choices", "serializedName": "choices", "doc": "The list of completion choices the model generated for the input prompt.", "type": { - "$id": "6875", + "$id": "6888", "kind": "array", "name": "Array41", "valueType": { - "$id": "6876", + "$id": "6889", "kind": "model", "name": "CreateCompletionResponseChoice", "namespace": "OpenAI", @@ -88453,13 +88646,13 @@ "decorators": [], "properties": [ { - "$id": "6877", + "$id": "6890", "kind": "property", "name": "finish_reason", "serializedName": "finish_reason", "doc": "The reason the model stopped generating tokens. This will be `stop` if the model hit a natural stop point or a provided stop sequence,\n`length` if the maximum number of tokens specified in the request was reached,\nor `content_filter` if content was omitted due to a flag from our content filters.", "type": { - "$ref": "1092" + "$ref": "1093" }, "optional": false, "readOnly": false, @@ -88475,12 +88668,12 @@ "isHttpMetadata": false }, { - "$id": "6878", + "$id": "6891", "kind": "property", "name": "index", "serializedName": "index", "type": { - "$id": "6879", + "$id": "6892", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88500,15 +88693,15 @@ "isHttpMetadata": false }, { - "$id": "6880", + "$id": "6893", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "type": { - "$id": "6881", + "$id": "6894", "kind": "nullable", "type": { - "$id": "6882", + "$id": "6895", "kind": "model", "name": "CreateCompletionResponseChoiceLogprobs1", "namespace": "OpenAI", @@ -88517,12 +88710,12 @@ "decorators": [], "properties": [ { - "$id": "6883", + "$id": "6896", "kind": "property", "name": "text_offset", "serializedName": "text_offset", "type": { - "$ref": "2670" + "$ref": "2671" }, "optional": true, "readOnly": false, @@ -88538,12 +88731,12 @@ "isHttpMetadata": false }, { - "$id": "6884", + "$id": "6897", "kind": "property", "name": "token_logprobs", "serializedName": "token_logprobs", "type": { - "$ref": "2691" + "$ref": "2692" }, "optional": true, "readOnly": false, @@ -88559,12 +88752,12 @@ "isHttpMetadata": false }, { - "$id": "6885", + "$id": "6898", "kind": "property", "name": "tokens", "serializedName": "tokens", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": true, "readOnly": false, @@ -88580,26 +88773,26 @@ "isHttpMetadata": false }, { - "$id": "6886", + "$id": "6899", "kind": "property", "name": "top_logprobs", "serializedName": "top_logprobs", "type": { - "$id": "6887", + "$id": "6900", "kind": "array", "name": "ArrayRecord1", "valueType": { - "$id": "6888", + "$id": "6901", "kind": "dict", "keyType": { - "$id": "6889", + "$id": "6902", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, "valueType": { - "$id": "6890", + "$id": "6903", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -88641,12 +88834,12 @@ "isHttpMetadata": false }, { - "$id": "6891", + "$id": "6904", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "6892", + "$id": "6905", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88684,18 +88877,18 @@ "isHttpMetadata": false }, { - "$id": "6893", + "$id": "6906", "kind": "property", "name": "created", "serializedName": "created", "doc": "The Unix timestamp (in seconds) of when the completion was created.", "type": { - "$id": "6894", + "$id": "6907", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6895", + "$id": "6908", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88718,13 +88911,13 @@ "isHttpMetadata": false }, { - "$id": "6896", + "$id": "6909", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model used for completion.", "type": { - "$id": "6897", + "$id": "6910", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88744,13 +88937,13 @@ "isHttpMetadata": false }, { - "$id": "6898", + "$id": "6911", "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": "6899", + "$id": "6912", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88770,13 +88963,13 @@ "isHttpMetadata": false }, { - "$id": "6900", + "$id": "6913", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"text_completion\"", "type": { - "$ref": "1725" + "$ref": "1726" }, "optional": false, "readOnly": false, @@ -88792,12 +88985,12 @@ "isHttpMetadata": false }, { - "$id": "6901", + "$id": "6914", "kind": "property", "name": "usage", "serializedName": "usage", "type": { - "$ref": "2944" + "$ref": "2945" }, "optional": true, "readOnly": false, @@ -88815,13 +89008,13 @@ ] }, { - "$ref": "6876" + "$ref": "6889" }, { - "$ref": "6882" + "$ref": "6895" }, { - "$id": "6902", + "$id": "6915", "kind": "model", "name": "ListModelsResponse", "namespace": "OpenAI", @@ -88830,12 +89023,12 @@ "decorators": [], "properties": [ { - "$id": "6903", + "$id": "6916", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1727" + "$ref": "1728" }, "optional": false, "readOnly": false, @@ -88851,16 +89044,16 @@ "isHttpMetadata": false }, { - "$id": "6904", + "$id": "6917", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6905", + "$id": "6918", "kind": "array", "name": "ArrayModel", "valueType": { - "$id": "6906", + "$id": "6919", "kind": "model", "name": "Model", "namespace": "OpenAI", @@ -88870,13 +89063,13 @@ "decorators": [], "properties": [ { - "$id": "6907", + "$id": "6920", "kind": "property", "name": "id", "serializedName": "id", "doc": "The model identifier, which can be referenced in the API endpoints.", "type": { - "$id": "6908", + "$id": "6921", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88896,18 +89089,18 @@ "isHttpMetadata": false }, { - "$id": "6909", + "$id": "6922", "kind": "property", "name": "created", "serializedName": "created", "doc": "The Unix timestamp (in seconds) when the model was created.", "type": { - "$id": "6910", + "$id": "6923", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6911", + "$id": "6924", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88930,13 +89123,13 @@ "isHttpMetadata": false }, { - "$id": "6912", + "$id": "6925", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"model\".", "type": { - "$ref": "1729" + "$ref": "1730" }, "optional": false, "readOnly": false, @@ -88952,13 +89145,13 @@ "isHttpMetadata": false }, { - "$id": "6913", + "$id": "6926", "kind": "property", "name": "owned_by", "serializedName": "owned_by", "doc": "The organization that owns the model.", "type": { - "$id": "6914", + "$id": "6927", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88998,10 +89191,10 @@ ] }, { - "$ref": "6906" + "$ref": "6919" }, { - "$id": "6915", + "$id": "6928", "kind": "model", "name": "DeleteModelResponse", "namespace": "OpenAI", @@ -89010,12 +89203,12 @@ "decorators": [], "properties": [ { - "$id": "6916", + "$id": "6929", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6917", + "$id": "6930", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89035,12 +89228,12 @@ "isHttpMetadata": false }, { - "$id": "6918", + "$id": "6931", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6919", + "$id": "6932", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -89060,12 +89253,12 @@ "isHttpMetadata": false }, { - "$id": "6920", + "$id": "6933", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1731" + "$ref": "1732" }, "optional": false, "readOnly": false, @@ -89083,7 +89276,7 @@ ] }, { - "$id": "6921", + "$id": "6934", "kind": "model", "name": "RealtimeClientEvent", "namespace": "OpenAI", @@ -89092,13 +89285,13 @@ "doc": "A realtime client event.", "decorators": [], "discriminatorProperty": { - "$id": "6922", + "$id": "6935", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of event.", "type": { - "$ref": "1097" + "$ref": "1098" }, "optional": false, "readOnly": false, @@ -89115,15 +89308,15 @@ }, "properties": [ { - "$ref": "6922" + "$ref": "6935" }, { - "$id": "6923", + "$id": "6936", "kind": "property", "name": "event_id", "serializedName": "event_id", "type": { - "$id": "6924", + "$id": "6937", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89145,7 +89338,7 @@ ], "discriminatedSubtypes": { "session.update": { - "$id": "6925", + "$id": "6938", "kind": "model", "name": "RealtimeClientEventSessionUpdate", "namespace": "OpenAI", @@ -89155,32 +89348,32 @@ "discriminatorValue": "session.update", "decorators": [], "baseModel": { - "$ref": "6921" + "$ref": "6934" }, "properties": [ { - "$id": "6926", + "$id": "6939", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `session.update`.", "type": { - "$id": "6927", + "$id": "6940", "kind": "enumvalue", "name": "session_update", "value": "session.update", "valueType": { - "$ref": "1098" + "$ref": "1099" }, "enumType": { - "$id": "6928", + "$id": "6941", "kind": "enum", "decorators": [], "name": "RealtimeClientEventType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6929", + "$id": "6942", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -89189,159 +89382,159 @@ }, "values": [ { - "$id": "6930", + "$id": "6943", "kind": "enumvalue", "decorators": [], "name": "session_update", "value": "session.update", "valueType": { - "$ref": "6929" + "$ref": "6942" }, "enumType": { - "$ref": "6928" + "$ref": "6941" } }, { - "$id": "6931", + "$id": "6944", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_append", "value": "input_audio_buffer.append", "valueType": { - "$ref": "6929" + "$ref": "6942" }, "enumType": { - "$ref": "6928" + "$ref": "6941" } }, { - "$id": "6932", + "$id": "6945", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_commit", "value": "input_audio_buffer.commit", "valueType": { - "$ref": "6929" + "$ref": "6942" }, "enumType": { - "$ref": "6928" + "$ref": "6941" } }, { - "$id": "6933", + "$id": "6946", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_clear", "value": "input_audio_buffer.clear", "valueType": { - "$ref": "6929" + "$ref": "6942" }, "enumType": { - "$ref": "6928" + "$ref": "6941" } }, { - "$id": "6934", + "$id": "6947", "kind": "enumvalue", "decorators": [], "name": "output_audio_buffer_clear", "value": "output_audio_buffer.clear", "valueType": { - "$ref": "6929" + "$ref": "6942" }, "enumType": { - "$ref": "6928" + "$ref": "6941" } }, { - "$id": "6935", + "$id": "6948", "kind": "enumvalue", "decorators": [], "name": "conversation_item_create", "value": "conversation.item.create", "valueType": { - "$ref": "6929" + "$ref": "6942" }, "enumType": { - "$ref": "6928" + "$ref": "6941" } }, { - "$id": "6936", + "$id": "6949", "kind": "enumvalue", "decorators": [], "name": "conversation_item_retrieve", "value": "conversation.item.retrieve", "valueType": { - "$ref": "6929" + "$ref": "6942" }, "enumType": { - "$ref": "6928" + "$ref": "6941" } }, { - "$id": "6937", + "$id": "6950", "kind": "enumvalue", "decorators": [], "name": "conversation_item_truncate", "value": "conversation.item.truncate", "valueType": { - "$ref": "6929" + "$ref": "6942" }, "enumType": { - "$ref": "6928" + "$ref": "6941" } }, { - "$id": "6938", + "$id": "6951", "kind": "enumvalue", "decorators": [], "name": "conversation_item_delete", "value": "conversation.item.delete", "valueType": { - "$ref": "6929" + "$ref": "6942" }, "enumType": { - "$ref": "6928" + "$ref": "6941" } }, { - "$id": "6939", + "$id": "6952", "kind": "enumvalue", "decorators": [], "name": "response_create", "value": "response.create", "valueType": { - "$ref": "6929" + "$ref": "6942" }, "enumType": { - "$ref": "6928" + "$ref": "6941" } }, { - "$id": "6940", + "$id": "6953", "kind": "enumvalue", "decorators": [], "name": "response_cancel", "value": "response.cancel", "valueType": { - "$ref": "6929" + "$ref": "6942" }, "enumType": { - "$ref": "6928" + "$ref": "6941" } }, { - "$id": "6941", + "$id": "6954", "kind": "enumvalue", "decorators": [], "name": "transcription_session_update", "value": "transcription_session.update", "valueType": { - "$ref": "6929" + "$ref": "6942" }, "enumType": { - "$ref": "6928" + "$ref": "6941" } } ], @@ -89370,12 +89563,12 @@ "isHttpMetadata": false }, { - "$id": "6942", + "$id": "6955", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$id": "6943", + "$id": "6956", "kind": "model", "name": "RealtimeRequestSession", "namespace": "OpenAI", @@ -89384,16 +89577,16 @@ "decorators": [], "properties": [ { - "$id": "6944", + "$id": "6957", "kind": "property", "name": "modalities", "serializedName": "modalities", "type": { - "$id": "6945", + "$id": "6958", "kind": "array", "name": "ArrayRealtimeModality", "valueType": { - "$ref": "1111" + "$ref": "1112" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -89412,12 +89605,12 @@ "isHttpMetadata": false }, { - "$id": "6946", + "$id": "6959", "kind": "property", "name": "instructions", "serializedName": "instructions", "type": { - "$id": "6947", + "$id": "6960", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89437,12 +89630,12 @@ "isHttpMetadata": false }, { - "$id": "6948", + "$id": "6961", "kind": "property", "name": "model", "serializedName": "model", "type": { - "$ref": "1115" + "$ref": "1116" }, "optional": true, "readOnly": false, @@ -89458,7 +89651,7 @@ "isHttpMetadata": false }, { - "$id": "6949", + "$id": "6962", "kind": "property", "name": "voice", "serializedName": "voice", @@ -89479,12 +89672,12 @@ "isHttpMetadata": false }, { - "$id": "6950", + "$id": "6963", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", "type": { - "$ref": "1122" + "$ref": "1123" }, "optional": true, "readOnly": false, @@ -89500,12 +89693,12 @@ "isHttpMetadata": false }, { - "$id": "6951", + "$id": "6964", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", "type": { - "$ref": "1122" + "$ref": "1123" }, "optional": true, "readOnly": false, @@ -89521,15 +89714,15 @@ "isHttpMetadata": false }, { - "$id": "6952", + "$id": "6965", "kind": "property", "name": "input_audio_transcription", "serializedName": "input_audio_transcription", "type": { - "$id": "6953", + "$id": "6966", "kind": "nullable", "type": { - "$id": "6954", + "$id": "6967", "kind": "model", "name": "RealtimeAudioInputTranscriptionSettings", "namespace": "OpenAI", @@ -89538,12 +89731,12 @@ "decorators": [], "properties": [ { - "$id": "6955", + "$id": "6968", "kind": "property", "name": "model", "serializedName": "model", "type": { - "$ref": "1127" + "$ref": "1128" }, "optional": true, "readOnly": false, @@ -89559,12 +89752,12 @@ "isHttpMetadata": false }, { - "$id": "6956", + "$id": "6969", "kind": "property", "name": "language", "serializedName": "language", "type": { - "$id": "6957", + "$id": "6970", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89584,12 +89777,12 @@ "isHttpMetadata": false }, { - "$id": "6958", + "$id": "6971", "kind": "property", "name": "prompt", "serializedName": "prompt", "type": { - "$id": "6959", + "$id": "6972", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89626,15 +89819,15 @@ "isHttpMetadata": false }, { - "$id": "6960", + "$id": "6973", "kind": "property", "name": "turn_detection", "serializedName": "turn_detection", "type": { - "$id": "6961", + "$id": "6974", "kind": "nullable", "type": { - "$id": "6962", + "$id": "6975", "kind": "model", "name": "RealtimeTurnDetection", "namespace": "OpenAI", @@ -89642,12 +89835,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "6963", + "$id": "6976", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1130" + "$ref": "1131" }, "optional": false, "readOnly": false, @@ -89664,16 +89857,16 @@ }, "properties": [ { - "$ref": "6963" + "$ref": "6976" }, { - "$id": "6964", + "$id": "6977", "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": "6965", + "$id": "6978", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -89693,13 +89886,13 @@ "isHttpMetadata": false }, { - "$id": "6966", + "$id": "6979", "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": "6967", + "$id": "6980", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -89721,7 +89914,7 @@ ], "discriminatedSubtypes": { "server_vad": { - "$id": "6968", + "$id": "6981", "kind": "model", "name": "RealtimeServerVadTurnDetection", "namespace": "OpenAI", @@ -89730,31 +89923,31 @@ "discriminatorValue": "server_vad", "decorators": [], "baseModel": { - "$ref": "6962" + "$ref": "6975" }, "properties": [ { - "$id": "6969", + "$id": "6982", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "6970", + "$id": "6983", "kind": "enumvalue", "name": "server_vad", "value": "server_vad", "valueType": { - "$ref": "1131" + "$ref": "1132" }, "enumType": { - "$id": "6971", + "$id": "6984", "kind": "enum", "decorators": [], "name": "RealtimeTurnDetectionType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6972", + "$id": "6985", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -89763,30 +89956,30 @@ }, "values": [ { - "$id": "6973", + "$id": "6986", "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": "6972" + "$ref": "6985" }, "enumType": { - "$ref": "6971" + "$ref": "6984" } }, { - "$id": "6974", + "$id": "6987", "kind": "enumvalue", "decorators": [], "name": "semantic_vad", "value": "semantic_vad", "valueType": { - "$ref": "6972" + "$ref": "6985" }, "enumType": { - "$ref": "6971" + "$ref": "6984" } } ], @@ -89816,13 +90009,13 @@ "isHttpMetadata": false }, { - "$id": "6975", + "$id": "6988", "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": "6976", + "$id": "6989", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -89842,18 +90035,18 @@ "isHttpMetadata": false }, { - "$id": "6977", + "$id": "6990", "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": "6978", + "$id": "6991", "kind": "duration", "name": "duration", "encode": "ISO8601", "wireType": { - "$id": "6979", + "$id": "6992", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89876,18 +90069,18 @@ "isHttpMetadata": false }, { - "$id": "6980", + "$id": "6993", "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": "6981", + "$id": "6994", "kind": "duration", "name": "duration", "encode": "ISO8601", "wireType": { - "$id": "6982", + "$id": "6995", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89912,7 +90105,7 @@ ] }, "semantic_vad": { - "$id": "6983", + "$id": "6996", "kind": "model", "name": "RealtimeSemanticVadTurnDetection", "namespace": "OpenAI", @@ -89921,24 +90114,24 @@ "discriminatorValue": "semantic_vad", "decorators": [], "baseModel": { - "$ref": "6962" + "$ref": "6975" }, "properties": [ { - "$id": "6984", + "$id": "6997", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "6985", + "$id": "6998", "kind": "enumvalue", "name": "semantic_vad", "value": "semantic_vad", "valueType": { - "$ref": "1131" + "$ref": "1132" }, "enumType": { - "$ref": "6971" + "$ref": "6984" }, "decorators": [] }, @@ -89956,13 +90149,13 @@ "isHttpMetadata": false }, { - "$id": "6986", + "$id": "6999", "kind": "property", "name": "eagerness", "serializedName": "eagerness", "doc": "Used only for `semantic_vad` mode. The eagerness of the model to respond. `low` will wait longer for the user to continue speaking, `high` will respond more quickly. `auto` is the default and is equivalent to `medium`.", "type": { - "$ref": "1134" + "$ref": "1135" }, "optional": true, "readOnly": false, @@ -89997,12 +90190,12 @@ "isHttpMetadata": false }, { - "$id": "6987", + "$id": "7000", "kind": "property", "name": "input_audio_noise_reduction", "serializedName": "input_audio_noise_reduction", "type": { - "$id": "6988", + "$id": "7001", "kind": "model", "name": "RealtimeAudioNoiseReduction", "namespace": "OpenAI", @@ -90010,12 +90203,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "6989", + "$id": "7002", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1140" + "$ref": "1141" }, "optional": false, "readOnly": false, @@ -90032,12 +90225,12 @@ }, "properties": [ { - "$ref": "6989" + "$ref": "7002" } ], "discriminatedSubtypes": { "near_field": { - "$id": "6990", + "$id": "7003", "kind": "model", "name": "RealtimeAudioNearFieldNoiseReduction", "namespace": "OpenAI", @@ -90046,31 +90239,31 @@ "discriminatorValue": "near_field", "decorators": [], "baseModel": { - "$ref": "6988" + "$ref": "7001" }, "properties": [ { - "$id": "6991", + "$id": "7004", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "6992", + "$id": "7005", "kind": "enumvalue", "name": "near_field", "value": "near_field", "valueType": { - "$ref": "1141" + "$ref": "1142" }, "enumType": { - "$id": "6993", + "$id": "7006", "kind": "enum", "decorators": [], "name": "RealtimeAudioNoiseReductionType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6994", + "$id": "7007", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -90079,29 +90272,29 @@ }, "values": [ { - "$id": "6995", + "$id": "7008", "kind": "enumvalue", "decorators": [], "name": "near_field", "value": "near_field", "valueType": { - "$ref": "6994" + "$ref": "7007" }, "enumType": { - "$ref": "6993" + "$ref": "7006" } }, { - "$id": "6996", + "$id": "7009", "kind": "enumvalue", "decorators": [], "name": "far_field", "value": "far_field", "valueType": { - "$ref": "6994" + "$ref": "7007" }, "enumType": { - "$ref": "6993" + "$ref": "7006" } } ], @@ -90132,7 +90325,7 @@ ] }, "far_field": { - "$id": "6997", + "$id": "7010", "kind": "model", "name": "RealtimeAudioFarFieldNoiseReduction", "namespace": "OpenAI", @@ -90141,24 +90334,24 @@ "discriminatorValue": "far_field", "decorators": [], "baseModel": { - "$ref": "6988" + "$ref": "7001" }, "properties": [ { - "$id": "6998", + "$id": "7011", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "6999", + "$id": "7012", "kind": "enumvalue", "name": "far_field", "value": "far_field", "valueType": { - "$ref": "1141" + "$ref": "1142" }, "enumType": { - "$ref": "6993" + "$ref": "7006" }, "decorators": [] }, @@ -90193,16 +90386,16 @@ "isHttpMetadata": false }, { - "$id": "7000", + "$id": "7013", "kind": "property", "name": "tools", "serializedName": "tools", "type": { - "$id": "7001", + "$id": "7014", "kind": "array", "name": "ArrayRealtimeTool", "valueType": { - "$id": "7002", + "$id": "7015", "kind": "model", "name": "RealtimeTool", "namespace": "OpenAI", @@ -90211,12 +90404,12 @@ "doc": "The base representation of a realtime tool definition.", "decorators": [], "discriminatorProperty": { - "$id": "7003", + "$id": "7016", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1144" + "$ref": "1145" }, "optional": false, "readOnly": false, @@ -90233,12 +90426,12 @@ }, "properties": [ { - "$ref": "7003" + "$ref": "7016" } ], "discriminatedSubtypes": { "function": { - "$id": "7004", + "$id": "7017", "kind": "model", "name": "RealtimeFunctionTool", "namespace": "OpenAI", @@ -90248,24 +90441,24 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "7002" + "$ref": "7015" }, "properties": [ { - "$id": "7005", + "$id": "7018", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7006", + "$id": "7019", "kind": "enumvalue", "name": "function", "value": "function", "valueType": { - "$ref": "1145" + "$ref": "1146" }, "enumType": { - "$id": "7007", + "$id": "7020", "kind": "enum", "decorators": [], "doc": "The supported tool type discriminators for realtime tools.\nCurrently, only 'function' tools are supported.", @@ -90273,7 +90466,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "7008", + "$id": "7021", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -90282,16 +90475,16 @@ }, "values": [ { - "$id": "7009", + "$id": "7022", "kind": "enumvalue", "decorators": [], "name": "function", "value": "function", "valueType": { - "$ref": "7008" + "$ref": "7021" }, "enumType": { - "$ref": "7007" + "$ref": "7020" } } ], @@ -90320,12 +90513,12 @@ "isHttpMetadata": false }, { - "$id": "7010", + "$id": "7023", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "7011", + "$id": "7024", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90345,12 +90538,12 @@ "isHttpMetadata": false }, { - "$id": "7012", + "$id": "7025", "kind": "property", "name": "description", "serializedName": "description", "type": { - "$id": "7013", + "$id": "7026", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90370,12 +90563,12 @@ "isHttpMetadata": false }, { - "$id": "7014", + "$id": "7027", "kind": "property", "name": "parameters", "serializedName": "parameters", "type": { - "$id": "7015", + "$id": "7028", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -90415,20 +90608,20 @@ "isHttpMetadata": false }, { - "$id": "7016", + "$id": "7029", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "7017", + "$id": "7030", "kind": "union", "name": "RealtimeToolChoice", "variantTypes": [ { - "$ref": "1147" + "$ref": "1148" }, { - "$id": "7018", + "$id": "7031", "kind": "model", "name": "RealtimeToolChoiceObject", "namespace": "OpenAI", @@ -90437,12 +90630,12 @@ "doc": "A base representation for a realtime tool_choice selecting a named tool.", "decorators": [], "discriminatorProperty": { - "$id": "7019", + "$id": "7032", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1144" + "$ref": "1145" }, "optional": false, "readOnly": false, @@ -90459,12 +90652,12 @@ }, "properties": [ { - "$ref": "7019" + "$ref": "7032" } ], "discriminatedSubtypes": { "function": { - "$id": "7020", + "$id": "7033", "kind": "model", "name": "RealtimeToolChoiceFunctionObject", "namespace": "OpenAI", @@ -90474,16 +90667,16 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "7018" + "$ref": "7031" }, "properties": [ { - "$id": "7021", + "$id": "7034", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "7006" + "$ref": "7019" }, "optional": false, "readOnly": false, @@ -90499,12 +90692,12 @@ "isHttpMetadata": false }, { - "$id": "7022", + "$id": "7035", "kind": "property", "name": "function", "serializedName": "function", "type": { - "$id": "7023", + "$id": "7036", "kind": "model", "name": "RealtimeToolChoiceFunctionObjectFunction", "namespace": "OpenAI", @@ -90513,12 +90706,12 @@ "decorators": [], "properties": [ { - "$id": "7024", + "$id": "7037", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "7025", + "$id": "7038", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90574,12 +90767,12 @@ "isHttpMetadata": false }, { - "$id": "7026", + "$id": "7039", "kind": "property", "name": "temperature", "serializedName": "temperature", "type": { - "$id": "7027", + "$id": "7040", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -90599,24 +90792,24 @@ "isHttpMetadata": false }, { - "$id": "7028", + "$id": "7041", "kind": "property", "name": "max_response_output_tokens", "serializedName": "max_response_output_tokens", "type": { - "$id": "7029", + "$id": "7042", "kind": "union", "name": "RealtimeRequestSessionMaxResponseOutputTokens", "variantTypes": [ { - "$id": "7030", + "$id": "7043", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", "decorators": [] }, { - "$ref": "1733" + "$ref": "1734" } ], "namespace": "OpenAI", @@ -90653,7 +90846,7 @@ ] }, "input_audio_buffer.append": { - "$id": "7031", + "$id": "7044", "kind": "model", "name": "RealtimeClientEventInputAudioBufferAppend", "namespace": "OpenAI", @@ -90663,25 +90856,25 @@ "discriminatorValue": "input_audio_buffer.append", "decorators": [], "baseModel": { - "$ref": "6921" + "$ref": "6934" }, "properties": [ { - "$id": "7032", + "$id": "7045", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.append`.", "type": { - "$id": "7033", + "$id": "7046", "kind": "enumvalue", "name": "input_audio_buffer_append", "value": "input_audio_buffer.append", "valueType": { - "$ref": "1098" + "$ref": "1099" }, "enumType": { - "$ref": "6928" + "$ref": "6941" }, "decorators": [] }, @@ -90699,13 +90892,13 @@ "isHttpMetadata": false }, { - "$id": "7034", + "$id": "7047", "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": "7035", + "$id": "7048", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -90728,7 +90921,7 @@ ] }, "input_audio_buffer.commit": { - "$id": "7036", + "$id": "7049", "kind": "model", "name": "RealtimeClientEventInputAudioBufferCommit", "namespace": "OpenAI", @@ -90738,25 +90931,25 @@ "discriminatorValue": "input_audio_buffer.commit", "decorators": [], "baseModel": { - "$ref": "6921" + "$ref": "6934" }, "properties": [ { - "$id": "7037", + "$id": "7050", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.commit`.", "type": { - "$id": "7038", + "$id": "7051", "kind": "enumvalue", "name": "input_audio_buffer_commit", "value": "input_audio_buffer.commit", "valueType": { - "$ref": "1098" + "$ref": "1099" }, "enumType": { - "$ref": "6928" + "$ref": "6941" }, "decorators": [] }, @@ -90776,7 +90969,7 @@ ] }, "input_audio_buffer.clear": { - "$id": "7039", + "$id": "7052", "kind": "model", "name": "RealtimeClientEventInputAudioBufferClear", "namespace": "OpenAI", @@ -90786,25 +90979,25 @@ "discriminatorValue": "input_audio_buffer.clear", "decorators": [], "baseModel": { - "$ref": "6921" + "$ref": "6934" }, "properties": [ { - "$id": "7040", + "$id": "7053", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.clear`.", "type": { - "$id": "7041", + "$id": "7054", "kind": "enumvalue", "name": "input_audio_buffer_clear", "value": "input_audio_buffer.clear", "valueType": { - "$ref": "1098" + "$ref": "1099" }, "enumType": { - "$ref": "6928" + "$ref": "6941" }, "decorators": [] }, @@ -90824,7 +91017,7 @@ ] }, "output_audio_buffer.clear": { - "$id": "7042", + "$id": "7055", "kind": "model", "name": "RealtimeClientEventOutputAudioBufferClear", "namespace": "OpenAI", @@ -90834,25 +91027,25 @@ "discriminatorValue": "output_audio_buffer.clear", "decorators": [], "baseModel": { - "$ref": "6921" + "$ref": "6934" }, "properties": [ { - "$id": "7043", + "$id": "7056", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.clear`.", "type": { - "$id": "7044", + "$id": "7057", "kind": "enumvalue", "name": "output_audio_buffer_clear", "value": "output_audio_buffer.clear", "valueType": { - "$ref": "1098" + "$ref": "1099" }, "enumType": { - "$ref": "6928" + "$ref": "6941" }, "decorators": [] }, @@ -90872,7 +91065,7 @@ ] }, "conversation.item.create": { - "$id": "7045", + "$id": "7058", "kind": "model", "name": "RealtimeClientEventConversationItemCreate", "namespace": "OpenAI", @@ -90882,25 +91075,25 @@ "discriminatorValue": "conversation.item.create", "decorators": [], "baseModel": { - "$ref": "6921" + "$ref": "6934" }, "properties": [ { - "$id": "7046", + "$id": "7059", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.create`.", "type": { - "$id": "7047", + "$id": "7060", "kind": "enumvalue", "name": "conversation_item_create", "value": "conversation.item.create", "valueType": { - "$ref": "1098" + "$ref": "1099" }, "enumType": { - "$ref": "6928" + "$ref": "6941" }, "decorators": [] }, @@ -90918,13 +91111,13 @@ "isHttpMetadata": false }, { - "$id": "7048", + "$id": "7061", "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": "7049", + "$id": "7062", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90944,12 +91137,12 @@ "isHttpMetadata": false }, { - "$id": "7050", + "$id": "7063", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$id": "7051", + "$id": "7064", "kind": "model", "name": "RealtimeConversationRequestItem", "namespace": "OpenAI", @@ -90957,12 +91150,12 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "7052", + "$id": "7065", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1152" + "$ref": "1153" }, "optional": false, "readOnly": false, @@ -90979,15 +91172,15 @@ }, "properties": [ { - "$ref": "7052" + "$ref": "7065" }, { - "$id": "7053", + "$id": "7066", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "7054", + "$id": "7067", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91009,7 +91202,7 @@ ], "discriminatedSubtypes": { "message": { - "$id": "7055", + "$id": "7068", "kind": "model", "name": "RealtimeRequestMessageItem", "namespace": "OpenAI", @@ -91018,12 +91211,12 @@ "discriminatorValue": "message", "decorators": [], "discriminatorProperty": { - "$id": "7056", + "$id": "7069", "kind": "property", "name": "role", "serializedName": "role", "type": { - "$ref": "1157" + "$ref": "1158" }, "optional": false, "readOnly": false, @@ -91039,31 +91232,31 @@ "isHttpMetadata": false }, "baseModel": { - "$ref": "7051" + "$ref": "7064" }, "properties": [ { - "$id": "7057", + "$id": "7070", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7058", + "$id": "7071", "kind": "enumvalue", "name": "message", "value": "message", "valueType": { - "$ref": "1153" + "$ref": "1154" }, "enumType": { - "$id": "7059", + "$id": "7072", "kind": "enum", "decorators": [], "name": "RealtimeItemType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "7060", + "$id": "7073", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -91072,42 +91265,42 @@ }, "values": [ { - "$id": "7061", + "$id": "7074", "kind": "enumvalue", "decorators": [], "name": "message", "value": "message", "valueType": { - "$ref": "7060" + "$ref": "7073" }, "enumType": { - "$ref": "7059" + "$ref": "7072" } }, { - "$id": "7062", + "$id": "7075", "kind": "enumvalue", "decorators": [], "name": "function_call", "value": "function_call", "valueType": { - "$ref": "7060" + "$ref": "7073" }, "enumType": { - "$ref": "7059" + "$ref": "7072" } }, { - "$id": "7063", + "$id": "7076", "kind": "enumvalue", "decorators": [], "name": "function_call_output", "value": "function_call_output", "valueType": { - "$ref": "7060" + "$ref": "7073" }, "enumType": { - "$ref": "7059" + "$ref": "7072" } } ], @@ -91136,15 +91329,15 @@ "isHttpMetadata": false }, { - "$ref": "7056" + "$ref": "7069" }, { - "$id": "7064", + "$id": "7077", "kind": "property", "name": "status", "serializedName": "status", "type": { - "$ref": "1162" + "$ref": "1163" }, "optional": true, "readOnly": false, @@ -91162,7 +91355,7 @@ ], "discriminatedSubtypes": { "system": { - "$id": "7065", + "$id": "7078", "kind": "model", "name": "RealtimeRequestSystemMessageItem", "namespace": "OpenAI", @@ -91171,31 +91364,31 @@ "discriminatorValue": "system", "decorators": [], "baseModel": { - "$ref": "7055" + "$ref": "7068" }, "properties": [ { - "$id": "7066", + "$id": "7079", "kind": "property", "name": "role", "serializedName": "role", "type": { - "$id": "7067", + "$id": "7080", "kind": "enumvalue", "name": "system", "value": "system", "valueType": { - "$ref": "1158" + "$ref": "1159" }, "enumType": { - "$id": "7068", + "$id": "7081", "kind": "enum", "decorators": [], "name": "RealtimeMessageRole", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "7069", + "$id": "7082", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -91204,42 +91397,42 @@ }, "values": [ { - "$id": "7070", + "$id": "7083", "kind": "enumvalue", "decorators": [], "name": "system", "value": "system", "valueType": { - "$ref": "7069" + "$ref": "7082" }, "enumType": { - "$ref": "7068" + "$ref": "7081" } }, { - "$id": "7071", + "$id": "7084", "kind": "enumvalue", "decorators": [], "name": "user", "value": "user", "valueType": { - "$ref": "7069" + "$ref": "7082" }, "enumType": { - "$ref": "7068" + "$ref": "7081" } }, { - "$id": "7072", + "$id": "7085", "kind": "enumvalue", "decorators": [], "name": "assistant", "value": "assistant", "valueType": { - "$ref": "7069" + "$ref": "7082" }, "enumType": { - "$ref": "7068" + "$ref": "7081" } } ], @@ -91268,16 +91461,16 @@ "isHttpMetadata": false }, { - "$id": "7073", + "$id": "7086", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "7074", + "$id": "7087", "kind": "array", "name": "ArrayRealtimeRequestTextContentPart", "valueType": { - "$id": "7075", + "$id": "7088", "kind": "model", "name": "RealtimeRequestTextContentPart", "namespace": "OpenAI", @@ -91286,7 +91479,7 @@ "discriminatorValue": "input_text", "decorators": [], "baseModel": { - "$id": "7076", + "$id": "7089", "kind": "model", "name": "RealtimeContentPart", "namespace": "OpenAI", @@ -91294,12 +91487,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "7077", + "$id": "7090", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1167" + "$ref": "1168" }, "optional": false, "readOnly": false, @@ -91316,15 +91509,15 @@ }, "properties": [ { - "$ref": "7077" + "$ref": "7090" } ], "discriminatedSubtypes": { "input_text": { - "$ref": "7075" + "$ref": "7088" }, "input_audio": { - "$id": "7078", + "$id": "7091", "kind": "model", "name": "RealtimeRequestAudioContentPart", "namespace": "OpenAI", @@ -91333,31 +91526,31 @@ "discriminatorValue": "input_audio", "decorators": [], "baseModel": { - "$ref": "7076" + "$ref": "7089" }, "properties": [ { - "$id": "7079", + "$id": "7092", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7080", + "$id": "7093", "kind": "enumvalue", "name": "input_audio", "value": "input_audio", "valueType": { - "$ref": "1168" + "$ref": "1169" }, "enumType": { - "$id": "7081", + "$id": "7094", "kind": "enum", "decorators": [], "name": "RealtimeContentPartType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "7082", + "$id": "7095", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -91366,55 +91559,55 @@ }, "values": [ { - "$id": "7083", + "$id": "7096", "kind": "enumvalue", "decorators": [], "name": "input_text", "value": "input_text", "valueType": { - "$ref": "7082" + "$ref": "7095" }, "enumType": { - "$ref": "7081" + "$ref": "7094" } }, { - "$id": "7084", + "$id": "7097", "kind": "enumvalue", "decorators": [], "name": "input_audio", "value": "input_audio", "valueType": { - "$ref": "7082" + "$ref": "7095" }, "enumType": { - "$ref": "7081" + "$ref": "7094" } }, { - "$id": "7085", + "$id": "7098", "kind": "enumvalue", "decorators": [], "name": "text", "value": "text", "valueType": { - "$ref": "7082" + "$ref": "7095" }, "enumType": { - "$ref": "7081" + "$ref": "7094" } }, { - "$id": "7086", + "$id": "7099", "kind": "enumvalue", "decorators": [], "name": "audio", "value": "audio", "valueType": { - "$ref": "7082" + "$ref": "7095" }, "enumType": { - "$ref": "7081" + "$ref": "7094" } } ], @@ -91443,12 +91636,12 @@ "isHttpMetadata": false }, { - "$id": "7087", + "$id": "7100", "kind": "property", "name": "transcript", "serializedName": "transcript", "type": { - "$id": "7088", + "$id": "7101", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91470,7 +91663,7 @@ ] }, "text": { - "$id": "7089", + "$id": "7102", "kind": "model", "name": "RealtimeResponseTextContentPart", "namespace": "OpenAI", @@ -91479,24 +91672,24 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "7076" + "$ref": "7089" }, "properties": [ { - "$id": "7090", + "$id": "7103", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7091", + "$id": "7104", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "1168" + "$ref": "1169" }, "enumType": { - "$ref": "7081" + "$ref": "7094" }, "decorators": [] }, @@ -91514,12 +91707,12 @@ "isHttpMetadata": false }, { - "$id": "7092", + "$id": "7105", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "7093", + "$id": "7106", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91541,7 +91734,7 @@ ] }, "audio": { - "$id": "7094", + "$id": "7107", "kind": "model", "name": "RealtimeResponseAudioContentPart", "namespace": "OpenAI", @@ -91550,24 +91743,24 @@ "discriminatorValue": "audio", "decorators": [], "baseModel": { - "$ref": "7076" + "$ref": "7089" }, "properties": [ { - "$id": "7095", + "$id": "7108", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7096", + "$id": "7109", "kind": "enumvalue", "name": "audio", "value": "audio", "valueType": { - "$ref": "1168" + "$ref": "1169" }, "enumType": { - "$ref": "7081" + "$ref": "7094" }, "decorators": [] }, @@ -91585,15 +91778,15 @@ "isHttpMetadata": false }, { - "$id": "7097", + "$id": "7110", "kind": "property", "name": "transcript", "serializedName": "transcript", "type": { - "$id": "7098", + "$id": "7111", "kind": "nullable", "type": { - "$id": "7099", + "$id": "7112", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91620,20 +91813,20 @@ }, "properties": [ { - "$id": "7100", + "$id": "7113", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7101", + "$id": "7114", "kind": "enumvalue", "name": "input_text", "value": "input_text", "valueType": { - "$ref": "1168" + "$ref": "1169" }, "enumType": { - "$ref": "7081" + "$ref": "7094" }, "decorators": [] }, @@ -91651,12 +91844,12 @@ "isHttpMetadata": false }, { - "$id": "7102", + "$id": "7115", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "7103", + "$id": "7116", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91696,7 +91889,7 @@ ] }, "user": { - "$id": "7104", + "$id": "7117", "kind": "model", "name": "RealtimeRequestUserMessageItem", "namespace": "OpenAI", @@ -91705,24 +91898,24 @@ "discriminatorValue": "user", "decorators": [], "baseModel": { - "$ref": "7055" + "$ref": "7068" }, "properties": [ { - "$id": "7105", + "$id": "7118", "kind": "property", "name": "role", "serializedName": "role", "type": { - "$id": "7106", + "$id": "7119", "kind": "enumvalue", "name": "user", "value": "user", "valueType": { - "$ref": "1158" + "$ref": "1159" }, "enumType": { - "$ref": "7068" + "$ref": "7081" }, "decorators": [] }, @@ -91740,24 +91933,24 @@ "isHttpMetadata": false }, { - "$id": "7107", + "$id": "7120", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "7108", + "$id": "7121", "kind": "array", "name": "Array42", "valueType": { - "$id": "7109", + "$id": "7122", "kind": "union", "name": "RealtimeRequestUserMessageItemContent", "variantTypes": [ { - "$ref": "7075" + "$ref": "7088" }, { - "$ref": "7078" + "$ref": "7091" } ], "namespace": "OpenAI", @@ -91782,7 +91975,7 @@ ] }, "assistant": { - "$id": "7110", + "$id": "7123", "kind": "model", "name": "RealtimeRequestAssistantMessageItem", "namespace": "OpenAI", @@ -91791,24 +91984,24 @@ "discriminatorValue": "assistant", "decorators": [], "baseModel": { - "$ref": "7055" + "$ref": "7068" }, "properties": [ { - "$id": "7111", + "$id": "7124", "kind": "property", "name": "role", "serializedName": "role", "type": { - "$id": "7112", + "$id": "7125", "kind": "enumvalue", "name": "assistant", "value": "assistant", "valueType": { - "$ref": "1158" + "$ref": "1159" }, "enumType": { - "$ref": "7068" + "$ref": "7081" }, "decorators": [] }, @@ -91826,12 +92019,12 @@ "isHttpMetadata": false }, { - "$id": "7113", + "$id": "7126", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$ref": "7074" + "$ref": "7087" }, "optional": false, "readOnly": false, @@ -91851,7 +92044,7 @@ } }, "function_call": { - "$id": "7114", + "$id": "7127", "kind": "model", "name": "RealtimeRequestFunctionCallItem", "namespace": "OpenAI", @@ -91860,24 +92053,24 @@ "discriminatorValue": "function_call", "decorators": [], "baseModel": { - "$ref": "7051" + "$ref": "7064" }, "properties": [ { - "$id": "7115", + "$id": "7128", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7116", + "$id": "7129", "kind": "enumvalue", "name": "function_call", "value": "function_call", "valueType": { - "$ref": "1153" + "$ref": "1154" }, "enumType": { - "$ref": "7059" + "$ref": "7072" }, "decorators": [] }, @@ -91895,12 +92088,12 @@ "isHttpMetadata": false }, { - "$id": "7117", + "$id": "7130", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "7118", + "$id": "7131", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91920,12 +92113,12 @@ "isHttpMetadata": false }, { - "$id": "7119", + "$id": "7132", "kind": "property", "name": "call_id", "serializedName": "call_id", "type": { - "$id": "7120", + "$id": "7133", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91945,12 +92138,12 @@ "isHttpMetadata": false }, { - "$id": "7121", + "$id": "7134", "kind": "property", "name": "arguments", "serializedName": "arguments", "type": { - "$id": "7122", + "$id": "7135", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91970,12 +92163,12 @@ "isHttpMetadata": false }, { - "$id": "7123", + "$id": "7136", "kind": "property", "name": "status", "serializedName": "status", "type": { - "$ref": "1162" + "$ref": "1163" }, "optional": true, "readOnly": false, @@ -91993,7 +92186,7 @@ ] }, "function_call_output": { - "$id": "7124", + "$id": "7137", "kind": "model", "name": "RealtimeRequestFunctionCallOutputItem", "namespace": "OpenAI", @@ -92002,24 +92195,24 @@ "discriminatorValue": "function_call_output", "decorators": [], "baseModel": { - "$ref": "7051" + "$ref": "7064" }, "properties": [ { - "$id": "7125", + "$id": "7138", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7126", + "$id": "7139", "kind": "enumvalue", "name": "function_call_output", "value": "function_call_output", "valueType": { - "$ref": "1153" + "$ref": "1154" }, "enumType": { - "$ref": "7059" + "$ref": "7072" }, "decorators": [] }, @@ -92037,12 +92230,12 @@ "isHttpMetadata": false }, { - "$id": "7127", + "$id": "7140", "kind": "property", "name": "call_id", "serializedName": "call_id", "type": { - "$id": "7128", + "$id": "7141", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92062,12 +92255,12 @@ "isHttpMetadata": false }, { - "$id": "7129", + "$id": "7142", "kind": "property", "name": "output", "serializedName": "output", "type": { - "$id": "7130", + "$id": "7143", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92106,7 +92299,7 @@ ] }, "conversation.item.truncate": { - "$id": "7131", + "$id": "7144", "kind": "model", "name": "RealtimeClientEventConversationItemTruncate", "namespace": "OpenAI", @@ -92116,25 +92309,25 @@ "discriminatorValue": "conversation.item.truncate", "decorators": [], "baseModel": { - "$ref": "6921" + "$ref": "6934" }, "properties": [ { - "$id": "7132", + "$id": "7145", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.truncate`.", "type": { - "$id": "7133", + "$id": "7146", "kind": "enumvalue", "name": "conversation_item_truncate", "value": "conversation.item.truncate", "valueType": { - "$ref": "1098" + "$ref": "1099" }, "enumType": { - "$ref": "6928" + "$ref": "6941" }, "decorators": [] }, @@ -92152,13 +92345,13 @@ "isHttpMetadata": false }, { - "$id": "7134", + "$id": "7147", "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": "7135", + "$id": "7148", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92178,13 +92371,13 @@ "isHttpMetadata": false }, { - "$id": "7136", + "$id": "7149", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part to truncate. Set this to 0.", "type": { - "$id": "7137", + "$id": "7150", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -92204,13 +92397,13 @@ "isHttpMetadata": false }, { - "$id": "7138", + "$id": "7151", "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": "7139", + "$id": "7152", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -92232,7 +92425,7 @@ ] }, "conversation.item.delete": { - "$id": "7140", + "$id": "7153", "kind": "model", "name": "RealtimeClientEventConversationItemDelete", "namespace": "OpenAI", @@ -92242,25 +92435,25 @@ "discriminatorValue": "conversation.item.delete", "decorators": [], "baseModel": { - "$ref": "6921" + "$ref": "6934" }, "properties": [ { - "$id": "7141", + "$id": "7154", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.delete`.", "type": { - "$id": "7142", + "$id": "7155", "kind": "enumvalue", "name": "conversation_item_delete", "value": "conversation.item.delete", "valueType": { - "$ref": "1098" + "$ref": "1099" }, "enumType": { - "$ref": "6928" + "$ref": "6941" }, "decorators": [] }, @@ -92278,13 +92471,13 @@ "isHttpMetadata": false }, { - "$id": "7143", + "$id": "7156", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to delete.", "type": { - "$id": "7144", + "$id": "7157", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92306,7 +92499,7 @@ ] }, "response.create": { - "$id": "7145", + "$id": "7158", "kind": "model", "name": "RealtimeClientEventResponseCreate", "namespace": "OpenAI", @@ -92316,25 +92509,25 @@ "discriminatorValue": "response.create", "decorators": [], "baseModel": { - "$ref": "6921" + "$ref": "6934" }, "properties": [ { - "$id": "7146", + "$id": "7159", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.create`.", "type": { - "$id": "7147", + "$id": "7160", "kind": "enumvalue", "name": "response_create", "value": "response.create", "valueType": { - "$ref": "1098" + "$ref": "1099" }, "enumType": { - "$ref": "6928" + "$ref": "6941" }, "decorators": [] }, @@ -92352,12 +92545,12 @@ "isHttpMetadata": false }, { - "$id": "7148", + "$id": "7161", "kind": "property", "name": "response", "serializedName": "response", "type": { - "$id": "7149", + "$id": "7162", "kind": "model", "name": "RealtimeResponseCreateParams", "namespace": "OpenAI", @@ -92367,13 +92560,13 @@ "decorators": [], "properties": [ { - "$id": "7150", + "$id": "7163", "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": "6945" + "$ref": "6958" }, "optional": true, "readOnly": false, @@ -92389,13 +92582,13 @@ "isHttpMetadata": false }, { - "$id": "7151", + "$id": "7164", "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": "7152", + "$id": "7165", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92415,7 +92608,7 @@ "isHttpMetadata": false }, { - "$id": "7153", + "$id": "7166", "kind": "property", "name": "voice", "serializedName": "voice", @@ -92437,13 +92630,13 @@ "isHttpMetadata": false }, { - "$id": "7154", + "$id": "7167", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", "doc": "The format of output audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`.", "type": { - "$ref": "1122" + "$ref": "1123" }, "optional": true, "readOnly": false, @@ -92459,13 +92652,13 @@ "isHttpMetadata": false }, { - "$id": "7155", + "$id": "7168", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "Tools (functions) available to the model.", "type": { - "$ref": "7001" + "$ref": "7014" }, "optional": true, "readOnly": false, @@ -92481,13 +92674,13 @@ "isHttpMetadata": false }, { - "$id": "7156", + "$id": "7169", "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": "7157", + "$id": "7170", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92507,13 +92700,13 @@ "isHttpMetadata": false }, { - "$id": "7158", + "$id": "7171", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Sampling temperature for the model, limited to [0.6, 1.2]. Defaults to 0.8.", "type": { - "$id": "7159", + "$id": "7172", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -92533,25 +92726,25 @@ "isHttpMetadata": false }, { - "$id": "7160", + "$id": "7173", "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": "7161", + "$id": "7174", "kind": "union", "name": "RealtimeResponseCreateParamsMaxOutputTokens", "variantTypes": [ { - "$id": "7162", + "$id": "7175", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", "decorators": [] }, { - "$ref": "1735" + "$ref": "1736" } ], "namespace": "OpenAI", @@ -92571,13 +92764,13 @@ "isHttpMetadata": false }, { - "$id": "7163", + "$id": "7176", "kind": "property", "name": "conversation", "serializedName": "conversation", "doc": "Controls which conversation the response is added to. Currently supports\n`auto` and `none`, with `auto` as the default value. The `auto` value\nmeans that the contents of the response will be added to the default\nconversation. Set this to `none` to create an out-of-band response which\nwill not add items to default conversation.", "type": { - "$ref": "1173" + "$ref": "1174" }, "optional": true, "readOnly": false, @@ -92593,13 +92786,13 @@ "isHttpMetadata": false }, { - "$id": "7164", + "$id": "7177", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": true, "readOnly": false, @@ -92615,17 +92808,17 @@ "isHttpMetadata": false }, { - "$id": "7165", + "$id": "7178", "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": "7166", + "$id": "7179", "kind": "array", "name": "ArrayRealtimeConversationRequestItem", "valueType": { - "$ref": "7051" + "$ref": "7064" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -92661,7 +92854,7 @@ ] }, "response.cancel": { - "$id": "7167", + "$id": "7180", "kind": "model", "name": "RealtimeClientEventResponseCancel", "namespace": "OpenAI", @@ -92671,25 +92864,25 @@ "discriminatorValue": "response.cancel", "decorators": [], "baseModel": { - "$ref": "6921" + "$ref": "6934" }, "properties": [ { - "$id": "7168", + "$id": "7181", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.cancel`.", "type": { - "$id": "7169", + "$id": "7182", "kind": "enumvalue", "name": "response_cancel", "value": "response.cancel", "valueType": { - "$ref": "1098" + "$ref": "1099" }, "enumType": { - "$ref": "6928" + "$ref": "6941" }, "decorators": [] }, @@ -92707,13 +92900,13 @@ "isHttpMetadata": false }, { - "$id": "7170", + "$id": "7183", "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": "7171", + "$id": "7184", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92735,7 +92928,7 @@ ] }, "conversation.item.retrieve": { - "$id": "7172", + "$id": "7185", "kind": "model", "name": "RealtimeClientEventConversationItemRetrieve", "namespace": "OpenAI", @@ -92745,25 +92938,25 @@ "discriminatorValue": "conversation.item.retrieve", "decorators": [], "baseModel": { - "$ref": "6921" + "$ref": "6934" }, "properties": [ { - "$id": "7173", + "$id": "7186", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.retrieve`.", "type": { - "$id": "7174", + "$id": "7187", "kind": "enumvalue", "name": "conversation_item_retrieve", "value": "conversation.item.retrieve", "valueType": { - "$ref": "1098" + "$ref": "1099" }, "enumType": { - "$ref": "6928" + "$ref": "6941" }, "decorators": [] }, @@ -92781,13 +92974,13 @@ "isHttpMetadata": false }, { - "$id": "7175", + "$id": "7188", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to retrieve.", "type": { - "$id": "7176", + "$id": "7189", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92809,7 +93002,7 @@ ] }, "transcription_session.update": { - "$id": "7177", + "$id": "7190", "kind": "model", "name": "RealtimeClientEventTranscriptionSessionUpdate", "namespace": "OpenAI", @@ -92819,25 +93012,25 @@ "discriminatorValue": "transcription_session.update", "decorators": [], "baseModel": { - "$ref": "6921" + "$ref": "6934" }, "properties": [ { - "$id": "7178", + "$id": "7191", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `transcription_session.update`.", "type": { - "$id": "7179", + "$id": "7192", "kind": "enumvalue", "name": "transcription_session_update", "value": "transcription_session.update", "valueType": { - "$ref": "1098" + "$ref": "1099" }, "enumType": { - "$ref": "6928" + "$ref": "6941" }, "decorators": [] }, @@ -92855,12 +93048,12 @@ "isHttpMetadata": false }, { - "$id": "7180", + "$id": "7193", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$id": "7181", + "$id": "7194", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequest", "namespace": "OpenAI", @@ -92870,17 +93063,17 @@ "decorators": [], "properties": [ { - "$id": "7182", + "$id": "7195", "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": "7183", + "$id": "7196", "kind": "array", "name": "Array43", "valueType": { - "$ref": "1177" + "$ref": "1178" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -92899,13 +93092,13 @@ "isHttpMetadata": false }, { - "$id": "7184", + "$id": "7197", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", "doc": "The format of input audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`.\nFor `pcm16`, input audio must be 16-bit PCM at a 24kHz sample rate,\nsingle channel (mono), and little-endian byte order.", "type": { - "$ref": "1181" + "$ref": "1182" }, "optional": true, "readOnly": false, @@ -92921,13 +93114,13 @@ "isHttpMetadata": false }, { - "$id": "7185", + "$id": "7198", "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": "7186", + "$id": "7199", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestInputAudioTranscription", "namespace": "OpenAI", @@ -92936,13 +93129,13 @@ "decorators": [], "properties": [ { - "$id": "7187", + "$id": "7200", "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": { - "$ref": "1186" + "$ref": "1187" }, "optional": true, "readOnly": false, @@ -92958,13 +93151,13 @@ "isHttpMetadata": false }, { - "$id": "7188", + "$id": "7201", "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": "7189", + "$id": "7202", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92984,13 +93177,13 @@ "isHttpMetadata": false }, { - "$id": "7190", + "$id": "7203", "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": "7191", + "$id": "7204", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93025,13 +93218,13 @@ "isHttpMetadata": false }, { - "$id": "7192", + "$id": "7205", "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": "7193", + "$id": "7206", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestTurnDetection", "namespace": "OpenAI", @@ -93040,13 +93233,13 @@ "decorators": [], "properties": [ { - "$id": "7194", + "$id": "7207", "kind": "property", "name": "type", "serializedName": "type", "doc": "Type of turn detection.", "type": { - "$ref": "1191" + "$ref": "1192" }, "optional": true, "readOnly": false, @@ -93062,13 +93255,13 @@ "isHttpMetadata": false }, { - "$id": "7195", + "$id": "7208", "kind": "property", "name": "eagerness", "serializedName": "eagerness", "doc": "Used only for `semantic_vad` mode. The eagerness of the model to respond. `low` will wait longer for the user to continue speaking, `high` will respond more quickly. `auto` is the default and is equivalent to `medium`.", "type": { - "$ref": "1195" + "$ref": "1196" }, "optional": true, "readOnly": false, @@ -93084,13 +93277,13 @@ "isHttpMetadata": false }, { - "$id": "7196", + "$id": "7209", "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": "7197", + "$id": "7210", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -93110,13 +93303,13 @@ "isHttpMetadata": false }, { - "$id": "7198", + "$id": "7211", "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": "7199", + "$id": "7212", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -93136,13 +93329,13 @@ "isHttpMetadata": false }, { - "$id": "7200", + "$id": "7213", "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": "7201", + "$id": "7214", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -93162,13 +93355,13 @@ "isHttpMetadata": false }, { - "$id": "7202", + "$id": "7215", "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": "7203", + "$id": "7216", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -93188,13 +93381,13 @@ "isHttpMetadata": false }, { - "$id": "7204", + "$id": "7217", "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": "7205", + "$id": "7218", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -93229,16 +93422,16 @@ "isHttpMetadata": false }, { - "$id": "7206", + "$id": "7219", "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": "7207", + "$id": "7220", "kind": "nullable", "type": { - "$id": "7208", + "$id": "7221", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestInputAudioNoiseReduction1", "namespace": "OpenAI", @@ -93247,13 +93440,13 @@ "decorators": [], "properties": [ { - "$id": "7209", + "$id": "7222", "kind": "property", "name": "type", "serializedName": "type", "doc": "Type of noise reduction. `near_field` is for close-talking microphones such as headphones, `far_field` is for far-field microphones such as laptop or conference room microphones.", "type": { - "$ref": "1201" + "$ref": "1202" }, "optional": true, "readOnly": false, @@ -93286,13 +93479,13 @@ "isHttpMetadata": false }, { - "$id": "7210", + "$id": "7223", "kind": "property", "name": "include", "serializedName": "include", "doc": "The set of items to include in the transcription. Current available items are:\n- `item.input_audio_transcription.logprobs`", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": true, "readOnly": false, @@ -93308,13 +93501,13 @@ "isHttpMetadata": false }, { - "$id": "7211", + "$id": "7224", "kind": "property", "name": "client_secret", "serializedName": "client_secret", "doc": "Configuration options for the generated client secret.", "type": { - "$id": "7212", + "$id": "7225", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestClientSecret", "namespace": "OpenAI", @@ -93323,13 +93516,13 @@ "decorators": [], "properties": [ { - "$id": "7213", + "$id": "7226", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "Configuration for the ephemeral token expiration.", "type": { - "$id": "7214", + "$id": "7227", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestClientSecretExpiresAt", "namespace": "OpenAI", @@ -93338,13 +93531,13 @@ "decorators": [], "properties": [ { - "$id": "7215", + "$id": "7228", "kind": "property", "name": "anchor", "serializedName": "anchor", "doc": "The anchor point for the ephemeral token expiration. Only `created_at` is currently supported.", "type": { - "$ref": "1205" + "$ref": "1206" }, "optional": true, "readOnly": false, @@ -93360,13 +93553,13 @@ "isHttpMetadata": false }, { - "$id": "7216", + "$id": "7229", "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": "7217", + "$id": "7230", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -93435,139 +93628,139 @@ } }, { - "$ref": "6925" + "$ref": "6938" }, { - "$ref": "6943" + "$ref": "6956" }, { - "$ref": "6954" + "$ref": "6967" }, { - "$ref": "6962" + "$ref": "6975" }, { - "$ref": "6968" + "$ref": "6981" }, { - "$ref": "6983" + "$ref": "6996" }, { - "$ref": "6988" + "$ref": "7001" }, { - "$ref": "6990" + "$ref": "7003" }, { - "$ref": "6997" + "$ref": "7010" }, { - "$ref": "7002" + "$ref": "7015" }, { - "$ref": "7004" + "$ref": "7017" }, { - "$ref": "7018" + "$ref": "7031" }, { - "$ref": "7020" + "$ref": "7033" }, { - "$ref": "7023" + "$ref": "7036" }, { - "$ref": "7031" + "$ref": "7044" }, { - "$ref": "7036" + "$ref": "7049" }, { - "$ref": "7039" + "$ref": "7052" }, { - "$ref": "7042" + "$ref": "7055" }, { - "$ref": "7045" + "$ref": "7058" }, { - "$ref": "7051" + "$ref": "7064" }, { - "$ref": "7055" + "$ref": "7068" }, { - "$ref": "7065" + "$ref": "7078" }, { - "$ref": "7075" + "$ref": "7088" }, { - "$ref": "7076" + "$ref": "7089" }, { - "$ref": "7078" + "$ref": "7091" }, { - "$ref": "7089" + "$ref": "7102" }, { - "$ref": "7094" + "$ref": "7107" }, { - "$ref": "7104" + "$ref": "7117" }, { - "$ref": "7110" + "$ref": "7123" }, { - "$ref": "7114" + "$ref": "7127" }, { - "$ref": "7124" + "$ref": "7137" }, { - "$ref": "7131" + "$ref": "7144" }, { - "$ref": "7140" + "$ref": "7153" }, { - "$ref": "7145" + "$ref": "7158" }, { - "$ref": "7149" + "$ref": "7162" }, { - "$ref": "7167" + "$ref": "7180" }, { - "$ref": "7172" + "$ref": "7185" }, { - "$ref": "7177" + "$ref": "7190" }, { - "$ref": "7181" + "$ref": "7194" }, { - "$ref": "7186" + "$ref": "7199" }, { - "$ref": "7193" + "$ref": "7206" }, { - "$ref": "7208" + "$ref": "7221" }, { - "$ref": "7212" + "$ref": "7225" }, { - "$ref": "7214" + "$ref": "7227" }, { - "$id": "7218", + "$id": "7231", "kind": "model", "name": "RealtimeServerEvent", "namespace": "OpenAI", @@ -93576,13 +93769,13 @@ "doc": "A realtime server event.", "decorators": [], "discriminatorProperty": { - "$id": "7219", + "$id": "7232", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of event.", "type": { - "$ref": "1209" + "$ref": "1210" }, "optional": false, "readOnly": false, @@ -93599,15 +93792,15 @@ }, "properties": [ { - "$ref": "7219" + "$ref": "7232" }, { - "$id": "7220", + "$id": "7233", "kind": "property", "name": "event_id", "serializedName": "event_id", "type": { - "$id": "7221", + "$id": "7234", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93629,7 +93822,7 @@ ], "discriminatedSubtypes": { "error": { - "$id": "7222", + "$id": "7235", "kind": "model", "name": "RealtimeServerEventError", "namespace": "OpenAI", @@ -93639,32 +93832,32 @@ "discriminatorValue": "error", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7223", + "$id": "7236", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `error`.", "type": { - "$id": "7224", + "$id": "7237", "kind": "enumvalue", "name": "error", "value": "error", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$id": "7225", + "$id": "7238", "kind": "enum", "decorators": [], "name": "RealtimeServerEventType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "7226", + "$id": "7239", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -93673,445 +93866,445 @@ }, "values": [ { - "$id": "7227", + "$id": "7240", "kind": "enumvalue", "decorators": [], "name": "error", "value": "error", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7228", + "$id": "7241", "kind": "enumvalue", "decorators": [], "name": "session_created", "value": "session.created", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7229", + "$id": "7242", "kind": "enumvalue", "decorators": [], "name": "session_updated", "value": "session.updated", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7230", + "$id": "7243", "kind": "enumvalue", "decorators": [], "name": "conversation_created", "value": "conversation.created", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7231", + "$id": "7244", "kind": "enumvalue", "decorators": [], "name": "conversation_item_input_audio_transcription_completed", "value": "conversation.item.input_audio_transcription.completed", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7232", + "$id": "7245", "kind": "enumvalue", "decorators": [], "name": "conversation_item_input_audio_transcription_delta", "value": "conversation.item.input_audio_transcription.delta", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7233", + "$id": "7246", "kind": "enumvalue", "decorators": [], "name": "conversation_item_input_audio_transcription_failed", "value": "conversation.item.input_audio_transcription.failed", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7234", + "$id": "7247", "kind": "enumvalue", "decorators": [], "name": "conversation_item_created", "value": "conversation.item.created", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7235", + "$id": "7248", "kind": "enumvalue", "decorators": [], "name": "conversation_item_retrieved", "value": "conversation.item.retrieved", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7236", + "$id": "7249", "kind": "enumvalue", "decorators": [], "name": "conversation_item_truncated", "value": "conversation.item.truncated", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7237", + "$id": "7250", "kind": "enumvalue", "decorators": [], "name": "conversation_item_deleted", "value": "conversation.item.deleted", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7238", + "$id": "7251", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_committed", "value": "input_audio_buffer.committed", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7239", + "$id": "7252", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_cleared", "value": "input_audio_buffer.cleared", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7240", + "$id": "7253", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_speech_started", "value": "input_audio_buffer.speech_started", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7241", + "$id": "7254", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_speech_stopped", "value": "input_audio_buffer.speech_stopped", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7242", + "$id": "7255", "kind": "enumvalue", "decorators": [], "name": "output_audio_buffer_cleared", "value": "output_audio_buffer.cleared", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7243", + "$id": "7256", "kind": "enumvalue", "decorators": [], "name": "output_audio_buffer_started", "value": "output_audio_buffer.started", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7244", + "$id": "7257", "kind": "enumvalue", "decorators": [], "name": "output_audio_buffer_stopped", "value": "output_audio_buffer.stopped", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7245", + "$id": "7258", "kind": "enumvalue", "decorators": [], "name": "response_created", "value": "response.created", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7246", + "$id": "7259", "kind": "enumvalue", "decorators": [], "name": "response_done", "value": "response.done", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7247", + "$id": "7260", "kind": "enumvalue", "decorators": [], "name": "response_output_item_added", "value": "response.output_item.added", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7248", + "$id": "7261", "kind": "enumvalue", "decorators": [], "name": "response_output_item_done", "value": "response.output_item.done", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7249", + "$id": "7262", "kind": "enumvalue", "decorators": [], "name": "response_content_part_added", "value": "response.content_part.added", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7250", + "$id": "7263", "kind": "enumvalue", "decorators": [], "name": "response_content_part_done", "value": "response.content_part.done", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7251", + "$id": "7264", "kind": "enumvalue", "decorators": [], "name": "response_text_delta", "value": "response.text.delta", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7252", + "$id": "7265", "kind": "enumvalue", "decorators": [], "name": "response_text_done", "value": "response.text.done", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7253", + "$id": "7266", "kind": "enumvalue", "decorators": [], "name": "response_audio_transcript_delta", "value": "response.audio_transcript.delta", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7254", + "$id": "7267", "kind": "enumvalue", "decorators": [], "name": "response_audio_transcript_done", "value": "response.audio_transcript.done", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7255", + "$id": "7268", "kind": "enumvalue", "decorators": [], "name": "response_audio_delta", "value": "response.audio.delta", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7256", + "$id": "7269", "kind": "enumvalue", "decorators": [], "name": "response_audio_done", "value": "response.audio.done", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7257", + "$id": "7270", "kind": "enumvalue", "decorators": [], "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7258", + "$id": "7271", "kind": "enumvalue", "decorators": [], "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7259", + "$id": "7272", "kind": "enumvalue", "decorators": [], "name": "transcription_session_updated", "value": "transcription_session.updated", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } }, { - "$id": "7260", + "$id": "7273", "kind": "enumvalue", "decorators": [], "name": "rate_limits_updated", "value": "rate_limits.updated", "valueType": { - "$ref": "7226" + "$ref": "7239" }, "enumType": { - "$ref": "7225" + "$ref": "7238" } } ], @@ -94140,13 +94333,13 @@ "isHttpMetadata": false }, { - "$id": "7261", + "$id": "7274", "kind": "property", "name": "error", "serializedName": "error", "doc": "Details of the error.", "type": { - "$id": "7262", + "$id": "7275", "kind": "model", "name": "RealtimeServerEventErrorError", "namespace": "OpenAI", @@ -94155,13 +94348,13 @@ "decorators": [], "properties": [ { - "$id": "7263", + "$id": "7276", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of error (e.g., \"invalid_request_error\", \"server_error\").", "type": { - "$id": "7264", + "$id": "7277", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94181,16 +94374,16 @@ "isHttpMetadata": false }, { - "$id": "7265", + "$id": "7278", "kind": "property", "name": "code", "serializedName": "code", "doc": "Error code, if any.", "type": { - "$id": "7266", + "$id": "7279", "kind": "nullable", "type": { - "$id": "7267", + "$id": "7280", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94212,13 +94405,13 @@ "isHttpMetadata": false }, { - "$id": "7268", + "$id": "7281", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable error message.", "type": { - "$id": "7269", + "$id": "7282", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94238,16 +94431,16 @@ "isHttpMetadata": false }, { - "$id": "7270", + "$id": "7283", "kind": "property", "name": "param", "serializedName": "param", "doc": "Parameter related to the error, if any.", "type": { - "$id": "7271", + "$id": "7284", "kind": "nullable", "type": { - "$id": "7272", + "$id": "7285", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94269,16 +94462,16 @@ "isHttpMetadata": false }, { - "$id": "7273", + "$id": "7286", "kind": "property", "name": "event_id", "serializedName": "event_id", "doc": "The event_id of the client event that caused the error, if applicable.", "type": { - "$id": "7274", + "$id": "7287", "kind": "nullable", "type": { - "$id": "7275", + "$id": "7288", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94317,7 +94510,7 @@ ] }, "session.created": { - "$id": "7276", + "$id": "7289", "kind": "model", "name": "RealtimeServerEventSessionCreated", "namespace": "OpenAI", @@ -94327,25 +94520,25 @@ "discriminatorValue": "session.created", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7277", + "$id": "7290", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `session.created`.", "type": { - "$id": "7278", + "$id": "7291", "kind": "enumvalue", "name": "session_created", "value": "session.created", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -94363,12 +94556,12 @@ "isHttpMetadata": false }, { - "$id": "7279", + "$id": "7292", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$id": "7280", + "$id": "7293", "kind": "model", "name": "RealtimeResponseSession", "namespace": "OpenAI", @@ -94377,12 +94570,12 @@ "decorators": [], "properties": [ { - "$id": "7281", + "$id": "7294", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1737" + "$ref": "1738" }, "optional": false, "readOnly": false, @@ -94398,12 +94591,12 @@ "isHttpMetadata": false }, { - "$id": "7282", + "$id": "7295", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "7283", + "$id": "7296", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94423,12 +94616,12 @@ "isHttpMetadata": false }, { - "$id": "7284", + "$id": "7297", "kind": "property", "name": "model", "serializedName": "model", "type": { - "$id": "7285", + "$id": "7298", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94448,12 +94641,12 @@ "isHttpMetadata": false }, { - "$id": "7286", + "$id": "7299", "kind": "property", "name": "modalities", "serializedName": "modalities", "type": { - "$ref": "6945" + "$ref": "6958" }, "optional": false, "readOnly": false, @@ -94469,12 +94662,12 @@ "isHttpMetadata": false }, { - "$id": "7287", + "$id": "7300", "kind": "property", "name": "instructions", "serializedName": "instructions", "type": { - "$id": "7288", + "$id": "7301", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94494,7 +94687,7 @@ "isHttpMetadata": false }, { - "$id": "7289", + "$id": "7302", "kind": "property", "name": "voice", "serializedName": "voice", @@ -94515,12 +94708,12 @@ "isHttpMetadata": false }, { - "$id": "7290", + "$id": "7303", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", "type": { - "$ref": "1122" + "$ref": "1123" }, "optional": false, "readOnly": false, @@ -94536,12 +94729,12 @@ "isHttpMetadata": false }, { - "$id": "7291", + "$id": "7304", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", "type": { - "$ref": "1122" + "$ref": "1123" }, "optional": false, "readOnly": false, @@ -94557,15 +94750,15 @@ "isHttpMetadata": false }, { - "$id": "7292", + "$id": "7305", "kind": "property", "name": "input_audio_transcription", "serializedName": "input_audio_transcription", "type": { - "$id": "7293", + "$id": "7306", "kind": "nullable", "type": { - "$ref": "6954" + "$ref": "6967" }, "namespace": "OpenAI" }, @@ -94583,12 +94776,12 @@ "isHttpMetadata": false }, { - "$id": "7294", + "$id": "7307", "kind": "property", "name": "turn_detection", "serializedName": "turn_detection", "type": { - "$ref": "6962" + "$ref": "6975" }, "optional": false, "readOnly": false, @@ -94604,12 +94797,12 @@ "isHttpMetadata": false }, { - "$id": "7295", + "$id": "7308", "kind": "property", "name": "input_audio_noise_reduction", "serializedName": "input_audio_noise_reduction", "type": { - "$ref": "6988" + "$ref": "7001" }, "optional": false, "readOnly": false, @@ -94625,12 +94818,12 @@ "isHttpMetadata": false }, { - "$id": "7296", + "$id": "7309", "kind": "property", "name": "tools", "serializedName": "tools", "type": { - "$ref": "7001" + "$ref": "7014" }, "optional": false, "readOnly": false, @@ -94646,12 +94839,12 @@ "isHttpMetadata": false }, { - "$id": "7297", + "$id": "7310", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$ref": "7017" + "$ref": "7030" }, "optional": false, "readOnly": false, @@ -94667,12 +94860,12 @@ "isHttpMetadata": false }, { - "$id": "7298", + "$id": "7311", "kind": "property", "name": "temperature", "serializedName": "temperature", "type": { - "$id": "7299", + "$id": "7312", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -94692,27 +94885,27 @@ "isHttpMetadata": false }, { - "$id": "7300", + "$id": "7313", "kind": "property", "name": "max_response_output_tokens", "serializedName": "max_response_output_tokens", "type": { - "$id": "7301", + "$id": "7314", "kind": "nullable", "type": { - "$id": "7302", + "$id": "7315", "kind": "union", "name": "RealtimeResponseSessionMaxResponseOutputTokens", "variantTypes": [ { - "$id": "7303", + "$id": "7316", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", "decorators": [] }, { - "$ref": "1739" + "$ref": "1740" } ], "namespace": "OpenAI", @@ -94751,7 +94944,7 @@ ] }, "session.updated": { - "$id": "7304", + "$id": "7317", "kind": "model", "name": "RealtimeServerEventSessionUpdated", "namespace": "OpenAI", @@ -94761,25 +94954,25 @@ "discriminatorValue": "session.updated", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7305", + "$id": "7318", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `session.updated`.", "type": { - "$id": "7306", + "$id": "7319", "kind": "enumvalue", "name": "session_updated", "value": "session.updated", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -94797,12 +94990,12 @@ "isHttpMetadata": false }, { - "$id": "7307", + "$id": "7320", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$ref": "7280" + "$ref": "7293" }, "optional": false, "readOnly": false, @@ -94820,7 +95013,7 @@ ] }, "conversation.created": { - "$id": "7308", + "$id": "7321", "kind": "model", "name": "RealtimeServerEventConversationCreated", "namespace": "OpenAI", @@ -94830,25 +95023,25 @@ "discriminatorValue": "conversation.created", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7309", + "$id": "7322", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.created`.", "type": { - "$id": "7310", + "$id": "7323", "kind": "enumvalue", "name": "conversation_created", "value": "conversation.created", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -94866,13 +95059,13 @@ "isHttpMetadata": false }, { - "$id": "7311", + "$id": "7324", "kind": "property", "name": "conversation", "serializedName": "conversation", "doc": "The conversation resource.", "type": { - "$id": "7312", + "$id": "7325", "kind": "model", "name": "RealtimeServerEventConversationCreatedConversation", "namespace": "OpenAI", @@ -94881,13 +95074,13 @@ "decorators": [], "properties": [ { - "$id": "7313", + "$id": "7326", "kind": "property", "name": "id", "serializedName": "id", "doc": "The unique ID of the conversation.", "type": { - "$id": "7314", + "$id": "7327", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94907,13 +95100,13 @@ "isHttpMetadata": false }, { - "$id": "7315", + "$id": "7328", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, must be `realtime.conversation`.", "type": { - "$id": "7316", + "$id": "7329", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94950,7 +95143,7 @@ ] }, "input_audio_buffer.committed": { - "$id": "7317", + "$id": "7330", "kind": "model", "name": "RealtimeServerEventInputAudioBufferCommitted", "namespace": "OpenAI", @@ -94960,25 +95153,25 @@ "discriminatorValue": "input_audio_buffer.committed", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7318", + "$id": "7331", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.committed`.", "type": { - "$id": "7319", + "$id": "7332", "kind": "enumvalue", "name": "input_audio_buffer_committed", "value": "input_audio_buffer.committed", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -94996,13 +95189,13 @@ "isHttpMetadata": false }, { - "$id": "7320", + "$id": "7333", "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": "7321", + "$id": "7334", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95022,13 +95215,13 @@ "isHttpMetadata": false }, { - "$id": "7322", + "$id": "7335", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item that will be created.", "type": { - "$id": "7323", + "$id": "7336", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95050,7 +95243,7 @@ ] }, "input_audio_buffer.cleared": { - "$id": "7324", + "$id": "7337", "kind": "model", "name": "RealtimeServerEventInputAudioBufferCleared", "namespace": "OpenAI", @@ -95060,25 +95253,25 @@ "discriminatorValue": "input_audio_buffer.cleared", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7325", + "$id": "7338", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.cleared`.", "type": { - "$id": "7326", + "$id": "7339", "kind": "enumvalue", "name": "input_audio_buffer_cleared", "value": "input_audio_buffer.cleared", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -95098,7 +95291,7 @@ ] }, "input_audio_buffer.speech_started": { - "$id": "7327", + "$id": "7340", "kind": "model", "name": "RealtimeServerEventInputAudioBufferSpeechStarted", "namespace": "OpenAI", @@ -95108,25 +95301,25 @@ "discriminatorValue": "input_audio_buffer.speech_started", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7328", + "$id": "7341", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.speech_started`.", "type": { - "$id": "7329", + "$id": "7342", "kind": "enumvalue", "name": "input_audio_buffer_speech_started", "value": "input_audio_buffer.speech_started", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -95144,13 +95337,13 @@ "isHttpMetadata": false }, { - "$id": "7330", + "$id": "7343", "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": "7331", + "$id": "7344", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -95170,13 +95363,13 @@ "isHttpMetadata": false }, { - "$id": "7332", + "$id": "7345", "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": "7333", + "$id": "7346", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95198,7 +95391,7 @@ ] }, "input_audio_buffer.speech_stopped": { - "$id": "7334", + "$id": "7347", "kind": "model", "name": "RealtimeServerEventInputAudioBufferSpeechStopped", "namespace": "OpenAI", @@ -95208,25 +95401,25 @@ "discriminatorValue": "input_audio_buffer.speech_stopped", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7335", + "$id": "7348", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.speech_stopped`.", "type": { - "$id": "7336", + "$id": "7349", "kind": "enumvalue", "name": "input_audio_buffer_speech_stopped", "value": "input_audio_buffer.speech_stopped", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -95244,13 +95437,13 @@ "isHttpMetadata": false }, { - "$id": "7337", + "$id": "7350", "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": "7338", + "$id": "7351", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -95270,13 +95463,13 @@ "isHttpMetadata": false }, { - "$id": "7339", + "$id": "7352", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item that will be created.", "type": { - "$id": "7340", + "$id": "7353", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95298,7 +95491,7 @@ ] }, "output_audio_buffer.cleared": { - "$id": "7341", + "$id": "7354", "kind": "model", "name": "RealtimeServerEventOutputAudioBufferCleared", "namespace": "OpenAI", @@ -95308,25 +95501,25 @@ "discriminatorValue": "output_audio_buffer.cleared", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7342", + "$id": "7355", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.cleared`.", "type": { - "$id": "7343", + "$id": "7356", "kind": "enumvalue", "name": "output_audio_buffer_cleared", "value": "output_audio_buffer.cleared", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -95344,13 +95537,13 @@ "isHttpMetadata": false }, { - "$id": "7344", + "$id": "7357", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The unique ID of the response that produced the audio.", "type": { - "$id": "7345", + "$id": "7358", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95372,7 +95565,7 @@ ] }, "output_audio_buffer.started": { - "$id": "7346", + "$id": "7359", "kind": "model", "name": "RealtimeServerEventOutputAudioBufferStarted", "namespace": "OpenAI", @@ -95382,25 +95575,25 @@ "discriminatorValue": "output_audio_buffer.started", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7347", + "$id": "7360", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.started`.", "type": { - "$id": "7348", + "$id": "7361", "kind": "enumvalue", "name": "output_audio_buffer_started", "value": "output_audio_buffer.started", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -95418,13 +95611,13 @@ "isHttpMetadata": false }, { - "$id": "7349", + "$id": "7362", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The unique ID of the response that produced the audio.", "type": { - "$id": "7350", + "$id": "7363", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95446,7 +95639,7 @@ ] }, "output_audio_buffer.stopped": { - "$id": "7351", + "$id": "7364", "kind": "model", "name": "RealtimeServerEventOutputAudioBufferStopped", "namespace": "OpenAI", @@ -95456,25 +95649,25 @@ "discriminatorValue": "output_audio_buffer.stopped", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7352", + "$id": "7365", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.stopped`.", "type": { - "$id": "7353", + "$id": "7366", "kind": "enumvalue", "name": "output_audio_buffer_stopped", "value": "output_audio_buffer.stopped", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -95492,13 +95685,13 @@ "isHttpMetadata": false }, { - "$id": "7354", + "$id": "7367", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The unique ID of the response that produced the audio.", "type": { - "$id": "7355", + "$id": "7368", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95520,7 +95713,7 @@ ] }, "conversation.item.created": { - "$id": "7356", + "$id": "7369", "kind": "model", "name": "RealtimeServerEventConversationItemCreated", "namespace": "OpenAI", @@ -95530,25 +95723,25 @@ "discriminatorValue": "conversation.item.created", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7357", + "$id": "7370", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.created`.", "type": { - "$id": "7358", + "$id": "7371", "kind": "enumvalue", "name": "conversation_item_created", "value": "conversation.item.created", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -95566,13 +95759,13 @@ "isHttpMetadata": false }, { - "$id": "7359", + "$id": "7372", "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": "7360", + "$id": "7373", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95592,12 +95785,12 @@ "isHttpMetadata": false }, { - "$id": "7361", + "$id": "7374", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$id": "7362", + "$id": "7375", "kind": "model", "name": "RealtimeConversationResponseItem", "namespace": "OpenAI", @@ -95605,12 +95798,12 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "7363", + "$id": "7376", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1152" + "$ref": "1153" }, "optional": false, "readOnly": false, @@ -95627,12 +95820,12 @@ }, "properties": [ { - "$id": "7364", + "$id": "7377", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1741" + "$ref": "1742" }, "optional": false, "readOnly": false, @@ -95648,18 +95841,18 @@ "isHttpMetadata": false }, { - "$ref": "7363" + "$ref": "7376" }, { - "$id": "7365", + "$id": "7378", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "7366", + "$id": "7379", "kind": "nullable", "type": { - "$id": "7367", + "$id": "7380", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95683,7 +95876,7 @@ ], "discriminatedSubtypes": { "message": { - "$id": "7368", + "$id": "7381", "kind": "model", "name": "RealtimeResponseMessageItem", "namespace": "OpenAI", @@ -95692,16 +95885,16 @@ "discriminatorValue": "message", "decorators": [], "baseModel": { - "$ref": "7362" + "$ref": "7375" }, "properties": [ { - "$id": "7369", + "$id": "7382", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "7058" + "$ref": "7071" }, "optional": false, "readOnly": false, @@ -95717,12 +95910,12 @@ "isHttpMetadata": false }, { - "$id": "7370", + "$id": "7383", "kind": "property", "name": "role", "serializedName": "role", "type": { - "$ref": "1157" + "$ref": "1158" }, "optional": false, "readOnly": false, @@ -95738,16 +95931,16 @@ "isHttpMetadata": false }, { - "$id": "7371", + "$id": "7384", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "7372", + "$id": "7385", "kind": "array", "name": "ArrayRealtimeContentPart", "valueType": { - "$ref": "7076" + "$ref": "7089" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -95766,12 +95959,12 @@ "isHttpMetadata": false }, { - "$id": "7373", + "$id": "7386", "kind": "property", "name": "status", "serializedName": "status", "type": { - "$ref": "1162" + "$ref": "1163" }, "optional": false, "readOnly": false, @@ -95789,7 +95982,7 @@ ] }, "function_call": { - "$id": "7374", + "$id": "7387", "kind": "model", "name": "RealtimeResponseFunctionCallItem", "namespace": "OpenAI", @@ -95798,16 +95991,16 @@ "discriminatorValue": "function_call", "decorators": [], "baseModel": { - "$ref": "7362" + "$ref": "7375" }, "properties": [ { - "$id": "7375", + "$id": "7388", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "7116" + "$ref": "7129" }, "optional": false, "readOnly": false, @@ -95823,12 +96016,12 @@ "isHttpMetadata": false }, { - "$id": "7376", + "$id": "7389", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "7377", + "$id": "7390", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95848,12 +96041,12 @@ "isHttpMetadata": false }, { - "$id": "7378", + "$id": "7391", "kind": "property", "name": "call_id", "serializedName": "call_id", "type": { - "$id": "7379", + "$id": "7392", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95873,12 +96066,12 @@ "isHttpMetadata": false }, { - "$id": "7380", + "$id": "7393", "kind": "property", "name": "arguments", "serializedName": "arguments", "type": { - "$id": "7381", + "$id": "7394", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95898,12 +96091,12 @@ "isHttpMetadata": false }, { - "$id": "7382", + "$id": "7395", "kind": "property", "name": "status", "serializedName": "status", "type": { - "$ref": "1162" + "$ref": "1163" }, "optional": false, "readOnly": false, @@ -95921,7 +96114,7 @@ ] }, "function_call_output": { - "$id": "7383", + "$id": "7396", "kind": "model", "name": "RealtimeResponseFunctionCallOutputItem", "namespace": "OpenAI", @@ -95930,16 +96123,16 @@ "discriminatorValue": "function_call_output", "decorators": [], "baseModel": { - "$ref": "7362" + "$ref": "7375" }, "properties": [ { - "$id": "7384", + "$id": "7397", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "7126" + "$ref": "7139" }, "optional": false, "readOnly": false, @@ -95955,12 +96148,12 @@ "isHttpMetadata": false }, { - "$id": "7385", + "$id": "7398", "kind": "property", "name": "call_id", "serializedName": "call_id", "type": { - "$id": "7386", + "$id": "7399", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95980,12 +96173,12 @@ "isHttpMetadata": false }, { - "$id": "7387", + "$id": "7400", "kind": "property", "name": "output", "serializedName": "output", "type": { - "$id": "7388", + "$id": "7401", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96024,7 +96217,7 @@ ] }, "conversation.item.input_audio_transcription.completed": { - "$id": "7389", + "$id": "7402", "kind": "model", "name": "RealtimeServerEventConversationItemInputAudioTranscriptionCompleted", "namespace": "OpenAI", @@ -96034,25 +96227,25 @@ "discriminatorValue": "conversation.item.input_audio_transcription.completed", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7390", + "$id": "7403", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be\n`conversation.item.input_audio_transcription.completed`.", "type": { - "$id": "7391", + "$id": "7404", "kind": "enumvalue", "name": "conversation_item_input_audio_transcription_completed", "value": "conversation.item.input_audio_transcription.completed", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -96070,13 +96263,13 @@ "isHttpMetadata": false }, { - "$id": "7392", + "$id": "7405", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item containing the audio.", "type": { - "$id": "7393", + "$id": "7406", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96096,13 +96289,13 @@ "isHttpMetadata": false }, { - "$id": "7394", + "$id": "7407", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part containing the audio.", "type": { - "$id": "7395", + "$id": "7408", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96122,13 +96315,13 @@ "isHttpMetadata": false }, { - "$id": "7396", + "$id": "7409", "kind": "property", "name": "transcript", "serializedName": "transcript", "doc": "The transcribed text.", "type": { - "$id": "7397", + "$id": "7410", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96148,20 +96341,20 @@ "isHttpMetadata": false }, { - "$id": "7398", + "$id": "7411", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "doc": "The log probabilities of the transcription.", "type": { - "$id": "7399", + "$id": "7412", "kind": "nullable", "type": { - "$id": "7400", + "$id": "7413", "kind": "array", "name": "ArrayLogProbProperties", "valueType": { - "$id": "7401", + "$id": "7414", "kind": "model", "name": "LogProbProperties", "namespace": "OpenAI", @@ -96171,13 +96364,13 @@ "decorators": [], "properties": [ { - "$id": "7402", + "$id": "7415", "kind": "property", "name": "token", "serializedName": "token", "doc": "The token that was used to generate the log probability.", "type": { - "$id": "7403", + "$id": "7416", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96197,13 +96390,13 @@ "isHttpMetadata": false }, { - "$id": "7404", + "$id": "7417", "kind": "property", "name": "logprob", "serializedName": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "7405", + "$id": "7418", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -96223,13 +96416,13 @@ "isHttpMetadata": false }, { - "$id": "7406", + "$id": "7419", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "The bytes that were used to generate the log probability.", "type": { - "$ref": "2670" + "$ref": "2671" }, "optional": false, "readOnly": false, @@ -96267,7 +96460,7 @@ ] }, "conversation.item.input_audio_transcription.failed": { - "$id": "7407", + "$id": "7420", "kind": "model", "name": "RealtimeServerEventConversationItemInputAudioTranscriptionFailed", "namespace": "OpenAI", @@ -96277,25 +96470,25 @@ "discriminatorValue": "conversation.item.input_audio_transcription.failed", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7408", + "$id": "7421", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be\n`conversation.item.input_audio_transcription.failed`.", "type": { - "$id": "7409", + "$id": "7422", "kind": "enumvalue", "name": "conversation_item_input_audio_transcription_failed", "value": "conversation.item.input_audio_transcription.failed", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -96313,13 +96506,13 @@ "isHttpMetadata": false }, { - "$id": "7410", + "$id": "7423", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item.", "type": { - "$id": "7411", + "$id": "7424", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96339,13 +96532,13 @@ "isHttpMetadata": false }, { - "$id": "7412", + "$id": "7425", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part containing the audio.", "type": { - "$id": "7413", + "$id": "7426", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96365,13 +96558,13 @@ "isHttpMetadata": false }, { - "$id": "7414", + "$id": "7427", "kind": "property", "name": "error", "serializedName": "error", "doc": "Details of the transcription error.", "type": { - "$id": "7415", + "$id": "7428", "kind": "model", "name": "RealtimeServerEventConversationItemInputAudioTranscriptionFailedError", "namespace": "OpenAI", @@ -96380,13 +96573,13 @@ "decorators": [], "properties": [ { - "$id": "7416", + "$id": "7429", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of error.", "type": { - "$id": "7417", + "$id": "7430", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96406,13 +96599,13 @@ "isHttpMetadata": false }, { - "$id": "7418", + "$id": "7431", "kind": "property", "name": "code", "serializedName": "code", "doc": "Error code, if any.", "type": { - "$id": "7419", + "$id": "7432", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96432,13 +96625,13 @@ "isHttpMetadata": false }, { - "$id": "7420", + "$id": "7433", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable error message.", "type": { - "$id": "7421", + "$id": "7434", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96458,13 +96651,13 @@ "isHttpMetadata": false }, { - "$id": "7422", + "$id": "7435", "kind": "property", "name": "param", "serializedName": "param", "doc": "Parameter related to the error, if any.", "type": { - "$id": "7423", + "$id": "7436", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96501,7 +96694,7 @@ ] }, "conversation.item.truncated": { - "$id": "7424", + "$id": "7437", "kind": "model", "name": "RealtimeServerEventConversationItemTruncated", "namespace": "OpenAI", @@ -96511,25 +96704,25 @@ "discriminatorValue": "conversation.item.truncated", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7425", + "$id": "7438", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.truncated`.", "type": { - "$id": "7426", + "$id": "7439", "kind": "enumvalue", "name": "conversation_item_truncated", "value": "conversation.item.truncated", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -96547,13 +96740,13 @@ "isHttpMetadata": false }, { - "$id": "7427", + "$id": "7440", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the assistant message item that was truncated.", "type": { - "$id": "7428", + "$id": "7441", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96573,13 +96766,13 @@ "isHttpMetadata": false }, { - "$id": "7429", + "$id": "7442", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part that was truncated.", "type": { - "$id": "7430", + "$id": "7443", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96599,13 +96792,13 @@ "isHttpMetadata": false }, { - "$id": "7431", + "$id": "7444", "kind": "property", "name": "audio_end_ms", "serializedName": "audio_end_ms", "doc": "The duration up to which the audio was truncated, in milliseconds.", "type": { - "$id": "7432", + "$id": "7445", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96627,7 +96820,7 @@ ] }, "conversation.item.deleted": { - "$id": "7433", + "$id": "7446", "kind": "model", "name": "RealtimeServerEventConversationItemDeleted", "namespace": "OpenAI", @@ -96637,25 +96830,25 @@ "discriminatorValue": "conversation.item.deleted", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7434", + "$id": "7447", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.deleted`.", "type": { - "$id": "7435", + "$id": "7448", "kind": "enumvalue", "name": "conversation_item_deleted", "value": "conversation.item.deleted", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -96673,13 +96866,13 @@ "isHttpMetadata": false }, { - "$id": "7436", + "$id": "7449", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item that was deleted.", "type": { - "$id": "7437", + "$id": "7450", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96701,7 +96894,7 @@ ] }, "response.created": { - "$id": "7438", + "$id": "7451", "kind": "model", "name": "RealtimeServerEventResponseCreated", "namespace": "OpenAI", @@ -96711,25 +96904,25 @@ "discriminatorValue": "response.created", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7439", + "$id": "7452", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.created`.", "type": { - "$id": "7440", + "$id": "7453", "kind": "enumvalue", "name": "response_created", "value": "response.created", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -96747,12 +96940,12 @@ "isHttpMetadata": false }, { - "$id": "7441", + "$id": "7454", "kind": "property", "name": "response", "serializedName": "response", "type": { - "$id": "7442", + "$id": "7455", "kind": "model", "name": "RealtimeResponse", "namespace": "OpenAI", @@ -96762,13 +96955,13 @@ "decorators": [], "properties": [ { - "$id": "7443", + "$id": "7456", "kind": "property", "name": "id", "serializedName": "id", "doc": "The unique ID of the response.", "type": { - "$id": "7444", + "$id": "7457", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96788,13 +96981,13 @@ "isHttpMetadata": false }, { - "$id": "7445", + "$id": "7458", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, must be `realtime.response`.", "type": { - "$ref": "1245" + "$ref": "1246" }, "optional": true, "readOnly": false, @@ -96810,13 +97003,13 @@ "isHttpMetadata": false }, { - "$id": "7446", + "$id": "7459", "kind": "property", "name": "status", "serializedName": "status", "doc": "The final status of the response (`completed`, `cancelled`, `failed`, or\n`incomplete`).", "type": { - "$ref": "1249" + "$ref": "1250" }, "optional": true, "readOnly": false, @@ -96832,13 +97025,13 @@ "isHttpMetadata": false }, { - "$id": "7447", + "$id": "7460", "kind": "property", "name": "status_details", "serializedName": "status_details", "doc": "Additional details about the status.", "type": { - "$id": "7448", + "$id": "7461", "kind": "model", "name": "RealtimeResponseStatusDetails", "namespace": "OpenAI", @@ -96847,13 +97040,13 @@ "decorators": [], "properties": [ { - "$id": "7449", + "$id": "7462", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of error that caused the response to fail, corresponding\nwith the `status` field (`completed`, `cancelled`, `incomplete`,\n`failed`).", "type": { - "$ref": "1255" + "$ref": "1256" }, "optional": true, "readOnly": false, @@ -96869,13 +97062,13 @@ "isHttpMetadata": false }, { - "$id": "7450", + "$id": "7463", "kind": "property", "name": "reason", "serializedName": "reason", "doc": "The reason the Response did not complete. For a `cancelled` Response,\none of `turn_detected` (the server VAD detected a new start of speech)\nor `client_cancelled` (the client sent a cancel event). For an\n`incomplete` Response, one of `max_output_tokens` or `content_filter`\n(the server-side safety filter activated and cut off the response).", "type": { - "$ref": "1261" + "$ref": "1262" }, "optional": true, "readOnly": false, @@ -96891,13 +97084,13 @@ "isHttpMetadata": false }, { - "$id": "7451", + "$id": "7464", "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": "7452", + "$id": "7465", "kind": "model", "name": "RealtimeResponseStatusDetailsError", "namespace": "OpenAI", @@ -96906,13 +97099,13 @@ "decorators": [], "properties": [ { - "$id": "7453", + "$id": "7466", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of error.", "type": { - "$id": "7454", + "$id": "7467", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96932,13 +97125,13 @@ "isHttpMetadata": false }, { - "$id": "7455", + "$id": "7468", "kind": "property", "name": "code", "serializedName": "code", "doc": "Error code, if any.", "type": { - "$id": "7456", + "$id": "7469", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96988,17 +97181,17 @@ "isHttpMetadata": false }, { - "$id": "7457", + "$id": "7470", "kind": "property", "name": "output", "serializedName": "output", "doc": "The list of output items generated by the response.", "type": { - "$id": "7458", + "$id": "7471", "kind": "array", "name": "ArrayRealtimeConversationResponseItem", "valueType": { - "$ref": "7362" + "$ref": "7375" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -97017,13 +97210,13 @@ "isHttpMetadata": false }, { - "$id": "7459", + "$id": "7472", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2443" + "$ref": "2444" }, "optional": false, "readOnly": false, @@ -97039,13 +97232,13 @@ "isHttpMetadata": false }, { - "$id": "7460", + "$id": "7473", "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": "7461", + "$id": "7474", "kind": "model", "name": "RealtimeResponseUsage", "namespace": "OpenAI", @@ -97054,13 +97247,13 @@ "decorators": [], "properties": [ { - "$id": "7462", + "$id": "7475", "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": "7463", + "$id": "7476", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97080,13 +97273,13 @@ "isHttpMetadata": false }, { - "$id": "7464", + "$id": "7477", "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": "7465", + "$id": "7478", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97106,13 +97299,13 @@ "isHttpMetadata": false }, { - "$id": "7466", + "$id": "7479", "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": "7467", + "$id": "7480", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97132,13 +97325,13 @@ "isHttpMetadata": false }, { - "$id": "7468", + "$id": "7481", "kind": "property", "name": "input_token_details", "serializedName": "input_token_details", "doc": "Details about the input tokens used in the Response.", "type": { - "$id": "7469", + "$id": "7482", "kind": "model", "name": "RealtimeResponseUsageInputTokenDetails", "namespace": "OpenAI", @@ -97147,13 +97340,13 @@ "decorators": [], "properties": [ { - "$id": "7470", + "$id": "7483", "kind": "property", "name": "cached_tokens", "serializedName": "cached_tokens", "doc": "The number of cached tokens used in the Response.", "type": { - "$id": "7471", + "$id": "7484", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97173,13 +97366,13 @@ "isHttpMetadata": false }, { - "$id": "7472", + "$id": "7485", "kind": "property", "name": "text_tokens", "serializedName": "text_tokens", "doc": "The number of text tokens used in the Response.", "type": { - "$id": "7473", + "$id": "7486", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97199,13 +97392,13 @@ "isHttpMetadata": false }, { - "$id": "7474", + "$id": "7487", "kind": "property", "name": "audio_tokens", "serializedName": "audio_tokens", "doc": "The number of audio tokens used in the Response.", "type": { - "$id": "7475", + "$id": "7488", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97240,13 +97433,13 @@ "isHttpMetadata": false }, { - "$id": "7476", + "$id": "7489", "kind": "property", "name": "output_token_details", "serializedName": "output_token_details", "doc": "Details about the output tokens used in the Response.", "type": { - "$id": "7477", + "$id": "7490", "kind": "model", "name": "RealtimeResponseUsageOutputTokenDetails", "namespace": "OpenAI", @@ -97255,13 +97448,13 @@ "decorators": [], "properties": [ { - "$id": "7478", + "$id": "7491", "kind": "property", "name": "text_tokens", "serializedName": "text_tokens", "doc": "The number of text tokens used in the Response.", "type": { - "$id": "7479", + "$id": "7492", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97281,13 +97474,13 @@ "isHttpMetadata": false }, { - "$id": "7480", + "$id": "7493", "kind": "property", "name": "audio_tokens", "serializedName": "audio_tokens", "doc": "The number of audio tokens used in the Response.", "type": { - "$id": "7481", + "$id": "7494", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97337,13 +97530,13 @@ "isHttpMetadata": false }, { - "$id": "7482", + "$id": "7495", "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": "7483", + "$id": "7496", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97363,7 +97556,7 @@ "isHttpMetadata": false }, { - "$id": "7484", + "$id": "7497", "kind": "property", "name": "voice", "serializedName": "voice", @@ -97385,17 +97578,17 @@ "isHttpMetadata": false }, { - "$id": "7485", + "$id": "7498", "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": "7486", + "$id": "7499", "kind": "array", "name": "Array44", "valueType": { - "$ref": "1267" + "$ref": "1268" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -97414,13 +97607,13 @@ "isHttpMetadata": false }, { - "$id": "7487", + "$id": "7500", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", "doc": "The format of output audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`.", "type": { - "$ref": "1271" + "$ref": "1272" }, "optional": true, "readOnly": false, @@ -97436,13 +97629,13 @@ "isHttpMetadata": false }, { - "$id": "7488", + "$id": "7501", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Sampling temperature for the model, limited to [0.6, 1.2]. Defaults to 0.8.", "type": { - "$id": "7489", + "$id": "7502", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -97462,25 +97655,25 @@ "isHttpMetadata": false }, { - "$id": "7490", + "$id": "7503", "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": "7491", + "$id": "7504", "kind": "union", "name": "RealtimeResponseMaxOutputTokens", "variantTypes": [ { - "$id": "7492", + "$id": "7505", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", "decorators": [] }, { - "$ref": "1743" + "$ref": "1744" } ], "namespace": "OpenAI", @@ -97517,7 +97710,7 @@ ] }, "response.done": { - "$id": "7493", + "$id": "7506", "kind": "model", "name": "RealtimeServerEventResponseDone", "namespace": "OpenAI", @@ -97527,25 +97720,25 @@ "discriminatorValue": "response.done", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7494", + "$id": "7507", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.done`.", "type": { - "$id": "7495", + "$id": "7508", "kind": "enumvalue", "name": "response_done", "value": "response.done", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -97563,12 +97756,12 @@ "isHttpMetadata": false }, { - "$id": "7496", + "$id": "7509", "kind": "property", "name": "response", "serializedName": "response", "type": { - "$ref": "7442" + "$ref": "7455" }, "optional": false, "readOnly": false, @@ -97586,7 +97779,7 @@ ] }, "response.output_item.added": { - "$id": "7497", + "$id": "7510", "kind": "model", "name": "RealtimeServerEventResponseOutputItemAdded", "namespace": "OpenAI", @@ -97596,25 +97789,25 @@ "discriminatorValue": "response.output_item.added", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7498", + "$id": "7511", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.output_item.added`.", "type": { - "$id": "7499", + "$id": "7512", "kind": "enumvalue", "name": "response_output_item_added", "value": "response.output_item.added", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -97632,13 +97825,13 @@ "isHttpMetadata": false }, { - "$id": "7500", + "$id": "7513", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the Response to which the item belongs.", "type": { - "$id": "7501", + "$id": "7514", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97658,13 +97851,13 @@ "isHttpMetadata": false }, { - "$id": "7502", + "$id": "7515", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the Response.", "type": { - "$id": "7503", + "$id": "7516", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97684,12 +97877,12 @@ "isHttpMetadata": false }, { - "$id": "7504", + "$id": "7517", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$ref": "7362" + "$ref": "7375" }, "optional": false, "readOnly": false, @@ -97707,7 +97900,7 @@ ] }, "response.output_item.done": { - "$id": "7505", + "$id": "7518", "kind": "model", "name": "RealtimeServerEventResponseOutputItemDone", "namespace": "OpenAI", @@ -97717,25 +97910,25 @@ "discriminatorValue": "response.output_item.done", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7506", + "$id": "7519", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.output_item.done`.", "type": { - "$id": "7507", + "$id": "7520", "kind": "enumvalue", "name": "response_output_item_done", "value": "response.output_item.done", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -97753,13 +97946,13 @@ "isHttpMetadata": false }, { - "$id": "7508", + "$id": "7521", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the Response to which the item belongs.", "type": { - "$id": "7509", + "$id": "7522", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97779,13 +97972,13 @@ "isHttpMetadata": false }, { - "$id": "7510", + "$id": "7523", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the Response.", "type": { - "$id": "7511", + "$id": "7524", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97805,12 +97998,12 @@ "isHttpMetadata": false }, { - "$id": "7512", + "$id": "7525", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$ref": "7362" + "$ref": "7375" }, "optional": false, "readOnly": false, @@ -97828,7 +98021,7 @@ ] }, "response.content_part.added": { - "$id": "7513", + "$id": "7526", "kind": "model", "name": "RealtimeServerEventResponseContentPartAdded", "namespace": "OpenAI", @@ -97838,25 +98031,25 @@ "discriminatorValue": "response.content_part.added", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7514", + "$id": "7527", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.content_part.added`.", "type": { - "$id": "7515", + "$id": "7528", "kind": "enumvalue", "name": "response_content_part_added", "value": "response.content_part.added", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -97874,13 +98067,13 @@ "isHttpMetadata": false }, { - "$id": "7516", + "$id": "7529", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7517", + "$id": "7530", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97900,13 +98093,13 @@ "isHttpMetadata": false }, { - "$id": "7518", + "$id": "7531", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to which the content part was added.", "type": { - "$id": "7519", + "$id": "7532", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97926,13 +98119,13 @@ "isHttpMetadata": false }, { - "$id": "7520", + "$id": "7533", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7521", + "$id": "7534", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97952,13 +98145,13 @@ "isHttpMetadata": false }, { - "$id": "7522", + "$id": "7535", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7523", + "$id": "7536", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97978,13 +98171,13 @@ "isHttpMetadata": false }, { - "$id": "7524", + "$id": "7537", "kind": "property", "name": "part", "serializedName": "part", "doc": "The content part that was added.", "type": { - "$ref": "7076" + "$ref": "7089" }, "optional": false, "readOnly": false, @@ -98002,7 +98195,7 @@ ] }, "response.content_part.done": { - "$id": "7525", + "$id": "7538", "kind": "model", "name": "RealtimeServerEventResponseContentPartDone", "namespace": "OpenAI", @@ -98012,25 +98205,25 @@ "discriminatorValue": "response.content_part.done", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7526", + "$id": "7539", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.content_part.done`.", "type": { - "$id": "7527", + "$id": "7540", "kind": "enumvalue", "name": "response_content_part_done", "value": "response.content_part.done", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -98048,13 +98241,13 @@ "isHttpMetadata": false }, { - "$id": "7528", + "$id": "7541", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7529", + "$id": "7542", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98074,13 +98267,13 @@ "isHttpMetadata": false }, { - "$id": "7530", + "$id": "7543", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7531", + "$id": "7544", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98100,13 +98293,13 @@ "isHttpMetadata": false }, { - "$id": "7532", + "$id": "7545", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7533", + "$id": "7546", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98126,13 +98319,13 @@ "isHttpMetadata": false }, { - "$id": "7534", + "$id": "7547", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7535", + "$id": "7548", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98152,13 +98345,13 @@ "isHttpMetadata": false }, { - "$id": "7536", + "$id": "7549", "kind": "property", "name": "part", "serializedName": "part", "doc": "The content part that is done.", "type": { - "$ref": "7076" + "$ref": "7089" }, "optional": false, "readOnly": false, @@ -98176,7 +98369,7 @@ ] }, "response.text.delta": { - "$id": "7537", + "$id": "7550", "kind": "model", "name": "RealtimeServerEventResponseTextDelta", "namespace": "OpenAI", @@ -98186,25 +98379,25 @@ "discriminatorValue": "response.text.delta", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7538", + "$id": "7551", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.text.delta`.", "type": { - "$id": "7539", + "$id": "7552", "kind": "enumvalue", "name": "response_text_delta", "value": "response.text.delta", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -98222,13 +98415,13 @@ "isHttpMetadata": false }, { - "$id": "7540", + "$id": "7553", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7541", + "$id": "7554", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98248,13 +98441,13 @@ "isHttpMetadata": false }, { - "$id": "7542", + "$id": "7555", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7543", + "$id": "7556", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98274,13 +98467,13 @@ "isHttpMetadata": false }, { - "$id": "7544", + "$id": "7557", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7545", + "$id": "7558", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98300,13 +98493,13 @@ "isHttpMetadata": false }, { - "$id": "7546", + "$id": "7559", "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": "7560", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98326,13 +98519,13 @@ "isHttpMetadata": false }, { - "$id": "7548", + "$id": "7561", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The text delta.", "type": { - "$id": "7549", + "$id": "7562", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98354,7 +98547,7 @@ ] }, "response.text.done": { - "$id": "7550", + "$id": "7563", "kind": "model", "name": "RealtimeServerEventResponseTextDone", "namespace": "OpenAI", @@ -98364,25 +98557,25 @@ "discriminatorValue": "response.text.done", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7551", + "$id": "7564", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.text.done`.", "type": { - "$id": "7552", + "$id": "7565", "kind": "enumvalue", "name": "response_text_done", "value": "response.text.done", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -98400,13 +98593,13 @@ "isHttpMetadata": false }, { - "$id": "7553", + "$id": "7566", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7554", + "$id": "7567", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98426,13 +98619,13 @@ "isHttpMetadata": false }, { - "$id": "7555", + "$id": "7568", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7556", + "$id": "7569", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98452,13 +98645,13 @@ "isHttpMetadata": false }, { - "$id": "7557", + "$id": "7570", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7558", + "$id": "7571", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98478,13 +98671,13 @@ "isHttpMetadata": false }, { - "$id": "7559", + "$id": "7572", "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": "7573", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98504,13 +98697,13 @@ "isHttpMetadata": false }, { - "$id": "7561", + "$id": "7574", "kind": "property", "name": "text", "serializedName": "text", "doc": "The final text content.", "type": { - "$id": "7562", + "$id": "7575", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98532,7 +98725,7 @@ ] }, "response.audio_transcript.delta": { - "$id": "7563", + "$id": "7576", "kind": "model", "name": "RealtimeServerEventResponseAudioTranscriptDelta", "namespace": "OpenAI", @@ -98542,25 +98735,25 @@ "discriminatorValue": "response.audio_transcript.delta", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7564", + "$id": "7577", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.audio_transcript.delta`.", "type": { - "$id": "7565", + "$id": "7578", "kind": "enumvalue", "name": "response_audio_transcript_delta", "value": "response.audio_transcript.delta", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -98578,13 +98771,13 @@ "isHttpMetadata": false }, { - "$id": "7566", + "$id": "7579", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7567", + "$id": "7580", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98604,13 +98797,13 @@ "isHttpMetadata": false }, { - "$id": "7568", + "$id": "7581", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7569", + "$id": "7582", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98630,13 +98823,13 @@ "isHttpMetadata": false }, { - "$id": "7570", + "$id": "7583", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7571", + "$id": "7584", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98656,13 +98849,13 @@ "isHttpMetadata": false }, { - "$id": "7572", + "$id": "7585", "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": "7586", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98682,13 +98875,13 @@ "isHttpMetadata": false }, { - "$id": "7574", + "$id": "7587", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The transcript delta.", "type": { - "$id": "7575", + "$id": "7588", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98710,7 +98903,7 @@ ] }, "response.audio_transcript.done": { - "$id": "7576", + "$id": "7589", "kind": "model", "name": "RealtimeServerEventResponseAudioTranscriptDone", "namespace": "OpenAI", @@ -98720,25 +98913,25 @@ "discriminatorValue": "response.audio_transcript.done", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7577", + "$id": "7590", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.audio_transcript.done`.", "type": { - "$id": "7578", + "$id": "7591", "kind": "enumvalue", "name": "response_audio_transcript_done", "value": "response.audio_transcript.done", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -98756,13 +98949,13 @@ "isHttpMetadata": false }, { - "$id": "7579", + "$id": "7592", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7580", + "$id": "7593", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98782,13 +98975,13 @@ "isHttpMetadata": false }, { - "$id": "7581", + "$id": "7594", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7582", + "$id": "7595", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98808,13 +99001,13 @@ "isHttpMetadata": false }, { - "$id": "7583", + "$id": "7596", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7584", + "$id": "7597", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98834,13 +99027,13 @@ "isHttpMetadata": false }, { - "$id": "7585", + "$id": "7598", "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": "7599", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98860,13 +99053,13 @@ "isHttpMetadata": false }, { - "$id": "7587", + "$id": "7600", "kind": "property", "name": "transcript", "serializedName": "transcript", "doc": "The final transcript of the audio.", "type": { - "$id": "7588", + "$id": "7601", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98888,7 +99081,7 @@ ] }, "response.audio.delta": { - "$id": "7589", + "$id": "7602", "kind": "model", "name": "RealtimeServerEventResponseAudioDelta", "namespace": "OpenAI", @@ -98898,25 +99091,25 @@ "discriminatorValue": "response.audio.delta", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7590", + "$id": "7603", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.audio.delta`.", "type": { - "$id": "7591", + "$id": "7604", "kind": "enumvalue", "name": "response_audio_delta", "value": "response.audio.delta", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -98934,13 +99127,13 @@ "isHttpMetadata": false }, { - "$id": "7592", + "$id": "7605", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7593", + "$id": "7606", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98960,13 +99153,13 @@ "isHttpMetadata": false }, { - "$id": "7594", + "$id": "7607", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7595", + "$id": "7608", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98986,13 +99179,13 @@ "isHttpMetadata": false }, { - "$id": "7596", + "$id": "7609", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7597", + "$id": "7610", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99012,13 +99205,13 @@ "isHttpMetadata": false }, { - "$id": "7598", + "$id": "7611", "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": "7612", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99038,13 +99231,13 @@ "isHttpMetadata": false }, { - "$id": "7600", + "$id": "7613", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "Base64-encoded audio data delta.", "type": { - "$id": "7601", + "$id": "7614", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -99067,7 +99260,7 @@ ] }, "response.audio.done": { - "$id": "7602", + "$id": "7615", "kind": "model", "name": "RealtimeServerEventResponseAudioDone", "namespace": "OpenAI", @@ -99077,25 +99270,25 @@ "discriminatorValue": "response.audio.done", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7603", + "$id": "7616", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.audio.done`.", "type": { - "$id": "7604", + "$id": "7617", "kind": "enumvalue", "name": "response_audio_done", "value": "response.audio.done", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -99113,13 +99306,13 @@ "isHttpMetadata": false }, { - "$id": "7605", + "$id": "7618", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7606", + "$id": "7619", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99139,13 +99332,13 @@ "isHttpMetadata": false }, { - "$id": "7607", + "$id": "7620", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7608", + "$id": "7621", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99165,13 +99358,13 @@ "isHttpMetadata": false }, { - "$id": "7609", + "$id": "7622", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7610", + "$id": "7623", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99191,13 +99384,13 @@ "isHttpMetadata": false }, { - "$id": "7611", + "$id": "7624", "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": "7625", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99219,7 +99412,7 @@ ] }, "response.function_call_arguments.delta": { - "$id": "7613", + "$id": "7626", "kind": "model", "name": "RealtimeServerEventResponseFunctionCallArgumentsDelta", "namespace": "OpenAI", @@ -99229,25 +99422,25 @@ "discriminatorValue": "response.function_call_arguments.delta", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7614", + "$id": "7627", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.function_call_arguments.delta`.", "type": { - "$id": "7615", + "$id": "7628", "kind": "enumvalue", "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -99265,13 +99458,13 @@ "isHttpMetadata": false }, { - "$id": "7616", + "$id": "7629", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7617", + "$id": "7630", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99291,13 +99484,13 @@ "isHttpMetadata": false }, { - "$id": "7618", + "$id": "7631", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the function call item.", "type": { - "$id": "7619", + "$id": "7632", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99317,13 +99510,13 @@ "isHttpMetadata": false }, { - "$id": "7620", + "$id": "7633", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7621", + "$id": "7634", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99343,13 +99536,13 @@ "isHttpMetadata": false }, { - "$id": "7622", + "$id": "7635", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the function call.", "type": { - "$id": "7623", + "$id": "7636", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99369,13 +99562,13 @@ "isHttpMetadata": false }, { - "$id": "7624", + "$id": "7637", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The arguments delta as a JSON string.", "type": { - "$id": "7625", + "$id": "7638", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99397,7 +99590,7 @@ ] }, "response.function_call_arguments.done": { - "$id": "7626", + "$id": "7639", "kind": "model", "name": "RealtimeServerEventResponseFunctionCallArgumentsDone", "namespace": "OpenAI", @@ -99407,25 +99600,25 @@ "discriminatorValue": "response.function_call_arguments.done", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7627", + "$id": "7640", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.function_call_arguments.done`.", "type": { - "$id": "7628", + "$id": "7641", "kind": "enumvalue", "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -99443,13 +99636,13 @@ "isHttpMetadata": false }, { - "$id": "7629", + "$id": "7642", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7630", + "$id": "7643", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99469,13 +99662,13 @@ "isHttpMetadata": false }, { - "$id": "7631", + "$id": "7644", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the function call item.", "type": { - "$id": "7632", + "$id": "7645", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99495,13 +99688,13 @@ "isHttpMetadata": false }, { - "$id": "7633", + "$id": "7646", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7634", + "$id": "7647", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99521,13 +99714,13 @@ "isHttpMetadata": false }, { - "$id": "7635", + "$id": "7648", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the function call.", "type": { - "$id": "7636", + "$id": "7649", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99547,13 +99740,13 @@ "isHttpMetadata": false }, { - "$id": "7637", + "$id": "7650", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "The final arguments as a JSON string.", "type": { - "$id": "7638", + "$id": "7651", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99575,7 +99768,7 @@ ] }, "rate_limits.updated": { - "$id": "7639", + "$id": "7652", "kind": "model", "name": "RealtimeServerEventRateLimitsUpdated", "namespace": "OpenAI", @@ -99585,25 +99778,25 @@ "discriminatorValue": "rate_limits.updated", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7640", + "$id": "7653", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `rate_limits.updated`.", "type": { - "$id": "7641", + "$id": "7654", "kind": "enumvalue", "name": "rate_limits_updated", "value": "rate_limits.updated", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -99621,17 +99814,17 @@ "isHttpMetadata": false }, { - "$id": "7642", + "$id": "7655", "kind": "property", "name": "rate_limits", "serializedName": "rate_limits", "doc": "List of rate limit information.", "type": { - "$id": "7643", + "$id": "7656", "kind": "array", "name": "ArrayRealtimeServerEventRateLimitsUpdatedRateLimitsItem", "valueType": { - "$id": "7644", + "$id": "7657", "kind": "model", "name": "RealtimeServerEventRateLimitsUpdatedRateLimitsItem", "namespace": "OpenAI", @@ -99640,13 +99833,13 @@ "decorators": [], "properties": [ { - "$id": "7645", + "$id": "7658", "kind": "property", "name": "name", "serializedName": "name", "doc": "The rate limit property name that this item includes information about.", "type": { - "$id": "7646", + "$id": "7659", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99666,13 +99859,13 @@ "isHttpMetadata": false }, { - "$id": "7647", + "$id": "7660", "kind": "property", "name": "limit", "serializedName": "limit", "doc": "The maximum configured limit for this rate limit property.", "type": { - "$id": "7648", + "$id": "7661", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99692,13 +99885,13 @@ "isHttpMetadata": false }, { - "$id": "7649", + "$id": "7662", "kind": "property", "name": "remaining", "serializedName": "remaining", "doc": "The remaining quota available against the configured limit for this rate limit property.", "type": { - "$id": "7650", + "$id": "7663", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99718,18 +99911,18 @@ "isHttpMetadata": false }, { - "$id": "7651", + "$id": "7664", "kind": "property", "name": "reset_seconds", "serializedName": "reset_seconds", "doc": "The remaining time, in seconds, until this rate limit property is reset.", "type": { - "$id": "7652", + "$id": "7665", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "7653", + "$id": "7666", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -99772,7 +99965,7 @@ ] }, "conversation.item.input_audio_transcription.delta": { - "$id": "7654", + "$id": "7667", "kind": "model", "name": "RealtimeServerEventConversationItemInputAudioTranscriptionDelta", "namespace": "OpenAI", @@ -99782,25 +99975,25 @@ "discriminatorValue": "conversation.item.input_audio_transcription.delta", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7655", + "$id": "7668", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.input_audio_transcription.delta`.", "type": { - "$id": "7656", + "$id": "7669", "kind": "enumvalue", "name": "conversation_item_input_audio_transcription_delta", "value": "conversation.item.input_audio_transcription.delta", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -99818,13 +100011,13 @@ "isHttpMetadata": false }, { - "$id": "7657", + "$id": "7670", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7658", + "$id": "7671", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99844,13 +100037,13 @@ "isHttpMetadata": false }, { - "$id": "7659", + "$id": "7672", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7660", + "$id": "7673", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99870,13 +100063,13 @@ "isHttpMetadata": false }, { - "$id": "7661", + "$id": "7674", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The text delta.", "type": { - "$id": "7662", + "$id": "7675", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99896,16 +100089,16 @@ "isHttpMetadata": false }, { - "$id": "7663", + "$id": "7676", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "doc": "The log probabilities of the transcription.", "type": { - "$id": "7664", + "$id": "7677", "kind": "nullable", "type": { - "$ref": "7400" + "$ref": "7413" }, "namespace": "OpenAI" }, @@ -99925,7 +100118,7 @@ ] }, "conversation.item.retrieved": { - "$id": "7665", + "$id": "7678", "kind": "model", "name": "RealtimeServerEventConversationItemRetrieved", "namespace": "OpenAI", @@ -99935,25 +100128,25 @@ "discriminatorValue": "conversation.item.retrieved", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7666", + "$id": "7679", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.retrieved`.", "type": { - "$id": "7667", + "$id": "7680", "kind": "enumvalue", "name": "conversation_item_retrieved", "value": "conversation.item.retrieved", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -99971,12 +100164,12 @@ "isHttpMetadata": false }, { - "$id": "7668", + "$id": "7681", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$ref": "7362" + "$ref": "7375" }, "optional": false, "readOnly": false, @@ -99994,7 +100187,7 @@ ] }, "transcription_session.updated": { - "$id": "7669", + "$id": "7682", "kind": "model", "name": "RealtimeServerEventTranscriptionSessionUpdated", "namespace": "OpenAI", @@ -100004,25 +100197,25 @@ "discriminatorValue": "transcription_session.updated", "decorators": [], "baseModel": { - "$ref": "7218" + "$ref": "7231" }, "properties": [ { - "$id": "7670", + "$id": "7683", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `transcription_session.updated`.", "type": { - "$id": "7671", + "$id": "7684", "kind": "enumvalue", "name": "transcription_session_updated", "value": "transcription_session.updated", "valueType": { - "$ref": "1210" + "$ref": "1211" }, "enumType": { - "$ref": "7225" + "$ref": "7238" }, "decorators": [] }, @@ -100040,12 +100233,12 @@ "isHttpMetadata": false }, { - "$id": "7672", + "$id": "7685", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$id": "7673", + "$id": "7686", "kind": "model", "name": "RealtimeTranscriptionSessionCreateResponse", "namespace": "OpenAI", @@ -100055,13 +100248,13 @@ "decorators": [], "properties": [ { - "$id": "7674", + "$id": "7687", "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": "7675", + "$id": "7688", "kind": "model", "name": "RealtimeTranscriptionSessionCreateResponseClientSecret", "namespace": "OpenAI", @@ -100070,13 +100263,13 @@ "decorators": [], "properties": [ { - "$id": "7676", + "$id": "7689", "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": "7677", + "$id": "7690", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100096,18 +100289,18 @@ "isHttpMetadata": false }, { - "$id": "7678", + "$id": "7691", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "Timestamp for when the token expires. Currently, all tokens expire\nafter one minute.", "type": { - "$id": "7679", + "$id": "7692", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7680", + "$id": "7693", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100145,17 +100338,17 @@ "isHttpMetadata": false }, { - "$id": "7681", + "$id": "7694", "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": "7682", + "$id": "7695", "kind": "array", "name": "Array45", "valueType": { - "$ref": "1276" + "$ref": "1277" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -100174,13 +100367,13 @@ "isHttpMetadata": false }, { - "$id": "7683", + "$id": "7696", "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": "7684", + "$id": "7697", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100200,13 +100393,13 @@ "isHttpMetadata": false }, { - "$id": "7685", + "$id": "7698", "kind": "property", "name": "input_audio_transcription", "serializedName": "input_audio_transcription", "doc": "Configuration of the transcription model.", "type": { - "$id": "7686", + "$id": "7699", "kind": "model", "name": "RealtimeTranscriptionSessionCreateResponseInputAudioTranscription", "namespace": "OpenAI", @@ -100215,13 +100408,13 @@ "decorators": [], "properties": [ { - "$id": "7687", + "$id": "7700", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for transcription. Can be `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, or `whisper-1`.", "type": { - "$ref": "1280" + "$ref": "1281" }, "optional": true, "readOnly": false, @@ -100237,13 +100430,13 @@ "isHttpMetadata": false }, { - "$id": "7688", + "$id": "7701", "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": "7689", + "$id": "7702", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100263,13 +100456,13 @@ "isHttpMetadata": false }, { - "$id": "7690", + "$id": "7703", "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": "7691", + "$id": "7704", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100304,13 +100497,13 @@ "isHttpMetadata": false }, { - "$id": "7692", + "$id": "7705", "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": "7693", + "$id": "7706", "kind": "model", "name": "RealtimeTranscriptionSessionCreateResponseTurnDetection", "namespace": "OpenAI", @@ -100319,13 +100512,13 @@ "decorators": [], "properties": [ { - "$id": "7694", + "$id": "7707", "kind": "property", "name": "type", "serializedName": "type", "doc": "Type of turn detection, only `server_vad` is currently supported.", "type": { - "$id": "7695", + "$id": "7708", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100345,13 +100538,13 @@ "isHttpMetadata": false }, { - "$id": "7696", + "$id": "7709", "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": "7697", + "$id": "7710", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -100371,13 +100564,13 @@ "isHttpMetadata": false }, { - "$id": "7698", + "$id": "7711", "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": "7699", + "$id": "7712", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100397,13 +100590,13 @@ "isHttpMetadata": false }, { - "$id": "7700", + "$id": "7713", "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": "7701", + "$id": "7714", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100457,118 +100650,115 @@ } }, { - "$ref": "7222" - }, - { - "$ref": "7262" + "$ref": "7235" }, { - "$ref": "7276" + "$ref": "7275" }, { - "$ref": "7280" + "$ref": "7289" }, { - "$ref": "7304" + "$ref": "7293" }, { - "$ref": "7308" + "$ref": "7317" }, { - "$ref": "7312" + "$ref": "7321" }, { - "$ref": "7317" + "$ref": "7325" }, { - "$ref": "7324" + "$ref": "7330" }, { - "$ref": "7327" + "$ref": "7337" }, { - "$ref": "7334" + "$ref": "7340" }, { - "$ref": "7341" + "$ref": "7347" }, { - "$ref": "7346" + "$ref": "7354" }, { - "$ref": "7351" + "$ref": "7359" }, { - "$ref": "7356" + "$ref": "7364" }, { - "$ref": "7362" + "$ref": "7369" }, { - "$ref": "7368" + "$ref": "7375" }, { - "$ref": "7374" + "$ref": "7381" }, { - "$ref": "7383" + "$ref": "7387" }, { - "$ref": "7389" + "$ref": "7396" }, { - "$ref": "7401" + "$ref": "7402" }, { - "$ref": "7407" + "$ref": "7414" }, { - "$ref": "7415" + "$ref": "7420" }, { - "$ref": "7424" + "$ref": "7428" }, { - "$ref": "7433" + "$ref": "7437" }, { - "$ref": "7438" + "$ref": "7446" }, { - "$ref": "7442" + "$ref": "7451" }, { - "$ref": "7448" + "$ref": "7455" }, { - "$ref": "7452" + "$ref": "7461" }, { - "$ref": "7461" + "$ref": "7465" }, { - "$ref": "7469" + "$ref": "7474" }, { - "$ref": "7477" + "$ref": "7482" }, { - "$ref": "7493" + "$ref": "7490" }, { - "$ref": "7497" + "$ref": "7506" }, { - "$ref": "7505" + "$ref": "7510" }, { - "$ref": "7513" + "$ref": "7518" }, { - "$ref": "7525" + "$ref": "7526" }, { - "$ref": "7537" + "$ref": "7538" }, { "$ref": "7550" @@ -100586,7 +100776,7 @@ "$ref": "7602" }, { - "$ref": "7613" + "$ref": "7615" }, { "$ref": "7626" @@ -100595,31 +100785,34 @@ "$ref": "7639" }, { - "$ref": "7644" + "$ref": "7652" + }, + { + "$ref": "7657" }, { - "$ref": "7654" + "$ref": "7667" }, { - "$ref": "7665" + "$ref": "7678" }, { - "$ref": "7669" + "$ref": "7682" }, { - "$ref": "7673" + "$ref": "7686" }, { - "$ref": "7675" + "$ref": "7688" }, { - "$ref": "7686" + "$ref": "7699" }, { - "$ref": "7693" + "$ref": "7706" }, { - "$id": "7702", + "$id": "7715", "kind": "model", "name": "RealtimeSessionCreateRequest", "namespace": "OpenAI", @@ -100629,13 +100822,13 @@ "decorators": [], "properties": [ { - "$id": "7703", + "$id": "7716", "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": "6945" + "$ref": "6958" }, "optional": true, "readOnly": false, @@ -100651,13 +100844,13 @@ "isHttpMetadata": false }, { - "$id": "7704", + "$id": "7717", "kind": "property", "name": "model", "serializedName": "model", "doc": "The Realtime model used for this session.", "type": { - "$ref": "1285" + "$ref": "1286" }, "optional": true, "readOnly": false, @@ -100673,13 +100866,13 @@ "isHttpMetadata": false }, { - "$id": "7705", + "$id": "7718", "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": "7706", + "$id": "7719", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100699,7 +100892,7 @@ "isHttpMetadata": false }, { - "$id": "7707", + "$id": "7720", "kind": "property", "name": "voice", "serializedName": "voice", @@ -100721,13 +100914,13 @@ "isHttpMetadata": false }, { - "$id": "7708", + "$id": "7721", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", "doc": "The format of input audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`.\nFor `pcm16`, input audio must be 16-bit PCM at a 24kHz sample rate,\nsingle channel (mono), and little-endian byte order.", "type": { - "$ref": "1122" + "$ref": "1123" }, "optional": true, "readOnly": false, @@ -100743,13 +100936,13 @@ "isHttpMetadata": false }, { - "$id": "7709", + "$id": "7722", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", "doc": "The format of output audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`.\nFor `pcm16`, output audio is sampled at a rate of 24kHz.", "type": { - "$ref": "1122" + "$ref": "1123" }, "optional": true, "readOnly": false, @@ -100765,13 +100958,13 @@ "isHttpMetadata": false }, { - "$id": "7710", + "$id": "7723", "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": "7711", + "$id": "7724", "kind": "model", "name": "RealtimeSessionCreateRequestInputAudioTranscription", "namespace": "OpenAI", @@ -100780,13 +100973,13 @@ "decorators": [], "properties": [ { - "$id": "7712", + "$id": "7725", "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": "7713", + "$id": "7726", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100806,13 +100999,13 @@ "isHttpMetadata": false }, { - "$id": "7714", + "$id": "7727", "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": "7715", + "$id": "7728", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100832,13 +101025,13 @@ "isHttpMetadata": false }, { - "$id": "7716", + "$id": "7729", "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": "7717", + "$id": "7730", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100873,13 +101066,13 @@ "isHttpMetadata": false }, { - "$id": "7718", + "$id": "7731", "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": "7719", + "$id": "7732", "kind": "model", "name": "RealtimeSessionCreateRequestTurnDetection", "namespace": "OpenAI", @@ -100888,13 +101081,13 @@ "decorators": [], "properties": [ { - "$id": "7720", + "$id": "7733", "kind": "property", "name": "type", "serializedName": "type", "doc": "Type of turn detection.", "type": { - "$ref": "1293" + "$ref": "1294" }, "optional": true, "readOnly": false, @@ -100910,13 +101103,13 @@ "isHttpMetadata": false }, { - "$id": "7721", + "$id": "7734", "kind": "property", "name": "eagerness", "serializedName": "eagerness", "doc": "Used only for `semantic_vad` mode. The eagerness of the model to respond. `low` will wait longer for the user to continue speaking, `high` will respond more quickly. `auto` is the default and is equivalent to `medium`.", "type": { - "$ref": "1297" + "$ref": "1298" }, "optional": true, "readOnly": false, @@ -100932,13 +101125,13 @@ "isHttpMetadata": false }, { - "$id": "7722", + "$id": "7735", "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": "7723", + "$id": "7736", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -100958,13 +101151,13 @@ "isHttpMetadata": false }, { - "$id": "7724", + "$id": "7737", "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": "7725", + "$id": "7738", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100984,13 +101177,13 @@ "isHttpMetadata": false }, { - "$id": "7726", + "$id": "7739", "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": "7727", + "$id": "7740", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101010,13 +101203,13 @@ "isHttpMetadata": false }, { - "$id": "7728", + "$id": "7741", "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": "7729", + "$id": "7742", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -101036,13 +101229,13 @@ "isHttpMetadata": false }, { - "$id": "7730", + "$id": "7743", "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": "7731", + "$id": "7744", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -101077,16 +101270,16 @@ "isHttpMetadata": false }, { - "$id": "7732", + "$id": "7745", "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": "7733", + "$id": "7746", "kind": "nullable", "type": { - "$id": "7734", + "$id": "7747", "kind": "model", "name": "RealtimeSessionCreateRequestInputAudioNoiseReduction1", "namespace": "OpenAI", @@ -101095,13 +101288,13 @@ "decorators": [], "properties": [ { - "$id": "7735", + "$id": "7748", "kind": "property", "name": "type", "serializedName": "type", "doc": "Type of noise reduction. `near_field` is for close-talking microphones such as headphones, `far_field` is for far-field microphones such as laptop or conference room microphones.", "type": { - "$ref": "1303" + "$ref": "1304" }, "optional": true, "readOnly": false, @@ -101134,13 +101327,13 @@ "isHttpMetadata": false }, { - "$id": "7736", + "$id": "7749", "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": "7737", + "$id": "7750", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -101160,21 +101353,21 @@ "isHttpMetadata": false }, { - "$id": "7738", + "$id": "7751", "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": "7739", + "$id": "7752", "kind": "union", "name": "RealtimeSessionCreateRequestTracing", "variantTypes": [ { - "$ref": "1745" + "$ref": "1746" }, { - "$id": "7740", + "$id": "7753", "kind": "model", "name": "RealtimeSessionCreateRequestTracing1", "namespace": "OpenAI", @@ -101183,13 +101376,13 @@ "decorators": [], "properties": [ { - "$id": "7741", + "$id": "7754", "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": "7742", + "$id": "7755", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101209,13 +101402,13 @@ "isHttpMetadata": false }, { - "$id": "7743", + "$id": "7756", "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": "7744", + "$id": "7757", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101235,13 +101428,13 @@ "isHttpMetadata": false }, { - "$id": "7745", + "$id": "7758", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "The arbitrary metadata to attach to this trace to enable\nfiltering in the traces dashboard.", "type": { - "$id": "7746", + "$id": "7759", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -101280,13 +101473,13 @@ "isHttpMetadata": false }, { - "$id": "7747", + "$id": "7760", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "Tools (functions) available to the model.", "type": { - "$ref": "7001" + "$ref": "7014" }, "optional": true, "readOnly": false, @@ -101302,13 +101495,13 @@ "isHttpMetadata": false }, { - "$id": "7748", + "$id": "7761", "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": "7749", + "$id": "7762", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101328,13 +101521,13 @@ "isHttpMetadata": false }, { - "$id": "7750", + "$id": "7763", "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": "7751", + "$id": "7764", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -101354,25 +101547,25 @@ "isHttpMetadata": false }, { - "$id": "7752", + "$id": "7765", "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": "7753", + "$id": "7766", "kind": "union", "name": "RealtimeSessionCreateRequestMaxResponseOutputTokens", "variantTypes": [ { - "$id": "7754", + "$id": "7767", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", "decorators": [] }, { - "$ref": "1747" + "$ref": "1748" } ], "namespace": "OpenAI", @@ -101392,13 +101585,13 @@ "isHttpMetadata": false }, { - "$id": "7755", + "$id": "7768", "kind": "property", "name": "client_secret", "serializedName": "client_secret", "doc": "Configuration options for the generated client secret.", "type": { - "$id": "7756", + "$id": "7769", "kind": "model", "name": "RealtimeSessionCreateRequestClientSecret", "namespace": "OpenAI", @@ -101407,13 +101600,13 @@ "decorators": [], "properties": [ { - "$id": "7757", + "$id": "7770", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "Configuration for the ephemeral token expiration.", "type": { - "$id": "7758", + "$id": "7771", "kind": "model", "name": "RealtimeSessionCreateRequestClientSecretExpiresAt", "namespace": "OpenAI", @@ -101422,13 +101615,13 @@ "decorators": [], "properties": [ { - "$id": "7759", + "$id": "7772", "kind": "property", "name": "anchor", "serializedName": "anchor", "doc": "The anchor point for the ephemeral token expiration. Only `created_at` is currently supported.", "type": { - "$ref": "1307" + "$ref": "1308" }, "optional": true, "readOnly": false, @@ -101444,13 +101637,13 @@ "isHttpMetadata": false }, { - "$id": "7760", + "$id": "7773", "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": "7761", + "$id": "7774", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101502,25 +101695,25 @@ ] }, { - "$ref": "7711" + "$ref": "7724" }, { - "$ref": "7719" + "$ref": "7732" }, { - "$ref": "7734" + "$ref": "7747" }, { - "$ref": "7740" + "$ref": "7753" }, { - "$ref": "7756" + "$ref": "7769" }, { - "$ref": "7758" + "$ref": "7771" }, { - "$id": "7762", + "$id": "7775", "kind": "model", "name": "RealtimeSessionCreateResponse", "namespace": "OpenAI", @@ -101530,13 +101723,13 @@ "decorators": [], "properties": [ { - "$id": "7763", + "$id": "7776", "kind": "property", "name": "client_secret", "serializedName": "client_secret", "doc": "Ephemeral key returned by the API.", "type": { - "$id": "7764", + "$id": "7777", "kind": "model", "name": "RealtimeSessionCreateResponseClientSecret", "namespace": "OpenAI", @@ -101545,13 +101738,13 @@ "decorators": [], "properties": [ { - "$id": "7765", + "$id": "7778", "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": "7766", + "$id": "7779", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101571,18 +101764,18 @@ "isHttpMetadata": false }, { - "$id": "7767", + "$id": "7780", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "Timestamp for when the token expires. Currently, all tokens expire\nafter one minute.", "type": { - "$id": "7768", + "$id": "7781", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7769", + "$id": "7782", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101620,13 +101813,13 @@ "isHttpMetadata": false }, { - "$id": "7770", + "$id": "7783", "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": "6945" + "$ref": "6958" }, "optional": true, "readOnly": false, @@ -101642,13 +101835,13 @@ "isHttpMetadata": false }, { - "$id": "7771", + "$id": "7784", "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": "7772", + "$id": "7785", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101668,7 +101861,7 @@ "isHttpMetadata": false }, { - "$id": "7773", + "$id": "7786", "kind": "property", "name": "voice", "serializedName": "voice", @@ -101690,13 +101883,13 @@ "isHttpMetadata": false }, { - "$id": "7774", + "$id": "7787", "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": { - "$ref": "1122" + "$ref": "1123" }, "optional": true, "readOnly": false, @@ -101712,13 +101905,13 @@ "isHttpMetadata": false }, { - "$id": "7775", + "$id": "7788", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", "doc": "The format of output audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`.", "type": { - "$ref": "1122" + "$ref": "1123" }, "optional": true, "readOnly": false, @@ -101734,13 +101927,13 @@ "isHttpMetadata": false }, { - "$id": "7776", + "$id": "7789", "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": "7777", + "$id": "7790", "kind": "model", "name": "RealtimeSessionCreateResponseInputAudioTranscription", "namespace": "OpenAI", @@ -101749,13 +101942,13 @@ "decorators": [], "properties": [ { - "$id": "7778", + "$id": "7791", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for transcription, `whisper-1` is the only currently\nsupported model.", "type": { - "$id": "7779", + "$id": "7792", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101790,13 +101983,13 @@ "isHttpMetadata": false }, { - "$id": "7780", + "$id": "7793", "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": "7781", + "$id": "7794", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -101816,21 +102009,21 @@ "isHttpMetadata": false }, { - "$id": "7782", + "$id": "7795", "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": "7783", + "$id": "7796", "kind": "union", "name": "RealtimeSessionCreateResponseTracing", "variantTypes": [ { - "$ref": "1749" + "$ref": "1750" }, { - "$id": "7784", + "$id": "7797", "kind": "model", "name": "RealtimeSessionCreateResponseTracing1", "namespace": "OpenAI", @@ -101839,13 +102032,13 @@ "decorators": [], "properties": [ { - "$id": "7785", + "$id": "7798", "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": "7786", + "$id": "7799", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101865,13 +102058,13 @@ "isHttpMetadata": false }, { - "$id": "7787", + "$id": "7800", "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": "7788", + "$id": "7801", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101891,13 +102084,13 @@ "isHttpMetadata": false }, { - "$id": "7789", + "$id": "7802", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "The arbitrary metadata to attach to this trace to enable\nfiltering in the traces dashboard.", "type": { - "$id": "7790", + "$id": "7803", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -101936,13 +102129,13 @@ "isHttpMetadata": false }, { - "$id": "7791", + "$id": "7804", "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": "7792", + "$id": "7805", "kind": "model", "name": "RealtimeSessionCreateResponseTurnDetection", "namespace": "OpenAI", @@ -101951,13 +102144,13 @@ "decorators": [], "properties": [ { - "$id": "7793", + "$id": "7806", "kind": "property", "name": "type", "serializedName": "type", "doc": "Type of turn detection, only `server_vad` is currently supported.", "type": { - "$id": "7794", + "$id": "7807", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101977,13 +102170,13 @@ "isHttpMetadata": false }, { - "$id": "7795", + "$id": "7808", "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": "7796", + "$id": "7809", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -102003,13 +102196,13 @@ "isHttpMetadata": false }, { - "$id": "7797", + "$id": "7810", "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": "7798", + "$id": "7811", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102029,13 +102222,13 @@ "isHttpMetadata": false }, { - "$id": "7799", + "$id": "7812", "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": "7800", + "$id": "7813", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102070,13 +102263,13 @@ "isHttpMetadata": false }, { - "$id": "7801", + "$id": "7814", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "Tools (functions) available to the model.", "type": { - "$ref": "7001" + "$ref": "7014" }, "optional": true, "readOnly": false, @@ -102092,13 +102285,13 @@ "isHttpMetadata": false }, { - "$id": "7802", + "$id": "7815", "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": "7803", + "$id": "7816", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102118,13 +102311,13 @@ "isHttpMetadata": false }, { - "$id": "7804", + "$id": "7817", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Sampling temperature for the model, limited to [0.6, 1.2]. Defaults to 0.8.", "type": { - "$id": "7805", + "$id": "7818", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -102144,25 +102337,25 @@ "isHttpMetadata": false }, { - "$id": "7806", + "$id": "7819", "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": "7807", + "$id": "7820", "kind": "union", "name": "RealtimeSessionCreateResponseMaxResponseOutputTokens", "variantTypes": [ { - "$id": "7808", + "$id": "7821", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", "decorators": [] }, { - "$ref": "1751" + "$ref": "1752" } ], "namespace": "OpenAI", @@ -102184,19 +102377,19 @@ ] }, { - "$ref": "7764" + "$ref": "7777" }, { - "$ref": "7777" + "$ref": "7790" }, { - "$ref": "7784" + "$ref": "7797" }, { - "$ref": "7792" + "$ref": "7805" }, { - "$id": "7809", + "$id": "7822", "kind": "model", "name": "CreateUploadRequest", "namespace": "OpenAI", @@ -102205,13 +102398,13 @@ "decorators": [], "properties": [ { - "$id": "7810", + "$id": "7823", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file to upload.", "type": { - "$id": "7811", + "$id": "7824", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102231,13 +102424,13 @@ "isHttpMetadata": false }, { - "$id": "7812", + "$id": "7825", "kind": "property", "name": "purpose", "serializedName": "purpose", "doc": "The intended purpose of the uploaded file.\n\nSee the [documentation on File purposes](/docs/api-reference/files/create#files-create-purpose).", "type": { - "$ref": "1311" + "$ref": "1312" }, "optional": false, "readOnly": false, @@ -102253,13 +102446,13 @@ "isHttpMetadata": false }, { - "$id": "7813", + "$id": "7826", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "The number of bytes in the file you are uploading.", "type": { - "$id": "7814", + "$id": "7827", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102279,13 +102472,13 @@ "isHttpMetadata": false }, { - "$id": "7815", + "$id": "7828", "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": "7816", + "$id": "7829", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102307,7 +102500,7 @@ ] }, { - "$id": "7817", + "$id": "7830", "kind": "model", "name": "Upload", "namespace": "OpenAI", @@ -102317,13 +102510,13 @@ "decorators": [], "properties": [ { - "$id": "7818", + "$id": "7831", "kind": "property", "name": "id", "serializedName": "id", "doc": "The Upload unique identifier, which can be referenced in API endpoints.", "type": { - "$id": "7819", + "$id": "7832", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102343,18 +102536,18 @@ "isHttpMetadata": false }, { - "$id": "7820", + "$id": "7833", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the Upload was created.", "type": { - "$id": "7821", + "$id": "7834", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7822", + "$id": "7835", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102377,13 +102570,13 @@ "isHttpMetadata": false }, { - "$id": "7823", + "$id": "7836", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file to be uploaded.", "type": { - "$id": "7824", + "$id": "7837", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102403,13 +102596,13 @@ "isHttpMetadata": false }, { - "$id": "7825", + "$id": "7838", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "The intended number of bytes to be uploaded.", "type": { - "$id": "7826", + "$id": "7839", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102429,13 +102622,13 @@ "isHttpMetadata": false }, { - "$id": "7827", + "$id": "7840", "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": "7828", + "$id": "7841", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102455,13 +102648,13 @@ "isHttpMetadata": false }, { - "$id": "7829", + "$id": "7842", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the Upload.", "type": { - "$ref": "1317" + "$ref": "1318" }, "optional": false, "readOnly": false, @@ -102477,18 +102670,18 @@ "isHttpMetadata": false }, { - "$id": "7830", + "$id": "7843", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the Upload will expire.", "type": { - "$id": "7831", + "$id": "7844", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7832", + "$id": "7845", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102511,13 +102704,13 @@ "isHttpMetadata": false }, { - "$id": "7833", + "$id": "7846", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"upload\".", "type": { - "$ref": "1323" + "$ref": "1324" }, "optional": true, "readOnly": false, @@ -102533,15 +102726,15 @@ "isHttpMetadata": false }, { - "$id": "7834", + "$id": "7847", "kind": "property", "name": "file", "serializedName": "file", "type": { - "$id": "7835", + "$id": "7848", "kind": "nullable", "type": { - "$ref": "3445" + "$ref": "3446" }, "namespace": "OpenAI" }, @@ -102561,7 +102754,7 @@ ] }, { - "$id": "7836", + "$id": "7849", "kind": "model", "name": "AddUploadPartRequest", "namespace": "OpenAI", @@ -102570,13 +102763,13 @@ "decorators": [], "properties": [ { - "$id": "7837", + "$id": "7850", "kind": "property", "name": "data", "serializedName": "data", "doc": "The chunk of bytes for this Part.", "type": { - "$id": "7838", + "$id": "7851", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -102605,7 +102798,7 @@ ] }, { - "$id": "7839", + "$id": "7852", "kind": "model", "name": "UploadPart", "namespace": "OpenAI", @@ -102615,13 +102808,13 @@ "decorators": [], "properties": [ { - "$id": "7840", + "$id": "7853", "kind": "property", "name": "id", "serializedName": "id", "doc": "The upload Part unique identifier, which can be referenced in API endpoints.", "type": { - "$id": "7841", + "$id": "7854", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102641,18 +102834,18 @@ "isHttpMetadata": false }, { - "$id": "7842", + "$id": "7855", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the Part was created.", "type": { - "$id": "7843", + "$id": "7856", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7844", + "$id": "7857", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102675,13 +102868,13 @@ "isHttpMetadata": false }, { - "$id": "7845", + "$id": "7858", "kind": "property", "name": "upload_id", "serializedName": "upload_id", "doc": "The ID of the Upload object that this Part was added to.", "type": { - "$id": "7846", + "$id": "7859", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102701,13 +102894,13 @@ "isHttpMetadata": false }, { - "$id": "7847", + "$id": "7860", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `upload.part`.", "type": { - "$ref": "1753" + "$ref": "1754" }, "optional": false, "readOnly": false, @@ -102725,7 +102918,7 @@ ] }, { - "$id": "7848", + "$id": "7861", "kind": "model", "name": "CompleteUploadRequest", "namespace": "OpenAI", @@ -102734,13 +102927,13 @@ "decorators": [], "properties": [ { - "$id": "7849", + "$id": "7862", "kind": "property", "name": "part_ids", "serializedName": "part_ids", "doc": "The ordered list of Part IDs.", "type": { - "$ref": "2437" + "$ref": "2438" }, "optional": false, "readOnly": false, @@ -102756,13 +102949,13 @@ "isHttpMetadata": false }, { - "$id": "7850", + "$id": "7863", "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": "7851", + "$id": "7864", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102784,7 +102977,7 @@ ] }, { - "$id": "7852", + "$id": "7865", "kind": "model", "name": "BatchRequestInput", "namespace": "OpenAI", @@ -102795,12 +102988,12 @@ "decorators": [], "properties": [ { - "$id": "7853", + "$id": "7866", "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": "7854", + "$id": "7867", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102816,12 +103009,12 @@ "isHttpMetadata": false }, { - "$id": "7855", + "$id": "7868", "kind": "property", "name": "method", "doc": "The HTTP method to be used for the request. Currently only `POST` is supported.", "type": { - "$ref": "1327" + "$ref": "1328" }, "optional": true, "readOnly": false, @@ -102833,12 +103026,12 @@ "isHttpMetadata": false }, { - "$id": "7856", + "$id": "7869", "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": "7857", + "$id": "7870", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -102856,7 +103049,7 @@ ] }, { - "$id": "7858", + "$id": "7871", "kind": "model", "name": "BatchRequestOutput", "namespace": "OpenAI", @@ -102867,11 +103060,11 @@ "decorators": [], "properties": [ { - "$id": "7859", + "$id": "7872", "kind": "property", "name": "id", "type": { - "$id": "7860", + "$id": "7873", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102887,12 +103080,12 @@ "isHttpMetadata": false }, { - "$id": "7861", + "$id": "7874", "kind": "property", "name": "custom_id", "doc": "A developer-provided per-request id that will be used to match outputs to inputs.", "type": { - "$id": "7862", + "$id": "7875", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102908,14 +103101,14 @@ "isHttpMetadata": false }, { - "$id": "7863", + "$id": "7876", "kind": "property", "name": "response", "type": { - "$id": "7864", + "$id": "7877", "kind": "nullable", "type": { - "$id": "7865", + "$id": "7878", "kind": "model", "name": "BatchRequestOutputResponse1", "namespace": "OpenAI", @@ -102924,12 +103117,12 @@ "decorators": [], "properties": [ { - "$id": "7866", + "$id": "7879", "kind": "property", "name": "status_code", "doc": "The HTTP status code of the response", "type": { - "$id": "7867", + "$id": "7880", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102945,12 +103138,12 @@ "isHttpMetadata": false }, { - "$id": "7868", + "$id": "7881", "kind": "property", "name": "request_id", "doc": "An unique identifier for the OpenAI API request. Please include this request ID when contacting support.", "type": { - "$id": "7869", + "$id": "7882", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102966,12 +103159,12 @@ "isHttpMetadata": false }, { - "$id": "7870", + "$id": "7883", "kind": "property", "name": "body", "doc": "The JSON body of the response", "type": { - "$ref": "3945" + "$ref": "3946" }, "optional": true, "readOnly": false, @@ -102996,15 +103189,15 @@ "isHttpMetadata": false }, { - "$id": "7871", + "$id": "7884", "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": "7872", + "$id": "7885", "kind": "nullable", "type": { - "$id": "7873", + "$id": "7886", "kind": "model", "name": "BatchRequestOutputError1", "namespace": "OpenAI", @@ -103013,12 +103206,12 @@ "decorators": [], "properties": [ { - "$id": "7874", + "$id": "7887", "kind": "property", "name": "code", "doc": "A machine-readable error code.", "type": { - "$id": "7875", + "$id": "7888", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103034,12 +103227,12 @@ "isHttpMetadata": false }, { - "$id": "7876", + "$id": "7889", "kind": "property", "name": "message", "doc": "A human-readable error message.", "type": { - "$id": "7877", + "$id": "7890", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103070,13 +103263,13 @@ ] }, { - "$ref": "7865" + "$ref": "7878" }, { - "$ref": "7873" + "$ref": "7886" }, { - "$id": "7878", + "$id": "7891", "kind": "model", "name": "ChatCompletionFunctionChoice", "namespace": "OpenAI", @@ -103092,7 +103285,7 @@ "properties": [] }, { - "$id": "7879", + "$id": "7892", "kind": "model", "name": "ChatCompletionToolChoice", "namespace": "OpenAI", @@ -103108,7 +103301,7 @@ "properties": [] }, { - "$id": "7880", + "$id": "7893", "kind": "model", "name": "FineTuneChatCompletionRequestAssistantMessage", "namespace": "OpenAI", @@ -103117,12 +103310,12 @@ "decorators": [], "properties": [ { - "$id": "7881", + "$id": "7894", "kind": "property", "name": "weight", "doc": "Controls whether the assistant message is trained against (0 or 1)", "type": { - "$ref": "1331" + "$ref": "1332" }, "optional": true, "readOnly": false, @@ -103134,12 +103327,12 @@ "isHttpMetadata": false }, { - "$id": "7882", + "$id": "7895", "kind": "property", "name": "content", "doc": "The contents of the assistant message. Required unless `tool_calls` or `function_call` is specified.", "type": { - "$ref": "3070" + "$ref": "3071" }, "optional": true, "readOnly": false, @@ -103151,12 +103344,12 @@ "isHttpMetadata": false }, { - "$id": "7883", + "$id": "7896", "kind": "property", "name": "refusal", "doc": "The refusal message by the assistant.", "type": { - "$ref": "3076" + "$ref": "3077" }, "optional": true, "readOnly": false, @@ -103168,12 +103361,12 @@ "isHttpMetadata": false }, { - "$id": "7884", + "$id": "7897", "kind": "property", "name": "role", "doc": "The role of the messages author, in this case `assistant`.", "type": { - "$id": "7885", + "$id": "7898", "kind": "enumvalue", "name": "assistant", "value": "assistant", @@ -103181,7 +103374,7 @@ "$ref": "154" }, "enumType": { - "$ref": "2884" + "$ref": "2885" }, "decorators": [] }, @@ -103195,12 +103388,12 @@ "isHttpMetadata": false }, { - "$id": "7886", + "$id": "7899", "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": "7887", + "$id": "7900", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103216,12 +103409,12 @@ "isHttpMetadata": false }, { - "$id": "7888", + "$id": "7901", "kind": "property", "name": "audio", "doc": "Data about a previous audio response from the model.\n[Learn more](/docs/guides/audio).", "type": { - "$ref": "3083" + "$ref": "3084" }, "optional": true, "readOnly": false, @@ -103233,11 +103426,11 @@ "isHttpMetadata": false }, { - "$id": "7889", + "$id": "7902", "kind": "property", "name": "tool_calls", "type": { - "$ref": "2853" + "$ref": "2854" }, "optional": true, "readOnly": false, @@ -103249,12 +103442,12 @@ "isHttpMetadata": false }, { - "$id": "7890", + "$id": "7903", "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": "3089" + "$ref": "3090" }, "optional": true, "readOnly": false, @@ -103268,7 +103461,7 @@ ] }, { - "$id": "7891", + "$id": "7904", "kind": "model", "name": "FineTuneChatRequestInput", "namespace": "OpenAI", @@ -103279,32 +103472,32 @@ "decorators": [], "properties": [ { - "$id": "7892", + "$id": "7905", "kind": "property", "name": "messages", "type": { - "$id": "7893", + "$id": "7906", "kind": "array", "name": "Array46", "valueType": { - "$id": "7894", + "$id": "7907", "kind": "union", "name": "FineTuneChatRequestInputMessage", "variantTypes": [ { - "$ref": "3039" + "$ref": "3040" }, { - "$ref": "3058" + "$ref": "3059" }, { - "$ref": "7880" + "$ref": "7893" }, { - "$ref": "3095" + "$ref": "3096" }, { - "$ref": "3105" + "$ref": "3106" } ], "namespace": "OpenAI", @@ -103323,12 +103516,12 @@ "isHttpMetadata": false }, { - "$id": "7895", + "$id": "7908", "kind": "property", "name": "tools", "doc": "A list of tools the model may generate JSON inputs for.", "type": { - "$ref": "3200" + "$ref": "3201" }, "optional": true, "readOnly": false, @@ -103340,16 +103533,16 @@ "isHttpMetadata": false }, { - "$id": "7896", + "$id": "7909", "kind": "property", "name": "parallel_tool_calls", "type": { - "$id": "7897", + "$id": "7910", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "7898", + "$id": "7911", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -103367,12 +103560,12 @@ "isHttpMetadata": false }, { - "$id": "7899", + "$id": "7912", "kind": "property", "name": "functions", "doc": "A list of functions the model may generate JSON inputs for.", "type": { - "$ref": "3225" + "$ref": "3226" }, "optional": true, "readOnly": false, @@ -103386,7 +103579,7 @@ ] }, { - "$id": "7900", + "$id": "7913", "kind": "model", "name": "FineTuningJobsPageToken", "namespace": "OpenAI", @@ -103396,11 +103589,11 @@ "decorators": [], "properties": [ { - "$id": "7901", + "$id": "7914", "kind": "property", "name": "limit", "type": { - "$id": "7902", + "$id": "7915", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103416,11 +103609,11 @@ "isHttpMetadata": false }, { - "$id": "7903", + "$id": "7916", "kind": "property", "name": "after", "type": { - "$id": "7904", + "$id": "7917", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103438,7 +103631,7 @@ ] }, { - "$id": "7905", + "$id": "7918", "kind": "model", "name": "MessageDeltaContent", "namespace": "OpenAI", @@ -103448,12 +103641,12 @@ "doc": "Represents a single piece of incremental content in an Assistants API streaming response.", "decorators": [], "discriminatorProperty": { - "$id": "7906", + "$id": "7919", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the content item.", "type": { - "$ref": "919" + "$ref": "920" }, "optional": false, "readOnly": false, @@ -103466,12 +103659,12 @@ }, "properties": [ { - "$ref": "7906" + "$ref": "7919" } ], "discriminatedSubtypes": { "image_file": { - "$id": "7907", + "$id": "7920", "kind": "model", "name": "MessageDeltaContentImageFileObject", "namespace": "OpenAI", @@ -103482,16 +103675,16 @@ "discriminatorValue": "image_file", "decorators": [], "baseModel": { - "$ref": "7905" + "$ref": "7918" }, "properties": [ { - "$id": "7908", + "$id": "7921", "kind": "property", "name": "index", "doc": "The index of the content part in the message.", "type": { - "$id": "7909", + "$id": "7922", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103507,12 +103700,12 @@ "isHttpMetadata": false }, { - "$id": "7910", + "$id": "7923", "kind": "property", "name": "type", "doc": "Always `image_file`.", "type": { - "$ref": "5941" + "$ref": "5954" }, "optional": false, "readOnly": false, @@ -103524,11 +103717,11 @@ "isHttpMetadata": false }, { - "$id": "7911", + "$id": "7924", "kind": "property", "name": "image_file", "type": { - "$id": "7912", + "$id": "7925", "kind": "model", "name": "MessageDeltaContentImageFileObjectImageFile", "namespace": "OpenAI", @@ -103537,12 +103730,12 @@ "decorators": [], "properties": [ { - "$id": "7913", + "$id": "7926", "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": "7914", + "$id": "7927", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103558,12 +103751,12 @@ "isHttpMetadata": false }, { - "$id": "7915", + "$id": "7928", "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`.", "type": { - "$ref": "1335" + "$ref": "1336" }, "optional": true, "readOnly": false, @@ -103588,7 +103781,7 @@ ] }, "image_url": { - "$id": "7916", + "$id": "7929", "kind": "model", "name": "MessageDeltaContentImageUrlObject", "namespace": "OpenAI", @@ -103599,16 +103792,16 @@ "discriminatorValue": "image_url", "decorators": [], "baseModel": { - "$ref": "7905" + "$ref": "7918" }, "properties": [ { - "$id": "7917", + "$id": "7930", "kind": "property", "name": "index", "doc": "The index of the content part in the message.", "type": { - "$id": "7918", + "$id": "7931", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103624,12 +103817,12 @@ "isHttpMetadata": false }, { - "$id": "7919", + "$id": "7932", "kind": "property", "name": "type", "doc": "Always `image_url`.", "type": { - "$ref": "6003" + "$ref": "6016" }, "optional": false, "readOnly": false, @@ -103641,11 +103834,11 @@ "isHttpMetadata": false }, { - "$id": "7920", + "$id": "7933", "kind": "property", "name": "image_url", "type": { - "$id": "7921", + "$id": "7934", "kind": "model", "name": "MessageDeltaContentImageUrlObjectImageUrl", "namespace": "OpenAI", @@ -103654,12 +103847,12 @@ "decorators": [], "properties": [ { - "$id": "7922", + "$id": "7935", "kind": "property", "name": "url", "doc": "The URL of the image, must be a supported image types: jpeg, jpg, png, gif, webp.", "type": { - "$id": "7923", + "$id": "7936", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -103675,12 +103868,12 @@ "isHttpMetadata": false }, { - "$id": "7924", + "$id": "7937", "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`.", "type": { - "$ref": "1340" + "$ref": "1341" }, "optional": true, "readOnly": false, @@ -103705,7 +103898,7 @@ ] }, "text": { - "$id": "7925", + "$id": "7938", "kind": "model", "name": "MessageDeltaContentTextObject", "namespace": "OpenAI", @@ -103716,16 +103909,16 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "7905" + "$ref": "7918" }, "properties": [ { - "$id": "7926", + "$id": "7939", "kind": "property", "name": "index", "doc": "The index of the content part in the message.", "type": { - "$id": "7927", + "$id": "7940", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103741,12 +103934,12 @@ "isHttpMetadata": false }, { - "$id": "7928", + "$id": "7941", "kind": "property", "name": "type", "doc": "Always `text`.", "type": { - "$ref": "5955" + "$ref": "5968" }, "optional": false, "readOnly": false, @@ -103758,11 +103951,11 @@ "isHttpMetadata": false }, { - "$id": "7929", + "$id": "7942", "kind": "property", "name": "text", "type": { - "$id": "7930", + "$id": "7943", "kind": "model", "name": "MessageDeltaContentTextObjectText", "namespace": "OpenAI", @@ -103771,12 +103964,12 @@ "decorators": [], "properties": [ { - "$id": "7931", + "$id": "7944", "kind": "property", "name": "value", "doc": "The data that makes up the text.", "type": { - "$id": "7932", + "$id": "7945", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103792,15 +103985,15 @@ "isHttpMetadata": false }, { - "$id": "7933", + "$id": "7946", "kind": "property", "name": "annotations", "type": { - "$id": "7934", + "$id": "7947", "kind": "array", "name": "ArrayMessageDeltaTextContentAnnotation", "valueType": { - "$id": "7935", + "$id": "7948", "kind": "model", "name": "MessageDeltaTextContentAnnotation", "namespace": "OpenAI", @@ -103809,12 +104002,12 @@ "usage": "Output", "decorators": [], "discriminatorProperty": { - "$id": "7936", + "$id": "7949", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the content item.", "type": { - "$ref": "930" + "$ref": "931" }, "optional": false, "readOnly": false, @@ -103827,12 +104020,12 @@ }, "properties": [ { - "$ref": "7936" + "$ref": "7949" } ], "discriminatedSubtypes": { "file_citation": { - "$id": "7937", + "$id": "7950", "kind": "model", "name": "MessageDeltaContentTextAnnotationsFileCitationObject", "namespace": "OpenAI", @@ -103843,16 +104036,16 @@ "discriminatorValue": "file_citation", "decorators": [], "baseModel": { - "$ref": "7935" + "$ref": "7948" }, "properties": [ { - "$id": "7938", + "$id": "7951", "kind": "property", "name": "index", "doc": "The index of the annotation in the text content part.", "type": { - "$id": "7939", + "$id": "7952", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103868,12 +104061,12 @@ "isHttpMetadata": false }, { - "$id": "7940", + "$id": "7953", "kind": "property", "name": "type", "doc": "Always `file_citation`.", "type": { - "$ref": "5968" + "$ref": "5981" }, "optional": false, "readOnly": false, @@ -103885,12 +104078,12 @@ "isHttpMetadata": false }, { - "$id": "7941", + "$id": "7954", "kind": "property", "name": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "7942", + "$id": "7955", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103906,11 +104099,11 @@ "isHttpMetadata": false }, { - "$id": "7943", + "$id": "7956", "kind": "property", "name": "file_citation", "type": { - "$id": "7944", + "$id": "7957", "kind": "model", "name": "MessageDeltaContentTextAnnotationsFileCitationObjectFileCitation", "namespace": "OpenAI", @@ -103919,12 +104112,12 @@ "decorators": [], "properties": [ { - "$id": "7945", + "$id": "7958", "kind": "property", "name": "file_id", "doc": "The ID of the specific File the citation is from.", "type": { - "$id": "7946", + "$id": "7959", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103940,12 +104133,12 @@ "isHttpMetadata": false }, { - "$id": "7947", + "$id": "7960", "kind": "property", "name": "quote", "doc": "The specific quote in the file.", "type": { - "$id": "7948", + "$id": "7961", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103972,11 +104165,11 @@ "isHttpMetadata": false }, { - "$id": "7949", + "$id": "7962", "kind": "property", "name": "start_index", "type": { - "$id": "7950", + "$id": "7963", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103992,11 +104185,11 @@ "isHttpMetadata": false }, { - "$id": "7951", + "$id": "7964", "kind": "property", "name": "end_index", "type": { - "$id": "7952", + "$id": "7965", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104014,7 +104207,7 @@ ] }, "file_path": { - "$id": "7953", + "$id": "7966", "kind": "model", "name": "MessageDeltaContentTextAnnotationsFilePathObject", "namespace": "OpenAI", @@ -104025,16 +104218,16 @@ "discriminatorValue": "file_path", "decorators": [], "baseModel": { - "$ref": "7935" + "$ref": "7948" }, "properties": [ { - "$id": "7954", + "$id": "7967", "kind": "property", "name": "index", "doc": "The index of the annotation in the text content part.", "type": { - "$id": "7955", + "$id": "7968", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104050,12 +104243,12 @@ "isHttpMetadata": false }, { - "$id": "7956", + "$id": "7969", "kind": "property", "name": "type", "doc": "Always `file_path`.", "type": { - "$ref": "5985" + "$ref": "5998" }, "optional": false, "readOnly": false, @@ -104067,12 +104260,12 @@ "isHttpMetadata": false }, { - "$id": "7957", + "$id": "7970", "kind": "property", "name": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "7958", + "$id": "7971", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104088,11 +104281,11 @@ "isHttpMetadata": false }, { - "$id": "7959", + "$id": "7972", "kind": "property", "name": "file_path", "type": { - "$id": "7960", + "$id": "7973", "kind": "model", "name": "MessageDeltaContentTextAnnotationsFilePathObjectFilePath", "namespace": "OpenAI", @@ -104101,12 +104294,12 @@ "decorators": [], "properties": [ { - "$id": "7961", + "$id": "7974", "kind": "property", "name": "file_id", "doc": "The ID of the file that was generated.", "type": { - "$id": "7962", + "$id": "7975", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104133,11 +104326,11 @@ "isHttpMetadata": false }, { - "$id": "7963", + "$id": "7976", "kind": "property", "name": "start_index", "type": { - "$id": "7964", + "$id": "7977", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104153,11 +104346,11 @@ "isHttpMetadata": false }, { - "$id": "7965", + "$id": "7978", "kind": "property", "name": "end_index", "type": { - "$id": "7966", + "$id": "7979", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104202,7 +104395,7 @@ ] }, "refusal": { - "$id": "7967", + "$id": "7980", "kind": "model", "name": "MessageDeltaContentRefusalObject", "namespace": "OpenAI", @@ -104212,16 +104405,16 @@ "discriminatorValue": "refusal", "decorators": [], "baseModel": { - "$ref": "7905" + "$ref": "7918" }, "properties": [ { - "$id": "7968", + "$id": "7981", "kind": "property", "name": "index", "doc": "The index of the refusal part in the message.", "type": { - "$id": "7969", + "$id": "7982", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104237,12 +104430,12 @@ "isHttpMetadata": false }, { - "$id": "7970", + "$id": "7983", "kind": "property", "name": "type", "doc": "Always `refusal`.", "type": { - "$ref": "5998" + "$ref": "6011" }, "optional": false, "readOnly": false, @@ -104254,11 +104447,11 @@ "isHttpMetadata": false }, { - "$id": "7971", + "$id": "7984", "kind": "property", "name": "refusal", "type": { - "$id": "7972", + "$id": "7985", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104278,43 +104471,43 @@ } }, { - "$ref": "7907" + "$ref": "7920" }, { - "$ref": "7912" + "$ref": "7925" }, { - "$ref": "7916" + "$ref": "7929" }, { - "$ref": "7921" + "$ref": "7934" }, { - "$ref": "7925" + "$ref": "7938" }, { - "$ref": "7930" + "$ref": "7943" }, { - "$ref": "7935" + "$ref": "7948" }, { - "$ref": "7937" + "$ref": "7950" }, { - "$ref": "7944" + "$ref": "7957" }, { - "$ref": "7953" + "$ref": "7966" }, { - "$ref": "7960" + "$ref": "7973" }, { - "$ref": "7967" + "$ref": "7980" }, { - "$id": "7973", + "$id": "7986", "kind": "model", "name": "MessageDeltaObject", "namespace": "OpenAI", @@ -104325,12 +104518,12 @@ "decorators": [], "properties": [ { - "$id": "7974", + "$id": "7987", "kind": "property", "name": "id", "doc": "The identifier of the message, which can be referenced in API endpoints.", "type": { - "$id": "7975", + "$id": "7988", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104346,12 +104539,12 @@ "isHttpMetadata": false }, { - "$id": "7976", + "$id": "7989", "kind": "property", "name": "object", "doc": "The object type, which is always `thread.message.delta`.", "type": { - "$ref": "1755" + "$ref": "1756" }, "optional": false, "readOnly": false, @@ -104363,12 +104556,12 @@ "isHttpMetadata": false }, { - "$id": "7977", + "$id": "7990", "kind": "property", "name": "delta", "doc": "The delta containing the fields that have changed on the Message.", "type": { - "$id": "7978", + "$id": "7991", "kind": "model", "name": "MessageDeltaObjectDelta", "namespace": "OpenAI", @@ -104377,12 +104570,12 @@ "decorators": [], "properties": [ { - "$id": "7979", + "$id": "7992", "kind": "property", "name": "role", "doc": "The entity that produced the message. One of `user` or `assistant`.", "type": { - "$ref": "1345" + "$ref": "1346" }, "optional": true, "readOnly": false, @@ -104394,16 +104587,16 @@ "isHttpMetadata": false }, { - "$id": "7980", + "$id": "7993", "kind": "property", "name": "content", "doc": "The content of the message in array of text and/or images.", "type": { - "$id": "7981", + "$id": "7994", "kind": "array", "name": "ArrayMessageDeltaContent", "valueType": { - "$ref": "7905" + "$ref": "7918" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -104431,10 +104624,10 @@ ] }, { - "$ref": "7978" + "$ref": "7991" }, { - "$id": "7982", + "$id": "7995", "kind": "model", "name": "RunStepDeltaObject", "namespace": "OpenAI", @@ -104445,12 +104638,12 @@ "decorators": [], "properties": [ { - "$id": "7983", + "$id": "7996", "kind": "property", "name": "id", "doc": "The identifier of the run step, which can be referenced in API endpoints.", "type": { - "$id": "7984", + "$id": "7997", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104466,12 +104659,12 @@ "isHttpMetadata": false }, { - "$id": "7985", + "$id": "7998", "kind": "property", "name": "object", "doc": "The object type, which is always `thread.run.step.delta`.", "type": { - "$ref": "1757" + "$ref": "1758" }, "optional": false, "readOnly": false, @@ -104483,12 +104676,12 @@ "isHttpMetadata": false }, { - "$id": "7986", + "$id": "7999", "kind": "property", "name": "delta", "doc": "The delta containing the fields that have changed on the run step.", "type": { - "$id": "7987", + "$id": "8000", "kind": "model", "name": "RunStepDeltaObjectDelta", "namespace": "OpenAI", @@ -104497,12 +104690,12 @@ "decorators": [], "properties": [ { - "$id": "7988", + "$id": "8001", "kind": "property", "name": "step_details", "doc": "The details of the run step.", "type": { - "$id": "7989", + "$id": "8002", "kind": "model", "name": "RunStepDeltaStepDetails", "namespace": "OpenAI", @@ -104510,12 +104703,12 @@ "usage": "Output", "decorators": [], "discriminatorProperty": { - "$id": "7990", + "$id": "8003", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the details object.", "type": { - "$ref": "1040" + "$ref": "1041" }, "optional": false, "readOnly": false, @@ -104528,12 +104721,12 @@ }, "properties": [ { - "$ref": "7990" + "$ref": "8003" } ], "discriminatedSubtypes": { "message_creation": { - "$id": "7991", + "$id": "8004", "kind": "model", "name": "RunStepDeltaStepDetailsMessageCreationObject", "namespace": "OpenAI", @@ -104544,16 +104737,16 @@ "discriminatorValue": "message_creation", "decorators": [], "baseModel": { - "$ref": "7989" + "$ref": "8002" }, "properties": [ { - "$id": "7992", + "$id": "8005", "kind": "property", "name": "type", "doc": "Always `message_creation`.", "type": { - "$ref": "6447" + "$ref": "6460" }, "optional": false, "readOnly": false, @@ -104565,11 +104758,11 @@ "isHttpMetadata": false }, { - "$id": "7993", + "$id": "8006", "kind": "property", "name": "message_creation", "type": { - "$id": "7994", + "$id": "8007", "kind": "model", "name": "RunStepDeltaStepDetailsMessageCreationObjectMessageCreation", "namespace": "OpenAI", @@ -104578,12 +104771,12 @@ "decorators": [], "properties": [ { - "$id": "7995", + "$id": "8008", "kind": "property", "name": "message_id", "doc": "The ID of the message that was created by this run step.", "type": { - "$id": "7996", + "$id": "8009", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104612,7 +104805,7 @@ ] }, "tool_calls": { - "$id": "7997", + "$id": "8010", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsObject", "namespace": "OpenAI", @@ -104623,16 +104816,16 @@ "discriminatorValue": "tool_calls", "decorators": [], "baseModel": { - "$ref": "7989" + "$ref": "8002" }, "properties": [ { - "$id": "7998", + "$id": "8011", "kind": "property", "name": "type", "doc": "Always `tool_calls`.", "type": { - "$ref": "6458" + "$ref": "6471" }, "optional": false, "readOnly": false, @@ -104644,16 +104837,16 @@ "isHttpMetadata": false }, { - "$id": "7999", + "$id": "8012", "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": "8000", + "$id": "8013", "kind": "array", "name": "ArrayRunStepDeltaStepDetailsToolCallsObjectToolCallsObject", "valueType": { - "$id": "8001", + "$id": "8014", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsObjectToolCallsObject", "namespace": "OpenAI", @@ -104662,12 +104855,12 @@ "doc": "Abstractly represents a run step tool call details inner object.", "decorators": [], "discriminatorProperty": { - "$id": "8002", + "$id": "8015", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the details object.", "type": { - "$ref": "1044" + "$ref": "1045" }, "optional": false, "readOnly": false, @@ -104680,12 +104873,12 @@ }, "properties": [ { - "$ref": "8002" + "$ref": "8015" } ], "discriminatedSubtypes": { "code_interpreter": { - "$id": "8003", + "$id": "8016", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeObject", "namespace": "OpenAI", @@ -104696,16 +104889,16 @@ "discriminatorValue": "code_interpreter", "decorators": [], "baseModel": { - "$ref": "8001" + "$ref": "8014" }, "properties": [ { - "$id": "8004", + "$id": "8017", "kind": "property", "name": "index", "doc": "The index of the tool call in the tool calls array.", "type": { - "$id": "8005", + "$id": "8018", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104721,12 +104914,12 @@ "isHttpMetadata": false }, { - "$id": "8006", + "$id": "8019", "kind": "property", "name": "id", "doc": "The ID of the tool call.", "type": { - "$id": "8007", + "$id": "8020", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104742,12 +104935,12 @@ "isHttpMetadata": false }, { - "$id": "8008", + "$id": "8021", "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": "6467" + "$ref": "6480" }, "optional": false, "readOnly": false, @@ -104759,12 +104952,12 @@ "isHttpMetadata": false }, { - "$id": "8009", + "$id": "8022", "kind": "property", "name": "code_interpreter", "doc": "The Code Interpreter tool call definition.", "type": { - "$id": "8010", + "$id": "8023", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreter", "namespace": "OpenAI", @@ -104773,12 +104966,12 @@ "decorators": [], "properties": [ { - "$id": "8011", + "$id": "8024", "kind": "property", "name": "input", "doc": "The input to the Code Interpreter tool call.", "type": { - "$id": "8012", + "$id": "8025", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104794,16 +104987,16 @@ "isHttpMetadata": false }, { - "$id": "8013", + "$id": "8026", "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": "8014", + "$id": "8027", "kind": "array", "name": "ArrayRunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreterOutputsObject", "valueType": { - "$id": "8015", + "$id": "8028", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreterOutputsObject", "namespace": "OpenAI", @@ -104812,12 +105005,12 @@ "doc": "Abstractly represents a run step tool call details code interpreter output.", "decorators": [], "discriminatorProperty": { - "$id": "8016", + "$id": "8029", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the details object.", "type": { - "$ref": "1049" + "$ref": "1050" }, "optional": false, "readOnly": false, @@ -104830,12 +105023,12 @@ }, "properties": [ { - "$ref": "8016" + "$ref": "8029" } ], "discriminatedSubtypes": { "logs": { - "$id": "8017", + "$id": "8030", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject", "namespace": "OpenAI", @@ -104846,16 +105039,16 @@ "discriminatorValue": "logs", "decorators": [], "baseModel": { - "$ref": "8015" + "$ref": "8028" }, "properties": [ { - "$id": "8018", + "$id": "8031", "kind": "property", "name": "index", "doc": "The index of the output in the outputs array.", "type": { - "$id": "8019", + "$id": "8032", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104871,12 +105064,12 @@ "isHttpMetadata": false }, { - "$id": "8020", + "$id": "8033", "kind": "property", "name": "type", "doc": "Always `logs`.", "type": { - "$ref": "6483" + "$ref": "6496" }, "optional": false, "readOnly": false, @@ -104888,12 +105081,12 @@ "isHttpMetadata": false }, { - "$id": "8021", + "$id": "8034", "kind": "property", "name": "logs", "doc": "The text output from the Code Interpreter tool call.", "type": { - "$id": "8022", + "$id": "8035", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104911,7 +105104,7 @@ ] }, "image": { - "$id": "8023", + "$id": "8036", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeOutputImageObject", "namespace": "OpenAI", @@ -104921,16 +105114,16 @@ "discriminatorValue": "image", "decorators": [], "baseModel": { - "$ref": "8015" + "$ref": "8028" }, "properties": [ { - "$id": "8024", + "$id": "8037", "kind": "property", "name": "index", "doc": "The index of the output in the outputs array.", "type": { - "$id": "8025", + "$id": "8038", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104946,12 +105139,12 @@ "isHttpMetadata": false }, { - "$id": "8026", + "$id": "8039", "kind": "property", "name": "type", "doc": "Always `image`.", "type": { - "$ref": "6492" + "$ref": "6505" }, "optional": false, "readOnly": false, @@ -104963,11 +105156,11 @@ "isHttpMetadata": false }, { - "$id": "8027", + "$id": "8040", "kind": "property", "name": "image", "type": { - "$id": "8028", + "$id": "8041", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectImage", "namespace": "OpenAI", @@ -104976,12 +105169,12 @@ "decorators": [], "properties": [ { - "$id": "8029", + "$id": "8042", "kind": "property", "name": "file_id", "doc": "The [file](/docs/api-reference/files) ID of the image.", "type": { - "$id": "8030", + "$id": "8043", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105037,7 +105230,7 @@ ] }, "file_search": { - "$id": "8031", + "$id": "8044", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsFileSearchObject", "namespace": "OpenAI", @@ -105047,16 +105240,16 @@ "discriminatorValue": "file_search", "decorators": [], "baseModel": { - "$ref": "8001" + "$ref": "8014" }, "properties": [ { - "$id": "8032", + "$id": "8045", "kind": "property", "name": "index", "doc": "The index of the tool call in the tool calls array.", "type": { - "$id": "8033", + "$id": "8046", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105072,12 +105265,12 @@ "isHttpMetadata": false }, { - "$id": "8034", + "$id": "8047", "kind": "property", "name": "id", "doc": "The ID of the tool call object.", "type": { - "$id": "8035", + "$id": "8048", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105093,12 +105286,12 @@ "isHttpMetadata": false }, { - "$id": "8036", + "$id": "8049", "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": "6499" + "$ref": "6512" }, "optional": false, "readOnly": false, @@ -105110,12 +105303,12 @@ "isHttpMetadata": false }, { - "$id": "8037", + "$id": "8050", "kind": "property", "name": "file_search", "doc": "For now, this is always going to be an empty object.", "type": { - "$id": "8038", + "$id": "8051", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsFileSearchObjectFileSearch", "namespace": "OpenAI", @@ -105124,11 +105317,11 @@ "decorators": [], "properties": [ { - "$id": "8039", + "$id": "8052", "kind": "property", "name": "ranking_options", "type": { - "$ref": "6503" + "$ref": "6516" }, "optional": true, "readOnly": false, @@ -105140,12 +105333,12 @@ "isHttpMetadata": false }, { - "$id": "8040", + "$id": "8053", "kind": "property", "name": "results", "doc": "The results of the file search.", "type": { - "$ref": "6508" + "$ref": "6521" }, "optional": true, "readOnly": true, @@ -105170,7 +105363,7 @@ ] }, "function": { - "$id": "8041", + "$id": "8054", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsFunctionObject", "namespace": "OpenAI", @@ -105180,16 +105373,16 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "8001" + "$ref": "8014" }, "properties": [ { - "$id": "8042", + "$id": "8055", "kind": "property", "name": "index", "doc": "The index of the tool call in the tool calls array.", "type": { - "$id": "8043", + "$id": "8056", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105205,12 +105398,12 @@ "isHttpMetadata": false }, { - "$id": "8044", + "$id": "8057", "kind": "property", "name": "id", "doc": "The ID of the tool call object.", "type": { - "$id": "8045", + "$id": "8058", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105226,12 +105419,12 @@ "isHttpMetadata": false }, { - "$id": "8046", + "$id": "8059", "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": "6528" + "$ref": "6541" }, "optional": false, "readOnly": false, @@ -105243,12 +105436,12 @@ "isHttpMetadata": false }, { - "$id": "8047", + "$id": "8060", "kind": "property", "name": "function", "doc": "The definition of the function that was called.", "type": { - "$id": "8048", + "$id": "8061", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsFunctionObjectFunction", "namespace": "OpenAI", @@ -105257,12 +105450,12 @@ "decorators": [], "properties": [ { - "$id": "8049", + "$id": "8062", "kind": "property", "name": "name", "doc": "The name of the function.", "type": { - "$id": "8050", + "$id": "8063", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105278,12 +105471,12 @@ "isHttpMetadata": false }, { - "$id": "8051", + "$id": "8064", "kind": "property", "name": "arguments", "doc": "The arguments passed to the function.", "type": { - "$id": "8052", + "$id": "8065", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105299,15 +105492,15 @@ "isHttpMetadata": false }, { - "$id": "8053", + "$id": "8066", "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": "8054", + "$id": "8067", "kind": "nullable", "type": { - "$id": "8055", + "$id": "8068", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105378,55 +105571,55 @@ ] }, { - "$ref": "7987" + "$ref": "8000" }, { - "$ref": "7989" + "$ref": "8002" }, { - "$ref": "7991" + "$ref": "8004" }, { - "$ref": "7994" + "$ref": "8007" }, { - "$ref": "7997" + "$ref": "8010" }, { - "$ref": "8001" + "$ref": "8014" }, { - "$ref": "8003" + "$ref": "8016" }, { - "$ref": "8010" + "$ref": "8023" }, { - "$ref": "8015" + "$ref": "8028" }, { - "$ref": "8017" + "$ref": "8030" }, { - "$ref": "8023" + "$ref": "8036" }, { - "$ref": "8028" + "$ref": "8041" }, { - "$ref": "8031" + "$ref": "8044" }, { - "$ref": "8038" + "$ref": "8051" }, { - "$ref": "8041" + "$ref": "8054" }, { - "$ref": "8048" + "$ref": "8061" }, { - "$id": "8056", + "$id": "8069", "kind": "model", "name": "CreateThreadRequestToolResourcesFileSearchBase", "namespace": "OpenAI", @@ -105437,7 +105630,7 @@ "properties": [] }, { - "$id": "8057", + "$id": "8070", "kind": "model", "name": "AssistantCollectionOptions", "namespace": "OpenAI", @@ -105447,12 +105640,12 @@ "decorators": [], "properties": [ { - "$id": "8058", + "$id": "8071", "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": "8059", + "$id": "8072", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105468,12 +105661,12 @@ "isHttpMetadata": true }, { - "$id": "8060", + "$id": "8073", "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": "8061", + "$id": "8074", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105489,12 +105682,12 @@ "isHttpMetadata": true }, { - "$id": "8062", + "$id": "8075", "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": "8063", + "$id": "8076", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105510,12 +105703,12 @@ "isHttpMetadata": true }, { - "$id": "8064", + "$id": "8077", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1349" + "$ref": "1350" }, "optional": true, "readOnly": false, @@ -105529,7 +105722,7 @@ ] }, { - "$id": "8065", + "$id": "8078", "kind": "model", "name": "MessageCollectionOptions", "namespace": "OpenAI", @@ -105539,12 +105732,12 @@ "decorators": [], "properties": [ { - "$id": "8066", + "$id": "8079", "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": "8067", + "$id": "8080", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105560,12 +105753,12 @@ "isHttpMetadata": true }, { - "$id": "8068", + "$id": "8081", "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": "8069", + "$id": "8082", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105581,12 +105774,12 @@ "isHttpMetadata": true }, { - "$id": "8070", + "$id": "8083", "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": "8071", + "$id": "8084", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105602,12 +105795,12 @@ "isHttpMetadata": true }, { - "$id": "8072", + "$id": "8085", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1353" + "$ref": "1354" }, "optional": true, "readOnly": false, @@ -105621,7 +105814,7 @@ ] }, { - "$id": "8073", + "$id": "8086", "kind": "model", "name": "RunCollectionOptions", "namespace": "OpenAI", @@ -105631,12 +105824,12 @@ "decorators": [], "properties": [ { - "$id": "8074", + "$id": "8087", "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": "8075", + "$id": "8088", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105652,12 +105845,12 @@ "isHttpMetadata": true }, { - "$id": "8076", + "$id": "8089", "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": "8077", + "$id": "8090", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105673,12 +105866,12 @@ "isHttpMetadata": true }, { - "$id": "8078", + "$id": "8091", "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": "8079", + "$id": "8092", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105694,12 +105887,12 @@ "isHttpMetadata": true }, { - "$id": "8080", + "$id": "8093", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1357" + "$ref": "1358" }, "optional": true, "readOnly": false, @@ -105713,7 +105906,7 @@ ] }, { - "$id": "8081", + "$id": "8094", "kind": "model", "name": "RunStepCollectionOptions", "namespace": "OpenAI", @@ -105723,12 +105916,12 @@ "decorators": [], "properties": [ { - "$id": "8082", + "$id": "8095", "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": "8096", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105744,12 +105937,12 @@ "isHttpMetadata": true }, { - "$id": "8084", + "$id": "8097", "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": "8098", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105765,12 +105958,12 @@ "isHttpMetadata": true }, { - "$id": "8086", + "$id": "8099", "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": "8100", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105786,12 +105979,12 @@ "isHttpMetadata": true }, { - "$id": "8088", + "$id": "8101", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1361" + "$ref": "1362" }, "optional": true, "readOnly": false, @@ -105805,7 +105998,7 @@ ] }, { - "$id": "8089", + "$id": "8102", "kind": "model", "name": "DotNetChatResponseFormat", "namespace": "OpenAI", @@ -105819,7 +106012,7 @@ } ], "discriminatorProperty": { - "$id": "8090", + "$id": "8103", "kind": "property", "name": "type", "type": { @@ -105836,12 +106029,12 @@ }, "properties": [ { - "$ref": "8090" + "$ref": "8103" } ], "discriminatedSubtypes": { "text": { - "$id": "8091", + "$id": "8104", "kind": "model", "name": "DotNetChatResponseFormatText", "namespace": "OpenAI", @@ -105856,16 +106049,16 @@ } ], "baseModel": { - "$ref": "8089" + "$ref": "8102" }, "properties": [ { - "$id": "8092", + "$id": "8105", "kind": "property", "name": "type", "doc": "The type of response format being defined. Always `text`.", "type": { - "$ref": "2483" + "$ref": "2484" }, "optional": false, "readOnly": false, @@ -105879,7 +106072,7 @@ ] }, "json_object": { - "$id": "8093", + "$id": "8106", "kind": "model", "name": "DotNetChatResponseFormatJsonObject", "namespace": "OpenAI", @@ -105894,16 +106087,16 @@ } ], "baseModel": { - "$ref": "8089" + "$ref": "8102" }, "properties": [ { - "$id": "8094", + "$id": "8107", "kind": "property", "name": "type", "doc": "The type of response format being defined. Always `json_object`.", "type": { - "$ref": "2461" + "$ref": "2462" }, "optional": false, "readOnly": false, @@ -105917,7 +106110,7 @@ ] }, "json_schema": { - "$id": "8095", + "$id": "8108", "kind": "model", "name": "DotNetChatResponseFormatJsonSchema", "namespace": "OpenAI", @@ -105932,15 +106125,15 @@ } ], "baseModel": { - "$ref": "8089" + "$ref": "8102" }, "properties": [ { - "$id": "8096", + "$id": "8109", "kind": "property", "name": "type", "type": { - "$ref": "2469" + "$ref": "2470" }, "optional": false, "readOnly": false, @@ -105952,11 +106145,11 @@ "isHttpMetadata": false }, { - "$id": "8097", + "$id": "8110", "kind": "property", "name": "json_schema", "type": { - "$id": "8098", + "$id": "8111", "kind": "model", "name": "DotNetChatResponseFormatJsonSchemaJsonSchema", "namespace": "OpenAI", @@ -105965,11 +106158,11 @@ "decorators": [], "properties": [ { - "$id": "8099", + "$id": "8112", "kind": "property", "name": "description", "type": { - "$id": "8100", + "$id": "8113", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105985,11 +106178,11 @@ "isHttpMetadata": false }, { - "$id": "8101", + "$id": "8114", "kind": "property", "name": "name", "type": { - "$id": "8102", + "$id": "8115", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106005,11 +106198,11 @@ "isHttpMetadata": false }, { - "$id": "8103", + "$id": "8116", "kind": "property", "name": "schema", "type": { - "$id": "8104", + "$id": "8117", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -106025,14 +106218,14 @@ "isHttpMetadata": false }, { - "$id": "8105", + "$id": "8118", "kind": "property", "name": "strict", "type": { - "$id": "8106", + "$id": "8119", "kind": "nullable", "type": { - "$id": "8107", + "$id": "8120", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -106065,19 +106258,19 @@ } }, { - "$ref": "8091" + "$ref": "8104" }, { - "$ref": "8093" + "$ref": "8106" }, { - "$ref": "8095" + "$ref": "8108" }, { - "$ref": "8098" + "$ref": "8111" }, { - "$id": "8108", + "$id": "8121", "kind": "model", "name": "DotNetAssistantResponseFormat", "namespace": "OpenAI", @@ -106086,7 +106279,7 @@ "usage": "Input,Output", "decorators": [], "discriminatorProperty": { - "$id": "8109", + "$id": "8122", "kind": "property", "name": "type", "type": { @@ -106103,12 +106296,12 @@ }, "properties": [ { - "$ref": "8109" + "$ref": "8122" } ], "discriminatedSubtypes": { "text": { - "$id": "8110", + "$id": "8123", "kind": "model", "name": "DotNetAssistantResponseFormatText", "namespace": "OpenAI", @@ -106118,16 +106311,16 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "8108" + "$ref": "8121" }, "properties": [ { - "$id": "8111", + "$id": "8124", "kind": "property", "name": "type", "doc": "The type of response format being defined. Always `text`.", "type": { - "$ref": "2483" + "$ref": "2484" }, "optional": false, "readOnly": false, @@ -106141,7 +106334,7 @@ ] }, "json_object": { - "$id": "8112", + "$id": "8125", "kind": "model", "name": "DotNetAssistantResponseFormatJsonObject", "namespace": "OpenAI", @@ -106151,16 +106344,16 @@ "discriminatorValue": "json_object", "decorators": [], "baseModel": { - "$ref": "8108" + "$ref": "8121" }, "properties": [ { - "$id": "8113", + "$id": "8126", "kind": "property", "name": "type", "doc": "The type of response format being defined. Always `json_object`.", "type": { - "$ref": "2461" + "$ref": "2462" }, "optional": false, "readOnly": false, @@ -106174,7 +106367,7 @@ ] }, "json_schema": { - "$id": "8114", + "$id": "8127", "kind": "model", "name": "DotNetAssistantResponseFormatJsonSchema", "namespace": "OpenAI", @@ -106184,15 +106377,15 @@ "discriminatorValue": "json_schema", "decorators": [], "baseModel": { - "$ref": "8108" + "$ref": "8121" }, "properties": [ { - "$id": "8115", + "$id": "8128", "kind": "property", "name": "type", "type": { - "$ref": "2469" + "$ref": "2470" }, "optional": false, "readOnly": false, @@ -106204,11 +106397,11 @@ "isHttpMetadata": false }, { - "$id": "8116", + "$id": "8129", "kind": "property", "name": "json_schema", "type": { - "$id": "8117", + "$id": "8130", "kind": "model", "name": "DotNetAssistantResponseFormatJsonSchemaJsonSchema", "namespace": "OpenAI", @@ -106217,11 +106410,11 @@ "decorators": [], "properties": [ { - "$id": "8118", + "$id": "8131", "kind": "property", "name": "description", "type": { - "$id": "8119", + "$id": "8132", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106237,11 +106430,11 @@ "isHttpMetadata": false }, { - "$id": "8120", + "$id": "8133", "kind": "property", "name": "name", "type": { - "$id": "8121", + "$id": "8134", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106257,11 +106450,11 @@ "isHttpMetadata": false }, { - "$id": "8122", + "$id": "8135", "kind": "property", "name": "schema", "type": { - "$id": "8123", + "$id": "8136", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -106277,14 +106470,14 @@ "isHttpMetadata": false }, { - "$id": "8124", + "$id": "8137", "kind": "property", "name": "strict", "type": { - "$id": "8125", + "$id": "8138", "kind": "nullable", "type": { - "$id": "8126", + "$id": "8139", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -106317,19 +106510,19 @@ } }, { - "$ref": "8110" + "$ref": "8123" }, { - "$ref": "8112" + "$ref": "8125" }, { - "$ref": "8114" + "$ref": "8127" }, { - "$ref": "8117" + "$ref": "8130" }, { - "$id": "8127", + "$id": "8140", "kind": "model", "name": "DotNetAudioLogProbsProperties", "namespace": "OpenAI", @@ -106339,12 +106532,12 @@ "decorators": [], "properties": [ { - "$id": "8128", + "$id": "8141", "kind": "property", "name": "token", "doc": "The token that was used to generate the log probability.", "type": { - "$id": "8129", + "$id": "8142", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106360,12 +106553,12 @@ "isHttpMetadata": false }, { - "$id": "8130", + "$id": "8143", "kind": "property", "name": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "8131", + "$id": "8144", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -106381,12 +106574,12 @@ "isHttpMetadata": false }, { - "$id": "8132", + "$id": "8145", "kind": "property", "name": "bytes", "doc": "The bytes that were used to generate the log probability.", "type": { - "$ref": "2670" + "$ref": "2671" }, "optional": false, "readOnly": false, @@ -106400,7 +106593,7 @@ ] }, { - "$id": "8133", + "$id": "8146", "kind": "model", "name": "DotNetRealtimeLogProbsProperties", "namespace": "OpenAI", @@ -106410,12 +106603,12 @@ "decorators": [], "properties": [ { - "$id": "8134", + "$id": "8147", "kind": "property", "name": "token", "doc": "The token that was used to generate the log probability.", "type": { - "$id": "8135", + "$id": "8148", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106431,12 +106624,12 @@ "isHttpMetadata": false }, { - "$id": "8136", + "$id": "8149", "kind": "property", "name": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "8137", + "$id": "8150", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -106452,12 +106645,12 @@ "isHttpMetadata": false }, { - "$id": "8138", + "$id": "8151", "kind": "property", "name": "bytes", "doc": "The bytes that were used to generate the log probability.", "type": { - "$ref": "2670" + "$ref": "2671" }, "optional": false, "readOnly": false, @@ -106471,7 +106664,7 @@ ] }, { - "$id": "8139", + "$id": "8152", "kind": "model", "name": "DotNetCombinedJsonTranscriptionResponse", "namespace": "OpenAI", @@ -106481,12 +106674,12 @@ "decorators": [], "properties": [ { - "$id": "8140", + "$id": "8153", "kind": "property", "name": "task", "doc": "The task label.", "type": { - "$ref": "1759" + "$ref": "1760" }, "optional": false, "readOnly": false, @@ -106498,12 +106691,12 @@ "isHttpMetadata": false }, { - "$id": "8141", + "$id": "8154", "kind": "property", "name": "language", "doc": "The language of the input audio.", "type": { - "$id": "8142", + "$id": "8155", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106519,17 +106712,17 @@ "isHttpMetadata": false }, { - "$id": "8143", + "$id": "8156", "kind": "property", "name": "duration", "doc": "The duration of the input audio.", "type": { - "$id": "8144", + "$id": "8157", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "8145", + "$id": "8158", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -106548,12 +106741,12 @@ "isHttpMetadata": false }, { - "$id": "8146", + "$id": "8159", "kind": "property", "name": "text", "doc": "The transcribed text.", "type": { - "$id": "8147", + "$id": "8160", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106569,12 +106762,12 @@ "isHttpMetadata": false }, { - "$id": "8148", + "$id": "8161", "kind": "property", "name": "words", "doc": "Extracted words and their corresponding timestamps.", "type": { - "$ref": "2644" + "$ref": "2645" }, "optional": true, "readOnly": true, @@ -106586,12 +106779,12 @@ "isHttpMetadata": false }, { - "$id": "8149", + "$id": "8162", "kind": "property", "name": "segments", "doc": "Segments of the transcribed text and their corresponding details.", "type": { - "$ref": "2655" + "$ref": "2656" }, "optional": true, "readOnly": true, @@ -106603,11 +106796,11 @@ "isHttpMetadata": false }, { - "$id": "8150", + "$id": "8163", "kind": "property", "name": "logprobs", "type": { - "$ref": "7400" + "$ref": "7413" }, "optional": true, "readOnly": false, @@ -106621,7 +106814,7 @@ ] }, { - "$id": "8151", + "$id": "8164", "kind": "model", "name": "BatchCollectionOptions", "namespace": "OpenAI", @@ -106631,12 +106824,12 @@ "decorators": [], "properties": [ { - "$id": "8152", + "$id": "8165", "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": "8153", + "$id": "8166", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106652,12 +106845,12 @@ "isHttpMetadata": true }, { - "$id": "8154", + "$id": "8167", "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": "8155", + "$id": "8168", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106675,7 +106868,7 @@ ] }, { - "$id": "8156", + "$id": "8169", "kind": "model", "name": "ChatCompletionCollectionOptions", "namespace": "OpenAI", @@ -106690,12 +106883,12 @@ ], "properties": [ { - "$id": "8157", + "$id": "8170", "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": "8158", + "$id": "8171", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106711,12 +106904,12 @@ "isHttpMetadata": true }, { - "$id": "8159", + "$id": "8172", "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": "8160", + "$id": "8173", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106732,12 +106925,12 @@ "isHttpMetadata": true }, { - "$id": "8161", + "$id": "8174", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1365" + "$ref": "1366" }, "optional": true, "readOnly": false, @@ -106749,11 +106942,11 @@ "isHttpMetadata": true }, { - "$id": "8162", + "$id": "8175", "kind": "property", "name": "metadata", "type": { - "$ref": "2444" + "$ref": "2445" }, "optional": true, "readOnly": false, @@ -106765,11 +106958,11 @@ "isHttpMetadata": true }, { - "$id": "8163", + "$id": "8176", "kind": "property", "name": "model", "type": { - "$id": "8164", + "$id": "8177", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106787,7 +106980,7 @@ ] }, { - "$id": "8165", + "$id": "8178", "kind": "model", "name": "ChatCompletionMessageCollectionOptions", "namespace": "OpenAI", @@ -106802,12 +106995,12 @@ ], "properties": [ { - "$id": "8166", + "$id": "8179", "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": "8167", + "$id": "8180", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106823,12 +107016,12 @@ "isHttpMetadata": true }, { - "$id": "8168", + "$id": "8181", "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": "8169", + "$id": "8182", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106844,12 +107037,12 @@ "isHttpMetadata": true }, { - "$id": "8170", + "$id": "8183", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1369" + "$ref": "1370" }, "optional": true, "readOnly": false, @@ -106863,7 +107056,7 @@ ] }, { - "$id": "8171", + "$id": "8184", "kind": "model", "name": "ContainerCollectionOptions", "namespace": "OpenAI", @@ -106873,12 +107066,12 @@ "decorators": [], "properties": [ { - "$id": "8172", + "$id": "8185", "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": "8173", + "$id": "8186", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106894,12 +107087,12 @@ "isHttpMetadata": true }, { - "$id": "8174", + "$id": "8187", "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": "8175", + "$id": "8188", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106915,12 +107108,12 @@ "isHttpMetadata": true }, { - "$id": "8176", + "$id": "8189", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1373" + "$ref": "1374" }, "optional": true, "readOnly": false, @@ -106934,7 +107127,7 @@ ] }, { - "$id": "8177", + "$id": "8190", "kind": "model", "name": "ContainerFileCollectionOptions", "namespace": "OpenAI", @@ -106944,12 +107137,12 @@ "decorators": [], "properties": [ { - "$id": "8178", + "$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": "8179", + "$id": "8192", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106965,12 +107158,12 @@ "isHttpMetadata": true }, { - "$id": "8180", + "$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": "8181", + "$id": "8194", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106986,12 +107179,12 @@ "isHttpMetadata": true }, { - "$id": "8182", + "$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.", "type": { - "$ref": "1373" + "$ref": "1374" }, "optional": true, "readOnly": false, @@ -107005,7 +107198,7 @@ ] }, { - "$id": "8183", + "$id": "8196", "kind": "model", "name": "ConversationItemCollectionOptions", "namespace": "OpenAI", @@ -107015,12 +107208,12 @@ "decorators": [], "properties": [ { - "$id": "8184", + "$id": "8197", "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": "8185", + "$id": "8198", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107036,12 +107229,12 @@ "isHttpMetadata": true }, { - "$id": "8186", + "$id": "8199", "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": "8187", + "$id": "8200", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -107057,12 +107250,12 @@ "isHttpMetadata": true }, { - "$id": "8188", + "$id": "8201", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1377" + "$ref": "1378" }, "optional": true, "readOnly": false, @@ -107076,7 +107269,7 @@ ] }, { - "$id": "8189", + "$id": "8202", "kind": "model", "name": "ResponseItemCollectionOptions", "namespace": "OpenAI", @@ -107091,12 +107284,12 @@ ], "properties": [ { - "$id": "8190", + "$id": "8203", "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": "8204", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107112,12 +107305,12 @@ "isHttpMetadata": true }, { - "$id": "8192", + "$id": "8205", "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": "8193", + "$id": "8206", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107133,12 +107326,12 @@ "isHttpMetadata": true }, { - "$id": "8194", + "$id": "8207", "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": "8195", + "$id": "8208", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -107154,12 +107347,12 @@ "isHttpMetadata": true }, { - "$id": "8196", + "$id": "8209", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1381" + "$ref": "1382" }, "optional": true, "readOnly": false, @@ -107173,7 +107366,7 @@ ] }, { - "$id": "8197", + "$id": "8210", "kind": "model", "name": "DotNetCustomToolCallApprovalPolicy", "namespace": "OpenAI", @@ -107188,12 +107381,12 @@ ], "properties": [ { - "$id": "8198", + "$id": "8211", "kind": "property", "name": "always", "doc": "A list of tools that always require approval.", "type": { - "$ref": "4524" + "$ref": "4537" }, "optional": true, "readOnly": false, @@ -107205,12 +107398,12 @@ "isHttpMetadata": false }, { - "$id": "8199", + "$id": "8212", "kind": "property", "name": "never", "doc": "A list of tools that never require approval.", "type": { - "$ref": "4524" + "$ref": "4537" }, "optional": true, "readOnly": false, @@ -107224,7 +107417,7 @@ ] }, { - "$id": "8200", + "$id": "8213", "kind": "model", "name": "DotNetToolCallApprovalPolicy", "namespace": "OpenAI", @@ -107239,11 +107432,11 @@ ], "properties": [ { - "$id": "8201", + "$id": "8214", "kind": "property", "name": "global_policy", "type": { - "$ref": "1385" + "$ref": "1386" }, "optional": true, "readOnly": false, @@ -107255,11 +107448,11 @@ "isHttpMetadata": false }, { - "$id": "8202", + "$id": "8215", "kind": "property", "name": "custom_policy", "type": { - "$ref": "8197" + "$ref": "8210" }, "optional": true, "readOnly": false, @@ -107273,7 +107466,7 @@ ] }, { - "$id": "8203", + "$id": "8216", "kind": "model", "name": "DotNetCodeInterpreterToolContainer", "namespace": "OpenAI", @@ -107288,11 +107481,11 @@ ], "properties": [ { - "$id": "8204", + "$id": "8217", "kind": "property", "name": "container_id", "type": { - "$id": "8205", + "$id": "8218", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107308,11 +107501,11 @@ "isHttpMetadata": false }, { - "$id": "8206", + "$id": "8219", "kind": "property", "name": "container", "type": { - "$ref": "4477" + "$ref": "4490" }, "optional": true, "readOnly": false, @@ -107326,7 +107519,7 @@ ] }, { - "$id": "8207", + "$id": "8220", "kind": "model", "name": "DotNetCombinedChunkingStrategyParam", "namespace": "OpenAI", @@ -107334,11 +107527,11 @@ "usage": "Input,Output", "decorators": [], "discriminatorProperty": { - "$id": "8208", + "$id": "8221", "kind": "property", "name": "type", "type": { - "$ref": "1389" + "$ref": "1390" }, "optional": false, "readOnly": false, @@ -107351,12 +107544,12 @@ }, "properties": [ { - "$ref": "8208" + "$ref": "8221" } ], "discriminatedSubtypes": { "auto": { - "$id": "8209", + "$id": "8222", "kind": "model", "name": "DotNetCombinedAutoChunkingStrategyParam", "namespace": "OpenAI", @@ -107366,31 +107559,31 @@ "discriminatorValue": "auto", "decorators": [], "baseModel": { - "$ref": "8207" + "$ref": "8220" }, "properties": [ { - "$id": "8210", + "$id": "8223", "kind": "property", "name": "type", "doc": "Always `auto`.", "type": { - "$id": "8211", + "$id": "8224", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1390" + "$ref": "1391" }, "enumType": { - "$id": "8212", + "$id": "8225", "kind": "enum", "decorators": [], "name": "DotNetCombinedChunkingStrategyParamType", "isGeneratedName": true, "namespace": "OpenAI", "valueType": { - "$id": "8213", + "$id": "8226", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -107399,42 +107592,42 @@ }, "values": [ { - "$id": "8214", + "$id": "8227", "kind": "enumvalue", "decorators": [], "name": "auto", "value": "auto", "valueType": { - "$ref": "8213" + "$ref": "8226" }, "enumType": { - "$ref": "8212" + "$ref": "8225" } }, { - "$id": "8215", + "$id": "8228", "kind": "enumvalue", "decorators": [], "name": "static", "value": "static", "valueType": { - "$ref": "8213" + "$ref": "8226" }, "enumType": { - "$ref": "8212" + "$ref": "8225" } }, { - "$id": "8216", + "$id": "8229", "kind": "enumvalue", "decorators": [], "name": "other", "value": "other", "valueType": { - "$ref": "8213" + "$ref": "8226" }, "enumType": { - "$ref": "8212" + "$ref": "8225" } } ], @@ -107461,7 +107654,7 @@ ] }, "static": { - "$id": "8217", + "$id": "8230", "kind": "model", "name": "DotNetCombinedStaticChunkingStrategyParam", "namespace": "OpenAI", @@ -107471,24 +107664,24 @@ "discriminatorValue": "static", "decorators": [], "baseModel": { - "$ref": "8207" + "$ref": "8220" }, "properties": [ { - "$id": "8218", + "$id": "8231", "kind": "property", "name": "type", "doc": "Always `static`.", "type": { - "$id": "8219", + "$id": "8232", "kind": "enumvalue", "name": "static", "value": "static", "valueType": { - "$ref": "1390" + "$ref": "1391" }, "enumType": { - "$ref": "8212" + "$ref": "8225" }, "decorators": [] }, @@ -107502,11 +107695,11 @@ "isHttpMetadata": false }, { - "$id": "8220", + "$id": "8233", "kind": "property", "name": "static", "type": { - "$ref": "2544" + "$ref": "2545" }, "optional": false, "readOnly": false, @@ -107520,7 +107713,7 @@ ] }, "other": { - "$id": "8221", + "$id": "8234", "kind": "model", "name": "DotNetCombinedOtherChunkingStrategyParam", "namespace": "OpenAI", @@ -107530,24 +107723,24 @@ "discriminatorValue": "other", "decorators": [], "baseModel": { - "$ref": "8207" + "$ref": "8220" }, "properties": [ { - "$id": "8222", + "$id": "8235", "kind": "property", "name": "type", "doc": "Always `other`.", "type": { - "$id": "8223", + "$id": "8236", "kind": "enumvalue", "name": "other", "value": "other", "valueType": { - "$ref": "1390" + "$ref": "1391" }, "enumType": { - "$ref": "8212" + "$ref": "8225" }, "decorators": [] }, @@ -107565,16 +107758,16 @@ } }, { - "$ref": "8209" + "$ref": "8222" }, { - "$ref": "8217" + "$ref": "8230" }, { - "$ref": "8221" + "$ref": "8234" }, { - "$id": "8224", + "$id": "8237", "kind": "model", "name": "VectorStoreCollectionOptions", "namespace": "OpenAI", @@ -107584,12 +107777,12 @@ "decorators": [], "properties": [ { - "$id": "8225", + "$id": "8238", "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": "8226", + "$id": "8239", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107605,12 +107798,12 @@ "isHttpMetadata": true }, { - "$id": "8227", + "$id": "8240", "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": "8228", + "$id": "8241", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107626,12 +107819,12 @@ "isHttpMetadata": true }, { - "$id": "8229", + "$id": "8242", "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": "8230", + "$id": "8243", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -107647,12 +107840,12 @@ "isHttpMetadata": true }, { - "$id": "8231", + "$id": "8244", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "optional": true, "readOnly": false, @@ -107666,7 +107859,7 @@ ] }, { - "$id": "8232", + "$id": "8245", "kind": "model", "name": "VectorStoreFileCollectionOptions", "namespace": "OpenAI", @@ -107676,12 +107869,12 @@ "decorators": [], "properties": [ { - "$id": "8233", + "$id": "8246", "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": "8234", + "$id": "8247", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107697,12 +107890,12 @@ "isHttpMetadata": true }, { - "$id": "8235", + "$id": "8248", "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": "8236", + "$id": "8249", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107718,12 +107911,12 @@ "isHttpMetadata": true }, { - "$id": "8237", + "$id": "8250", "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": "8238", + "$id": "8251", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -107739,12 +107932,12 @@ "isHttpMetadata": true }, { - "$id": "8239", + "$id": "8252", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1398" + "$ref": "1399" }, "optional": true, "readOnly": false, @@ -107756,11 +107949,11 @@ "isHttpMetadata": true }, { - "$id": "8240", + "$id": "8253", "kind": "property", "name": "filter", "type": { - "$ref": "1402" + "$ref": "1403" }, "optional": true, "readOnly": false, @@ -107774,7 +107967,7 @@ ] }, { - "$id": "8241", + "$id": "8254", "kind": "model", "name": "VideoCollectionOptions", "namespace": "OpenAI", @@ -107784,12 +107977,12 @@ "decorators": [], "properties": [ { - "$id": "8242", + "$id": "8255", "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": "8243", + "$id": "8256", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107805,12 +107998,12 @@ "isHttpMetadata": true }, { - "$id": "8244", + "$id": "8257", "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": "8245", + "$id": "8258", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -107826,12 +108019,12 @@ "isHttpMetadata": true }, { - "$id": "8246", + "$id": "8259", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1408" + "$ref": "1409" }, "optional": true, "readOnly": false, @@ -107847,20 +108040,20 @@ ], "clients": [ { - "$id": "8247", + "$id": "8260", "kind": "client", "name": "OpenAIClient", "namespace": "OpenAI", "methods": [], "parameters": [ { - "$id": "8248", + "$id": "8261", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8249", + "$id": "8262", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -107871,7 +108064,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8250", + "$id": "8263", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -107890,32 +108083,32 @@ "apiVersions": [], "children": [ { - "$id": "8251", + "$id": "8264", "kind": "client", "name": "Assistants", "namespace": "OpenAI", "methods": [ { - "$id": "8252", + "$id": "8265", "kind": "paging", "name": "GetAssistants", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of assistants.", "operation": { - "$id": "8253", + "$id": "8266", "name": "GetAssistants", "resourceName": "Assistants", "summary": "Returns a list of assistants.", "accessibility": "public", "parameters": [ { - "$id": "8254", + "$id": "8267", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1761" + "$ref": "1762" }, "isApiVersion": false, "optional": false, @@ -107926,12 +108119,12 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.listAssistants.accept" }, { - "$id": "8255", + "$id": "8268", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "1763" + "$ref": "1764" }, "isApiVersion": false, "optional": false, @@ -107942,13 +108135,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.listAssistants.openAIBeta" }, { - "$id": "8256", + "$id": "8269", "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": "8257", + "$id": "8270", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -107963,13 +108156,13 @@ "readOnly": false }, { - "$id": "8258", + "$id": "8271", "kind": "query", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "isApiVersion": false, "explode": false, @@ -107980,13 +108173,13 @@ "readOnly": false }, { - "$id": "8259", + "$id": "8272", "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": "8260", + "$id": "8273", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108001,13 +108194,13 @@ "readOnly": false }, { - "$id": "8261", + "$id": "8274", "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": "8262", + "$id": "8275", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108028,7 +108221,7 @@ 200 ], "bodyType": { - "$ref": "2371" + "$ref": "2372" }, "headers": [], "isErrorResponse": false, @@ -108048,12 +108241,12 @@ }, "parameters": [ { - "$id": "8263", + "$id": "8276", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1765" + "$ref": "1766" }, "location": "Header", "isApiVersion": false, @@ -108065,12 +108258,12 @@ "decorators": [] }, { - "$id": "8264", + "$id": "8277", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "1767" + "$ref": "1768" }, "location": "Header", "isApiVersion": false, @@ -108082,13 +108275,13 @@ "decorators": [] }, { - "$id": "8265", + "$id": "8278", "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": "8266", + "$id": "8279", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -108104,13 +108297,13 @@ "decorators": [] }, { - "$id": "8267", + "$id": "8280", "kind": "method", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "location": "Query", "isApiVersion": false, @@ -108122,13 +108315,13 @@ "decorators": [] }, { - "$id": "8268", + "$id": "8281", "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": "8269", + "$id": "8282", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108144,13 +108337,13 @@ "decorators": [] }, { - "$id": "8270", + "$id": "8283", "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": "8271", + "$id": "8284", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108168,7 +108361,7 @@ ], "response": { "type": { - "$ref": "2374" + "$ref": "2375" }, "resultSegments": [ "data" @@ -108184,7 +108377,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8259" + "$ref": "8272" }, "responseSegments": [ "last_id" @@ -108194,26 +108387,26 @@ } }, { - "$id": "8272", + "$id": "8285", "kind": "basic", "name": "createAssistant", "accessibility": "public", "apiVersions": [], "summary": "Create an assistant with a model and instructions.", "operation": { - "$id": "8273", + "$id": "8286", "name": "createAssistant", "resourceName": "Assistants", "summary": "Create an assistant with a model and instructions.", "accessibility": "public", "parameters": [ { - "$id": "8274", + "$id": "8287", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1769" + "$ref": "1770" }, "isApiVersion": false, "optional": false, @@ -108224,12 +108417,12 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant.accept" }, { - "$id": "8275", + "$id": "8288", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "1771" + "$ref": "1772" }, "isApiVersion": false, "optional": false, @@ -108240,13 +108433,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant.openAIBeta" }, { - "$id": "8276", + "$id": "8289", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1773" + "$ref": "1774" }, "isApiVersion": false, "optional": false, @@ -108257,12 +108450,12 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant.contentType" }, { - "$id": "8277", + "$id": "8290", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "2503" + "$ref": "2504" }, "isApiVersion": false, "contentTypes": [ @@ -108282,7 +108475,7 @@ 200 ], "bodyType": { - "$ref": "2375" + "$ref": "2376" }, "headers": [], "isErrorResponse": false, @@ -108305,12 +108498,12 @@ }, "parameters": [ { - "$id": "8278", + "$id": "8291", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1775" + "$ref": "1776" }, "location": "Header", "isApiVersion": false, @@ -108322,12 +108515,12 @@ "decorators": [] }, { - "$id": "8279", + "$id": "8292", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "1777" + "$ref": "1778" }, "location": "Header", "isApiVersion": false, @@ -108339,12 +108532,12 @@ "decorators": [] }, { - "$id": "8280", + "$id": "8293", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "2503" + "$ref": "2504" }, "location": "Body", "isApiVersion": false, @@ -108356,13 +108549,13 @@ "decorators": [] }, { - "$id": "8281", + "$id": "8294", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1773" + "$ref": "1774" }, "location": "Header", "isApiVersion": false, @@ -108376,7 +108569,7 @@ ], "response": { "type": { - "$ref": "2375" + "$ref": "2376" } }, "isOverride": false, @@ -108385,26 +108578,26 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant" }, { - "$id": "8282", + "$id": "8295", "kind": "basic", "name": "getAssistant", "accessibility": "public", "apiVersions": [], "summary": "Retrieves an assistant.", "operation": { - "$id": "8283", + "$id": "8296", "name": "getAssistant", "resourceName": "Assistants", "summary": "Retrieves an assistant.", "accessibility": "public", "parameters": [ { - "$id": "8284", + "$id": "8297", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1779" + "$ref": "1780" }, "isApiVersion": false, "optional": false, @@ -108415,12 +108608,12 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.getAssistant.accept" }, { - "$id": "8285", + "$id": "8298", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "1781" + "$ref": "1782" }, "isApiVersion": false, "optional": false, @@ -108431,13 +108624,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.getAssistant.openAIBeta" }, { - "$id": "8286", + "$id": "8299", "kind": "path", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to retrieve.", "type": { - "$id": "8287", + "$id": "8300", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108461,7 +108654,7 @@ 200 ], "bodyType": { - "$ref": "2375" + "$ref": "2376" }, "headers": [], "isErrorResponse": false, @@ -108481,12 +108674,12 @@ }, "parameters": [ { - "$id": "8288", + "$id": "8301", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1783" + "$ref": "1784" }, "location": "Header", "isApiVersion": false, @@ -108498,12 +108691,12 @@ "decorators": [] }, { - "$id": "8289", + "$id": "8302", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "1785" + "$ref": "1786" }, "location": "Header", "isApiVersion": false, @@ -108515,13 +108708,13 @@ "decorators": [] }, { - "$id": "8290", + "$id": "8303", "kind": "method", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to retrieve.", "type": { - "$id": "8291", + "$id": "8304", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108539,7 +108732,7 @@ ], "response": { "type": { - "$ref": "2375" + "$ref": "2376" } }, "isOverride": false, @@ -108548,26 +108741,26 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.getAssistant" }, { - "$id": "8292", + "$id": "8305", "kind": "basic", "name": "modifyAssistant", "accessibility": "public", "apiVersions": [], "summary": "Modifies an assistant.", "operation": { - "$id": "8293", + "$id": "8306", "name": "modifyAssistant", "resourceName": "Assistants", "summary": "Modifies an assistant.", "accessibility": "public", "parameters": [ { - "$id": "8294", + "$id": "8307", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1787" + "$ref": "1788" }, "isApiVersion": false, "optional": false, @@ -108578,12 +108771,12 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant.accept" }, { - "$id": "8295", + "$id": "8308", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "1789" + "$ref": "1790" }, "isApiVersion": false, "optional": false, @@ -108594,13 +108787,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant.openAIBeta" }, { - "$id": "8296", + "$id": "8309", "kind": "path", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to modify.", "type": { - "$id": "8297", + "$id": "8310", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108618,13 +108811,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant.assistant_id" }, { - "$id": "8298", + "$id": "8311", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1791" + "$ref": "1792" }, "isApiVersion": false, "optional": false, @@ -108635,12 +108828,12 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant.contentType" }, { - "$id": "8299", + "$id": "8312", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "2559" + "$ref": "2560" }, "isApiVersion": false, "contentTypes": [ @@ -108660,7 +108853,7 @@ 200 ], "bodyType": { - "$ref": "2375" + "$ref": "2376" }, "headers": [], "isErrorResponse": false, @@ -108683,12 +108876,12 @@ }, "parameters": [ { - "$id": "8300", + "$id": "8313", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1793" + "$ref": "1794" }, "location": "Header", "isApiVersion": false, @@ -108700,12 +108893,12 @@ "decorators": [] }, { - "$id": "8301", + "$id": "8314", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "1795" + "$ref": "1796" }, "location": "Header", "isApiVersion": false, @@ -108717,13 +108910,13 @@ "decorators": [] }, { - "$id": "8302", + "$id": "8315", "kind": "method", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to modify.", "type": { - "$id": "8303", + "$id": "8316", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108739,12 +108932,12 @@ "decorators": [] }, { - "$id": "8304", + "$id": "8317", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "2559" + "$ref": "2560" }, "location": "Body", "isApiVersion": false, @@ -108756,13 +108949,13 @@ "decorators": [] }, { - "$id": "8305", + "$id": "8318", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1791" + "$ref": "1792" }, "location": "Header", "isApiVersion": false, @@ -108776,7 +108969,7 @@ ], "response": { "type": { - "$ref": "2375" + "$ref": "2376" } }, "isOverride": false, @@ -108785,26 +108978,26 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant" }, { - "$id": "8306", + "$id": "8319", "kind": "basic", "name": "deleteAssistant", "accessibility": "public", "apiVersions": [], "summary": "Delete an assistant.", "operation": { - "$id": "8307", + "$id": "8320", "name": "deleteAssistant", "resourceName": "Assistants", "summary": "Delete an assistant.", "accessibility": "public", "parameters": [ { - "$id": "8308", + "$id": "8321", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1797" + "$ref": "1798" }, "isApiVersion": false, "optional": false, @@ -108815,12 +109008,12 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.deleteAssistant.accept" }, { - "$id": "8309", + "$id": "8322", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "1799" + "$ref": "1800" }, "isApiVersion": false, "optional": false, @@ -108831,13 +109024,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.deleteAssistant.openAIBeta" }, { - "$id": "8310", + "$id": "8323", "kind": "path", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to delete.", "type": { - "$id": "8311", + "$id": "8324", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108861,7 +109054,7 @@ 200 ], "bodyType": { - "$ref": "2589" + "$ref": "2590" }, "headers": [], "isErrorResponse": false, @@ -108881,12 +109074,12 @@ }, "parameters": [ { - "$id": "8312", + "$id": "8325", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1801" + "$ref": "1802" }, "location": "Header", "isApiVersion": false, @@ -108898,12 +109091,12 @@ "decorators": [] }, { - "$id": "8313", + "$id": "8326", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "1803" + "$ref": "1804" }, "location": "Header", "isApiVersion": false, @@ -108915,13 +109108,13 @@ "decorators": [] }, { - "$id": "8314", + "$id": "8327", "kind": "method", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to delete.", "type": { - "$id": "8315", + "$id": "8328", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108939,7 +109132,7 @@ ], "response": { "type": { - "$ref": "2589" + "$ref": "2590" } }, "isOverride": false, @@ -108950,13 +109143,13 @@ ], "parameters": [ { - "$id": "8316", + "$id": "8329", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8317", + "$id": "8330", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -108967,7 +109160,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8318", + "$id": "8331", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -108985,36 +109178,36 @@ "crossLanguageDefinitionId": "OpenAI.Assistants", "apiVersions": [], "parent": { - "$ref": "8247" + "$ref": "8260" } }, { - "$id": "8319", + "$id": "8332", "kind": "client", "name": "Audio", "namespace": "OpenAI", "methods": [ { - "$id": "8320", + "$id": "8333", "kind": "basic", "name": "GenerateSpeech", "accessibility": "public", "apiVersions": [], "summary": "Generates audio from the input text.", "operation": { - "$id": "8321", + "$id": "8334", "name": "GenerateSpeech", "resourceName": "Audio", "summary": "Generates audio from the input text.", "accessibility": "public", "parameters": [ { - "$id": "8322", + "$id": "8335", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1805" + "$ref": "1806" }, "isApiVersion": false, "optional": false, @@ -109025,13 +109218,13 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createSpeech.accept" }, { - "$id": "8323", + "$id": "8336", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1807" + "$ref": "1808" }, "isApiVersion": false, "optional": false, @@ -109042,12 +109235,12 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createSpeech.contentType" }, { - "$id": "8324", + "$id": "8337", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "2595" + "$ref": "2596" }, "isApiVersion": false, "contentTypes": [ @@ -109067,7 +109260,7 @@ 200 ], "bodyType": { - "$id": "8325", + "$id": "8338", "kind": "bytes", "name": "bytes", "crossLanguageDefinitionId": "TypeSpec.bytes", @@ -109079,7 +109272,7 @@ "nameInResponse": "Transfer-Encoding", "doc": "chunked", "type": { - "$id": "8326", + "$id": "8339", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109090,7 +109283,7 @@ "name": "contentType", "nameInResponse": "content-type", "type": { - "$ref": "1809" + "$ref": "1810" } } ], @@ -109114,12 +109307,12 @@ }, "parameters": [ { - "$id": "8327", + "$id": "8340", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1811" + "$ref": "1812" }, "location": "Header", "isApiVersion": false, @@ -109131,12 +109324,12 @@ "decorators": [] }, { - "$id": "8328", + "$id": "8341", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "2595" + "$ref": "2596" }, "location": "Body", "isApiVersion": false, @@ -109148,13 +109341,13 @@ "decorators": [] }, { - "$id": "8329", + "$id": "8342", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1807" + "$ref": "1808" }, "location": "Header", "isApiVersion": false, @@ -109168,7 +109361,7 @@ ], "response": { "type": { - "$ref": "8325" + "$ref": "8338" } }, "isOverride": false, @@ -109177,26 +109370,26 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createSpeech" }, { - "$id": "8330", + "$id": "8343", "kind": "basic", "name": "TranscribeAudio", "accessibility": "public", "apiVersions": [], "summary": "Transcribes audio into the input language.", "operation": { - "$id": "8331", + "$id": "8344", "name": "TranscribeAudio", "resourceName": "Audio", "summary": "Transcribes audio into the input language.", "accessibility": "public", "parameters": [ { - "$id": "8332", + "$id": "8345", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1412" + "$ref": "1413" }, "isApiVersion": false, "optional": false, @@ -109207,12 +109400,12 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranscription.accept" }, { - "$id": "8333", + "$id": "8346", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "1813" + "$ref": "1814" }, "isApiVersion": false, "optional": false, @@ -109223,12 +109416,12 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranscription.contentType" }, { - "$id": "8334", + "$id": "8347", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "2605" + "$ref": "2606" }, "isApiVersion": false, "contentTypes": [ @@ -109248,27 +109441,27 @@ 200 ], "bodyType": { - "$id": "8335", + "$id": "8348", "kind": "union", "name": "", "variantTypes": [ { - "$id": "8336", + "$id": "8349", "kind": "union", "name": "", "variantTypes": [ { - "$ref": "2634" + "$ref": "2635" }, { - "$ref": "2680" + "$ref": "2681" } ], "namespace": "", "decorators": [] }, { - "$ref": "2693" + "$ref": "2694" } ], "namespace": "", @@ -109279,7 +109472,7 @@ "name": "contentType", "nameInResponse": "Content-Type", "type": { - "$ref": "1815" + "$ref": "1816" } } ], @@ -109305,12 +109498,12 @@ }, "parameters": [ { - "$id": "8337", + "$id": "8350", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1412" + "$ref": "1413" }, "location": "Header", "isApiVersion": false, @@ -109322,12 +109515,12 @@ "decorators": [] }, { - "$id": "8338", + "$id": "8351", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "1817" + "$ref": "1818" }, "location": "Header", "isApiVersion": false, @@ -109339,12 +109532,12 @@ "decorators": [] }, { - "$id": "8339", + "$id": "8352", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "2605" + "$ref": "2606" }, "location": "Body", "isApiVersion": false, @@ -109358,7 +109551,7 @@ ], "response": { "type": { - "$ref": "8335" + "$ref": "8348" } }, "isOverride": false, @@ -109367,26 +109560,26 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranscription" }, { - "$id": "8340", + "$id": "8353", "kind": "basic", "name": "TranslateAudio", "accessibility": "public", "apiVersions": [], "summary": "Translates audio into English..", "operation": { - "$id": "8341", + "$id": "8354", "name": "TranslateAudio", "resourceName": "Audio", "summary": "Translates audio into English..", "accessibility": "public", "parameters": [ { - "$id": "8342", + "$id": "8355", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1819" + "$ref": "1820" }, "isApiVersion": false, "optional": false, @@ -109397,12 +109590,12 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranslation.accept" }, { - "$id": "8343", + "$id": "8356", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "1821" + "$ref": "1822" }, "isApiVersion": false, "optional": false, @@ -109413,12 +109606,12 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranslation.contentType" }, { - "$id": "8344", + "$id": "8357", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "2725" + "$ref": "2726" }, "isApiVersion": false, "contentTypes": [ @@ -109438,27 +109631,27 @@ 200 ], "bodyType": { - "$id": "8345", + "$id": "8358", "kind": "union", "name": "", "variantTypes": [ { - "$id": "8346", + "$id": "8359", "kind": "union", "name": "", "variantTypes": [ { - "$ref": "2735" + "$ref": "2736" }, { - "$ref": "2745" + "$ref": "2746" } ], "namespace": "", "decorators": [] }, { - "$id": "8347", + "$id": "8360", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109473,7 +109666,7 @@ "name": "contentType", "nameInResponse": "content-type", "type": { - "$ref": "1823" + "$ref": "1824" } } ], @@ -109499,12 +109692,12 @@ }, "parameters": [ { - "$id": "8348", + "$id": "8361", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1825" + "$ref": "1826" }, "location": "Header", "isApiVersion": false, @@ -109516,12 +109709,12 @@ "decorators": [] }, { - "$id": "8349", + "$id": "8362", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "1827" + "$ref": "1828" }, "location": "Header", "isApiVersion": false, @@ -109533,12 +109726,12 @@ "decorators": [] }, { - "$id": "8350", + "$id": "8363", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "2725" + "$ref": "2726" }, "location": "Body", "isApiVersion": false, @@ -109552,7 +109745,7 @@ ], "response": { "type": { - "$ref": "8345" + "$ref": "8358" } }, "isOverride": false, @@ -109563,13 +109756,13 @@ ], "parameters": [ { - "$id": "8351", + "$id": "8364", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8352", + "$id": "8365", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -109580,7 +109773,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8353", + "$id": "8366", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -109598,36 +109791,36 @@ "crossLanguageDefinitionId": "OpenAI.Audio", "apiVersions": [], "parent": { - "$ref": "8247" + "$ref": "8260" } }, { - "$id": "8354", + "$id": "8367", "kind": "client", "name": "Batches", "namespace": "OpenAI", "methods": [ { - "$id": "8355", + "$id": "8368", "kind": "basic", "name": "createBatch", "accessibility": "public", "apiVersions": [], "summary": "Creates and executes a batch from an uploaded file of requests", "operation": { - "$id": "8356", + "$id": "8369", "name": "createBatch", "resourceName": "Batches", "summary": "Creates and executes a batch from an uploaded file of requests", "accessibility": "public", "parameters": [ { - "$id": "8357", + "$id": "8370", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1829" + "$ref": "1830" }, "isApiVersion": false, "optional": false, @@ -109638,13 +109831,13 @@ "crossLanguageDefinitionId": "OpenAI.Batches.createBatch.accept" }, { - "$id": "8358", + "$id": "8371", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1831" + "$ref": "1832" }, "isApiVersion": false, "optional": false, @@ -109655,12 +109848,12 @@ "crossLanguageDefinitionId": "OpenAI.Batches.createBatch.contentType" }, { - "$id": "8359", + "$id": "8372", "kind": "body", "name": "createBatchRequest", "serializedName": "createBatchRequest", "type": { - "$ref": "2748" + "$ref": "2749" }, "isApiVersion": false, "contentTypes": [ @@ -109680,7 +109873,7 @@ 200 ], "bodyType": { - "$ref": "2754" + "$ref": "2755" }, "headers": [], "isErrorResponse": false, @@ -109703,12 +109896,12 @@ }, "parameters": [ { - "$id": "8360", + "$id": "8373", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1833" + "$ref": "1834" }, "location": "Header", "isApiVersion": false, @@ -109720,13 +109913,13 @@ "decorators": [] }, { - "$id": "8361", + "$id": "8374", "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": "8362", + "$id": "8375", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109742,7 +109935,7 @@ "decorators": [] }, { - "$id": "8363", + "$id": "8376", "kind": "method", "name": "endpoint", "serializedName": "endpoint", @@ -109760,13 +109953,13 @@ "decorators": [] }, { - "$id": "8364", + "$id": "8377", "kind": "method", "name": "completion_window", "serializedName": "completion_window", "doc": "The time frame within which the batch should be processed. Currently only `24h` is supported.", "type": { - "$ref": "1533" + "$ref": "1534" }, "location": "Body", "isApiVersion": false, @@ -109778,13 +109971,13 @@ "decorators": [] }, { - "$id": "8365", + "$id": "8378", "kind": "method", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "location": "Body", "isApiVersion": false, @@ -109796,13 +109989,13 @@ "decorators": [] }, { - "$id": "8366", + "$id": "8379", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1831" + "$ref": "1832" }, "location": "Header", "isApiVersion": false, @@ -109816,7 +110009,7 @@ ], "response": { "type": { - "$ref": "2754" + "$ref": "2755" } }, "isOverride": false, @@ -109825,26 +110018,26 @@ "crossLanguageDefinitionId": "OpenAI.Batches.createBatch" }, { - "$id": "8367", + "$id": "8380", "kind": "paging", "name": "GetBatches", "accessibility": "public", "apiVersions": [], "summary": "List your organization's batches.", "operation": { - "$id": "8368", + "$id": "8381", "name": "GetBatches", "resourceName": "Batches", "summary": "List your organization's batches.", "accessibility": "public", "parameters": [ { - "$id": "8369", + "$id": "8382", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1837" + "$ref": "1838" }, "isApiVersion": false, "optional": false, @@ -109855,13 +110048,13 @@ "crossLanguageDefinitionId": "OpenAI.Batches.listBatches.accept" }, { - "$id": "8370", + "$id": "8383", "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": "8371", + "$id": "8384", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109876,13 +110069,13 @@ "readOnly": false }, { - "$id": "8372", + "$id": "8385", "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": "8373", + "$id": "8386", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -109903,7 +110096,7 @@ 200 ], "bodyType": { - "$ref": "2821" + "$ref": "2822" }, "headers": [], "isErrorResponse": false, @@ -109923,12 +110116,12 @@ }, "parameters": [ { - "$id": "8374", + "$id": "8387", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1839" + "$ref": "1840" }, "location": "Header", "isApiVersion": false, @@ -109940,13 +110133,13 @@ "decorators": [] }, { - "$id": "8375", + "$id": "8388", "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": "8376", + "$id": "8389", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109962,13 +110155,13 @@ "decorators": [] }, { - "$id": "8377", + "$id": "8390", "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": "8378", + "$id": "8391", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -109986,7 +110179,7 @@ ], "response": { "type": { - "$ref": "2823" + "$ref": "2824" }, "resultSegments": [ "data" @@ -110002,7 +110195,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8370" + "$ref": "8383" }, "responseSegments": [ "last_id" @@ -110012,26 +110205,26 @@ } }, { - "$id": "8379", + "$id": "8392", "kind": "basic", "name": "GetBatch", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a batch.", "operation": { - "$id": "8380", + "$id": "8393", "name": "GetBatch", "resourceName": "Batches", "summary": "Retrieves a batch.", "accessibility": "public", "parameters": [ { - "$id": "8381", + "$id": "8394", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1841" + "$ref": "1842" }, "isApiVersion": false, "optional": false, @@ -110042,13 +110235,13 @@ "crossLanguageDefinitionId": "OpenAI.Batches.retrieveBatch.accept" }, { - "$id": "8382", + "$id": "8395", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the batch to retrieve.", "type": { - "$id": "8383", + "$id": "8396", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110072,7 +110265,7 @@ 200 ], "bodyType": { - "$ref": "2754" + "$ref": "2755" }, "headers": [], "isErrorResponse": false, @@ -110092,12 +110285,12 @@ }, "parameters": [ { - "$id": "8384", + "$id": "8397", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1843" + "$ref": "1844" }, "location": "Header", "isApiVersion": false, @@ -110109,13 +110302,13 @@ "decorators": [] }, { - "$id": "8385", + "$id": "8398", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the batch to retrieve.", "type": { - "$id": "8386", + "$id": "8399", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110133,7 +110326,7 @@ ], "response": { "type": { - "$ref": "2754" + "$ref": "2755" } }, "isOverride": false, @@ -110142,26 +110335,26 @@ "crossLanguageDefinitionId": "OpenAI.Batches.retrieveBatch" }, { - "$id": "8387", + "$id": "8400", "kind": "basic", "name": "cancelBatch", "accessibility": "public", "apiVersions": [], "summary": "Cancels an in-progress batch.", "operation": { - "$id": "8388", + "$id": "8401", "name": "cancelBatch", "resourceName": "Batches", "summary": "Cancels an in-progress batch.", "accessibility": "public", "parameters": [ { - "$id": "8389", + "$id": "8402", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1845" + "$ref": "1846" }, "isApiVersion": false, "optional": false, @@ -110172,13 +110365,13 @@ "crossLanguageDefinitionId": "OpenAI.Batches.cancelBatch.accept" }, { - "$id": "8390", + "$id": "8403", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the batch to cancel.", "type": { - "$id": "8391", + "$id": "8404", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110202,7 +110395,7 @@ 200 ], "bodyType": { - "$ref": "2754" + "$ref": "2755" }, "headers": [], "isErrorResponse": false, @@ -110222,12 +110415,12 @@ }, "parameters": [ { - "$id": "8392", + "$id": "8405", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1847" + "$ref": "1848" }, "location": "Header", "isApiVersion": false, @@ -110239,13 +110432,13 @@ "decorators": [] }, { - "$id": "8393", + "$id": "8406", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the batch to cancel.", "type": { - "$id": "8394", + "$id": "8407", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110263,7 +110456,7 @@ ], "response": { "type": { - "$ref": "2754" + "$ref": "2755" } }, "isOverride": false, @@ -110274,13 +110467,13 @@ ], "parameters": [ { - "$id": "8395", + "$id": "8408", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8396", + "$id": "8409", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -110291,7 +110484,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8397", + "$id": "8410", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -110309,37 +110502,37 @@ "crossLanguageDefinitionId": "OpenAI.Batches", "apiVersions": [], "parent": { - "$ref": "8247" + "$ref": "8260" } }, { - "$id": "8398", + "$id": "8411", "kind": "client", "name": "Chat", "namespace": "OpenAI", "methods": [ { - "$id": "8399", + "$id": "8412", "kind": "paging", "name": "listChatCompletions", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of chat completions.", "operation": { - "$id": "8400", + "$id": "8413", "name": "listChatCompletions", "resourceName": "Chat", "summary": "Returns a list of chat completions.", "accessibility": "public", "parameters": [ { - "$id": "8401", + "$id": "8414", "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": "8402", + "$id": "8415", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110354,13 +110547,13 @@ "readOnly": false }, { - "$id": "8403", + "$id": "8416", "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": "8404", + "$id": "8417", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -110375,13 +110568,13 @@ "readOnly": false }, { - "$id": "8405", + "$id": "8418", "kind": "query", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "isApiVersion": false, "explode": false, @@ -110392,12 +110585,12 @@ "readOnly": false }, { - "$id": "8406", + "$id": "8419", "kind": "query", "name": "metadata", "serializedName": "metadata", "type": { - "$ref": "2444" + "$ref": "2445" }, "isApiVersion": false, "explode": false, @@ -110408,12 +110601,12 @@ "readOnly": false }, { - "$id": "8407", + "$id": "8420", "kind": "query", "name": "model", "serializedName": "model", "type": { - "$id": "8408", + "$id": "8421", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110428,12 +110621,12 @@ "readOnly": false }, { - "$id": "8409", + "$id": "8422", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1849" + "$ref": "1850" }, "isApiVersion": false, "optional": false, @@ -110450,7 +110643,7 @@ 200 ], "bodyType": { - "$ref": "2831" + "$ref": "2832" }, "headers": [], "isErrorResponse": false, @@ -110470,13 +110663,13 @@ }, "parameters": [ { - "$id": "8410", + "$id": "8423", "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": "8411", + "$id": "8424", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110492,13 +110685,13 @@ "decorators": [] }, { - "$id": "8412", + "$id": "8425", "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": "8413", + "$id": "8426", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -110514,13 +110707,13 @@ "decorators": [] }, { - "$id": "8414", + "$id": "8427", "kind": "method", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "location": "Query", "isApiVersion": false, @@ -110532,12 +110725,12 @@ "decorators": [] }, { - "$id": "8415", + "$id": "8428", "kind": "method", "name": "metadata", "serializedName": "metadata", "type": { - "$ref": "2444" + "$ref": "2445" }, "location": "Query", "isApiVersion": false, @@ -110549,12 +110742,12 @@ "decorators": [] }, { - "$id": "8416", + "$id": "8429", "kind": "method", "name": "model", "serializedName": "model", "type": { - "$id": "8417", + "$id": "8430", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110570,12 +110763,12 @@ "decorators": [] }, { - "$id": "8418", + "$id": "8431", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1849" + "$ref": "1850" }, "location": "Header", "isApiVersion": false, @@ -110589,7 +110782,7 @@ ], "response": { "type": { - "$ref": "2834" + "$ref": "2835" }, "resultSegments": [ "data" @@ -110605,7 +110798,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8401" + "$ref": "8414" }, "responseSegments": [ "last_id" @@ -110615,26 +110808,26 @@ } }, { - "$id": "8419", + "$id": "8432", "kind": "basic", "name": "CompleteChat", "accessibility": "public", "apiVersions": [], "summary": "Creates a model response for the given chat conversation.", "operation": { - "$id": "8420", + "$id": "8433", "name": "CompleteChat", "resourceName": "Chat", "summary": "Creates a model response for the given chat conversation.", "accessibility": "public", "parameters": [ { - "$id": "8421", + "$id": "8434", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1851" + "$ref": "1852" }, "isApiVersion": false, "optional": false, @@ -110645,13 +110838,13 @@ "crossLanguageDefinitionId": "OpenAI.Chat.createChatCompletion.accept" }, { - "$id": "8422", + "$id": "8435", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1853" + "$ref": "1854" }, "isApiVersion": false, "optional": false, @@ -110662,12 +110855,12 @@ "crossLanguageDefinitionId": "OpenAI.Chat.createChatCompletion.contentType" }, { - "$id": "8423", + "$id": "8436", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "2973" + "$ref": "2974" }, "isApiVersion": false, "contentTypes": [ @@ -110687,15 +110880,15 @@ 200 ], "bodyType": { - "$id": "8424", + "$id": "8437", "kind": "union", "name": "", "variantTypes": [ { - "$ref": "2835" + "$ref": "2836" }, { - "$ref": "3233" + "$ref": "3234" } ], "namespace": "", @@ -110706,7 +110899,7 @@ "name": "contentType", "nameInResponse": "Content-Type", "type": { - "$ref": "1855" + "$ref": "1856" } } ], @@ -110731,12 +110924,12 @@ }, "parameters": [ { - "$id": "8425", + "$id": "8438", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1857" + "$ref": "1858" }, "location": "Header", "isApiVersion": false, @@ -110748,12 +110941,12 @@ "decorators": [] }, { - "$id": "8426", + "$id": "8439", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "2973" + "$ref": "2974" }, "location": "Body", "isApiVersion": false, @@ -110765,13 +110958,13 @@ "decorators": [] }, { - "$id": "8427", + "$id": "8440", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1853" + "$ref": "1854" }, "location": "Header", "isApiVersion": false, @@ -110785,7 +110978,7 @@ ], "response": { "type": { - "$ref": "8424" + "$ref": "8437" } }, "isOverride": false, @@ -110794,27 +110987,27 @@ "crossLanguageDefinitionId": "OpenAI.Chat.createChatCompletion" }, { - "$id": "8428", + "$id": "8441", "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": "8429", + "$id": "8442", "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": "8430", + "$id": "8443", "kind": "path", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to retrieve.", "type": { - "$id": "8431", + "$id": "8444", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110832,12 +111025,12 @@ "crossLanguageDefinitionId": "OpenAI.Chat.getChatCompletion.completion_id" }, { - "$id": "8432", + "$id": "8445", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1859" + "$ref": "1860" }, "isApiVersion": false, "optional": false, @@ -110854,7 +111047,7 @@ 200 ], "bodyType": { - "$ref": "2835" + "$ref": "2836" }, "headers": [], "isErrorResponse": false, @@ -110874,13 +111067,13 @@ }, "parameters": [ { - "$id": "8433", + "$id": "8446", "kind": "method", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to retrieve.", "type": { - "$id": "8434", + "$id": "8447", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110896,12 +111089,12 @@ "decorators": [] }, { - "$id": "8435", + "$id": "8448", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1859" + "$ref": "1860" }, "location": "Header", "isApiVersion": false, @@ -110915,7 +111108,7 @@ ], "response": { "type": { - "$ref": "2835" + "$ref": "2836" } }, "isOverride": false, @@ -110924,27 +111117,27 @@ "crossLanguageDefinitionId": "OpenAI.Chat.getChatCompletion" }, { - "$id": "8436", + "$id": "8449", "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": "8437", + "$id": "8450", "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": "8438", + "$id": "8451", "kind": "path", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to update.", "type": { - "$id": "8439", + "$id": "8452", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110962,13 +111155,13 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion.completion_id" }, { - "$id": "8440", + "$id": "8453", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1861" + "$ref": "1862" }, "isApiVersion": false, "optional": false, @@ -110979,12 +111172,12 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion.contentType" }, { - "$id": "8441", + "$id": "8454", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1863" + "$ref": "1864" }, "isApiVersion": false, "optional": false, @@ -110995,12 +111188,12 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion.accept" }, { - "$id": "8442", + "$id": "8455", "kind": "body", "name": "updateChatCompletionRequest", "serializedName": "updateChatCompletionRequest", "type": { - "$ref": "3301" + "$ref": "3302" }, "isApiVersion": false, "contentTypes": [ @@ -111020,7 +111213,7 @@ 200 ], "bodyType": { - "$ref": "2835" + "$ref": "2836" }, "headers": [], "isErrorResponse": false, @@ -111043,13 +111236,13 @@ }, "parameters": [ { - "$id": "8443", + "$id": "8456", "kind": "method", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to update.", "type": { - "$id": "8444", + "$id": "8457", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111065,13 +111258,13 @@ "decorators": [] }, { - "$id": "8445", + "$id": "8458", "kind": "method", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2444" + "$ref": "2445" }, "location": "Body", "isApiVersion": false, @@ -111083,13 +111276,13 @@ "decorators": [] }, { - "$id": "8446", + "$id": "8459", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1861" + "$ref": "1862" }, "location": "Header", "isApiVersion": false, @@ -111101,12 +111294,12 @@ "decorators": [] }, { - "$id": "8447", + "$id": "8460", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1863" + "$ref": "1864" }, "location": "Header", "isApiVersion": false, @@ -111120,7 +111313,7 @@ ], "response": { "type": { - "$ref": "2835" + "$ref": "2836" } }, "isOverride": false, @@ -111129,27 +111322,27 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion" }, { - "$id": "8448", + "$id": "8461", "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": "8449", + "$id": "8462", "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": "8450", + "$id": "8463", "kind": "path", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to delete.", "type": { - "$id": "8451", + "$id": "8464", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111167,12 +111360,12 @@ "crossLanguageDefinitionId": "OpenAI.Chat.deleteChatCompletion.completion_id" }, { - "$id": "8452", + "$id": "8465", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1865" + "$ref": "1866" }, "isApiVersion": false, "optional": false, @@ -111189,7 +111382,7 @@ 200 ], "bodyType": { - "$ref": "3303" + "$ref": "3304" }, "headers": [], "isErrorResponse": false, @@ -111209,13 +111402,13 @@ }, "parameters": [ { - "$id": "8453", + "$id": "8466", "kind": "method", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to delete.", "type": { - "$id": "8454", + "$id": "8467", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111231,12 +111424,12 @@ "decorators": [] }, { - "$id": "8455", + "$id": "8468", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1865" + "$ref": "1866" }, "location": "Header", "isApiVersion": false, @@ -111250,7 +111443,7 @@ ], "response": { "type": { - "$ref": "3303" + "$ref": "3304" } }, "isOverride": false, @@ -111259,27 +111452,27 @@ "crossLanguageDefinitionId": "OpenAI.Chat.deleteChatCompletion" }, { - "$id": "8456", + "$id": "8469", "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": "8457", + "$id": "8470", "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": "8458", + "$id": "8471", "kind": "path", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to retrieve messages for.", "type": { - "$id": "8459", + "$id": "8472", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111297,13 +111490,13 @@ "crossLanguageDefinitionId": "OpenAI.Chat.getChatCompletionMessages.completion_id" }, { - "$id": "8460", + "$id": "8473", "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": "8461", + "$id": "8474", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111318,13 +111511,13 @@ "readOnly": false }, { - "$id": "8462", + "$id": "8475", "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": "8463", + "$id": "8476", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -111339,13 +111532,13 @@ "readOnly": false }, { - "$id": "8464", + "$id": "8477", "kind": "query", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "isApiVersion": false, "explode": false, @@ -111356,12 +111549,12 @@ "readOnly": false }, { - "$id": "8465", + "$id": "8478", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1867" + "$ref": "1868" }, "isApiVersion": false, "optional": false, @@ -111378,7 +111571,7 @@ 200 ], "bodyType": { - "$ref": "3309" + "$ref": "3310" }, "headers": [], "isErrorResponse": false, @@ -111398,13 +111591,13 @@ }, "parameters": [ { - "$id": "8466", + "$id": "8479", "kind": "method", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to retrieve messages for.", "type": { - "$id": "8467", + "$id": "8480", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111420,13 +111613,13 @@ "decorators": [] }, { - "$id": "8468", + "$id": "8481", "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": "8469", + "$id": "8482", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111442,13 +111635,13 @@ "decorators": [] }, { - "$id": "8470", + "$id": "8483", "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": "8471", + "$id": "8484", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -111464,13 +111657,13 @@ "decorators": [] }, { - "$id": "8472", + "$id": "8485", "kind": "method", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "location": "Query", "isApiVersion": false, @@ -111482,12 +111675,12 @@ "decorators": [] }, { - "$id": "8473", + "$id": "8486", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1867" + "$ref": "1868" }, "location": "Header", "isApiVersion": false, @@ -111501,7 +111694,7 @@ ], "response": { "type": { - "$ref": "3312" + "$ref": "3313" }, "resultSegments": [ "data" @@ -111517,7 +111710,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8460" + "$ref": "8473" }, "responseSegments": [ "last_id" @@ -111529,13 +111722,13 @@ ], "parameters": [ { - "$id": "8474", + "$id": "8487", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8475", + "$id": "8488", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -111546,7 +111739,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8476", + "$id": "8489", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -111564,35 +111757,35 @@ "crossLanguageDefinitionId": "OpenAI.Chat", "apiVersions": [], "parent": { - "$ref": "8247" + "$ref": "8260" } }, { - "$id": "8477", + "$id": "8490", "kind": "client", "name": "Containers", "namespace": "OpenAI", "methods": [ { - "$id": "8478", + "$id": "8491", "kind": "paging", "name": "listContainers", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8479", + "$id": "8492", "name": "listContainers", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8480", + "$id": "8493", "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": "8481", + "$id": "8494", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -111607,13 +111800,13 @@ "readOnly": false }, { - "$id": "8482", + "$id": "8495", "kind": "query", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "isApiVersion": false, "explode": false, @@ -111624,13 +111817,13 @@ "readOnly": false }, { - "$id": "8483", + "$id": "8496", "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": "8484", + "$id": "8497", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111645,12 +111838,12 @@ "readOnly": false }, { - "$id": "8485", + "$id": "8498", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1869" + "$ref": "1870" }, "isApiVersion": false, "optional": false, @@ -111667,7 +111860,7 @@ 200 ], "bodyType": { - "$ref": "3332" + "$ref": "3333" }, "headers": [], "isErrorResponse": false, @@ -111687,13 +111880,13 @@ }, "parameters": [ { - "$id": "8486", + "$id": "8499", "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": "8487", + "$id": "8500", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -111709,13 +111902,13 @@ "decorators": [] }, { - "$id": "8488", + "$id": "8501", "kind": "method", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "location": "Query", "isApiVersion": false, @@ -111727,13 +111920,13 @@ "decorators": [] }, { - "$id": "8489", + "$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": "8490", + "$id": "8503", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111749,12 +111942,12 @@ "decorators": [] }, { - "$id": "8491", + "$id": "8504", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1869" + "$ref": "1870" }, "location": "Header", "isApiVersion": false, @@ -111768,7 +111961,7 @@ ], "response": { "type": { - "$ref": "3335" + "$ref": "3336" }, "resultSegments": [ "data" @@ -111784,7 +111977,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8483" + "$ref": "8496" }, "responseSegments": [ "last_id" @@ -111794,25 +111987,25 @@ } }, { - "$id": "8492", + "$id": "8505", "kind": "basic", "name": "createContainer", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8493", + "$id": "8506", "name": "createContainer", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8494", + "$id": "8507", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1871" + "$ref": "1872" }, "isApiVersion": false, "optional": false, @@ -111823,12 +112016,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainer.contentType" }, { - "$id": "8495", + "$id": "8508", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1873" + "$ref": "1874" }, "isApiVersion": false, "optional": false, @@ -111839,12 +112032,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainer.accept" }, { - "$id": "8496", + "$id": "8509", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$ref": "3359" + "$ref": "3360" }, "isApiVersion": false, "contentTypes": [ @@ -111864,7 +112057,7 @@ 200 ], "bodyType": { - "$ref": "3336" + "$ref": "3337" }, "headers": [], "isErrorResponse": false, @@ -111887,12 +112080,12 @@ }, "parameters": [ { - "$id": "8497", + "$id": "8510", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "3359" + "$ref": "3360" }, "location": "Body", "isApiVersion": false, @@ -111904,13 +112097,13 @@ "decorators": [] }, { - "$id": "8498", + "$id": "8511", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1871" + "$ref": "1872" }, "location": "Header", "isApiVersion": false, @@ -111922,12 +112115,12 @@ "decorators": [] }, { - "$id": "8499", + "$id": "8512", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1873" + "$ref": "1874" }, "location": "Header", "isApiVersion": false, @@ -111941,7 +112134,7 @@ ], "response": { "type": { - "$ref": "3336" + "$ref": "3337" } }, "isOverride": false, @@ -111950,24 +112143,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainer" }, { - "$id": "8500", + "$id": "8513", "kind": "basic", "name": "GetContainer", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8501", + "$id": "8514", "name": "GetContainer", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8502", + "$id": "8515", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8503", + "$id": "8516", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111985,12 +112178,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainer.container_id" }, { - "$id": "8504", + "$id": "8517", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1875" + "$ref": "1876" }, "isApiVersion": false, "optional": false, @@ -112007,7 +112200,7 @@ 200 ], "bodyType": { - "$ref": "3336" + "$ref": "3337" }, "headers": [], "isErrorResponse": false, @@ -112027,12 +112220,12 @@ }, "parameters": [ { - "$id": "8505", + "$id": "8518", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8506", + "$id": "8519", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112048,12 +112241,12 @@ "decorators": [] }, { - "$id": "8507", + "$id": "8520", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1875" + "$ref": "1876" }, "location": "Header", "isApiVersion": false, @@ -112067,7 +112260,7 @@ ], "response": { "type": { - "$ref": "3336" + "$ref": "3337" } }, "isOverride": false, @@ -112076,24 +112269,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainer" }, { - "$id": "8508", + "$id": "8521", "kind": "basic", "name": "deleteContainer", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8509", + "$id": "8522", "name": "deleteContainer", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8510", + "$id": "8523", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8511", + "$id": "8524", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112111,12 +112304,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainer.container_id" }, { - "$id": "8512", + "$id": "8525", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1877" + "$ref": "1878" }, "isApiVersion": false, "optional": false, @@ -112133,7 +112326,7 @@ 200 ], "bodyType": { - "$ref": "3368" + "$ref": "3369" }, "headers": [], "isErrorResponse": false, @@ -112153,12 +112346,12 @@ }, "parameters": [ { - "$id": "8513", + "$id": "8526", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8514", + "$id": "8527", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112174,12 +112367,12 @@ "decorators": [] }, { - "$id": "8515", + "$id": "8528", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1877" + "$ref": "1878" }, "location": "Header", "isApiVersion": false, @@ -112193,7 +112386,7 @@ ], "response": { "type": { - "$ref": "3368" + "$ref": "3369" } }, "isOverride": false, @@ -112202,24 +112395,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainer" }, { - "$id": "8516", + "$id": "8529", "kind": "basic", "name": "createContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8517", + "$id": "8530", "name": "createContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8518", + "$id": "8531", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8519", + "$id": "8532", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112237,12 +112430,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile.container_id" }, { - "$id": "8520", + "$id": "8533", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "1879" + "$ref": "1880" }, "isApiVersion": false, "optional": false, @@ -112253,12 +112446,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile.contentType" }, { - "$id": "8521", + "$id": "8534", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1881" + "$ref": "1882" }, "isApiVersion": false, "optional": false, @@ -112269,12 +112462,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile.accept" }, { - "$id": "8522", + "$id": "8535", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$ref": "3373" + "$ref": "3374" }, "isApiVersion": false, "contentTypes": [ @@ -112294,7 +112487,7 @@ 200 ], "bodyType": { - "$ref": "3378" + "$ref": "3379" }, "headers": [], "isErrorResponse": false, @@ -112317,12 +112510,12 @@ }, "parameters": [ { - "$id": "8523", + "$id": "8536", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8524", + "$id": "8537", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112338,12 +112531,12 @@ "decorators": [] }, { - "$id": "8525", + "$id": "8538", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "1883" + "$ref": "1884" }, "location": "Header", "isApiVersion": false, @@ -112355,12 +112548,12 @@ "decorators": [] }, { - "$id": "8526", + "$id": "8539", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "3373" + "$ref": "3374" }, "location": "Body", "isApiVersion": false, @@ -112372,12 +112565,12 @@ "decorators": [] }, { - "$id": "8527", + "$id": "8540", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1881" + "$ref": "1882" }, "location": "Header", "isApiVersion": false, @@ -112391,7 +112584,7 @@ ], "response": { "type": { - "$ref": "3378" + "$ref": "3379" } }, "isOverride": false, @@ -112400,24 +112593,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile" }, { - "$id": "8528", + "$id": "8541", "kind": "paging", "name": "listContainerFiles", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8529", + "$id": "8542", "name": "listContainerFiles", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8530", + "$id": "8543", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8531", + "$id": "8544", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112435,13 +112628,13 @@ "crossLanguageDefinitionId": "OpenAI.Containers.listContainerFiles.container_id" }, { - "$id": "8532", + "$id": "8545", "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": "8533", + "$id": "8546", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -112456,13 +112649,13 @@ "readOnly": false }, { - "$id": "8534", + "$id": "8547", "kind": "query", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "isApiVersion": false, "explode": false, @@ -112473,13 +112666,13 @@ "readOnly": false }, { - "$id": "8535", + "$id": "8548", "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": "8536", + "$id": "8549", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112494,12 +112687,12 @@ "readOnly": false }, { - "$id": "8537", + "$id": "8550", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1885" + "$ref": "1886" }, "isApiVersion": false, "optional": false, @@ -112516,7 +112709,7 @@ 200 ], "bodyType": { - "$ref": "3394" + "$ref": "3395" }, "headers": [], "isErrorResponse": false, @@ -112536,12 +112729,12 @@ }, "parameters": [ { - "$id": "8538", + "$id": "8551", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8539", + "$id": "8552", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112557,13 +112750,13 @@ "decorators": [] }, { - "$id": "8540", + "$id": "8553", "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": "8541", + "$id": "8554", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -112579,13 +112772,13 @@ "decorators": [] }, { - "$id": "8542", + "$id": "8555", "kind": "method", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "location": "Query", "isApiVersion": false, @@ -112597,13 +112790,13 @@ "decorators": [] }, { - "$id": "8543", + "$id": "8556", "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": "8544", + "$id": "8557", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112619,12 +112812,12 @@ "decorators": [] }, { - "$id": "8545", + "$id": "8558", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1885" + "$ref": "1886" }, "location": "Header", "isApiVersion": false, @@ -112638,7 +112831,7 @@ ], "response": { "type": { - "$ref": "3397" + "$ref": "3398" }, "resultSegments": [ "data" @@ -112654,7 +112847,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8535" + "$ref": "8548" }, "responseSegments": [ "last_id" @@ -112664,24 +112857,24 @@ } }, { - "$id": "8546", + "$id": "8559", "kind": "basic", "name": "GetContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8547", + "$id": "8560", "name": "GetContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8548", + "$id": "8561", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8549", + "$id": "8562", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112699,12 +112892,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFile.container_id" }, { - "$id": "8550", + "$id": "8563", "kind": "path", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8551", + "$id": "8564", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112722,12 +112915,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFile.file_id" }, { - "$id": "8552", + "$id": "8565", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1887" + "$ref": "1888" }, "isApiVersion": false, "optional": false, @@ -112744,7 +112937,7 @@ 200 ], "bodyType": { - "$ref": "3378" + "$ref": "3379" }, "headers": [], "isErrorResponse": false, @@ -112764,12 +112957,12 @@ }, "parameters": [ { - "$id": "8553", + "$id": "8566", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8554", + "$id": "8567", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112785,12 +112978,12 @@ "decorators": [] }, { - "$id": "8555", + "$id": "8568", "kind": "method", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8556", + "$id": "8569", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112806,12 +112999,12 @@ "decorators": [] }, { - "$id": "8557", + "$id": "8570", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1887" + "$ref": "1888" }, "location": "Header", "isApiVersion": false, @@ -112825,7 +113018,7 @@ ], "response": { "type": { - "$ref": "3378" + "$ref": "3379" } }, "isOverride": false, @@ -112834,24 +113027,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFile" }, { - "$id": "8558", + "$id": "8571", "kind": "basic", "name": "deleteContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8559", + "$id": "8572", "name": "deleteContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8560", + "$id": "8573", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8561", + "$id": "8574", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112869,12 +113062,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainerFile.container_id" }, { - "$id": "8562", + "$id": "8575", "kind": "path", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8563", + "$id": "8576", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112892,12 +113085,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainerFile.file_id" }, { - "$id": "8564", + "$id": "8577", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1889" + "$ref": "1890" }, "isApiVersion": false, "optional": false, @@ -112914,7 +113107,7 @@ 200 ], "bodyType": { - "$ref": "3404" + "$ref": "3405" }, "headers": [], "isErrorResponse": false, @@ -112934,12 +113127,12 @@ }, "parameters": [ { - "$id": "8565", + "$id": "8578", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8566", + "$id": "8579", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112955,12 +113148,12 @@ "decorators": [] }, { - "$id": "8567", + "$id": "8580", "kind": "method", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8568", + "$id": "8581", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112976,12 +113169,12 @@ "decorators": [] }, { - "$id": "8569", + "$id": "8582", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1889" + "$ref": "1890" }, "location": "Header", "isApiVersion": false, @@ -112995,7 +113188,7 @@ ], "response": { "type": { - "$ref": "3404" + "$ref": "3405" } }, "isOverride": false, @@ -113004,24 +113197,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainerFile" }, { - "$id": "8570", + "$id": "8583", "kind": "basic", "name": "DownloadContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8571", + "$id": "8584", "name": "DownloadContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8572", + "$id": "8585", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8573", + "$id": "8586", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113039,12 +113232,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFileContent.container_id" }, { - "$id": "8574", + "$id": "8587", "kind": "path", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8575", + "$id": "8588", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113062,12 +113255,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFileContent.file_id" }, { - "$id": "8576", + "$id": "8589", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1891" + "$ref": "1892" }, "isApiVersion": false, "optional": false, @@ -113084,7 +113277,7 @@ 200 ], "bodyType": { - "$id": "8577", + "$id": "8590", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -113109,12 +113302,12 @@ }, "parameters": [ { - "$id": "8578", + "$id": "8591", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8579", + "$id": "8592", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113130,12 +113323,12 @@ "decorators": [] }, { - "$id": "8580", + "$id": "8593", "kind": "method", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8581", + "$id": "8594", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113151,12 +113344,12 @@ "decorators": [] }, { - "$id": "8582", + "$id": "8595", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1891" + "$ref": "1892" }, "location": "Header", "isApiVersion": false, @@ -113170,7 +113363,7 @@ ], "response": { "type": { - "$ref": "8577" + "$ref": "8590" } }, "isOverride": false, @@ -113181,13 +113374,13 @@ ], "parameters": [ { - "$id": "8583", + "$id": "8596", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8584", + "$id": "8597", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -113198,7 +113391,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8585", + "$id": "8598", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -113216,36 +113409,36 @@ "crossLanguageDefinitionId": "OpenAI.Containers", "apiVersions": [], "parent": { - "$ref": "8247" + "$ref": "8260" } }, { - "$id": "8586", + "$id": "8599", "kind": "client", "name": "Embeddings", "namespace": "OpenAI", "methods": [ { - "$id": "8587", + "$id": "8600", "kind": "basic", "name": "GenerateEmbeddings", "accessibility": "public", "apiVersions": [], "summary": "Creates an embedding vector representing the input text.", "operation": { - "$id": "8588", + "$id": "8601", "name": "GenerateEmbeddings", "resourceName": "Embeddings", "summary": "Creates an embedding vector representing the input text.", "accessibility": "public", "parameters": [ { - "$id": "8589", + "$id": "8602", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1893" + "$ref": "1894" }, "isApiVersion": false, "optional": false, @@ -113256,13 +113449,13 @@ "crossLanguageDefinitionId": "OpenAI.Embeddings.createEmbedding.accept" }, { - "$id": "8590", + "$id": "8603", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1895" + "$ref": "1896" }, "isApiVersion": false, "optional": false, @@ -113273,12 +113466,12 @@ "crossLanguageDefinitionId": "OpenAI.Embeddings.createEmbedding.contentType" }, { - "$id": "8591", + "$id": "8604", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "3409" + "$ref": "3410" }, "isApiVersion": false, "contentTypes": [ @@ -113298,7 +113491,7 @@ 200 ], "bodyType": { - "$ref": "3420" + "$ref": "3421" }, "headers": [], "isErrorResponse": false, @@ -113321,12 +113514,12 @@ }, "parameters": [ { - "$id": "8592", + "$id": "8605", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1897" + "$ref": "1898" }, "location": "Header", "isApiVersion": false, @@ -113338,12 +113531,12 @@ "decorators": [] }, { - "$id": "8593", + "$id": "8606", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "3409" + "$ref": "3410" }, "location": "Body", "isApiVersion": false, @@ -113355,13 +113548,13 @@ "decorators": [] }, { - "$id": "8594", + "$id": "8607", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1895" + "$ref": "1896" }, "location": "Header", "isApiVersion": false, @@ -113375,7 +113568,7 @@ ], "response": { "type": { - "$ref": "3420" + "$ref": "3421" } }, "isOverride": false, @@ -113386,13 +113579,13 @@ ], "parameters": [ { - "$id": "8595", + "$id": "8608", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8596", + "$id": "8609", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -113403,7 +113596,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8597", + "$id": "8610", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -113421,36 +113614,36 @@ "crossLanguageDefinitionId": "OpenAI.Embeddings", "apiVersions": [], "parent": { - "$ref": "8247" + "$ref": "8260" } }, { - "$id": "8598", + "$id": "8611", "kind": "client", "name": "Files", "namespace": "OpenAI", "methods": [ { - "$id": "8599", + "$id": "8612", "kind": "basic", "name": "GetFiles", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of files that belong to the user's organization.", "operation": { - "$id": "8600", + "$id": "8613", "name": "GetFiles", "resourceName": "Files", "summary": "Returns a list of files that belong to the user's organization.", "accessibility": "public", "parameters": [ { - "$id": "8601", + "$id": "8614", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1899" + "$ref": "1900" }, "isApiVersion": false, "optional": false, @@ -113461,13 +113654,13 @@ "crossLanguageDefinitionId": "OpenAI.Files.listFiles.accept" }, { - "$id": "8602", + "$id": "8615", "kind": "query", "name": "purpose", "serializedName": "purpose", "doc": "Only return files with the given purpose.", "type": { - "$id": "8603", + "$id": "8616", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113488,7 +113681,7 @@ 200 ], "bodyType": { - "$ref": "3441" + "$ref": "3442" }, "headers": [], "isErrorResponse": false, @@ -113508,12 +113701,12 @@ }, "parameters": [ { - "$id": "8604", + "$id": "8617", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1901" + "$ref": "1902" }, "location": "Header", "isApiVersion": false, @@ -113525,13 +113718,13 @@ "decorators": [] }, { - "$id": "8605", + "$id": "8618", "kind": "method", "name": "purpose", "serializedName": "purpose", "doc": "Only return files with the given purpose.", "type": { - "$id": "8606", + "$id": "8619", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113549,7 +113742,7 @@ ], "response": { "type": { - "$ref": "3441" + "$ref": "3442" } }, "isOverride": false, @@ -113558,26 +113751,26 @@ "crossLanguageDefinitionId": "OpenAI.Files.listFiles" }, { - "$id": "8607", + "$id": "8620", "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": "8608", + "$id": "8621", "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": "8609", + "$id": "8622", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1903" + "$ref": "1904" }, "isApiVersion": false, "optional": false, @@ -113588,12 +113781,12 @@ "crossLanguageDefinitionId": "OpenAI.Files.createFile.accept" }, { - "$id": "8610", + "$id": "8623", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "1905" + "$ref": "1906" }, "isApiVersion": false, "optional": false, @@ -113604,12 +113797,12 @@ "crossLanguageDefinitionId": "OpenAI.Files.createFile.contentType" }, { - "$id": "8611", + "$id": "8624", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "3470" + "$ref": "3471" }, "isApiVersion": false, "contentTypes": [ @@ -113629,7 +113822,7 @@ 200 ], "bodyType": { - "$ref": "3445" + "$ref": "3446" }, "headers": [], "isErrorResponse": false, @@ -113652,12 +113845,12 @@ }, "parameters": [ { - "$id": "8612", + "$id": "8625", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1907" + "$ref": "1908" }, "location": "Header", "isApiVersion": false, @@ -113669,12 +113862,12 @@ "decorators": [] }, { - "$id": "8613", + "$id": "8626", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "1909" + "$ref": "1910" }, "location": "Header", "isApiVersion": false, @@ -113686,12 +113879,12 @@ "decorators": [] }, { - "$id": "8614", + "$id": "8627", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "3470" + "$ref": "3471" }, "location": "Body", "isApiVersion": false, @@ -113705,7 +113898,7 @@ ], "response": { "type": { - "$ref": "3445" + "$ref": "3446" } }, "isOverride": false, @@ -113714,26 +113907,26 @@ "crossLanguageDefinitionId": "OpenAI.Files.createFile" }, { - "$id": "8615", + "$id": "8628", "kind": "basic", "name": "deleteFile", "accessibility": "public", "apiVersions": [], "summary": "Delete a file", "operation": { - "$id": "8616", + "$id": "8629", "name": "deleteFile", "resourceName": "Files", "summary": "Delete a file", "accessibility": "public", "parameters": [ { - "$id": "8617", + "$id": "8630", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1911" + "$ref": "1912" }, "isApiVersion": false, "optional": false, @@ -113744,13 +113937,13 @@ "crossLanguageDefinitionId": "OpenAI.Files.deleteFile.accept" }, { - "$id": "8618", + "$id": "8631", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8619", + "$id": "8632", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113774,7 +113967,7 @@ 200 ], "bodyType": { - "$ref": "3474" + "$ref": "3475" }, "headers": [], "isErrorResponse": false, @@ -113794,12 +113987,12 @@ }, "parameters": [ { - "$id": "8620", + "$id": "8633", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1913" + "$ref": "1914" }, "location": "Header", "isApiVersion": false, @@ -113811,13 +114004,13 @@ "decorators": [] }, { - "$id": "8621", + "$id": "8634", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8622", + "$id": "8635", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113835,7 +114028,7 @@ ], "response": { "type": { - "$ref": "3474" + "$ref": "3475" } }, "isOverride": false, @@ -113844,26 +114037,26 @@ "crossLanguageDefinitionId": "OpenAI.Files.deleteFile" }, { - "$id": "8623", + "$id": "8636", "kind": "basic", "name": "GetFile", "accessibility": "public", "apiVersions": [], "summary": "Returns information about a specific file.", "operation": { - "$id": "8624", + "$id": "8637", "name": "GetFile", "resourceName": "Files", "summary": "Returns information about a specific file.", "accessibility": "public", "parameters": [ { - "$id": "8625", + "$id": "8638", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1915" + "$ref": "1916" }, "isApiVersion": false, "optional": false, @@ -113874,13 +114067,13 @@ "crossLanguageDefinitionId": "OpenAI.Files.retrieveFile.accept" }, { - "$id": "8626", + "$id": "8639", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8627", + "$id": "8640", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113904,7 +114097,7 @@ 200 ], "bodyType": { - "$ref": "3445" + "$ref": "3446" }, "headers": [], "isErrorResponse": false, @@ -113924,12 +114117,12 @@ }, "parameters": [ { - "$id": "8628", + "$id": "8641", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1917" + "$ref": "1918" }, "location": "Header", "isApiVersion": false, @@ -113941,13 +114134,13 @@ "decorators": [] }, { - "$id": "8629", + "$id": "8642", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8630", + "$id": "8643", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113965,7 +114158,7 @@ ], "response": { "type": { - "$ref": "3445" + "$ref": "3446" } }, "isOverride": false, @@ -113974,26 +114167,26 @@ "crossLanguageDefinitionId": "OpenAI.Files.retrieveFile" }, { - "$id": "8631", + "$id": "8644", "kind": "basic", "name": "downloadFile", "accessibility": "public", "apiVersions": [], "summary": "Returns the contents of the specified file.", "operation": { - "$id": "8632", + "$id": "8645", "name": "downloadFile", "resourceName": "Files", "summary": "Returns the contents of the specified file.", "accessibility": "public", "parameters": [ { - "$id": "8633", + "$id": "8646", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1919" + "$ref": "1920" }, "isApiVersion": false, "optional": false, @@ -114004,13 +114197,13 @@ "crossLanguageDefinitionId": "OpenAI.Files.downloadFile.accept" }, { - "$id": "8634", + "$id": "8647", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8635", + "$id": "8648", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114034,7 +114227,7 @@ 200 ], "bodyType": { - "$id": "8636", + "$id": "8649", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -114059,12 +114252,12 @@ }, "parameters": [ { - "$id": "8637", + "$id": "8650", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1921" + "$ref": "1922" }, "location": "Header", "isApiVersion": false, @@ -114076,13 +114269,13 @@ "decorators": [] }, { - "$id": "8638", + "$id": "8651", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8639", + "$id": "8652", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114100,7 +114293,7 @@ ], "response": { "type": { - "$ref": "8636" + "$ref": "8649" } }, "isOverride": false, @@ -114111,13 +114304,13 @@ ], "parameters": [ { - "$id": "8640", + "$id": "8653", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8641", + "$id": "8654", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -114128,7 +114321,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8642", + "$id": "8655", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -114146,37 +114339,37 @@ "crossLanguageDefinitionId": "OpenAI.Files", "apiVersions": [], "parent": { - "$ref": "8247" + "$ref": "8260" } }, { - "$id": "8643", + "$id": "8656", "kind": "client", "name": "FineTuning", "namespace": "OpenAI", "methods": [ { - "$id": "8644", + "$id": "8657", "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": "8645", + "$id": "8658", "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": "8646", + "$id": "8659", "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": "8647", + "$id": "8660", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114194,13 +114387,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningCheckpointPermissions.fine_tuned_model_checkpoint" }, { - "$id": "8648", + "$id": "8661", "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": "8649", + "$id": "8662", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114215,13 +114408,13 @@ "readOnly": false }, { - "$id": "8650", + "$id": "8663", "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": "8651", + "$id": "8664", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -114236,13 +114429,13 @@ "readOnly": false }, { - "$id": "8652", + "$id": "8665", "kind": "query", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "isApiVersion": false, "explode": false, @@ -114253,13 +114446,13 @@ "readOnly": false }, { - "$id": "8653", + "$id": "8666", "kind": "query", "name": "project_id", "serializedName": "project_id", "doc": "The ID of the project to get permissions for.", "type": { - "$id": "8654", + "$id": "8667", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114274,12 +114467,12 @@ "readOnly": false }, { - "$id": "8655", + "$id": "8668", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1923" + "$ref": "1924" }, "isApiVersion": false, "optional": false, @@ -114296,7 +114489,7 @@ 200 ], "bodyType": { - "$ref": "3480" + "$ref": "3481" }, "headers": [], "isErrorResponse": false, @@ -114316,13 +114509,13 @@ }, "parameters": [ { - "$id": "8656", + "$id": "8669", "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": "8657", + "$id": "8670", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114338,13 +114531,13 @@ "decorators": [] }, { - "$id": "8658", + "$id": "8671", "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": "8659", + "$id": "8672", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114360,13 +114553,13 @@ "decorators": [] }, { - "$id": "8660", + "$id": "8673", "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": "8661", + "$id": "8674", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -114382,13 +114575,13 @@ "decorators": [] }, { - "$id": "8662", + "$id": "8675", "kind": "method", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "location": "Query", "isApiVersion": false, @@ -114400,13 +114593,13 @@ "decorators": [] }, { - "$id": "8663", + "$id": "8676", "kind": "method", "name": "project_id", "serializedName": "project_id", "doc": "The ID of the project to get permissions for.", "type": { - "$id": "8664", + "$id": "8677", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114422,12 +114615,12 @@ "decorators": [] }, { - "$id": "8665", + "$id": "8678", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1923" + "$ref": "1924" }, "location": "Header", "isApiVersion": false, @@ -114441,7 +114634,7 @@ ], "response": { "type": { - "$ref": "3480" + "$ref": "3481" } }, "isOverride": false, @@ -114450,27 +114643,27 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningCheckpointPermissions" }, { - "$id": "8666", + "$id": "8679", "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": "8667", + "$id": "8680", "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": "8668", + "$id": "8681", "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": "8669", + "$id": "8682", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114488,13 +114681,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission.fine_tuned_model_checkpoint" }, { - "$id": "8670", + "$id": "8683", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1925" + "$ref": "1926" }, "isApiVersion": false, "optional": false, @@ -114505,12 +114698,12 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission.contentType" }, { - "$id": "8671", + "$id": "8684", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1927" + "$ref": "1928" }, "isApiVersion": false, "optional": false, @@ -114521,12 +114714,12 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission.accept" }, { - "$id": "8672", + "$id": "8685", "kind": "body", "name": "createFineTuningCheckpointPermissionRequest", "serializedName": "createFineTuningCheckpointPermissionRequest", "type": { - "$ref": "3501" + "$ref": "3502" }, "isApiVersion": false, "contentTypes": [ @@ -114546,7 +114739,7 @@ 200 ], "bodyType": { - "$ref": "3480" + "$ref": "3481" }, "headers": [], "isErrorResponse": false, @@ -114569,13 +114762,13 @@ }, "parameters": [ { - "$id": "8673", + "$id": "8686", "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": "8674", + "$id": "8687", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114591,13 +114784,13 @@ "decorators": [] }, { - "$id": "8675", + "$id": "8688", "kind": "method", "name": "project_ids", "serializedName": "project_ids", "doc": "The project identifiers to grant access to.", "type": { - "$ref": "2437" + "$ref": "2438" }, "location": "Body", "isApiVersion": false, @@ -114609,13 +114802,13 @@ "decorators": [] }, { - "$id": "8676", + "$id": "8689", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1925" + "$ref": "1926" }, "location": "Header", "isApiVersion": false, @@ -114627,12 +114820,12 @@ "decorators": [] }, { - "$id": "8677", + "$id": "8690", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1927" + "$ref": "1928" }, "location": "Header", "isApiVersion": false, @@ -114646,7 +114839,7 @@ ], "response": { "type": { - "$ref": "3480" + "$ref": "3481" } }, "isOverride": false, @@ -114655,27 +114848,27 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission" }, { - "$id": "8678", + "$id": "8691", "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": "8679", + "$id": "8692", "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": "8680", + "$id": "8693", "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": "8681", + "$id": "8694", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114693,13 +114886,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.deleteFineTuningCheckpointPermission.fine_tuned_model_checkpoint" }, { - "$id": "8682", + "$id": "8695", "kind": "path", "name": "permission_id", "serializedName": "permission_id", "doc": "The ID of the permission to delete.", "type": { - "$id": "8683", + "$id": "8696", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114717,12 +114910,12 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.deleteFineTuningCheckpointPermission.permission_id" }, { - "$id": "8684", + "$id": "8697", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1929" + "$ref": "1930" }, "isApiVersion": false, "optional": false, @@ -114739,7 +114932,7 @@ 200 ], "bodyType": { - "$ref": "3503" + "$ref": "3504" }, "headers": [], "isErrorResponse": false, @@ -114759,13 +114952,13 @@ }, "parameters": [ { - "$id": "8685", + "$id": "8698", "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": "8686", + "$id": "8699", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114781,13 +114974,13 @@ "decorators": [] }, { - "$id": "8687", + "$id": "8700", "kind": "method", "name": "permission_id", "serializedName": "permission_id", "doc": "The ID of the permission to delete.", "type": { - "$id": "8688", + "$id": "8701", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114803,12 +114996,12 @@ "decorators": [] }, { - "$id": "8689", + "$id": "8702", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1929" + "$ref": "1930" }, "location": "Header", "isApiVersion": false, @@ -114822,7 +115015,7 @@ ], "response": { "type": { - "$ref": "3503" + "$ref": "3504" } }, "isOverride": false, @@ -114831,26 +115024,26 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.deleteFineTuningCheckpointPermission" }, { - "$id": "8690", + "$id": "8703", "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": "8691", + "$id": "8704", "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": "8692", + "$id": "8705", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1931" + "$ref": "1932" }, "isApiVersion": false, "optional": false, @@ -114861,13 +115054,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningJob.accept" }, { - "$id": "8693", + "$id": "8706", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1933" + "$ref": "1934" }, "isApiVersion": false, "optional": false, @@ -114878,12 +115071,12 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningJob.contentType" }, { - "$id": "8694", + "$id": "8707", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "3509" + "$ref": "3510" }, "isApiVersion": false, "contentTypes": [ @@ -114903,7 +115096,7 @@ 200 ], "bodyType": { - "$ref": "3705" + "$ref": "3706" }, "headers": [], "isErrorResponse": false, @@ -114926,12 +115119,12 @@ }, "parameters": [ { - "$id": "8695", + "$id": "8708", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1935" + "$ref": "1936" }, "location": "Header", "isApiVersion": false, @@ -114943,12 +115136,12 @@ "decorators": [] }, { - "$id": "8696", + "$id": "8709", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "3509" + "$ref": "3510" }, "location": "Body", "isApiVersion": false, @@ -114960,13 +115153,13 @@ "decorators": [] }, { - "$id": "8697", + "$id": "8710", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1933" + "$ref": "1934" }, "location": "Header", "isApiVersion": false, @@ -114980,7 +115173,7 @@ ], "response": { "type": { - "$ref": "3705" + "$ref": "3706" } }, "isOverride": false, @@ -114989,26 +115182,26 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningJob" }, { - "$id": "8698", + "$id": "8711", "kind": "basic", "name": "listPaginatedFineTuningJobs", "accessibility": "public", "apiVersions": [], "summary": "List your organization's fine-tuning jobs", "operation": { - "$id": "8699", + "$id": "8712", "name": "listPaginatedFineTuningJobs", "resourceName": "FineTuning", "summary": "List your organization's fine-tuning jobs", "accessibility": "public", "parameters": [ { - "$id": "8700", + "$id": "8713", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1937" + "$ref": "1938" }, "isApiVersion": false, "optional": false, @@ -115019,13 +115212,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listPaginatedFineTuningJobs.accept" }, { - "$id": "8701", + "$id": "8714", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last job from the previous pagination request.", "type": { - "$id": "8702", + "$id": "8715", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115040,13 +115233,13 @@ "readOnly": false }, { - "$id": "8703", + "$id": "8716", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "Number of fine-tuning jobs to retrieve.", "type": { - "$id": "8704", + "$id": "8717", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -115067,7 +115260,7 @@ 200 ], "bodyType": { - "$ref": "3788" + "$ref": "3789" }, "headers": [], "isErrorResponse": false, @@ -115087,12 +115280,12 @@ }, "parameters": [ { - "$id": "8705", + "$id": "8718", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1939" + "$ref": "1940" }, "location": "Header", "isApiVersion": false, @@ -115104,13 +115297,13 @@ "decorators": [] }, { - "$id": "8706", + "$id": "8719", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last job from the previous pagination request.", "type": { - "$id": "8707", + "$id": "8720", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115126,13 +115319,13 @@ "decorators": [] }, { - "$id": "8708", + "$id": "8721", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "Number of fine-tuning jobs to retrieve.", "type": { - "$id": "8709", + "$id": "8722", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -115150,7 +115343,7 @@ ], "response": { "type": { - "$ref": "3788" + "$ref": "3789" } }, "isOverride": false, @@ -115159,26 +115352,26 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listPaginatedFineTuningJobs" }, { - "$id": "8710", + "$id": "8723", "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": "8711", + "$id": "8724", "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": "8712", + "$id": "8725", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1941" + "$ref": "1942" }, "isApiVersion": false, "optional": false, @@ -115189,13 +115382,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.retrieveFineTuningJob.accept" }, { - "$id": "8713", + "$id": "8726", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job.", "type": { - "$id": "8714", + "$id": "8727", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115219,7 +115412,7 @@ 200 ], "bodyType": { - "$ref": "3705" + "$ref": "3706" }, "headers": [], "isErrorResponse": false, @@ -115239,12 +115432,12 @@ }, "parameters": [ { - "$id": "8715", + "$id": "8728", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1943" + "$ref": "1944" }, "location": "Header", "isApiVersion": false, @@ -115256,13 +115449,13 @@ "decorators": [] }, { - "$id": "8716", + "$id": "8729", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job.", "type": { - "$id": "8717", + "$id": "8730", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115280,7 +115473,7 @@ ], "response": { "type": { - "$ref": "3705" + "$ref": "3706" } }, "isOverride": false, @@ -115289,26 +115482,26 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.retrieveFineTuningJob" }, { - "$id": "8718", + "$id": "8731", "kind": "basic", "name": "cancelFineTuningJob", "accessibility": "public", "apiVersions": [], "summary": "Immediately cancel a fine-tune job.", "operation": { - "$id": "8719", + "$id": "8732", "name": "cancelFineTuningJob", "resourceName": "FineTuning", "summary": "Immediately cancel a fine-tune job.", "accessibility": "public", "parameters": [ { - "$id": "8720", + "$id": "8733", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1945" + "$ref": "1946" }, "isApiVersion": false, "optional": false, @@ -115319,13 +115512,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.cancelFineTuningJob.accept" }, { - "$id": "8721", + "$id": "8734", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to cancel.", "type": { - "$id": "8722", + "$id": "8735", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115349,7 +115542,7 @@ 200 ], "bodyType": { - "$ref": "3705" + "$ref": "3706" }, "headers": [], "isErrorResponse": false, @@ -115369,12 +115562,12 @@ }, "parameters": [ { - "$id": "8723", + "$id": "8736", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1947" + "$ref": "1948" }, "location": "Header", "isApiVersion": false, @@ -115386,13 +115579,13 @@ "decorators": [] }, { - "$id": "8724", + "$id": "8737", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to cancel.", "type": { - "$id": "8725", + "$id": "8738", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115410,7 +115603,7 @@ ], "response": { "type": { - "$ref": "3705" + "$ref": "3706" } }, "isOverride": false, @@ -115419,26 +115612,26 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.cancelFineTuningJob" }, { - "$id": "8726", + "$id": "8739", "kind": "basic", "name": "listFineTuningJobCheckpoints", "accessibility": "public", "apiVersions": [], "summary": "List the checkpoints for a fine-tuning job.", "operation": { - "$id": "8727", + "$id": "8740", "name": "listFineTuningJobCheckpoints", "resourceName": "FineTuning", "summary": "List the checkpoints for a fine-tuning job.", "accessibility": "public", "parameters": [ { - "$id": "8728", + "$id": "8741", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1949" + "$ref": "1950" }, "isApiVersion": false, "optional": false, @@ -115449,13 +115642,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningJobCheckpoints.accept" }, { - "$id": "8729", + "$id": "8742", "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": "8730", + "$id": "8743", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115473,13 +115666,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningJobCheckpoints.fine_tuning_job_id" }, { - "$id": "8731", + "$id": "8744", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last checkpoint ID from the previous pagination request.", "type": { - "$id": "8732", + "$id": "8745", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115494,13 +115687,13 @@ "readOnly": false }, { - "$id": "8733", + "$id": "8746", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "Number of checkpoints to retrieve.", "type": { - "$id": "8734", + "$id": "8747", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -115521,7 +115714,7 @@ 200 ], "bodyType": { - "$ref": "3794" + "$ref": "3795" }, "headers": [], "isErrorResponse": false, @@ -115541,12 +115734,12 @@ }, "parameters": [ { - "$id": "8735", + "$id": "8748", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1951" + "$ref": "1952" }, "location": "Header", "isApiVersion": false, @@ -115558,13 +115751,13 @@ "decorators": [] }, { - "$id": "8736", + "$id": "8749", "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": "8737", + "$id": "8750", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115580,13 +115773,13 @@ "decorators": [] }, { - "$id": "8738", + "$id": "8751", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last checkpoint ID from the previous pagination request.", "type": { - "$id": "8739", + "$id": "8752", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115602,13 +115795,13 @@ "decorators": [] }, { - "$id": "8740", + "$id": "8753", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "Number of checkpoints to retrieve.", "type": { - "$id": "8741", + "$id": "8754", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -115626,7 +115819,7 @@ ], "response": { "type": { - "$ref": "3794" + "$ref": "3795" } }, "isOverride": false, @@ -115635,26 +115828,26 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningJobCheckpoints" }, { - "$id": "8742", + "$id": "8755", "kind": "basic", "name": "listFineTuningEvents", "accessibility": "public", "apiVersions": [], "summary": "Get status updates for a fine-tuning job.", "operation": { - "$id": "8743", + "$id": "8756", "name": "listFineTuningEvents", "resourceName": "FineTuning", "summary": "Get status updates for a fine-tuning job.", "accessibility": "public", "parameters": [ { - "$id": "8744", + "$id": "8757", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1953" + "$ref": "1954" }, "isApiVersion": false, "optional": false, @@ -115665,13 +115858,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningEvents.accept" }, { - "$id": "8745", + "$id": "8758", "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": "8746", + "$id": "8759", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115689,13 +115882,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningEvents.fine_tuning_job_id" }, { - "$id": "8747", + "$id": "8760", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last event from the previous pagination request.", "type": { - "$id": "8748", + "$id": "8761", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115710,13 +115903,13 @@ "readOnly": false }, { - "$id": "8749", + "$id": "8762", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "Number of events to retrieve.", "type": { - "$id": "8750", + "$id": "8763", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -115737,7 +115930,7 @@ 200 ], "bodyType": { - "$ref": "3835" + "$ref": "3836" }, "headers": [], "isErrorResponse": false, @@ -115757,12 +115950,12 @@ }, "parameters": [ { - "$id": "8751", + "$id": "8764", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1955" + "$ref": "1956" }, "location": "Header", "isApiVersion": false, @@ -115774,13 +115967,13 @@ "decorators": [] }, { - "$id": "8752", + "$id": "8765", "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": "8753", + "$id": "8766", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115796,13 +115989,13 @@ "decorators": [] }, { - "$id": "8754", + "$id": "8767", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last event from the previous pagination request.", "type": { - "$id": "8755", + "$id": "8768", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115818,13 +116011,13 @@ "decorators": [] }, { - "$id": "8756", + "$id": "8769", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "Number of events to retrieve.", "type": { - "$id": "8757", + "$id": "8770", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -115842,7 +116035,7 @@ ], "response": { "type": { - "$ref": "3835" + "$ref": "3836" } }, "isOverride": false, @@ -115851,27 +116044,27 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningEvents" }, { - "$id": "8758", + "$id": "8771", "kind": "basic", "name": "pauseFineTuningJob", "accessibility": "public", "apiVersions": [], "summary": "Pause a fine-tune job.", "operation": { - "$id": "8759", + "$id": "8772", "name": "pauseFineTuningJob", "resourceName": "FineTuning", "summary": "Pause a fine-tune job.", "accessibility": "public", "parameters": [ { - "$id": "8760", + "$id": "8773", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to pause.", "type": { - "$id": "8761", + "$id": "8774", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115889,12 +116082,12 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.pauseFineTuningJob.fine_tuning_job_id" }, { - "$id": "8762", + "$id": "8775", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1957" + "$ref": "1958" }, "isApiVersion": false, "optional": false, @@ -115911,7 +116104,7 @@ 200 ], "bodyType": { - "$ref": "3705" + "$ref": "3706" }, "headers": [], "isErrorResponse": false, @@ -115931,13 +116124,13 @@ }, "parameters": [ { - "$id": "8763", + "$id": "8776", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to pause.", "type": { - "$id": "8764", + "$id": "8777", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115953,12 +116146,12 @@ "decorators": [] }, { - "$id": "8765", + "$id": "8778", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1957" + "$ref": "1958" }, "location": "Header", "isApiVersion": false, @@ -115972,7 +116165,7 @@ ], "response": { "type": { - "$ref": "3705" + "$ref": "3706" } }, "isOverride": false, @@ -115981,27 +116174,27 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.pauseFineTuningJob" }, { - "$id": "8766", + "$id": "8779", "kind": "basic", "name": "resumeFineTuningJob", "accessibility": "public", "apiVersions": [], "summary": "Resume a paused fine-tune job.", "operation": { - "$id": "8767", + "$id": "8780", "name": "resumeFineTuningJob", "resourceName": "FineTuning", "summary": "Resume a paused fine-tune job.", "accessibility": "public", "parameters": [ { - "$id": "8768", + "$id": "8781", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to resume.", "type": { - "$id": "8769", + "$id": "8782", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116019,12 +116212,12 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.resumeFineTuningJob.fine_tuning_job_id" }, { - "$id": "8770", + "$id": "8783", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1959" + "$ref": "1960" }, "isApiVersion": false, "optional": false, @@ -116041,7 +116234,7 @@ 200 ], "bodyType": { - "$ref": "3705" + "$ref": "3706" }, "headers": [], "isErrorResponse": false, @@ -116061,13 +116254,13 @@ }, "parameters": [ { - "$id": "8771", + "$id": "8784", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to resume.", "type": { - "$id": "8772", + "$id": "8785", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116083,12 +116276,12 @@ "decorators": [] }, { - "$id": "8773", + "$id": "8786", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1959" + "$ref": "1960" }, "location": "Header", "isApiVersion": false, @@ -116102,7 +116295,7 @@ ], "response": { "type": { - "$ref": "3705" + "$ref": "3706" } }, "isOverride": false, @@ -116113,13 +116306,13 @@ ], "parameters": [ { - "$id": "8774", + "$id": "8787", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8775", + "$id": "8788", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -116130,7 +116323,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8776", + "$id": "8789", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -116148,37 +116341,37 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning", "apiVersions": [], "parent": { - "$ref": "8247" + "$ref": "8260" } }, { - "$id": "8777", + "$id": "8790", "kind": "client", "name": "Graders", "namespace": "OpenAI", "methods": [ { - "$id": "8778", + "$id": "8791", "kind": "basic", "name": "runGrader", "accessibility": "public", "apiVersions": [], "summary": "Run a grader.", "operation": { - "$id": "8779", + "$id": "8792", "name": "runGrader", "resourceName": "Graders", "summary": "Run a grader.", "accessibility": "public", "parameters": [ { - "$id": "8780", + "$id": "8793", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1961" + "$ref": "1962" }, "isApiVersion": false, "optional": false, @@ -116189,12 +116382,12 @@ "crossLanguageDefinitionId": "OpenAI.Graders.runGrader.contentType" }, { - "$id": "8781", + "$id": "8794", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1963" + "$ref": "1964" }, "isApiVersion": false, "optional": false, @@ -116205,12 +116398,12 @@ "crossLanguageDefinitionId": "OpenAI.Graders.runGrader.accept" }, { - "$id": "8782", + "$id": "8795", "kind": "body", "name": "request", "serializedName": "request", "type": { - "$ref": "3854" + "$ref": "3855" }, "isApiVersion": false, "contentTypes": [ @@ -116230,7 +116423,7 @@ 200 ], "bodyType": { - "$ref": "3861" + "$ref": "3862" }, "headers": [], "isErrorResponse": false, @@ -116253,12 +116446,12 @@ }, "parameters": [ { - "$id": "8783", + "$id": "8796", "kind": "method", "name": "request", "serializedName": "request", "type": { - "$ref": "3854" + "$ref": "3855" }, "location": "Body", "isApiVersion": false, @@ -116270,13 +116463,13 @@ "decorators": [] }, { - "$id": "8784", + "$id": "8797", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1961" + "$ref": "1962" }, "location": "Header", "isApiVersion": false, @@ -116288,12 +116481,12 @@ "decorators": [] }, { - "$id": "8785", + "$id": "8798", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1963" + "$ref": "1964" }, "location": "Header", "isApiVersion": false, @@ -116307,7 +116500,7 @@ ], "response": { "type": { - "$ref": "3861" + "$ref": "3862" } }, "isOverride": false, @@ -116316,27 +116509,27 @@ "crossLanguageDefinitionId": "OpenAI.Graders.runGrader" }, { - "$id": "8786", + "$id": "8799", "kind": "basic", "name": "validateGrader", "accessibility": "public", "apiVersions": [], "summary": "Validate a grader.", "operation": { - "$id": "8787", + "$id": "8800", "name": "validateGrader", "resourceName": "Graders", "summary": "Validate a grader.", "accessibility": "public", "parameters": [ { - "$id": "8788", + "$id": "8801", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1965" + "$ref": "1966" }, "isApiVersion": false, "optional": false, @@ -116347,12 +116540,12 @@ "crossLanguageDefinitionId": "OpenAI.Graders.validateGrader.contentType" }, { - "$id": "8789", + "$id": "8802", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1967" + "$ref": "1968" }, "isApiVersion": false, "optional": false, @@ -116363,12 +116556,12 @@ "crossLanguageDefinitionId": "OpenAI.Graders.validateGrader.accept" }, { - "$id": "8790", + "$id": "8803", "kind": "body", "name": "request", "serializedName": "request", "type": { - "$ref": "3917" + "$ref": "3918" }, "isApiVersion": false, "contentTypes": [ @@ -116388,7 +116581,7 @@ 200 ], "bodyType": { - "$ref": "3920" + "$ref": "3921" }, "headers": [], "isErrorResponse": false, @@ -116411,12 +116604,12 @@ }, "parameters": [ { - "$id": "8791", + "$id": "8804", "kind": "method", "name": "request", "serializedName": "request", "type": { - "$ref": "3917" + "$ref": "3918" }, "location": "Body", "isApiVersion": false, @@ -116428,13 +116621,13 @@ "decorators": [] }, { - "$id": "8792", + "$id": "8805", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1965" + "$ref": "1966" }, "location": "Header", "isApiVersion": false, @@ -116446,12 +116639,12 @@ "decorators": [] }, { - "$id": "8793", + "$id": "8806", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1967" + "$ref": "1968" }, "location": "Header", "isApiVersion": false, @@ -116465,7 +116658,7 @@ ], "response": { "type": { - "$ref": "3920" + "$ref": "3921" } }, "isOverride": false, @@ -116476,13 +116669,13 @@ ], "parameters": [ { - "$id": "8794", + "$id": "8807", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8795", + "$id": "8808", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -116493,7 +116686,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8796", + "$id": "8809", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -116511,37 +116704,37 @@ "crossLanguageDefinitionId": "OpenAI.Graders", "apiVersions": [], "parent": { - "$ref": "8247" + "$ref": "8260" } }, { - "$id": "8797", + "$id": "8810", "kind": "client", "name": "Evals", "namespace": "OpenAI", "methods": [ { - "$id": "8798", + "$id": "8811", "kind": "basic", "name": "listEvals", "accessibility": "public", "apiVersions": [], "summary": "List evaluations for a project.", "operation": { - "$id": "8799", + "$id": "8812", "name": "listEvals", "resourceName": "Evals", "summary": "List evaluations for a project.", "accessibility": "public", "parameters": [ { - "$id": "8800", + "$id": "8813", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last eval from the previous pagination request.", "type": { - "$id": "8801", + "$id": "8814", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116556,13 +116749,13 @@ "readOnly": false }, { - "$id": "8802", + "$id": "8815", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of evals to be returned in a single pagination response.", "type": { - "$id": "8803", + "$id": "8816", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -116577,13 +116770,13 @@ "readOnly": false }, { - "$id": "8804", + "$id": "8817", "kind": "query", "name": "order", "serializedName": "order", "doc": "Sort order for evals by timestamp. Use `asc` for ascending order or\n`desc` for descending order.", "type": { - "$ref": "1422" + "$ref": "1423" }, "isApiVersion": false, "explode": false, @@ -116594,13 +116787,13 @@ "readOnly": false }, { - "$id": "8805", + "$id": "8818", "kind": "query", "name": "order_by", "serializedName": "order_by", "doc": "Evals can be ordered by creation time or last updated time. Use\n`created_at` for creation time or `updated_at` for last updated\ntime.", "type": { - "$ref": "1426" + "$ref": "1427" }, "isApiVersion": false, "explode": false, @@ -116611,12 +116804,12 @@ "readOnly": false }, { - "$id": "8806", + "$id": "8819", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1969" + "$ref": "1970" }, "isApiVersion": false, "optional": false, @@ -116633,7 +116826,7 @@ 200 ], "bodyType": { - "$ref": "3923" + "$ref": "3924" }, "headers": [], "isErrorResponse": false, @@ -116653,13 +116846,13 @@ }, "parameters": [ { - "$id": "8807", + "$id": "8820", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last eval from the previous pagination request.", "type": { - "$id": "8808", + "$id": "8821", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116675,13 +116868,13 @@ "decorators": [] }, { - "$id": "8809", + "$id": "8822", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of evals to be returned in a single pagination response.", "type": { - "$id": "8810", + "$id": "8823", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -116697,13 +116890,13 @@ "decorators": [] }, { - "$id": "8811", + "$id": "8824", "kind": "method", "name": "order", "serializedName": "order", "doc": "Sort order for evals by timestamp. Use `asc` for ascending order or\n`desc` for descending order.", "type": { - "$ref": "1422" + "$ref": "1423" }, "location": "Query", "isApiVersion": false, @@ -116715,13 +116908,13 @@ "decorators": [] }, { - "$id": "8812", + "$id": "8825", "kind": "method", "name": "order_by", "serializedName": "order_by", "doc": "Evals can be ordered by creation time or last updated time. Use\n`created_at` for creation time or `updated_at` for last updated\ntime.", "type": { - "$ref": "1426" + "$ref": "1427" }, "location": "Query", "isApiVersion": false, @@ -116733,12 +116926,12 @@ "decorators": [] }, { - "$id": "8813", + "$id": "8826", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1969" + "$ref": "1970" }, "location": "Header", "isApiVersion": false, @@ -116752,7 +116945,7 @@ ], "response": { "type": { - "$ref": "3923" + "$ref": "3924" } }, "isOverride": false, @@ -116761,27 +116954,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.listEvals" }, { - "$id": "8814", + "$id": "8827", "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": "8815", + "$id": "8828", "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": "8816", + "$id": "8829", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1971" + "$ref": "1972" }, "isApiVersion": false, "optional": false, @@ -116792,12 +116985,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEval.contentType" }, { - "$id": "8817", + "$id": "8830", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1973" + "$ref": "1974" }, "isApiVersion": false, "optional": false, @@ -116808,12 +117001,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEval.accept" }, { - "$id": "8818", + "$id": "8831", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$ref": "4015" + "$ref": "4016" }, "isApiVersion": false, "contentTypes": [ @@ -116833,7 +117026,7 @@ 201 ], "bodyType": { - "$ref": "3927" + "$ref": "3928" }, "headers": [], "isErrorResponse": false, @@ -116856,12 +117049,12 @@ }, "parameters": [ { - "$id": "8819", + "$id": "8832", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "4015" + "$ref": "4016" }, "location": "Body", "isApiVersion": false, @@ -116873,13 +117066,13 @@ "decorators": [] }, { - "$id": "8820", + "$id": "8833", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1971" + "$ref": "1972" }, "location": "Header", "isApiVersion": false, @@ -116891,12 +117084,12 @@ "decorators": [] }, { - "$id": "8821", + "$id": "8834", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1973" + "$ref": "1974" }, "location": "Header", "isApiVersion": false, @@ -116910,7 +117103,7 @@ ], "response": { "type": { - "$ref": "3927" + "$ref": "3928" } }, "isOverride": false, @@ -116919,26 +117112,26 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEval" }, { - "$id": "8822", + "$id": "8835", "kind": "basic", "name": "getEval", "accessibility": "public", "apiVersions": [], "summary": "Retrieve an evaluation by its ID.", "operation": { - "$id": "8823", + "$id": "8836", "name": "getEval", "resourceName": "Evals", "summary": "Retrieve an evaluation by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8824", + "$id": "8837", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "type": { - "$id": "8825", + "$id": "8838", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116956,12 +117149,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEval.eval_id" }, { - "$id": "8826", + "$id": "8839", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1975" + "$ref": "1976" }, "isApiVersion": false, "optional": false, @@ -116978,7 +117171,7 @@ 200 ], "bodyType": { - "$ref": "3927" + "$ref": "3928" }, "headers": [], "isErrorResponse": false, @@ -116998,12 +117191,12 @@ }, "parameters": [ { - "$id": "8827", + "$id": "8840", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "type": { - "$id": "8828", + "$id": "8841", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117019,12 +117212,12 @@ "decorators": [] }, { - "$id": "8829", + "$id": "8842", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1975" + "$ref": "1976" }, "location": "Header", "isApiVersion": false, @@ -117038,7 +117231,7 @@ ], "response": { "type": { - "$ref": "3927" + "$ref": "3928" } }, "isOverride": false, @@ -117047,27 +117240,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEval" }, { - "$id": "8830", + "$id": "8843", "kind": "basic", "name": "updateEval", "accessibility": "public", "apiVersions": [], "doc": "Update select, mutable properties of a specified evaluation.", "operation": { - "$id": "8831", + "$id": "8844", "name": "updateEval", "resourceName": "Evals", "doc": "Update select, mutable properties of a specified evaluation.", "accessibility": "public", "parameters": [ { - "$id": "8832", + "$id": "8845", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to update.", "type": { - "$id": "8833", + "$id": "8846", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117085,13 +117278,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.updateEval.eval_id" }, { - "$id": "8834", + "$id": "8847", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1977" + "$ref": "1978" }, "isApiVersion": false, "optional": false, @@ -117102,12 +117295,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.updateEval.contentType" }, { - "$id": "8835", + "$id": "8848", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1979" + "$ref": "1980" }, "isApiVersion": false, "optional": false, @@ -117118,12 +117311,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.updateEval.accept" }, { - "$id": "8836", + "$id": "8849", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$ref": "4095" + "$ref": "4096" }, "isApiVersion": false, "contentTypes": [ @@ -117143,7 +117336,7 @@ 200 ], "bodyType": { - "$ref": "3927" + "$ref": "3928" }, "headers": [], "isErrorResponse": false, @@ -117166,13 +117359,13 @@ }, "parameters": [ { - "$id": "8837", + "$id": "8850", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to update.", "type": { - "$id": "8838", + "$id": "8851", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117188,12 +117381,12 @@ "decorators": [] }, { - "$id": "8839", + "$id": "8852", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "4095" + "$ref": "4096" }, "location": "Body", "isApiVersion": false, @@ -117205,13 +117398,13 @@ "decorators": [] }, { - "$id": "8840", + "$id": "8853", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1977" + "$ref": "1978" }, "location": "Header", "isApiVersion": false, @@ -117223,12 +117416,12 @@ "decorators": [] }, { - "$id": "8841", + "$id": "8854", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1979" + "$ref": "1980" }, "location": "Header", "isApiVersion": false, @@ -117242,7 +117435,7 @@ ], "response": { "type": { - "$ref": "3927" + "$ref": "3928" } }, "isOverride": false, @@ -117251,27 +117444,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.updateEval" }, { - "$id": "8842", + "$id": "8855", "kind": "basic", "name": "deleteEval", "accessibility": "public", "apiVersions": [], "doc": "Delete a specified evaluation.", "operation": { - "$id": "8843", + "$id": "8856", "name": "deleteEval", "resourceName": "Evals", "doc": "Delete a specified evaluation.", "accessibility": "public", "parameters": [ { - "$id": "8844", + "$id": "8857", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to delete.", "type": { - "$id": "8845", + "$id": "8858", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117289,12 +117482,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEval.eval_id" }, { - "$id": "8846", + "$id": "8859", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1981" + "$ref": "1982" }, "isApiVersion": false, "optional": false, @@ -117311,7 +117504,7 @@ 200 ], "bodyType": { - "$ref": "4101" + "$ref": "4102" }, "headers": [], "isErrorResponse": false, @@ -117331,13 +117524,13 @@ }, "parameters": [ { - "$id": "8847", + "$id": "8860", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to delete.", "type": { - "$id": "8848", + "$id": "8861", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117353,12 +117546,12 @@ "decorators": [] }, { - "$id": "8849", + "$id": "8862", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1981" + "$ref": "1982" }, "location": "Header", "isApiVersion": false, @@ -117372,7 +117565,7 @@ ], "response": { "type": { - "$ref": "4101" + "$ref": "4102" } }, "isOverride": false, @@ -117381,7 +117574,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEval" }, { - "$id": "8850", + "$id": "8863", "kind": "basic", "name": "getEvalRuns", "accessibility": "public", @@ -117389,7 +117582,7 @@ "doc": "Retrieve a list of runs for a specified evaluation.", "summary": "", "operation": { - "$id": "8851", + "$id": "8864", "name": "getEvalRuns", "resourceName": "Evals", "summary": "", @@ -117397,13 +117590,13 @@ "accessibility": "public", "parameters": [ { - "$id": "8852", + "$id": "8865", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to retrieve runs for.", "type": { - "$id": "8853", + "$id": "8866", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117421,13 +117614,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRuns.eval_id" }, { - "$id": "8854", + "$id": "8867", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last run from the previous pagination request.", "type": { - "$id": "8855", + "$id": "8868", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117442,13 +117635,13 @@ "readOnly": false }, { - "$id": "8856", + "$id": "8869", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of runs to be returned in a single pagination response.", "type": { - "$id": "8857", + "$id": "8870", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -117463,13 +117656,13 @@ "readOnly": false }, { - "$id": "8858", + "$id": "8871", "kind": "query", "name": "order", "serializedName": "order", "doc": "Sort order for runs by timestamp. Use `asc` for ascending order or `desc` for descending order.", "type": { - "$ref": "1430" + "$ref": "1431" }, "isApiVersion": false, "explode": false, @@ -117480,13 +117673,13 @@ "readOnly": false }, { - "$id": "8859", + "$id": "8872", "kind": "query", "name": "status", "serializedName": "status", "doc": "Filter runs by their status. Possible values are `queued`, `in_progress`, `completed`, `canceled`, and `failed`.", "type": { - "$ref": "1434" + "$ref": "1435" }, "isApiVersion": false, "explode": false, @@ -117497,12 +117690,12 @@ "readOnly": false }, { - "$id": "8860", + "$id": "8873", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1983" + "$ref": "1984" }, "isApiVersion": false, "optional": false, @@ -117519,7 +117712,7 @@ 200 ], "bodyType": { - "$ref": "4107" + "$ref": "4108" }, "headers": [], "isErrorResponse": false, @@ -117539,13 +117732,13 @@ }, "parameters": [ { - "$id": "8861", + "$id": "8874", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to retrieve runs for.", "type": { - "$id": "8862", + "$id": "8875", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117561,13 +117754,13 @@ "decorators": [] }, { - "$id": "8863", + "$id": "8876", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last run from the previous pagination request.", "type": { - "$id": "8864", + "$id": "8877", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117583,13 +117776,13 @@ "decorators": [] }, { - "$id": "8865", + "$id": "8878", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of runs to be returned in a single pagination response.", "type": { - "$id": "8866", + "$id": "8879", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -117605,13 +117798,13 @@ "decorators": [] }, { - "$id": "8867", + "$id": "8880", "kind": "method", "name": "order", "serializedName": "order", "doc": "Sort order for runs by timestamp. Use `asc` for ascending order or `desc` for descending order.", "type": { - "$ref": "1430" + "$ref": "1431" }, "location": "Query", "isApiVersion": false, @@ -117623,13 +117816,13 @@ "decorators": [] }, { - "$id": "8868", + "$id": "8881", "kind": "method", "name": "status", "serializedName": "status", "doc": "Filter runs by their status. Possible values are `queued`, `in_progress`, `completed`, `canceled`, and `failed`.", "type": { - "$ref": "1434" + "$ref": "1435" }, "location": "Query", "isApiVersion": false, @@ -117641,12 +117834,12 @@ "decorators": [] }, { - "$id": "8869", + "$id": "8882", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1983" + "$ref": "1984" }, "location": "Header", "isApiVersion": false, @@ -117660,7 +117853,7 @@ ], "response": { "type": { - "$ref": "4107" + "$ref": "4108" } }, "isOverride": false, @@ -117669,27 +117862,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRuns" }, { - "$id": "8870", + "$id": "8883", "kind": "basic", "name": "createEvalRun", "accessibility": "public", "apiVersions": [], "doc": "Create a new evaluation run, beginning the grading process.", "operation": { - "$id": "8871", + "$id": "8884", "name": "createEvalRun", "resourceName": "Evals", "doc": "Create a new evaluation run, beginning the grading process.", "accessibility": "public", "parameters": [ { - "$id": "8872", + "$id": "8885", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to run.", "type": { - "$id": "8873", + "$id": "8886", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117707,13 +117900,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEvalRun.eval_id" }, { - "$id": "8874", + "$id": "8887", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1985" + "$ref": "1986" }, "isApiVersion": false, "optional": false, @@ -117724,12 +117917,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEvalRun.contentType" }, { - "$id": "8875", + "$id": "8888", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1987" + "$ref": "1988" }, "isApiVersion": false, "optional": false, @@ -117740,12 +117933,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEvalRun.accept" }, { - "$id": "8876", + "$id": "8889", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$ref": "4178" + "$ref": "4179" }, "isApiVersion": false, "contentTypes": [ @@ -117765,7 +117958,7 @@ 201 ], "bodyType": { - "$ref": "4111" + "$ref": "4112" }, "headers": [], "isErrorResponse": false, @@ -117788,13 +117981,13 @@ }, "parameters": [ { - "$id": "8877", + "$id": "8890", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to run.", "type": { - "$id": "8878", + "$id": "8891", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117810,12 +118003,12 @@ "decorators": [] }, { - "$id": "8879", + "$id": "8892", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "4178" + "$ref": "4179" }, "location": "Body", "isApiVersion": false, @@ -117827,13 +118020,13 @@ "decorators": [] }, { - "$id": "8880", + "$id": "8893", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1985" + "$ref": "1986" }, "location": "Header", "isApiVersion": false, @@ -117845,12 +118038,12 @@ "decorators": [] }, { - "$id": "8881", + "$id": "8894", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1987" + "$ref": "1988" }, "location": "Header", "isApiVersion": false, @@ -117864,7 +118057,7 @@ ], "response": { "type": { - "$ref": "4111" + "$ref": "4112" } }, "isOverride": false, @@ -117873,27 +118066,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEvalRun" }, { - "$id": "8882", + "$id": "8895", "kind": "basic", "name": "getEvalRun", "accessibility": "public", "apiVersions": [], "doc": "Retrieve a specific evaluation run by its ID.", "operation": { - "$id": "8883", + "$id": "8896", "name": "getEvalRun", "resourceName": "Evals", "doc": "Retrieve a specific evaluation run by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8884", + "$id": "8897", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8885", + "$id": "8898", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117911,13 +118104,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRun.eval_id" }, { - "$id": "8886", + "$id": "8899", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to retrieve.", "type": { - "$id": "8887", + "$id": "8900", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117935,12 +118128,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRun.run_id" }, { - "$id": "8888", + "$id": "8901", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1989" + "$ref": "1990" }, "isApiVersion": false, "optional": false, @@ -117957,7 +118150,7 @@ 200 ], "bodyType": { - "$ref": "4111" + "$ref": "4112" }, "headers": [], "isErrorResponse": false, @@ -117977,13 +118170,13 @@ }, "parameters": [ { - "$id": "8889", + "$id": "8902", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8890", + "$id": "8903", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117999,13 +118192,13 @@ "decorators": [] }, { - "$id": "8891", + "$id": "8904", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to retrieve.", "type": { - "$id": "8892", + "$id": "8905", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118021,12 +118214,12 @@ "decorators": [] }, { - "$id": "8893", + "$id": "8906", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1989" + "$ref": "1990" }, "location": "Header", "isApiVersion": false, @@ -118040,7 +118233,7 @@ ], "response": { "type": { - "$ref": "4111" + "$ref": "4112" } }, "isOverride": false, @@ -118049,27 +118242,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRun" }, { - "$id": "8894", + "$id": "8907", "kind": "basic", "name": "cancelEvalRun", "accessibility": "public", "apiVersions": [], "doc": "Cancel a specific evaluation run by its ID.", "operation": { - "$id": "8895", + "$id": "8908", "name": "cancelEvalRun", "resourceName": "Evals", "doc": "Cancel a specific evaluation run by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8896", + "$id": "8909", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8897", + "$id": "8910", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118087,13 +118280,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.cancelEvalRun.eval_id" }, { - "$id": "8898", + "$id": "8911", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to cancel.", "type": { - "$id": "8899", + "$id": "8912", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118111,12 +118304,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.cancelEvalRun.run_id" }, { - "$id": "8900", + "$id": "8913", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1991" + "$ref": "1992" }, "isApiVersion": false, "optional": false, @@ -118133,7 +118326,7 @@ 200 ], "bodyType": { - "$ref": "4111" + "$ref": "4112" }, "headers": [], "isErrorResponse": false, @@ -118153,13 +118346,13 @@ }, "parameters": [ { - "$id": "8901", + "$id": "8914", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8902", + "$id": "8915", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118175,13 +118368,13 @@ "decorators": [] }, { - "$id": "8903", + "$id": "8916", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to cancel.", "type": { - "$id": "8904", + "$id": "8917", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118197,12 +118390,12 @@ "decorators": [] }, { - "$id": "8905", + "$id": "8918", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1991" + "$ref": "1992" }, "location": "Header", "isApiVersion": false, @@ -118216,7 +118409,7 @@ ], "response": { "type": { - "$ref": "4111" + "$ref": "4112" } }, "isOverride": false, @@ -118225,27 +118418,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.cancelEvalRun" }, { - "$id": "8906", + "$id": "8919", "kind": "basic", "name": "deleteEvalRun", "accessibility": "public", "apiVersions": [], "doc": "Delete a specific evaluation run by its ID.", "operation": { - "$id": "8907", + "$id": "8920", "name": "deleteEvalRun", "resourceName": "Evals", "doc": "Delete a specific evaluation run by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8908", + "$id": "8921", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8909", + "$id": "8922", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118263,13 +118456,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEvalRun.eval_id" }, { - "$id": "8910", + "$id": "8923", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to delete.", "type": { - "$id": "8911", + "$id": "8924", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118287,12 +118480,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEvalRun.run_id" }, { - "$id": "8912", + "$id": "8925", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1993" + "$ref": "1994" }, "isApiVersion": false, "optional": false, @@ -118309,7 +118502,7 @@ 200 ], "bodyType": { - "$ref": "4541" + "$ref": "4554" }, "headers": [], "isErrorResponse": false, @@ -118329,13 +118522,13 @@ }, "parameters": [ { - "$id": "8913", + "$id": "8926", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8914", + "$id": "8927", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118351,13 +118544,13 @@ "decorators": [] }, { - "$id": "8915", + "$id": "8928", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to delete.", "type": { - "$id": "8916", + "$id": "8929", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118373,12 +118566,12 @@ "decorators": [] }, { - "$id": "8917", + "$id": "8930", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1993" + "$ref": "1994" }, "location": "Header", "isApiVersion": false, @@ -118392,7 +118585,7 @@ ], "response": { "type": { - "$ref": "4541" + "$ref": "4554" } }, "isOverride": false, @@ -118401,27 +118594,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEvalRun" }, { - "$id": "8918", + "$id": "8931", "kind": "basic", "name": "getEvalRunOutputItems", "accessibility": "public", "apiVersions": [], "doc": "Get a list of output items for a specified evaluation run.", "operation": { - "$id": "8919", + "$id": "8932", "name": "getEvalRunOutputItems", "resourceName": "Evals", "doc": "Get a list of output items for a specified evaluation run.", "accessibility": "public", "parameters": [ { - "$id": "8920", + "$id": "8933", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8921", + "$id": "8934", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118439,13 +118632,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItems.eval_id" }, { - "$id": "8922", + "$id": "8935", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to retrieve output items for.", "type": { - "$id": "8923", + "$id": "8936", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118463,13 +118656,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItems.run_id" }, { - "$id": "8924", + "$id": "8937", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last output item from the previous pagination request.", "type": { - "$id": "8925", + "$id": "8938", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118484,13 +118677,13 @@ "readOnly": false }, { - "$id": "8926", + "$id": "8939", "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": "8927", + "$id": "8940", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -118505,13 +118698,13 @@ "readOnly": false }, { - "$id": "8928", + "$id": "8941", "kind": "query", "name": "status", "serializedName": "status", "doc": "Filter output items by their status. Possible values are `fail` and `pass`.", "type": { - "$ref": "1441" + "$ref": "1442" }, "isApiVersion": false, "explode": false, @@ -118522,13 +118715,13 @@ "readOnly": false }, { - "$id": "8929", + "$id": "8942", "kind": "query", "name": "order", "serializedName": "order", "doc": "Sort order for output items by timestamp. Use `asc` for ascending order or `desc` for descending order.", "type": { - "$ref": "1445" + "$ref": "1446" }, "isApiVersion": false, "explode": false, @@ -118539,12 +118732,12 @@ "readOnly": false }, { - "$id": "8930", + "$id": "8943", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1995" + "$ref": "1996" }, "isApiVersion": false, "optional": false, @@ -118561,7 +118754,7 @@ 200 ], "bodyType": { - "$ref": "4547" + "$ref": "4560" }, "headers": [], "isErrorResponse": false, @@ -118581,13 +118774,13 @@ }, "parameters": [ { - "$id": "8931", + "$id": "8944", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8932", + "$id": "8945", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118603,13 +118796,13 @@ "decorators": [] }, { - "$id": "8933", + "$id": "8946", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to retrieve output items for.", "type": { - "$id": "8934", + "$id": "8947", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118625,13 +118818,13 @@ "decorators": [] }, { - "$id": "8935", + "$id": "8948", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last output item from the previous pagination request.", "type": { - "$id": "8936", + "$id": "8949", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118647,13 +118840,13 @@ "decorators": [] }, { - "$id": "8937", + "$id": "8950", "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": "8938", + "$id": "8951", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -118669,13 +118862,13 @@ "decorators": [] }, { - "$id": "8939", + "$id": "8952", "kind": "method", "name": "status", "serializedName": "status", "doc": "Filter output items by their status. Possible values are `fail` and `pass`.", "type": { - "$ref": "1441" + "$ref": "1442" }, "location": "Query", "isApiVersion": false, @@ -118687,13 +118880,13 @@ "decorators": [] }, { - "$id": "8940", + "$id": "8953", "kind": "method", "name": "order", "serializedName": "order", "doc": "Sort order for output items by timestamp. Use `asc` for ascending order or `desc` for descending order.", "type": { - "$ref": "1445" + "$ref": "1446" }, "location": "Query", "isApiVersion": false, @@ -118705,12 +118898,12 @@ "decorators": [] }, { - "$id": "8941", + "$id": "8954", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1995" + "$ref": "1996" }, "location": "Header", "isApiVersion": false, @@ -118724,7 +118917,7 @@ ], "response": { "type": { - "$ref": "4547" + "$ref": "4560" } }, "isOverride": false, @@ -118733,27 +118926,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItems" }, { - "$id": "8942", + "$id": "8955", "kind": "basic", "name": "getEvalRunOutputItem", "accessibility": "public", "apiVersions": [], "doc": "Retrieve a specific output item from an evaluation run by its ID.", "operation": { - "$id": "8943", + "$id": "8956", "name": "getEvalRunOutputItem", "resourceName": "Evals", "doc": "Retrieve a specific output item from an evaluation run by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8944", + "$id": "8957", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8945", + "$id": "8958", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118771,13 +118964,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItem.eval_id" }, { - "$id": "8946", + "$id": "8959", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run the output item belongs to.", "type": { - "$id": "8947", + "$id": "8960", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118795,13 +118988,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItem.run_id" }, { - "$id": "8948", + "$id": "8961", "kind": "path", "name": "output_item_id", "serializedName": "output_item_id", "doc": "The ID of the output item to retrieve.", "type": { - "$id": "8949", + "$id": "8962", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118819,12 +119012,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItem.output_item_id" }, { - "$id": "8950", + "$id": "8963", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1997" + "$ref": "1998" }, "isApiVersion": false, "optional": false, @@ -118841,7 +119034,7 @@ 200 ], "bodyType": { - "$ref": "4551" + "$ref": "4564" }, "headers": [], "isErrorResponse": false, @@ -118861,13 +119054,13 @@ }, "parameters": [ { - "$id": "8951", + "$id": "8964", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8952", + "$id": "8965", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118883,13 +119076,13 @@ "decorators": [] }, { - "$id": "8953", + "$id": "8966", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run the output item belongs to.", "type": { - "$id": "8954", + "$id": "8967", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118905,13 +119098,13 @@ "decorators": [] }, { - "$id": "8955", + "$id": "8968", "kind": "method", "name": "output_item_id", "serializedName": "output_item_id", "doc": "The ID of the output item to retrieve.", "type": { - "$id": "8956", + "$id": "8969", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118927,12 +119120,12 @@ "decorators": [] }, { - "$id": "8957", + "$id": "8970", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1997" + "$ref": "1998" }, "location": "Header", "isApiVersion": false, @@ -118946,7 +119139,7 @@ ], "response": { "type": { - "$ref": "4551" + "$ref": "4564" } }, "isOverride": false, @@ -118957,13 +119150,13 @@ ], "parameters": [ { - "$id": "8958", + "$id": "8971", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8959", + "$id": "8972", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -118974,7 +119167,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8960", + "$id": "8973", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -118992,36 +119185,36 @@ "crossLanguageDefinitionId": "OpenAI.Evals", "apiVersions": [], "parent": { - "$ref": "8247" + "$ref": "8260" } }, { - "$id": "8961", + "$id": "8974", "kind": "client", "name": "Responses", "namespace": "OpenAI", "methods": [ { - "$id": "8962", + "$id": "8975", "kind": "basic", "name": "createResponse", "accessibility": "public", "apiVersions": [], "doc": "Creates a model response.", "operation": { - "$id": "8963", + "$id": "8976", "name": "createResponse", "resourceName": "Responses", "doc": "Creates a model response.", "accessibility": "public", "parameters": [ { - "$id": "8964", + "$id": "8977", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1412" + "$ref": "1413" }, "isApiVersion": false, "optional": false, @@ -119032,13 +119225,13 @@ "crossLanguageDefinitionId": "OpenAI.Responses.createResponse.accept" }, { - "$id": "8965", + "$id": "8978", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1999" + "$ref": "2000" }, "isApiVersion": false, "optional": false, @@ -119049,12 +119242,12 @@ "crossLanguageDefinitionId": "OpenAI.Responses.createResponse.contentType" }, { - "$id": "8966", + "$id": "8979", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "4614" + "$ref": "4627" }, "isApiVersion": false, "contentTypes": [ @@ -119074,15 +119267,15 @@ 200 ], "bodyType": { - "$id": "8967", + "$id": "8980", "kind": "union", "name": "", "variantTypes": [ { - "$ref": "5153" + "$ref": "5166" }, { - "$ref": "5338" + "$ref": "5351" } ], "namespace": "", @@ -119093,7 +119286,7 @@ "name": "contentType", "nameInResponse": "Content-Type", "type": { - "$ref": "2001" + "$ref": "2002" } } ], @@ -119118,12 +119311,12 @@ }, "parameters": [ { - "$id": "8968", + "$id": "8981", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1412" + "$ref": "1413" }, "location": "Header", "isApiVersion": false, @@ -119135,12 +119328,12 @@ "decorators": [] }, { - "$id": "8969", + "$id": "8982", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "4614" + "$ref": "4627" }, "location": "Body", "isApiVersion": false, @@ -119152,13 +119345,13 @@ "decorators": [] }, { - "$id": "8970", + "$id": "8983", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1999" + "$ref": "2000" }, "location": "Header", "isApiVersion": false, @@ -119172,7 +119365,7 @@ ], "response": { "type": { - "$ref": "8967" + "$ref": "8980" } }, "isOverride": false, @@ -119181,27 +119374,27 @@ "crossLanguageDefinitionId": "OpenAI.Responses.createResponse" }, { - "$id": "8971", + "$id": "8984", "kind": "basic", "name": "getResponse", "accessibility": "public", "apiVersions": [], "doc": "Retrieves a model response with the given ID.", "operation": { - "$id": "8972", + "$id": "8985", "name": "getResponse", "resourceName": "Responses", "doc": "Retrieves a model response with the given ID.", "accessibility": "public", "parameters": [ { - "$id": "8973", + "$id": "8986", "kind": "path", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to retrieve.", "type": { - "$id": "8974", + "$id": "8987", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119219,12 +119412,12 @@ "crossLanguageDefinitionId": "OpenAI.Responses.getResponse.response_id" }, { - "$id": "8975", + "$id": "8988", "kind": "query", "name": "includables", "serializedName": "include[]", "type": { - "$ref": "5143" + "$ref": "5156" }, "isApiVersion": false, "explode": true, @@ -119235,13 +119428,13 @@ "readOnly": false }, { - "$id": "8976", + "$id": "8989", "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": "8977", + "$id": "8990", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -119256,13 +119449,13 @@ "readOnly": false }, { - "$id": "8978", + "$id": "8991", "kind": "query", "name": "starting_after", "serializedName": "starting_after", "doc": "The sequence number of the event after which to start streaming.", "type": { - "$id": "8979", + "$id": "8992", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -119277,12 +119470,12 @@ "readOnly": false }, { - "$id": "8980", + "$id": "8993", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$id": "8981", + "$id": "8994", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119303,15 +119496,15 @@ 200 ], "bodyType": { - "$id": "8982", + "$id": "8995", "kind": "union", "name": "", "variantTypes": [ { - "$ref": "5153" + "$ref": "5166" }, { - "$ref": "5338" + "$ref": "5351" } ], "namespace": "", @@ -119322,7 +119515,7 @@ "name": "contentType", "nameInResponse": "Content-Type", "type": { - "$ref": "2003" + "$ref": "2004" } } ], @@ -119344,13 +119537,13 @@ }, "parameters": [ { - "$id": "8983", + "$id": "8996", "kind": "method", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to retrieve.", "type": { - "$id": "8984", + "$id": "8997", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119366,12 +119559,12 @@ "decorators": [] }, { - "$id": "8985", + "$id": "8998", "kind": "method", "name": "includables", "serializedName": "include[]", "type": { - "$ref": "5143" + "$ref": "5156" }, "location": "Query", "isApiVersion": false, @@ -119383,13 +119576,13 @@ "decorators": [] }, { - "$id": "8986", + "$id": "8999", "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": "8987", + "$id": "9000", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -119405,13 +119598,13 @@ "decorators": [] }, { - "$id": "8988", + "$id": "9001", "kind": "method", "name": "starting_after", "serializedName": "starting_after", "doc": "The sequence number of the event after which to start streaming.", "type": { - "$id": "8989", + "$id": "9002", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -119427,12 +119620,12 @@ "decorators": [] }, { - "$id": "8990", + "$id": "9003", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "8981" + "$ref": "8994" }, "location": "Header", "isApiVersion": false, @@ -119446,7 +119639,7 @@ ], "response": { "type": { - "$ref": "8982" + "$ref": "8995" } }, "isOverride": false, @@ -119455,25 +119648,25 @@ "crossLanguageDefinitionId": "OpenAI.Responses.getResponse" }, { - "$id": "8991", + "$id": "9004", "kind": "basic", "name": "deleteResponse", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8992", + "$id": "9005", "name": "deleteResponse", "resourceName": "Responses", "accessibility": "public", "parameters": [ { - "$id": "8993", + "$id": "9006", "kind": "path", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to delete.", "type": { - "$id": "8994", + "$id": "9007", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119491,12 +119684,12 @@ "crossLanguageDefinitionId": "OpenAI.Responses.deleteResponse.response_id" }, { - "$id": "8995", + "$id": "9008", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2005" + "$ref": "2006" }, "isApiVersion": false, "optional": false, @@ -119513,7 +119706,7 @@ 200 ], "bodyType": { - "$ref": "5824" + "$ref": "5837" }, "headers": [], "isErrorResponse": false, @@ -119533,13 +119726,13 @@ }, "parameters": [ { - "$id": "8996", + "$id": "9009", "kind": "method", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to delete.", "type": { - "$id": "8997", + "$id": "9010", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119555,12 +119748,12 @@ "decorators": [] }, { - "$id": "8998", + "$id": "9011", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2005" + "$ref": "2006" }, "location": "Header", "isApiVersion": false, @@ -119574,7 +119767,7 @@ ], "response": { "type": { - "$ref": "5824" + "$ref": "5837" } }, "isOverride": false, @@ -119583,25 +119776,25 @@ "crossLanguageDefinitionId": "OpenAI.Responses.deleteResponse" }, { - "$id": "8999", + "$id": "9012", "kind": "basic", "name": "cancelResponse", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "9000", + "$id": "9013", "name": "cancelResponse", "resourceName": "Responses", "accessibility": "public", "parameters": [ { - "$id": "9001", + "$id": "9014", "kind": "path", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to cancel.", "type": { - "$id": "9002", + "$id": "9015", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119619,12 +119812,12 @@ "crossLanguageDefinitionId": "OpenAI.Responses.cancelResponse.response_id" }, { - "$id": "9003", + "$id": "9016", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2007" + "$ref": "2008" }, "isApiVersion": false, "optional": false, @@ -119641,7 +119834,7 @@ 200 ], "bodyType": { - "$ref": "5153" + "$ref": "5166" }, "headers": [], "isErrorResponse": false, @@ -119661,13 +119854,13 @@ }, "parameters": [ { - "$id": "9004", + "$id": "9017", "kind": "method", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to cancel.", "type": { - "$id": "9005", + "$id": "9018", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119683,12 +119876,12 @@ "decorators": [] }, { - "$id": "9006", + "$id": "9019", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2007" + "$ref": "2008" }, "location": "Header", "isApiVersion": false, @@ -119702,7 +119895,7 @@ ], "response": { "type": { - "$ref": "5153" + "$ref": "5166" } }, "isOverride": false, @@ -119711,27 +119904,27 @@ "crossLanguageDefinitionId": "OpenAI.Responses.cancelResponse" }, { - "$id": "9007", + "$id": "9020", "kind": "paging", "name": "GetResponseInputItems", "accessibility": "public", "apiVersions": [], "doc": "Returns a list of input items for a given response.", "operation": { - "$id": "9008", + "$id": "9021", "name": "GetResponseInputItems", "resourceName": "Responses", "doc": "Returns a list of input items for a given response.", "accessibility": "public", "parameters": [ { - "$id": "9009", + "$id": "9022", "kind": "path", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to retrieve.", "type": { - "$id": "9010", + "$id": "9023", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119749,13 +119942,13 @@ "crossLanguageDefinitionId": "OpenAI.Responses.listInputItems.response_id" }, { - "$id": "9011", + "$id": "9024", "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": "9012", + "$id": "9025", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -119770,13 +119963,13 @@ "readOnly": false }, { - "$id": "9013", + "$id": "9026", "kind": "query", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "isApiVersion": false, "explode": false, @@ -119787,13 +119980,13 @@ "readOnly": false }, { - "$id": "9014", + "$id": "9027", "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": "9015", + "$id": "9028", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119808,13 +120001,13 @@ "readOnly": false }, { - "$id": "9016", + "$id": "9029", "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": "9017", + "$id": "9030", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119829,12 +120022,12 @@ "readOnly": false }, { - "$id": "9018", + "$id": "9031", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2009" + "$ref": "2010" }, "isApiVersion": false, "optional": false, @@ -119851,7 +120044,7 @@ 200 ], "bodyType": { - "$ref": "5829" + "$ref": "5842" }, "headers": [], "isErrorResponse": false, @@ -119871,13 +120064,13 @@ }, "parameters": [ { - "$id": "9019", + "$id": "9032", "kind": "method", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to retrieve.", "type": { - "$id": "9020", + "$id": "9033", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119893,13 +120086,13 @@ "decorators": [] }, { - "$id": "9021", + "$id": "9034", "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": "9022", + "$id": "9035", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -119915,13 +120108,13 @@ "decorators": [] }, { - "$id": "9023", + "$id": "9036", "kind": "method", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "location": "Query", "isApiVersion": false, @@ -119933,13 +120126,13 @@ "decorators": [] }, { - "$id": "9024", + "$id": "9037", "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": "9025", + "$id": "9038", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119955,13 +120148,13 @@ "decorators": [] }, { - "$id": "9026", + "$id": "9039", "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": "9027", + "$id": "9040", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119977,12 +120170,12 @@ "decorators": [] }, { - "$id": "9028", + "$id": "9041", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2009" + "$ref": "2010" }, "location": "Header", "isApiVersion": false, @@ -119996,7 +120189,7 @@ ], "response": { "type": { - "$ref": "5193" + "$ref": "5206" }, "resultSegments": [ "data" @@ -120012,7 +120205,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9014" + "$ref": "9027" }, "responseSegments": [ "last_id" @@ -120024,13 +120217,13 @@ ], "parameters": [ { - "$id": "9029", + "$id": "9042", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9030", + "$id": "9043", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -120041,7 +120234,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9031", + "$id": "9044", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -120059,36 +120252,36 @@ "crossLanguageDefinitionId": "OpenAI.Responses", "apiVersions": [], "parent": { - "$ref": "8247" + "$ref": "8260" } }, { - "$id": "9032", + "$id": "9045", "kind": "client", "name": "Images", "namespace": "OpenAI", "methods": [ { - "$id": "9033", + "$id": "9046", "kind": "basic", "name": "GenerateImages", "accessibility": "public", "apiVersions": [], "summary": "Creates an image given a prompt", "operation": { - "$id": "9034", + "$id": "9047", "name": "GenerateImages", "resourceName": "Images", "summary": "Creates an image given a prompt", "accessibility": "public", "parameters": [ { - "$id": "9035", + "$id": "9048", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2011" + "$ref": "2012" }, "isApiVersion": false, "optional": false, @@ -120099,13 +120292,13 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImage.accept" }, { - "$id": "9036", + "$id": "9049", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2013" + "$ref": "2014" }, "isApiVersion": false, "optional": false, @@ -120116,12 +120309,12 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImage.contentType" }, { - "$id": "9037", + "$id": "9050", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5838" + "$ref": "5851" }, "isApiVersion": false, "contentTypes": [ @@ -120141,7 +120334,7 @@ 200 ], "bodyType": { - "$ref": "5865" + "$ref": "5878" }, "headers": [], "isErrorResponse": false, @@ -120164,12 +120357,12 @@ }, "parameters": [ { - "$id": "9038", + "$id": "9051", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2015" + "$ref": "2016" }, "location": "Header", "isApiVersion": false, @@ -120181,12 +120374,12 @@ "decorators": [] }, { - "$id": "9039", + "$id": "9052", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5838" + "$ref": "5851" }, "location": "Body", "isApiVersion": false, @@ -120198,13 +120391,13 @@ "decorators": [] }, { - "$id": "9040", + "$id": "9053", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2013" + "$ref": "2014" }, "location": "Header", "isApiVersion": false, @@ -120218,7 +120411,7 @@ ], "response": { "type": { - "$ref": "5865" + "$ref": "5878" } }, "isOverride": false, @@ -120227,26 +120420,26 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImage" }, { - "$id": "9041", + "$id": "9054", "kind": "basic", "name": "GenerateImageEdits", "accessibility": "public", "apiVersions": [], "summary": "Creates an edited or extended image given an original image and a prompt.", "operation": { - "$id": "9042", + "$id": "9055", "name": "GenerateImageEdits", "resourceName": "Images", "summary": "Creates an edited or extended image given an original image and a prompt.", "accessibility": "public", "parameters": [ { - "$id": "9043", + "$id": "9056", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2017" + "$ref": "2018" }, "isApiVersion": false, "optional": false, @@ -120257,12 +120450,12 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageEdit.accept" }, { - "$id": "9044", + "$id": "9057", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "2019" + "$ref": "2020" }, "isApiVersion": false, "optional": false, @@ -120273,12 +120466,12 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageEdit.contentType" }, { - "$id": "9045", + "$id": "9058", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5892" + "$ref": "5905" }, "isApiVersion": false, "contentTypes": [ @@ -120298,7 +120491,7 @@ 200 ], "bodyType": { - "$ref": "5865" + "$ref": "5878" }, "headers": [], "isErrorResponse": false, @@ -120321,12 +120514,12 @@ }, "parameters": [ { - "$id": "9046", + "$id": "9059", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2021" + "$ref": "2022" }, "location": "Header", "isApiVersion": false, @@ -120338,12 +120531,12 @@ "decorators": [] }, { - "$id": "9047", + "$id": "9060", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "2023" + "$ref": "2024" }, "location": "Header", "isApiVersion": false, @@ -120355,12 +120548,12 @@ "decorators": [] }, { - "$id": "9048", + "$id": "9061", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5892" + "$ref": "5905" }, "location": "Body", "isApiVersion": false, @@ -120374,7 +120567,7 @@ ], "response": { "type": { - "$ref": "5865" + "$ref": "5878" } }, "isOverride": false, @@ -120383,26 +120576,26 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageEdit" }, { - "$id": "9049", + "$id": "9062", "kind": "basic", "name": "GenerateImageVariations", "accessibility": "public", "apiVersions": [], "summary": "Creates an edited or extended image given an original image and a prompt.", "operation": { - "$id": "9050", + "$id": "9063", "name": "GenerateImageVariations", "resourceName": "Images", "summary": "Creates an edited or extended image given an original image and a prompt.", "accessibility": "public", "parameters": [ { - "$id": "9051", + "$id": "9064", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2025" + "$ref": "2026" }, "isApiVersion": false, "optional": false, @@ -120413,12 +120606,12 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageVariation.accept" }, { - "$id": "9052", + "$id": "9065", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "2027" + "$ref": "2028" }, "isApiVersion": false, "optional": false, @@ -120429,12 +120622,12 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageVariation.contentType" }, { - "$id": "9053", + "$id": "9066", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5918" + "$ref": "5931" }, "isApiVersion": false, "contentTypes": [ @@ -120454,7 +120647,7 @@ 200 ], "bodyType": { - "$ref": "5865" + "$ref": "5878" }, "headers": [], "isErrorResponse": false, @@ -120477,12 +120670,12 @@ }, "parameters": [ { - "$id": "9054", + "$id": "9067", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2029" + "$ref": "2030" }, "location": "Header", "isApiVersion": false, @@ -120494,12 +120687,12 @@ "decorators": [] }, { - "$id": "9055", + "$id": "9068", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "2031" + "$ref": "2032" }, "location": "Header", "isApiVersion": false, @@ -120511,12 +120704,12 @@ "decorators": [] }, { - "$id": "9056", + "$id": "9069", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5918" + "$ref": "5931" }, "location": "Body", "isApiVersion": false, @@ -120530,7 +120723,7 @@ ], "response": { "type": { - "$ref": "5865" + "$ref": "5878" } }, "isOverride": false, @@ -120541,13 +120734,13 @@ ], "parameters": [ { - "$id": "9057", + "$id": "9070", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9058", + "$id": "9071", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -120558,7 +120751,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9059", + "$id": "9072", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -120576,36 +120769,36 @@ "crossLanguageDefinitionId": "OpenAI.Images", "apiVersions": [], "parent": { - "$ref": "8247" + "$ref": "8260" } }, { - "$id": "9060", + "$id": "9073", "kind": "client", "name": "Messages", "namespace": "OpenAI", "methods": [ { - "$id": "9061", + "$id": "9074", "kind": "basic", "name": "createMessage", "accessibility": "public", "apiVersions": [], "summary": "Create a message.", "operation": { - "$id": "9062", + "$id": "9075", "name": "createMessage", "resourceName": "Messages", "summary": "Create a message.", "accessibility": "public", "parameters": [ { - "$id": "9063", + "$id": "9076", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2033" + "$ref": "2034" }, "isApiVersion": false, "optional": false, @@ -120616,12 +120809,12 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage.accept" }, { - "$id": "9064", + "$id": "9077", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2035" + "$ref": "2036" }, "isApiVersion": false, "optional": false, @@ -120632,13 +120825,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage.openAIBeta" }, { - "$id": "9065", + "$id": "9078", "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": "9066", + "$id": "9079", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120656,13 +120849,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage.thread_id" }, { - "$id": "9067", + "$id": "9080", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2037" + "$ref": "2038" }, "isApiVersion": false, "optional": false, @@ -120673,12 +120866,12 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage.contentType" }, { - "$id": "9068", + "$id": "9081", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5933" + "$ref": "5946" }, "isApiVersion": false, "contentTypes": [ @@ -120698,7 +120891,7 @@ 200 ], "bodyType": { - "$ref": "6021" + "$ref": "6034" }, "headers": [], "isErrorResponse": false, @@ -120721,12 +120914,12 @@ }, "parameters": [ { - "$id": "9069", + "$id": "9082", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2039" + "$ref": "2040" }, "location": "Header", "isApiVersion": false, @@ -120738,12 +120931,12 @@ "decorators": [] }, { - "$id": "9070", + "$id": "9083", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2041" + "$ref": "2042" }, "location": "Header", "isApiVersion": false, @@ -120755,13 +120948,13 @@ "decorators": [] }, { - "$id": "9071", + "$id": "9084", "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": "9072", + "$id": "9085", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120777,12 +120970,12 @@ "decorators": [] }, { - "$id": "9073", + "$id": "9086", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5933" + "$ref": "5946" }, "location": "Body", "isApiVersion": false, @@ -120794,13 +120987,13 @@ "decorators": [] }, { - "$id": "9074", + "$id": "9087", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2037" + "$ref": "2038" }, "location": "Header", "isApiVersion": false, @@ -120814,7 +121007,7 @@ ], "response": { "type": { - "$ref": "6021" + "$ref": "6034" } }, "isOverride": false, @@ -120823,26 +121016,26 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage" }, { - "$id": "9075", + "$id": "9088", "kind": "paging", "name": "listMessages", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of messages for a given thread.", "operation": { - "$id": "9076", + "$id": "9089", "name": "listMessages", "resourceName": "Messages", "summary": "Returns a list of messages for a given thread.", "accessibility": "public", "parameters": [ { - "$id": "9077", + "$id": "9090", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2043" + "$ref": "2044" }, "isApiVersion": false, "optional": false, @@ -120853,12 +121046,12 @@ "crossLanguageDefinitionId": "OpenAI.Messages.listMessages.accept" }, { - "$id": "9078", + "$id": "9091", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2045" + "$ref": "2046" }, "isApiVersion": false, "optional": false, @@ -120869,13 +121062,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.listMessages.openAIBeta" }, { - "$id": "9079", + "$id": "9092", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) the messages belong to.", "type": { - "$id": "9080", + "$id": "9093", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120893,13 +121086,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.listMessages.thread_id" }, { - "$id": "9081", + "$id": "9094", "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": "9082", + "$id": "9095", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -120914,13 +121107,13 @@ "readOnly": false }, { - "$id": "9083", + "$id": "9096", "kind": "query", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "isApiVersion": false, "explode": false, @@ -120931,13 +121124,13 @@ "readOnly": false }, { - "$id": "9084", + "$id": "9097", "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": "9085", + "$id": "9098", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120952,13 +121145,13 @@ "readOnly": false }, { - "$id": "9086", + "$id": "9099", "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": "9087", + "$id": "9100", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120979,7 +121172,7 @@ 200 ], "bodyType": { - "$ref": "6061" + "$ref": "6074" }, "headers": [], "isErrorResponse": false, @@ -120999,12 +121192,12 @@ }, "parameters": [ { - "$id": "9088", + "$id": "9101", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2047" + "$ref": "2048" }, "location": "Header", "isApiVersion": false, @@ -121016,12 +121209,12 @@ "decorators": [] }, { - "$id": "9089", + "$id": "9102", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2049" + "$ref": "2050" }, "location": "Header", "isApiVersion": false, @@ -121033,13 +121226,13 @@ "decorators": [] }, { - "$id": "9090", + "$id": "9103", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) the messages belong to.", "type": { - "$id": "9091", + "$id": "9104", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121055,13 +121248,13 @@ "decorators": [] }, { - "$id": "9092", + "$id": "9105", "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": "9093", + "$id": "9106", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -121077,13 +121270,13 @@ "decorators": [] }, { - "$id": "9094", + "$id": "9107", "kind": "method", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "location": "Query", "isApiVersion": false, @@ -121095,13 +121288,13 @@ "decorators": [] }, { - "$id": "9095", + "$id": "9108", "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": "9096", + "$id": "9109", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121117,13 +121310,13 @@ "decorators": [] }, { - "$id": "9097", + "$id": "9110", "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": "9098", + "$id": "9111", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121141,7 +121334,7 @@ ], "response": { "type": { - "$ref": "6064" + "$ref": "6077" }, "resultSegments": [ "data" @@ -121157,7 +121350,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9084" + "$ref": "9097" }, "responseSegments": [ "last_id" @@ -121167,26 +121360,26 @@ } }, { - "$id": "9099", + "$id": "9112", "kind": "basic", "name": "getMessage", "accessibility": "public", "apiVersions": [], "summary": "Retrieve a message.", "operation": { - "$id": "9100", + "$id": "9113", "name": "getMessage", "resourceName": "Messages", "summary": "Retrieve a message.", "accessibility": "public", "parameters": [ { - "$id": "9101", + "$id": "9114", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2051" + "$ref": "2052" }, "isApiVersion": false, "optional": false, @@ -121197,12 +121390,12 @@ "crossLanguageDefinitionId": "OpenAI.Messages.getMessage.accept" }, { - "$id": "9102", + "$id": "9115", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2053" + "$ref": "2054" }, "isApiVersion": false, "optional": false, @@ -121213,13 +121406,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.getMessage.openAIBeta" }, { - "$id": "9103", + "$id": "9116", "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": "9104", + "$id": "9117", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121237,13 +121430,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.getMessage.thread_id" }, { - "$id": "9105", + "$id": "9118", "kind": "path", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to retrieve.", "type": { - "$id": "9106", + "$id": "9119", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121267,7 +121460,7 @@ 200 ], "bodyType": { - "$ref": "6021" + "$ref": "6034" }, "headers": [], "isErrorResponse": false, @@ -121287,12 +121480,12 @@ }, "parameters": [ { - "$id": "9107", + "$id": "9120", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2055" + "$ref": "2056" }, "location": "Header", "isApiVersion": false, @@ -121304,12 +121497,12 @@ "decorators": [] }, { - "$id": "9108", + "$id": "9121", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2057" + "$ref": "2058" }, "location": "Header", "isApiVersion": false, @@ -121321,13 +121514,13 @@ "decorators": [] }, { - "$id": "9109", + "$id": "9122", "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": "9110", + "$id": "9123", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121343,13 +121536,13 @@ "decorators": [] }, { - "$id": "9111", + "$id": "9124", "kind": "method", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to retrieve.", "type": { - "$id": "9112", + "$id": "9125", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121367,7 +121560,7 @@ ], "response": { "type": { - "$ref": "6021" + "$ref": "6034" } }, "isOverride": false, @@ -121376,26 +121569,26 @@ "crossLanguageDefinitionId": "OpenAI.Messages.getMessage" }, { - "$id": "9113", + "$id": "9126", "kind": "basic", "name": "modifyMessage", "accessibility": "public", "apiVersions": [], "summary": "Modifies a message.", "operation": { - "$id": "9114", + "$id": "9127", "name": "modifyMessage", "resourceName": "Messages", "summary": "Modifies a message.", "accessibility": "public", "parameters": [ { - "$id": "9115", + "$id": "9128", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2059" + "$ref": "2060" }, "isApiVersion": false, "optional": false, @@ -121406,12 +121599,12 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.accept" }, { - "$id": "9116", + "$id": "9129", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2061" + "$ref": "2062" }, "isApiVersion": false, "optional": false, @@ -121422,13 +121615,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.openAIBeta" }, { - "$id": "9117", + "$id": "9130", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this message belongs.", "type": { - "$id": "9118", + "$id": "9131", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121446,13 +121639,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.thread_id" }, { - "$id": "9119", + "$id": "9132", "kind": "path", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to modify.", "type": { - "$id": "9120", + "$id": "9133", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121470,13 +121663,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.message_id" }, { - "$id": "9121", + "$id": "9134", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2063" + "$ref": "2064" }, "isApiVersion": false, "optional": false, @@ -121487,12 +121680,12 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.contentType" }, { - "$id": "9122", + "$id": "9135", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6071" + "$ref": "6084" }, "isApiVersion": false, "contentTypes": [ @@ -121512,7 +121705,7 @@ 200 ], "bodyType": { - "$ref": "6021" + "$ref": "6034" }, "headers": [], "isErrorResponse": false, @@ -121535,12 +121728,12 @@ }, "parameters": [ { - "$id": "9123", + "$id": "9136", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2065" + "$ref": "2066" }, "location": "Header", "isApiVersion": false, @@ -121552,12 +121745,12 @@ "decorators": [] }, { - "$id": "9124", + "$id": "9137", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2067" + "$ref": "2068" }, "location": "Header", "isApiVersion": false, @@ -121569,13 +121762,13 @@ "decorators": [] }, { - "$id": "9125", + "$id": "9138", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this message belongs.", "type": { - "$id": "9126", + "$id": "9139", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121591,13 +121784,13 @@ "decorators": [] }, { - "$id": "9127", + "$id": "9140", "kind": "method", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to modify.", "type": { - "$id": "9128", + "$id": "9141", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121613,12 +121806,12 @@ "decorators": [] }, { - "$id": "9129", + "$id": "9142", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6071" + "$ref": "6084" }, "location": "Body", "isApiVersion": false, @@ -121630,13 +121823,13 @@ "decorators": [] }, { - "$id": "9130", + "$id": "9143", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2063" + "$ref": "2064" }, "location": "Header", "isApiVersion": false, @@ -121650,7 +121843,7 @@ ], "response": { "type": { - "$ref": "6021" + "$ref": "6034" } }, "isOverride": false, @@ -121659,26 +121852,26 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage" }, { - "$id": "9131", + "$id": "9144", "kind": "basic", "name": "deleteMessage", "accessibility": "public", "apiVersions": [], "summary": "Deletes a message.", "operation": { - "$id": "9132", + "$id": "9145", "name": "deleteMessage", "resourceName": "Messages", "summary": "Deletes a message.", "accessibility": "public", "parameters": [ { - "$id": "9133", + "$id": "9146", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2069" + "$ref": "2070" }, "isApiVersion": false, "optional": false, @@ -121689,12 +121882,12 @@ "crossLanguageDefinitionId": "OpenAI.Messages.deleteMessage.accept" }, { - "$id": "9134", + "$id": "9147", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2071" + "$ref": "2072" }, "isApiVersion": false, "optional": false, @@ -121705,13 +121898,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.deleteMessage.openAIBeta" }, { - "$id": "9135", + "$id": "9148", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this message belongs.", "type": { - "$id": "9136", + "$id": "9149", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121729,13 +121922,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.deleteMessage.thread_id" }, { - "$id": "9137", + "$id": "9150", "kind": "path", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to delete.", "type": { - "$id": "9138", + "$id": "9151", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121759,7 +121952,7 @@ 200 ], "bodyType": { - "$ref": "6073" + "$ref": "6086" }, "headers": [], "isErrorResponse": false, @@ -121779,12 +121972,12 @@ }, "parameters": [ { - "$id": "9139", + "$id": "9152", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2073" + "$ref": "2074" }, "location": "Header", "isApiVersion": false, @@ -121796,12 +121989,12 @@ "decorators": [] }, { - "$id": "9140", + "$id": "9153", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2075" + "$ref": "2076" }, "location": "Header", "isApiVersion": false, @@ -121813,13 +122006,13 @@ "decorators": [] }, { - "$id": "9141", + "$id": "9154", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this message belongs.", "type": { - "$id": "9142", + "$id": "9155", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121835,13 +122028,13 @@ "decorators": [] }, { - "$id": "9143", + "$id": "9156", "kind": "method", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to delete.", "type": { - "$id": "9144", + "$id": "9157", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121859,7 +122052,7 @@ ], "response": { "type": { - "$ref": "6073" + "$ref": "6086" } }, "isOverride": false, @@ -121870,13 +122063,13 @@ ], "parameters": [ { - "$id": "9145", + "$id": "9158", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9146", + "$id": "9159", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -121887,7 +122080,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9147", + "$id": "9160", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -121905,36 +122098,36 @@ "crossLanguageDefinitionId": "OpenAI.Messages", "apiVersions": [], "parent": { - "$ref": "8247" + "$ref": "8260" } }, { - "$id": "9148", + "$id": "9161", "kind": "client", "name": "Moderations", "namespace": "OpenAI", "methods": [ { - "$id": "9149", + "$id": "9162", "kind": "basic", "name": "ClassifyText", "accessibility": "public", "apiVersions": [], "summary": "Classifies if text is potentially harmful.", "operation": { - "$id": "9150", + "$id": "9163", "name": "ClassifyText", "resourceName": "Moderations", "summary": "Classifies if text is potentially harmful.", "accessibility": "public", "parameters": [ { - "$id": "9151", + "$id": "9164", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2077" + "$ref": "2078" }, "isApiVersion": false, "optional": false, @@ -121945,13 +122138,13 @@ "crossLanguageDefinitionId": "OpenAI.Moderations.createModeration.accept" }, { - "$id": "9152", + "$id": "9165", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2079" + "$ref": "2080" }, "isApiVersion": false, "optional": false, @@ -121962,12 +122155,12 @@ "crossLanguageDefinitionId": "OpenAI.Moderations.createModeration.contentType" }, { - "$id": "9153", + "$id": "9166", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6079" + "$ref": "6092" }, "isApiVersion": false, "contentTypes": [ @@ -121987,7 +122180,7 @@ 200 ], "bodyType": { - "$ref": "6096" + "$ref": "6109" }, "headers": [], "isErrorResponse": false, @@ -122010,12 +122203,12 @@ }, "parameters": [ { - "$id": "9154", + "$id": "9167", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2081" + "$ref": "2082" }, "location": "Header", "isApiVersion": false, @@ -122027,12 +122220,12 @@ "decorators": [] }, { - "$id": "9155", + "$id": "9168", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6079" + "$ref": "6092" }, "location": "Body", "isApiVersion": false, @@ -122044,13 +122237,13 @@ "decorators": [] }, { - "$id": "9156", + "$id": "9169", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2079" + "$ref": "2080" }, "location": "Header", "isApiVersion": false, @@ -122064,7 +122257,7 @@ ], "response": { "type": { - "$ref": "6096" + "$ref": "6109" } }, "isOverride": false, @@ -122075,13 +122268,13 @@ ], "parameters": [ { - "$id": "9157", + "$id": "9170", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9158", + "$id": "9171", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -122092,7 +122285,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9159", + "$id": "9172", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -122110,36 +122303,36 @@ "crossLanguageDefinitionId": "OpenAI.Moderations", "apiVersions": [], "parent": { - "$ref": "8247" + "$ref": "8260" } }, { - "$id": "9160", + "$id": "9173", "kind": "client", "name": "Runs", "namespace": "OpenAI", "methods": [ { - "$id": "9161", + "$id": "9174", "kind": "basic", "name": "createThreadAndRun", "accessibility": "public", "apiVersions": [], "summary": "Create a thread and run it in one request.", "operation": { - "$id": "9162", + "$id": "9175", "name": "createThreadAndRun", "resourceName": "Runs", "summary": "Create a thread and run it in one request.", "accessibility": "public", "parameters": [ { - "$id": "9163", + "$id": "9176", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1412" + "$ref": "1413" }, "isApiVersion": false, "optional": false, @@ -122150,12 +122343,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createThreadAndRun.accept" }, { - "$id": "9164", + "$id": "9177", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2083" + "$ref": "2084" }, "isApiVersion": false, "optional": false, @@ -122166,13 +122359,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createThreadAndRun.openAIBeta" }, { - "$id": "9165", + "$id": "9178", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2085" + "$ref": "2086" }, "isApiVersion": false, "optional": false, @@ -122183,12 +122376,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createThreadAndRun.contentType" }, { - "$id": "9166", + "$id": "9179", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6196" + "$ref": "6209" }, "isApiVersion": false, "contentTypes": [ @@ -122208,7 +122401,7 @@ 200 ], "bodyType": { - "$ref": "6262" + "$ref": "6275" }, "headers": [], "isErrorResponse": false, @@ -122231,12 +122424,12 @@ }, "parameters": [ { - "$id": "9167", + "$id": "9180", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1412" + "$ref": "1413" }, "location": "Header", "isApiVersion": false, @@ -122248,12 +122441,12 @@ "decorators": [] }, { - "$id": "9168", + "$id": "9181", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2087" + "$ref": "2088" }, "location": "Header", "isApiVersion": false, @@ -122265,12 +122458,12 @@ "decorators": [] }, { - "$id": "9169", + "$id": "9182", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6196" + "$ref": "6209" }, "location": "Body", "isApiVersion": false, @@ -122282,13 +122475,13 @@ "decorators": [] }, { - "$id": "9170", + "$id": "9183", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2085" + "$ref": "2086" }, "location": "Header", "isApiVersion": false, @@ -122302,7 +122495,7 @@ ], "response": { "type": { - "$ref": "6262" + "$ref": "6275" } }, "isOverride": false, @@ -122311,26 +122504,26 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createThreadAndRun" }, { - "$id": "9171", + "$id": "9184", "kind": "basic", "name": "createRun", "accessibility": "public", "apiVersions": [], "summary": "Create a run.", "operation": { - "$id": "9172", + "$id": "9185", "name": "createRun", "resourceName": "Runs", "summary": "Create a run.", "accessibility": "public", "parameters": [ { - "$id": "9173", + "$id": "9186", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1412" + "$ref": "1413" }, "isApiVersion": false, "optional": false, @@ -122341,12 +122534,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun.accept" }, { - "$id": "9174", + "$id": "9187", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2089" + "$ref": "2090" }, "isApiVersion": false, "optional": false, @@ -122357,13 +122550,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun.openAIBeta" }, { - "$id": "9175", + "$id": "9188", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to run.", "type": { - "$id": "9176", + "$id": "9189", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122381,17 +122574,17 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun.thread_id" }, { - "$id": "9177", + "$id": "9190", "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": "9178", + "$id": "9191", "kind": "array", "name": "ArrayIncludedRunStepProperty", "valueType": { - "$ref": "1453" + "$ref": "1454" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -122406,13 +122599,13 @@ "readOnly": false }, { - "$id": "9179", + "$id": "9192", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2091" + "$ref": "2092" }, "isApiVersion": false, "optional": false, @@ -122423,12 +122616,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun.contentType" }, { - "$id": "9180", + "$id": "9193", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6358" + "$ref": "6371" }, "isApiVersion": false, "contentTypes": [ @@ -122448,7 +122641,7 @@ 200 ], "bodyType": { - "$ref": "6262" + "$ref": "6275" }, "headers": [], "isErrorResponse": false, @@ -122471,12 +122664,12 @@ }, "parameters": [ { - "$id": "9181", + "$id": "9194", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1412" + "$ref": "1413" }, "location": "Header", "isApiVersion": false, @@ -122488,12 +122681,12 @@ "decorators": [] }, { - "$id": "9182", + "$id": "9195", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2093" + "$ref": "2094" }, "location": "Header", "isApiVersion": false, @@ -122505,13 +122698,13 @@ "decorators": [] }, { - "$id": "9183", + "$id": "9196", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to run.", "type": { - "$id": "9184", + "$id": "9197", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122527,13 +122720,13 @@ "decorators": [] }, { - "$id": "9185", + "$id": "9198", "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": "9178" + "$ref": "9191" }, "location": "Query", "isApiVersion": false, @@ -122545,12 +122738,12 @@ "decorators": [] }, { - "$id": "9186", + "$id": "9199", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6358" + "$ref": "6371" }, "location": "Body", "isApiVersion": false, @@ -122562,13 +122755,13 @@ "decorators": [] }, { - "$id": "9187", + "$id": "9200", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2091" + "$ref": "2092" }, "location": "Header", "isApiVersion": false, @@ -122582,7 +122775,7 @@ ], "response": { "type": { - "$ref": "6262" + "$ref": "6275" } }, "isOverride": false, @@ -122591,26 +122784,26 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun" }, { - "$id": "9188", + "$id": "9201", "kind": "paging", "name": "listRuns", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of runs belonging to a thread.", "operation": { - "$id": "9189", + "$id": "9202", "name": "listRuns", "resourceName": "Runs", "summary": "Returns a list of runs belonging to a thread.", "accessibility": "public", "parameters": [ { - "$id": "9190", + "$id": "9203", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2095" + "$ref": "2096" }, "isApiVersion": false, "optional": false, @@ -122621,12 +122814,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRuns.accept" }, { - "$id": "9191", + "$id": "9204", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2097" + "$ref": "2098" }, "isApiVersion": false, "optional": false, @@ -122637,13 +122830,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRuns.openAIBeta" }, { - "$id": "9192", + "$id": "9205", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread the run belongs to.", "type": { - "$id": "9193", + "$id": "9206", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122661,13 +122854,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRuns.thread_id" }, { - "$id": "9194", + "$id": "9207", "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": "9195", + "$id": "9208", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -122682,13 +122875,13 @@ "readOnly": false }, { - "$id": "9196", + "$id": "9209", "kind": "query", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "isApiVersion": false, "explode": false, @@ -122699,13 +122892,13 @@ "readOnly": false }, { - "$id": "9197", + "$id": "9210", "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": "9198", + "$id": "9211", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122720,13 +122913,13 @@ "readOnly": false }, { - "$id": "9199", + "$id": "9212", "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": "9200", + "$id": "9213", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122747,7 +122940,7 @@ 200 ], "bodyType": { - "$ref": "6400" + "$ref": "6413" }, "headers": [], "isErrorResponse": false, @@ -122767,12 +122960,12 @@ }, "parameters": [ { - "$id": "9201", + "$id": "9214", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2099" + "$ref": "2100" }, "location": "Header", "isApiVersion": false, @@ -122784,12 +122977,12 @@ "decorators": [] }, { - "$id": "9202", + "$id": "9215", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2101" + "$ref": "2102" }, "location": "Header", "isApiVersion": false, @@ -122801,13 +122994,13 @@ "decorators": [] }, { - "$id": "9203", + "$id": "9216", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread the run belongs to.", "type": { - "$id": "9204", + "$id": "9217", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122823,13 +123016,13 @@ "decorators": [] }, { - "$id": "9205", + "$id": "9218", "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": "9206", + "$id": "9219", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -122845,13 +123038,13 @@ "decorators": [] }, { - "$id": "9207", + "$id": "9220", "kind": "method", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "location": "Query", "isApiVersion": false, @@ -122863,13 +123056,13 @@ "decorators": [] }, { - "$id": "9208", + "$id": "9221", "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": "9209", + "$id": "9222", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122885,13 +123078,13 @@ "decorators": [] }, { - "$id": "9210", + "$id": "9223", "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": "9211", + "$id": "9224", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122909,7 +123102,7 @@ ], "response": { "type": { - "$ref": "6403" + "$ref": "6416" }, "resultSegments": [ "data" @@ -122925,7 +123118,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9197" + "$ref": "9210" }, "responseSegments": [ "last_id" @@ -122935,26 +123128,26 @@ } }, { - "$id": "9212", + "$id": "9225", "kind": "basic", "name": "getRun", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a run.", "operation": { - "$id": "9213", + "$id": "9226", "name": "getRun", "resourceName": "Runs", "summary": "Retrieves a run.", "accessibility": "public", "parameters": [ { - "$id": "9214", + "$id": "9227", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2103" + "$ref": "2104" }, "isApiVersion": false, "optional": false, @@ -122965,12 +123158,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRun.accept" }, { - "$id": "9215", + "$id": "9228", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2105" + "$ref": "2106" }, "isApiVersion": false, "optional": false, @@ -122981,13 +123174,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRun.openAIBeta" }, { - "$id": "9216", + "$id": "9229", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "9217", + "$id": "9230", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123005,13 +123198,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRun.thread_id" }, { - "$id": "9218", + "$id": "9231", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to retrieve.", "type": { - "$id": "9219", + "$id": "9232", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123035,7 +123228,7 @@ 200 ], "bodyType": { - "$ref": "6262" + "$ref": "6275" }, "headers": [], "isErrorResponse": false, @@ -123055,12 +123248,12 @@ }, "parameters": [ { - "$id": "9220", + "$id": "9233", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2107" + "$ref": "2108" }, "location": "Header", "isApiVersion": false, @@ -123072,12 +123265,12 @@ "decorators": [] }, { - "$id": "9221", + "$id": "9234", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2109" + "$ref": "2110" }, "location": "Header", "isApiVersion": false, @@ -123089,13 +123282,13 @@ "decorators": [] }, { - "$id": "9222", + "$id": "9235", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "9223", + "$id": "9236", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123111,13 +123304,13 @@ "decorators": [] }, { - "$id": "9224", + "$id": "9237", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to retrieve.", "type": { - "$id": "9225", + "$id": "9238", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123135,7 +123328,7 @@ ], "response": { "type": { - "$ref": "6262" + "$ref": "6275" } }, "isOverride": false, @@ -123144,26 +123337,26 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRun" }, { - "$id": "9226", + "$id": "9239", "kind": "basic", "name": "modifyRun", "accessibility": "public", "apiVersions": [], "summary": "Modifies a run.", "operation": { - "$id": "9227", + "$id": "9240", "name": "modifyRun", "resourceName": "Runs", "summary": "Modifies a run.", "accessibility": "public", "parameters": [ { - "$id": "9228", + "$id": "9241", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2111" + "$ref": "2112" }, "isApiVersion": false, "optional": false, @@ -123174,12 +123367,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.accept" }, { - "$id": "9229", + "$id": "9242", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2113" + "$ref": "2114" }, "isApiVersion": false, "optional": false, @@ -123190,13 +123383,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.openAIBeta" }, { - "$id": "9230", + "$id": "9243", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "9231", + "$id": "9244", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123214,13 +123407,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.thread_id" }, { - "$id": "9232", + "$id": "9245", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to modify.", "type": { - "$id": "9233", + "$id": "9246", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123238,13 +123431,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.run_id" }, { - "$id": "9234", + "$id": "9247", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2115" + "$ref": "2116" }, "isApiVersion": false, "optional": false, @@ -123255,12 +123448,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.contentType" }, { - "$id": "9235", + "$id": "9248", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6410" + "$ref": "6423" }, "isApiVersion": false, "contentTypes": [ @@ -123280,7 +123473,7 @@ 200 ], "bodyType": { - "$ref": "6262" + "$ref": "6275" }, "headers": [], "isErrorResponse": false, @@ -123303,12 +123496,12 @@ }, "parameters": [ { - "$id": "9236", + "$id": "9249", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2117" + "$ref": "2118" }, "location": "Header", "isApiVersion": false, @@ -123320,12 +123513,12 @@ "decorators": [] }, { - "$id": "9237", + "$id": "9250", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2119" + "$ref": "2120" }, "location": "Header", "isApiVersion": false, @@ -123337,13 +123530,13 @@ "decorators": [] }, { - "$id": "9238", + "$id": "9251", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "9239", + "$id": "9252", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123359,13 +123552,13 @@ "decorators": [] }, { - "$id": "9240", + "$id": "9253", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to modify.", "type": { - "$id": "9241", + "$id": "9254", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123381,12 +123574,12 @@ "decorators": [] }, { - "$id": "9242", + "$id": "9255", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6410" + "$ref": "6423" }, "location": "Body", "isApiVersion": false, @@ -123398,13 +123591,13 @@ "decorators": [] }, { - "$id": "9243", + "$id": "9256", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2115" + "$ref": "2116" }, "location": "Header", "isApiVersion": false, @@ -123418,7 +123611,7 @@ ], "response": { "type": { - "$ref": "6262" + "$ref": "6275" } }, "isOverride": false, @@ -123427,26 +123620,26 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun" }, { - "$id": "9244", + "$id": "9257", "kind": "basic", "name": "cancelRun", "accessibility": "public", "apiVersions": [], "summary": "Cancels a run that is `in_progress`.", "operation": { - "$id": "9245", + "$id": "9258", "name": "cancelRun", "resourceName": "Runs", "summary": "Cancels a run that is `in_progress`.", "accessibility": "public", "parameters": [ { - "$id": "9246", + "$id": "9259", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2121" + "$ref": "2122" }, "isApiVersion": false, "optional": false, @@ -123457,12 +123650,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.cancelRun.accept" }, { - "$id": "9247", + "$id": "9260", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2123" + "$ref": "2124" }, "isApiVersion": false, "optional": false, @@ -123473,13 +123666,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.cancelRun.openAIBeta" }, { - "$id": "9248", + "$id": "9261", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this run belongs.", "type": { - "$id": "9249", + "$id": "9262", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123497,13 +123690,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.cancelRun.thread_id" }, { - "$id": "9250", + "$id": "9263", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to cancel.", "type": { - "$id": "9251", + "$id": "9264", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123527,7 +123720,7 @@ 200 ], "bodyType": { - "$ref": "6262" + "$ref": "6275" }, "headers": [], "isErrorResponse": false, @@ -123547,12 +123740,12 @@ }, "parameters": [ { - "$id": "9252", + "$id": "9265", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2125" + "$ref": "2126" }, "location": "Header", "isApiVersion": false, @@ -123564,12 +123757,12 @@ "decorators": [] }, { - "$id": "9253", + "$id": "9266", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2127" + "$ref": "2128" }, "location": "Header", "isApiVersion": false, @@ -123581,13 +123774,13 @@ "decorators": [] }, { - "$id": "9254", + "$id": "9267", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this run belongs.", "type": { - "$id": "9255", + "$id": "9268", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123603,13 +123796,13 @@ "decorators": [] }, { - "$id": "9256", + "$id": "9269", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to cancel.", "type": { - "$id": "9257", + "$id": "9270", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123627,7 +123820,7 @@ ], "response": { "type": { - "$ref": "6262" + "$ref": "6275" } }, "isOverride": false, @@ -123636,26 +123829,26 @@ "crossLanguageDefinitionId": "OpenAI.Runs.cancelRun" }, { - "$id": "9258", + "$id": "9271", "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": "9259", + "$id": "9272", "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": "9260", + "$id": "9273", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1412" + "$ref": "1413" }, "isApiVersion": false, "optional": false, @@ -123666,12 +123859,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.accept" }, { - "$id": "9261", + "$id": "9274", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2129" + "$ref": "2130" }, "isApiVersion": false, "optional": false, @@ -123682,13 +123875,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.openAIBeta" }, { - "$id": "9262", + "$id": "9275", "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": "9263", + "$id": "9276", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123706,13 +123899,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.thread_id" }, { - "$id": "9264", + "$id": "9277", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run that requires the tool output submission.", "type": { - "$id": "9265", + "$id": "9278", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123730,13 +123923,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.run_id" }, { - "$id": "9266", + "$id": "9279", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2131" + "$ref": "2132" }, "isApiVersion": false, "optional": false, @@ -123747,12 +123940,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.contentType" }, { - "$id": "9267", + "$id": "9280", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6412" + "$ref": "6425" }, "isApiVersion": false, "contentTypes": [ @@ -123772,7 +123965,7 @@ 200 ], "bodyType": { - "$ref": "6262" + "$ref": "6275" }, "headers": [], "isErrorResponse": false, @@ -123795,12 +123988,12 @@ }, "parameters": [ { - "$id": "9268", + "$id": "9281", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1412" + "$ref": "1413" }, "location": "Header", "isApiVersion": false, @@ -123812,12 +124005,12 @@ "decorators": [] }, { - "$id": "9269", + "$id": "9282", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2133" + "$ref": "2134" }, "location": "Header", "isApiVersion": false, @@ -123829,13 +124022,13 @@ "decorators": [] }, { - "$id": "9270", + "$id": "9283", "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": "9271", + "$id": "9284", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123851,13 +124044,13 @@ "decorators": [] }, { - "$id": "9272", + "$id": "9285", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run that requires the tool output submission.", "type": { - "$id": "9273", + "$id": "9286", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123873,12 +124066,12 @@ "decorators": [] }, { - "$id": "9274", + "$id": "9287", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6412" + "$ref": "6425" }, "location": "Body", "isApiVersion": false, @@ -123890,13 +124083,13 @@ "decorators": [] }, { - "$id": "9275", + "$id": "9288", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2131" + "$ref": "2132" }, "location": "Header", "isApiVersion": false, @@ -123910,7 +124103,7 @@ ], "response": { "type": { - "$ref": "6262" + "$ref": "6275" } }, "isOverride": false, @@ -123919,26 +124112,26 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun" }, { - "$id": "9276", + "$id": "9289", "kind": "paging", "name": "listRunSteps", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of run steps belonging to a run.", "operation": { - "$id": "9277", + "$id": "9290", "name": "listRunSteps", "resourceName": "Runs", "summary": "Returns a list of run steps belonging to a run.", "accessibility": "public", "parameters": [ { - "$id": "9278", + "$id": "9291", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2135" + "$ref": "2136" }, "isApiVersion": false, "optional": false, @@ -123949,12 +124142,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRunSteps.accept" }, { - "$id": "9279", + "$id": "9292", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2137" + "$ref": "2138" }, "isApiVersion": false, "optional": false, @@ -123965,13 +124158,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRunSteps.openAIBeta" }, { - "$id": "9280", + "$id": "9293", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread the run and run steps belong to.", "type": { - "$id": "9281", + "$id": "9294", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123989,13 +124182,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRunSteps.thread_id" }, { - "$id": "9282", + "$id": "9295", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run the run steps belong to.", "type": { - "$id": "9283", + "$id": "9296", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124013,13 +124206,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRunSteps.run_id" }, { - "$id": "9284", + "$id": "9297", "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": "9285", + "$id": "9298", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -124034,13 +124227,13 @@ "readOnly": false }, { - "$id": "9286", + "$id": "9299", "kind": "query", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "isApiVersion": false, "explode": false, @@ -124051,13 +124244,13 @@ "readOnly": false }, { - "$id": "9287", + "$id": "9300", "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": "9288", + "$id": "9301", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124072,13 +124265,13 @@ "readOnly": false }, { - "$id": "9289", + "$id": "9302", "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": "9290", + "$id": "9303", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124093,13 +124286,13 @@ "readOnly": false }, { - "$id": "9291", + "$id": "9304", "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": "9178" + "$ref": "9191" }, "isApiVersion": false, "explode": false, @@ -124117,7 +124310,7 @@ 200 ], "bodyType": { - "$ref": "6423" + "$ref": "6436" }, "headers": [], "isErrorResponse": false, @@ -124137,12 +124330,12 @@ }, "parameters": [ { - "$id": "9292", + "$id": "9305", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2139" + "$ref": "2140" }, "location": "Header", "isApiVersion": false, @@ -124154,12 +124347,12 @@ "decorators": [] }, { - "$id": "9293", + "$id": "9306", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2141" + "$ref": "2142" }, "location": "Header", "isApiVersion": false, @@ -124171,13 +124364,13 @@ "decorators": [] }, { - "$id": "9294", + "$id": "9307", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread the run and run steps belong to.", "type": { - "$id": "9295", + "$id": "9308", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124193,13 +124386,13 @@ "decorators": [] }, { - "$id": "9296", + "$id": "9309", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run the run steps belong to.", "type": { - "$id": "9297", + "$id": "9310", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124215,13 +124408,13 @@ "decorators": [] }, { - "$id": "9298", + "$id": "9311", "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": "9299", + "$id": "9312", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -124237,13 +124430,13 @@ "decorators": [] }, { - "$id": "9300", + "$id": "9313", "kind": "method", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "location": "Query", "isApiVersion": false, @@ -124255,13 +124448,13 @@ "decorators": [] }, { - "$id": "9301", + "$id": "9314", "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": "9302", + "$id": "9315", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124277,13 +124470,13 @@ "decorators": [] }, { - "$id": "9303", + "$id": "9316", "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": "9304", + "$id": "9317", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124299,13 +124492,13 @@ "decorators": [] }, { - "$id": "9305", + "$id": "9318", "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": "9178" + "$ref": "9191" }, "location": "Query", "isApiVersion": false, @@ -124319,7 +124512,7 @@ ], "response": { "type": { - "$ref": "6426" + "$ref": "6439" }, "resultSegments": [ "data" @@ -124335,7 +124528,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9287" + "$ref": "9300" }, "responseSegments": [ "last_id" @@ -124345,26 +124538,26 @@ } }, { - "$id": "9306", + "$id": "9319", "kind": "basic", "name": "getRunStep", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a run step.", "operation": { - "$id": "9307", + "$id": "9320", "name": "getRunStep", "resourceName": "Runs", "summary": "Retrieves a run step.", "accessibility": "public", "parameters": [ { - "$id": "9308", + "$id": "9321", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2143" + "$ref": "2144" }, "isApiVersion": false, "optional": false, @@ -124375,12 +124568,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.accept" }, { - "$id": "9309", + "$id": "9322", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2145" + "$ref": "2146" }, "isApiVersion": false, "optional": false, @@ -124391,13 +124584,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.openAIBeta" }, { - "$id": "9310", + "$id": "9323", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which the run and run step belongs.", "type": { - "$id": "9311", + "$id": "9324", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124415,13 +124608,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.thread_id" }, { - "$id": "9312", + "$id": "9325", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to which the run step belongs.", "type": { - "$id": "9313", + "$id": "9326", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124439,13 +124632,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.run_id" }, { - "$id": "9314", + "$id": "9327", "kind": "path", "name": "step_id", "serializedName": "step_id", "doc": "The ID of the run step to retrieve.", "type": { - "$id": "9315", + "$id": "9328", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124463,13 +124656,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.step_id" }, { - "$id": "9316", + "$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": "9178" + "$ref": "9191" }, "isApiVersion": false, "explode": false, @@ -124487,7 +124680,7 @@ 200 ], "bodyType": { - "$ref": "6427" + "$ref": "6440" }, "headers": [], "isErrorResponse": false, @@ -124507,12 +124700,12 @@ }, "parameters": [ { - "$id": "9317", + "$id": "9330", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2147" + "$ref": "2148" }, "location": "Header", "isApiVersion": false, @@ -124524,12 +124717,12 @@ "decorators": [] }, { - "$id": "9318", + "$id": "9331", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2149" + "$ref": "2150" }, "location": "Header", "isApiVersion": false, @@ -124541,13 +124734,13 @@ "decorators": [] }, { - "$id": "9319", + "$id": "9332", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which the run and run step belongs.", "type": { - "$id": "9320", + "$id": "9333", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124563,13 +124756,13 @@ "decorators": [] }, { - "$id": "9321", + "$id": "9334", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to which the run step belongs.", "type": { - "$id": "9322", + "$id": "9335", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124585,13 +124778,13 @@ "decorators": [] }, { - "$id": "9323", + "$id": "9336", "kind": "method", "name": "step_id", "serializedName": "step_id", "doc": "The ID of the run step to retrieve.", "type": { - "$id": "9324", + "$id": "9337", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124607,13 +124800,13 @@ "decorators": [] }, { - "$id": "9325", + "$id": "9338", "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": "9178" + "$ref": "9191" }, "location": "Query", "isApiVersion": false, @@ -124627,7 +124820,7 @@ ], "response": { "type": { - "$ref": "6427" + "$ref": "6440" } }, "isOverride": false, @@ -124638,13 +124831,13 @@ ], "parameters": [ { - "$id": "9326", + "$id": "9339", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9327", + "$id": "9340", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -124655,7 +124848,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9328", + "$id": "9341", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -124673,36 +124866,36 @@ "crossLanguageDefinitionId": "OpenAI.Runs", "apiVersions": [], "parent": { - "$ref": "8247" + "$ref": "8260" } }, { - "$id": "9329", + "$id": "9342", "kind": "client", "name": "Threads", "namespace": "OpenAI", "methods": [ { - "$id": "9330", + "$id": "9343", "kind": "basic", "name": "createThread", "accessibility": "public", "apiVersions": [], "summary": "Create a thread.", "operation": { - "$id": "9331", + "$id": "9344", "name": "createThread", "resourceName": "Threads", "summary": "Create a thread.", "accessibility": "public", "parameters": [ { - "$id": "9332", + "$id": "9345", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2151" + "$ref": "2152" }, "isApiVersion": false, "optional": false, @@ -124713,12 +124906,12 @@ "crossLanguageDefinitionId": "OpenAI.Threads.createThread.accept" }, { - "$id": "9333", + "$id": "9346", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2153" + "$ref": "2154" }, "isApiVersion": false, "optional": false, @@ -124729,13 +124922,13 @@ "crossLanguageDefinitionId": "OpenAI.Threads.createThread.openAIBeta" }, { - "$id": "9334", + "$id": "9347", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2155" + "$ref": "2156" }, "isApiVersion": false, "optional": false, @@ -124746,12 +124939,12 @@ "crossLanguageDefinitionId": "OpenAI.Threads.createThread.contentType" }, { - "$id": "9335", + "$id": "9348", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6200" + "$ref": "6213" }, "isApiVersion": false, "contentTypes": [ @@ -124771,7 +124964,7 @@ 200 ], "bodyType": { - "$ref": "6576" + "$ref": "6589" }, "headers": [], "isErrorResponse": false, @@ -124794,12 +124987,12 @@ }, "parameters": [ { - "$id": "9336", + "$id": "9349", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2157" + "$ref": "2158" }, "location": "Header", "isApiVersion": false, @@ -124811,12 +125004,12 @@ "decorators": [] }, { - "$id": "9337", + "$id": "9350", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2159" + "$ref": "2160" }, "location": "Header", "isApiVersion": false, @@ -124828,12 +125021,12 @@ "decorators": [] }, { - "$id": "9338", + "$id": "9351", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6200" + "$ref": "6213" }, "location": "Body", "isApiVersion": false, @@ -124845,13 +125038,13 @@ "decorators": [] }, { - "$id": "9339", + "$id": "9352", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2155" + "$ref": "2156" }, "location": "Header", "isApiVersion": false, @@ -124865,7 +125058,7 @@ ], "response": { "type": { - "$ref": "6576" + "$ref": "6589" } }, "isOverride": false, @@ -124874,26 +125067,26 @@ "crossLanguageDefinitionId": "OpenAI.Threads.createThread" }, { - "$id": "9340", + "$id": "9353", "kind": "basic", "name": "getThread", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a thread.", "operation": { - "$id": "9341", + "$id": "9354", "name": "getThread", "resourceName": "Threads", "summary": "Retrieves a thread.", "accessibility": "public", "parameters": [ { - "$id": "9342", + "$id": "9355", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2161" + "$ref": "2162" }, "isApiVersion": false, "optional": false, @@ -124904,12 +125097,12 @@ "crossLanguageDefinitionId": "OpenAI.Threads.getThread.accept" }, { - "$id": "9343", + "$id": "9356", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2163" + "$ref": "2164" }, "isApiVersion": false, "optional": false, @@ -124920,13 +125113,13 @@ "crossLanguageDefinitionId": "OpenAI.Threads.getThread.openAIBeta" }, { - "$id": "9344", + "$id": "9357", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to retrieve.", "type": { - "$id": "9345", + "$id": "9358", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124950,7 +125143,7 @@ 200 ], "bodyType": { - "$ref": "6576" + "$ref": "6589" }, "headers": [], "isErrorResponse": false, @@ -124970,12 +125163,12 @@ }, "parameters": [ { - "$id": "9346", + "$id": "9359", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2165" + "$ref": "2166" }, "location": "Header", "isApiVersion": false, @@ -124987,12 +125180,12 @@ "decorators": [] }, { - "$id": "9347", + "$id": "9360", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2167" + "$ref": "2168" }, "location": "Header", "isApiVersion": false, @@ -125004,13 +125197,13 @@ "decorators": [] }, { - "$id": "9348", + "$id": "9361", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to retrieve.", "type": { - "$id": "9349", + "$id": "9362", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125028,7 +125221,7 @@ ], "response": { "type": { - "$ref": "6576" + "$ref": "6589" } }, "isOverride": false, @@ -125037,26 +125230,26 @@ "crossLanguageDefinitionId": "OpenAI.Threads.getThread" }, { - "$id": "9350", + "$id": "9363", "kind": "basic", "name": "modifyThread", "accessibility": "public", "apiVersions": [], "summary": "Modifies a thread.", "operation": { - "$id": "9351", + "$id": "9364", "name": "modifyThread", "resourceName": "Threads", "summary": "Modifies a thread.", "accessibility": "public", "parameters": [ { - "$id": "9352", + "$id": "9365", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2169" + "$ref": "2170" }, "isApiVersion": false, "optional": false, @@ -125067,12 +125260,12 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread.accept" }, { - "$id": "9353", + "$id": "9366", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2171" + "$ref": "2172" }, "isApiVersion": false, "optional": false, @@ -125083,13 +125276,13 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread.openAIBeta" }, { - "$id": "9354", + "$id": "9367", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to modify. Only the `metadata` can be modified.", "type": { - "$id": "9355", + "$id": "9368", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125107,13 +125300,13 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread.thread_id" }, { - "$id": "9356", + "$id": "9369", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2173" + "$ref": "2174" }, "isApiVersion": false, "optional": false, @@ -125124,12 +125317,12 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread.contentType" }, { - "$id": "9357", + "$id": "9370", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6593" + "$ref": "6606" }, "isApiVersion": false, "contentTypes": [ @@ -125149,7 +125342,7 @@ 200 ], "bodyType": { - "$ref": "6576" + "$ref": "6589" }, "headers": [], "isErrorResponse": false, @@ -125172,12 +125365,12 @@ }, "parameters": [ { - "$id": "9358", + "$id": "9371", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2175" + "$ref": "2176" }, "location": "Header", "isApiVersion": false, @@ -125189,12 +125382,12 @@ "decorators": [] }, { - "$id": "9359", + "$id": "9372", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2177" + "$ref": "2178" }, "location": "Header", "isApiVersion": false, @@ -125206,13 +125399,13 @@ "decorators": [] }, { - "$id": "9360", + "$id": "9373", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to modify. Only the `metadata` can be modified.", "type": { - "$id": "9361", + "$id": "9374", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125228,12 +125421,12 @@ "decorators": [] }, { - "$id": "9362", + "$id": "9375", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6593" + "$ref": "6606" }, "location": "Body", "isApiVersion": false, @@ -125245,13 +125438,13 @@ "decorators": [] }, { - "$id": "9363", + "$id": "9376", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2173" + "$ref": "2174" }, "location": "Header", "isApiVersion": false, @@ -125265,7 +125458,7 @@ ], "response": { "type": { - "$ref": "6576" + "$ref": "6589" } }, "isOverride": false, @@ -125274,26 +125467,26 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread" }, { - "$id": "9364", + "$id": "9377", "kind": "basic", "name": "deleteThread", "accessibility": "public", "apiVersions": [], "summary": "Delete a thread.", "operation": { - "$id": "9365", + "$id": "9378", "name": "deleteThread", "resourceName": "Threads", "summary": "Delete a thread.", "accessibility": "public", "parameters": [ { - "$id": "9366", + "$id": "9379", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2179" + "$ref": "2180" }, "isApiVersion": false, "optional": false, @@ -125304,12 +125497,12 @@ "crossLanguageDefinitionId": "OpenAI.Threads.deleteThread.accept" }, { - "$id": "9367", + "$id": "9380", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2181" + "$ref": "2182" }, "isApiVersion": false, "optional": false, @@ -125320,13 +125513,13 @@ "crossLanguageDefinitionId": "OpenAI.Threads.deleteThread.openAIBeta" }, { - "$id": "9368", + "$id": "9381", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to delete.", "type": { - "$id": "9369", + "$id": "9382", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125350,7 +125543,7 @@ 200 ], "bodyType": { - "$ref": "6602" + "$ref": "6615" }, "headers": [], "isErrorResponse": false, @@ -125370,12 +125563,12 @@ }, "parameters": [ { - "$id": "9370", + "$id": "9383", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2183" + "$ref": "2184" }, "location": "Header", "isApiVersion": false, @@ -125387,12 +125580,12 @@ "decorators": [] }, { - "$id": "9371", + "$id": "9384", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2185" + "$ref": "2186" }, "location": "Header", "isApiVersion": false, @@ -125404,13 +125597,13 @@ "decorators": [] }, { - "$id": "9372", + "$id": "9385", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to delete.", "type": { - "$id": "9373", + "$id": "9386", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125428,7 +125621,7 @@ ], "response": { "type": { - "$ref": "6602" + "$ref": "6615" } }, "isOverride": false, @@ -125439,13 +125632,13 @@ ], "parameters": [ { - "$id": "9374", + "$id": "9387", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9375", + "$id": "9388", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -125456,7 +125649,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9376", + "$id": "9389", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -125474,36 +125667,36 @@ "crossLanguageDefinitionId": "OpenAI.Threads", "apiVersions": [], "parent": { - "$ref": "8247" + "$ref": "8260" } }, { - "$id": "9377", + "$id": "9390", "kind": "client", "name": "VectorStores", "namespace": "OpenAI", "methods": [ { - "$id": "9378", + "$id": "9391", "kind": "paging", "name": "GetVectorStores", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of vector stores.", "operation": { - "$id": "9379", + "$id": "9392", "name": "GetVectorStores", "resourceName": "VectorStores", "summary": "Returns a list of vector stores.", "accessibility": "public", "parameters": [ { - "$id": "9380", + "$id": "9393", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2187" + "$ref": "2188" }, "isApiVersion": false, "optional": false, @@ -125514,13 +125707,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listVectorStores.accept" }, { - "$id": "9381", + "$id": "9394", "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": "9382", + "$id": "9395", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -125535,13 +125728,13 @@ "readOnly": false }, { - "$id": "9383", + "$id": "9396", "kind": "query", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "isApiVersion": false, "explode": false, @@ -125552,13 +125745,13 @@ "readOnly": false }, { - "$id": "9384", + "$id": "9397", "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": "9385", + "$id": "9398", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125573,13 +125766,13 @@ "readOnly": false }, { - "$id": "9386", + "$id": "9399", "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": "9387", + "$id": "9400", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125600,7 +125793,7 @@ 200 ], "bodyType": { - "$ref": "6608" + "$ref": "6621" }, "headers": [], "isErrorResponse": false, @@ -125620,12 +125813,12 @@ }, "parameters": [ { - "$id": "9388", + "$id": "9401", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2189" + "$ref": "2190" }, "location": "Header", "isApiVersion": false, @@ -125637,13 +125830,13 @@ "decorators": [] }, { - "$id": "9389", + "$id": "9402", "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": "9390", + "$id": "9403", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -125659,13 +125852,13 @@ "decorators": [] }, { - "$id": "9391", + "$id": "9404", "kind": "method", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "location": "Query", "isApiVersion": false, @@ -125677,13 +125870,13 @@ "decorators": [] }, { - "$id": "9392", + "$id": "9405", "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": "9393", + "$id": "9406", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125699,13 +125892,13 @@ "decorators": [] }, { - "$id": "9394", + "$id": "9407", "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": "9395", + "$id": "9408", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125723,7 +125916,7 @@ ], "response": { "type": { - "$ref": "6611" + "$ref": "6624" }, "resultSegments": [ "data" @@ -125739,7 +125932,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9384" + "$ref": "9397" }, "responseSegments": [ "last_id" @@ -125749,26 +125942,26 @@ } }, { - "$id": "9396", + "$id": "9409", "kind": "basic", "name": "createVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Creates a vector store.", "operation": { - "$id": "9397", + "$id": "9410", "name": "createVectorStore", "resourceName": "VectorStores", "summary": "Creates a vector store.", "accessibility": "public", "parameters": [ { - "$id": "9398", + "$id": "9411", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2191" + "$ref": "2192" }, "isApiVersion": false, "optional": false, @@ -125779,13 +125972,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStore.accept" }, { - "$id": "9399", + "$id": "9412", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2193" + "$ref": "2194" }, "isApiVersion": false, "optional": false, @@ -125796,12 +125989,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStore.contentType" }, { - "$id": "9400", + "$id": "9413", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6660" + "$ref": "6673" }, "isApiVersion": false, "contentTypes": [ @@ -125821,7 +126014,7 @@ 200 ], "bodyType": { - "$ref": "6612" + "$ref": "6625" }, "headers": [], "isErrorResponse": false, @@ -125844,12 +126037,12 @@ }, "parameters": [ { - "$id": "9401", + "$id": "9414", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2195" + "$ref": "2196" }, "location": "Header", "isApiVersion": false, @@ -125861,12 +126054,12 @@ "decorators": [] }, { - "$id": "9402", + "$id": "9415", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6660" + "$ref": "6673" }, "location": "Body", "isApiVersion": false, @@ -125878,13 +126071,13 @@ "decorators": [] }, { - "$id": "9403", + "$id": "9416", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2193" + "$ref": "2194" }, "location": "Header", "isApiVersion": false, @@ -125898,7 +126091,7 @@ ], "response": { "type": { - "$ref": "6612" + "$ref": "6625" } }, "isOverride": false, @@ -125907,26 +126100,26 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStore" }, { - "$id": "9404", + "$id": "9417", "kind": "basic", "name": "getVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a vector store.", "operation": { - "$id": "9405", + "$id": "9418", "name": "getVectorStore", "resourceName": "VectorStores", "summary": "Retrieves a vector store.", "accessibility": "public", "parameters": [ { - "$id": "9406", + "$id": "9419", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2197" + "$ref": "2198" }, "isApiVersion": false, "optional": false, @@ -125937,13 +126130,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStore.accept" }, { - "$id": "9407", + "$id": "9420", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to retrieve.", "type": { - "$id": "9408", + "$id": "9421", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125967,7 +126160,7 @@ 200 ], "bodyType": { - "$ref": "6612" + "$ref": "6625" }, "headers": [], "isErrorResponse": false, @@ -125987,12 +126180,12 @@ }, "parameters": [ { - "$id": "9409", + "$id": "9422", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2199" + "$ref": "2200" }, "location": "Header", "isApiVersion": false, @@ -126004,13 +126197,13 @@ "decorators": [] }, { - "$id": "9410", + "$id": "9423", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to retrieve.", "type": { - "$id": "9411", + "$id": "9424", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126028,7 +126221,7 @@ ], "response": { "type": { - "$ref": "6612" + "$ref": "6625" } }, "isOverride": false, @@ -126037,26 +126230,26 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStore" }, { - "$id": "9412", + "$id": "9425", "kind": "basic", "name": "modifyVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Modifies a vector store.", "operation": { - "$id": "9413", + "$id": "9426", "name": "modifyVectorStore", "resourceName": "VectorStores", "summary": "Modifies a vector store.", "accessibility": "public", "parameters": [ { - "$id": "9414", + "$id": "9427", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2201" + "$ref": "2202" }, "isApiVersion": false, "optional": false, @@ -126067,13 +126260,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.modifyVectorStore.accept" }, { - "$id": "9415", + "$id": "9428", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to modify.", "type": { - "$id": "9416", + "$id": "9429", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126091,13 +126284,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.modifyVectorStore.vector_store_id" }, { - "$id": "9417", + "$id": "9430", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2203" + "$ref": "2204" }, "isApiVersion": false, "optional": false, @@ -126108,12 +126301,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.modifyVectorStore.contentType" }, { - "$id": "9418", + "$id": "9431", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6668" + "$ref": "6681" }, "isApiVersion": false, "contentTypes": [ @@ -126133,7 +126326,7 @@ 200 ], "bodyType": { - "$ref": "6612" + "$ref": "6625" }, "headers": [], "isErrorResponse": false, @@ -126156,12 +126349,12 @@ }, "parameters": [ { - "$id": "9419", + "$id": "9432", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2205" + "$ref": "2206" }, "location": "Header", "isApiVersion": false, @@ -126173,13 +126366,13 @@ "decorators": [] }, { - "$id": "9420", + "$id": "9433", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to modify.", "type": { - "$id": "9421", + "$id": "9434", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126195,12 +126388,12 @@ "decorators": [] }, { - "$id": "9422", + "$id": "9435", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6668" + "$ref": "6681" }, "location": "Body", "isApiVersion": false, @@ -126212,13 +126405,13 @@ "decorators": [] }, { - "$id": "9423", + "$id": "9436", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2203" + "$ref": "2204" }, "location": "Header", "isApiVersion": false, @@ -126232,7 +126425,7 @@ ], "response": { "type": { - "$ref": "6612" + "$ref": "6625" } }, "isOverride": false, @@ -126241,26 +126434,26 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.modifyVectorStore" }, { - "$id": "9424", + "$id": "9437", "kind": "basic", "name": "deleteVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Delete a vector store.", "operation": { - "$id": "9425", + "$id": "9438", "name": "deleteVectorStore", "resourceName": "VectorStores", "summary": "Delete a vector store.", "accessibility": "public", "parameters": [ { - "$id": "9426", + "$id": "9439", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2207" + "$ref": "2208" }, "isApiVersion": false, "optional": false, @@ -126271,13 +126464,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStore.accept" }, { - "$id": "9427", + "$id": "9440", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to delete.", "type": { - "$id": "9428", + "$id": "9441", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126301,7 +126494,7 @@ 200 ], "bodyType": { - "$ref": "6675" + "$ref": "6688" }, "headers": [], "isErrorResponse": false, @@ -126321,12 +126514,12 @@ }, "parameters": [ { - "$id": "9429", + "$id": "9442", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2209" + "$ref": "2210" }, "location": "Header", "isApiVersion": false, @@ -126338,13 +126531,13 @@ "decorators": [] }, { - "$id": "9430", + "$id": "9443", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to delete.", "type": { - "$id": "9431", + "$id": "9444", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126362,7 +126555,7 @@ ], "response": { "type": { - "$ref": "6675" + "$ref": "6688" } }, "isOverride": false, @@ -126371,26 +126564,26 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStore" }, { - "$id": "9432", + "$id": "9445", "kind": "basic", "name": "AddFileBatchToVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Create a vector store file batch.", "operation": { - "$id": "9433", + "$id": "9446", "name": "AddFileBatchToVectorStore", "resourceName": "VectorStores", "summary": "Create a vector store file batch.", "accessibility": "public", "parameters": [ { - "$id": "9434", + "$id": "9447", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2211" + "$ref": "2212" }, "isApiVersion": false, "optional": false, @@ -126401,13 +126594,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFileBatch.accept" }, { - "$id": "9435", + "$id": "9448", "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": "9436", + "$id": "9449", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126425,13 +126618,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFileBatch.vector_store_id" }, { - "$id": "9437", + "$id": "9450", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2213" + "$ref": "2214" }, "isApiVersion": false, "optional": false, @@ -126442,12 +126635,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFileBatch.contentType" }, { - "$id": "9438", + "$id": "9451", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6681" + "$ref": "6694" }, "isApiVersion": false, "contentTypes": [ @@ -126467,7 +126660,7 @@ 200 ], "bodyType": { - "$ref": "6686" + "$ref": "6699" }, "headers": [], "isErrorResponse": false, @@ -126490,12 +126683,12 @@ }, "parameters": [ { - "$id": "9439", + "$id": "9452", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2215" + "$ref": "2216" }, "location": "Header", "isApiVersion": false, @@ -126507,13 +126700,13 @@ "decorators": [] }, { - "$id": "9440", + "$id": "9453", "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": "9441", + "$id": "9454", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126529,12 +126722,12 @@ "decorators": [] }, { - "$id": "9442", + "$id": "9455", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6681" + "$ref": "6694" }, "location": "Body", "isApiVersion": false, @@ -126546,13 +126739,13 @@ "decorators": [] }, { - "$id": "9443", + "$id": "9456", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2213" + "$ref": "2214" }, "location": "Header", "isApiVersion": false, @@ -126566,7 +126759,7 @@ ], "response": { "type": { - "$ref": "6686" + "$ref": "6699" } }, "isOverride": false, @@ -126575,26 +126768,26 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFileBatch" }, { - "$id": "9444", + "$id": "9457", "kind": "basic", "name": "getVectorStoreFileBatch", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a vector store file batch.", "operation": { - "$id": "9445", + "$id": "9458", "name": "getVectorStoreFileBatch", "resourceName": "VectorStores", "summary": "Retrieves a vector store file batch.", "accessibility": "public", "parameters": [ { - "$id": "9446", + "$id": "9459", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2217" + "$ref": "2218" }, "isApiVersion": false, "optional": false, @@ -126605,13 +126798,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFileBatch.accept" }, { - "$id": "9447", + "$id": "9460", "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": "9448", + "$id": "9461", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126629,13 +126822,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFileBatch.vector_store_id" }, { - "$id": "9449", + "$id": "9462", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch being retrieved.", "type": { - "$id": "9450", + "$id": "9463", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126659,7 +126852,7 @@ 200 ], "bodyType": { - "$ref": "6686" + "$ref": "6699" }, "headers": [], "isErrorResponse": false, @@ -126679,12 +126872,12 @@ }, "parameters": [ { - "$id": "9451", + "$id": "9464", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2219" + "$ref": "2220" }, "location": "Header", "isApiVersion": false, @@ -126696,13 +126889,13 @@ "decorators": [] }, { - "$id": "9452", + "$id": "9465", "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": "9453", + "$id": "9466", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126718,13 +126911,13 @@ "decorators": [] }, { - "$id": "9454", + "$id": "9467", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch being retrieved.", "type": { - "$id": "9455", + "$id": "9468", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126742,7 +126935,7 @@ ], "response": { "type": { - "$ref": "6686" + "$ref": "6699" } }, "isOverride": false, @@ -126751,26 +126944,26 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFileBatch" }, { - "$id": "9456", + "$id": "9469", "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": "9457", + "$id": "9470", "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": "9458", + "$id": "9471", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2221" + "$ref": "2222" }, "isApiVersion": false, "optional": false, @@ -126781,13 +126974,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.cancelVectorStoreFileBatch.accept" }, { - "$id": "9459", + "$id": "9472", "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": "9460", + "$id": "9473", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126805,13 +126998,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.cancelVectorStoreFileBatch.vector_store_id" }, { - "$id": "9461", + "$id": "9474", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch to cancel.", "type": { - "$id": "9462", + "$id": "9475", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126835,7 +127028,7 @@ 200 ], "bodyType": { - "$ref": "6686" + "$ref": "6699" }, "headers": [], "isErrorResponse": false, @@ -126855,12 +127048,12 @@ }, "parameters": [ { - "$id": "9463", + "$id": "9476", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2223" + "$ref": "2224" }, "location": "Header", "isApiVersion": false, @@ -126872,13 +127065,13 @@ "decorators": [] }, { - "$id": "9464", + "$id": "9477", "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": "9465", + "$id": "9478", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126894,13 +127087,13 @@ "decorators": [] }, { - "$id": "9466", + "$id": "9479", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch to cancel.", "type": { - "$id": "9467", + "$id": "9480", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126918,7 +127111,7 @@ ], "response": { "type": { - "$ref": "6686" + "$ref": "6699" } }, "isOverride": false, @@ -126927,26 +127120,26 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.cancelVectorStoreFileBatch" }, { - "$id": "9468", + "$id": "9481", "kind": "paging", "name": "GetVectorStoreFilesInBatch", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of vector store files in a batch.", "operation": { - "$id": "9469", + "$id": "9482", "name": "GetVectorStoreFilesInBatch", "resourceName": "VectorStores", "summary": "Returns a list of vector store files in a batch.", "accessibility": "public", "parameters": [ { - "$id": "9470", + "$id": "9483", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2225" + "$ref": "2226" }, "isApiVersion": false, "optional": false, @@ -126957,13 +127150,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listFilesInVectorStoreBatch.accept" }, { - "$id": "9471", + "$id": "9484", "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": "9472", + "$id": "9485", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126981,13 +127174,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listFilesInVectorStoreBatch.vector_store_id" }, { - "$id": "9473", + "$id": "9486", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch that the files belong to.", "type": { - "$id": "9474", + "$id": "9487", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127005,13 +127198,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listFilesInVectorStoreBatch.batch_id" }, { - "$id": "9475", + "$id": "9488", "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": "9476", + "$id": "9489", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -127026,13 +127219,13 @@ "readOnly": false }, { - "$id": "9477", + "$id": "9490", "kind": "query", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "isApiVersion": false, "explode": false, @@ -127043,13 +127236,13 @@ "readOnly": false }, { - "$id": "9478", + "$id": "9491", "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": "9479", + "$id": "9492", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127064,13 +127257,13 @@ "readOnly": false }, { - "$id": "9480", + "$id": "9493", "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": "9481", + "$id": "9494", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127085,13 +127278,13 @@ "readOnly": false }, { - "$id": "9482", + "$id": "9495", "kind": "query", "name": "filter", "serializedName": "filter", "doc": "Filter by file status. One of `in_progress`, `completed`, `failed`, `cancelled`.", "type": { - "$ref": "1402" + "$ref": "1403" }, "isApiVersion": false, "explode": false, @@ -127108,7 +127301,7 @@ 200 ], "bodyType": { - "$ref": "6708" + "$ref": "6721" }, "headers": [], "isErrorResponse": false, @@ -127128,12 +127321,12 @@ }, "parameters": [ { - "$id": "9483", + "$id": "9496", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2227" + "$ref": "2228" }, "location": "Header", "isApiVersion": false, @@ -127145,13 +127338,13 @@ "decorators": [] }, { - "$id": "9484", + "$id": "9497", "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": "9485", + "$id": "9498", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127167,13 +127360,13 @@ "decorators": [] }, { - "$id": "9486", + "$id": "9499", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch that the files belong to.", "type": { - "$id": "9487", + "$id": "9500", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127189,13 +127382,13 @@ "decorators": [] }, { - "$id": "9488", + "$id": "9501", "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": "9489", + "$id": "9502", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -127211,13 +127404,13 @@ "decorators": [] }, { - "$id": "9490", + "$id": "9503", "kind": "method", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "location": "Query", "isApiVersion": false, @@ -127229,13 +127422,13 @@ "decorators": [] }, { - "$id": "9491", + "$id": "9504", "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": "9492", + "$id": "9505", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127251,13 +127444,13 @@ "decorators": [] }, { - "$id": "9493", + "$id": "9506", "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": "9494", + "$id": "9507", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127273,13 +127466,13 @@ "decorators": [] }, { - "$id": "9495", + "$id": "9508", "kind": "method", "name": "filter", "serializedName": "filter", "doc": "Filter by file status. One of `in_progress`, `completed`, `failed`, `cancelled`.", "type": { - "$ref": "1402" + "$ref": "1403" }, "location": "Query", "isApiVersion": false, @@ -127293,7 +127486,7 @@ ], "response": { "type": { - "$ref": "6711" + "$ref": "6724" }, "resultSegments": [ "data" @@ -127309,7 +127502,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9478" + "$ref": "9491" }, "responseSegments": [ "last_id" @@ -127319,26 +127512,26 @@ } }, { - "$id": "9496", + "$id": "9509", "kind": "paging", "name": "listVectorStoreFiles", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of vector store files.", "operation": { - "$id": "9497", + "$id": "9510", "name": "listVectorStoreFiles", "resourceName": "VectorStores", "summary": "Returns a list of vector store files.", "accessibility": "public", "parameters": [ { - "$id": "9498", + "$id": "9511", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2229" + "$ref": "2230" }, "isApiVersion": false, "optional": false, @@ -127349,13 +127542,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listVectorStoreFiles.accept" }, { - "$id": "9499", + "$id": "9512", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the files belong to.", "type": { - "$id": "9500", + "$id": "9513", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127373,13 +127566,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listVectorStoreFiles.vector_store_id" }, { - "$id": "9501", + "$id": "9514", "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": "9502", + "$id": "9515", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -127394,13 +127587,13 @@ "readOnly": false }, { - "$id": "9503", + "$id": "9516", "kind": "query", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "isApiVersion": false, "explode": false, @@ -127411,13 +127604,13 @@ "readOnly": false }, { - "$id": "9504", + "$id": "9517", "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": "9505", + "$id": "9518", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127432,13 +127625,13 @@ "readOnly": false }, { - "$id": "9506", + "$id": "9519", "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": "9507", + "$id": "9520", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127453,13 +127646,13 @@ "readOnly": false }, { - "$id": "9508", + "$id": "9521", "kind": "query", "name": "filter", "serializedName": "filter", "doc": "Filter by file status. One of `in_progress`, `completed`, `failed`, `cancelled`.", "type": { - "$ref": "1402" + "$ref": "1403" }, "isApiVersion": false, "explode": false, @@ -127476,7 +127669,7 @@ 200 ], "bodyType": { - "$ref": "6708" + "$ref": "6721" }, "headers": [], "isErrorResponse": false, @@ -127496,12 +127689,12 @@ }, "parameters": [ { - "$id": "9509", + "$id": "9522", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2231" + "$ref": "2232" }, "location": "Header", "isApiVersion": false, @@ -127513,13 +127706,13 @@ "decorators": [] }, { - "$id": "9510", + "$id": "9523", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the files belong to.", "type": { - "$id": "9511", + "$id": "9524", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127535,13 +127728,13 @@ "decorators": [] }, { - "$id": "9512", + "$id": "9525", "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": "9513", + "$id": "9526", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -127557,13 +127750,13 @@ "decorators": [] }, { - "$id": "9514", + "$id": "9527", "kind": "method", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1394" + "$ref": "1395" }, "location": "Query", "isApiVersion": false, @@ -127575,13 +127768,13 @@ "decorators": [] }, { - "$id": "9515", + "$id": "9528", "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": "9516", + "$id": "9529", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127597,13 +127790,13 @@ "decorators": [] }, { - "$id": "9517", + "$id": "9530", "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": "9518", + "$id": "9531", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127619,13 +127812,13 @@ "decorators": [] }, { - "$id": "9519", + "$id": "9532", "kind": "method", "name": "filter", "serializedName": "filter", "doc": "Filter by file status. One of `in_progress`, `completed`, `failed`, `cancelled`.", "type": { - "$ref": "1402" + "$ref": "1403" }, "location": "Query", "isApiVersion": false, @@ -127639,7 +127832,7 @@ ], "response": { "type": { - "$ref": "6711" + "$ref": "6724" }, "resultSegments": [ "data" @@ -127655,7 +127848,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9504" + "$ref": "9517" }, "responseSegments": [ "last_id" @@ -127665,26 +127858,26 @@ } }, { - "$id": "9520", + "$id": "9533", "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": "9521", + "$id": "9534", "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": "9522", + "$id": "9535", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2233" + "$ref": "2234" }, "isApiVersion": false, "optional": false, @@ -127695,13 +127888,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFile.accept" }, { - "$id": "9523", + "$id": "9536", "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": "9524", + "$id": "9537", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127719,13 +127912,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFile.vector_store_id" }, { - "$id": "9525", + "$id": "9538", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2235" + "$ref": "2236" }, "isApiVersion": false, "optional": false, @@ -127736,12 +127929,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFile.contentType" }, { - "$id": "9526", + "$id": "9539", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6752" + "$ref": "6765" }, "isApiVersion": false, "contentTypes": [ @@ -127761,7 +127954,7 @@ 200 ], "bodyType": { - "$ref": "6712" + "$ref": "6725" }, "headers": [], "isErrorResponse": false, @@ -127784,12 +127977,12 @@ }, "parameters": [ { - "$id": "9527", + "$id": "9540", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2237" + "$ref": "2238" }, "location": "Header", "isApiVersion": false, @@ -127801,13 +127994,13 @@ "decorators": [] }, { - "$id": "9528", + "$id": "9541", "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": "9529", + "$id": "9542", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127823,12 +128016,12 @@ "decorators": [] }, { - "$id": "9530", + "$id": "9543", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6752" + "$ref": "6765" }, "location": "Body", "isApiVersion": false, @@ -127840,13 +128033,13 @@ "decorators": [] }, { - "$id": "9531", + "$id": "9544", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2235" + "$ref": "2236" }, "location": "Header", "isApiVersion": false, @@ -127860,7 +128053,7 @@ ], "response": { "type": { - "$ref": "6712" + "$ref": "6725" } }, "isOverride": false, @@ -127869,26 +128062,26 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFile" }, { - "$id": "9532", + "$id": "9545", "kind": "basic", "name": "getVectorStoreFile", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a vector store file.", "operation": { - "$id": "9533", + "$id": "9546", "name": "getVectorStoreFile", "resourceName": "VectorStores", "summary": "Retrieves a vector store file.", "accessibility": "public", "parameters": [ { - "$id": "9534", + "$id": "9547", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2239" + "$ref": "2240" }, "isApiVersion": false, "optional": false, @@ -127899,13 +128092,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFile.accept" }, { - "$id": "9535", + "$id": "9548", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9536", + "$id": "9549", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127923,13 +128116,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFile.vector_store_id" }, { - "$id": "9537", + "$id": "9550", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file being retrieved.", "type": { - "$id": "9538", + "$id": "9551", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127953,7 +128146,7 @@ 200 ], "bodyType": { - "$ref": "6712" + "$ref": "6725" }, "headers": [], "isErrorResponse": false, @@ -127973,12 +128166,12 @@ }, "parameters": [ { - "$id": "9539", + "$id": "9552", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2241" + "$ref": "2242" }, "location": "Header", "isApiVersion": false, @@ -127990,13 +128183,13 @@ "decorators": [] }, { - "$id": "9540", + "$id": "9553", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9541", + "$id": "9554", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128012,13 +128205,13 @@ "decorators": [] }, { - "$id": "9542", + "$id": "9555", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file being retrieved.", "type": { - "$id": "9543", + "$id": "9556", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128036,7 +128229,7 @@ ], "response": { "type": { - "$ref": "6712" + "$ref": "6725" } }, "isOverride": false, @@ -128045,26 +128238,26 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFile" }, { - "$id": "9544", + "$id": "9557", "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": "9545", + "$id": "9558", "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": "9546", + "$id": "9559", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2243" + "$ref": "2244" }, "isApiVersion": false, "optional": false, @@ -128075,13 +128268,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStoreFile.accept" }, { - "$id": "9547", + "$id": "9560", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9548", + "$id": "9561", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128099,13 +128292,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStoreFile.vector_store_id" }, { - "$id": "9549", + "$id": "9562", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to delete.", "type": { - "$id": "9550", + "$id": "9563", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128129,7 +128322,7 @@ 200 ], "bodyType": { - "$ref": "6758" + "$ref": "6771" }, "headers": [], "isErrorResponse": false, @@ -128149,12 +128342,12 @@ }, "parameters": [ { - "$id": "9551", + "$id": "9564", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2245" + "$ref": "2246" }, "location": "Header", "isApiVersion": false, @@ -128166,13 +128359,13 @@ "decorators": [] }, { - "$id": "9552", + "$id": "9565", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9553", + "$id": "9566", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128188,13 +128381,13 @@ "decorators": [] }, { - "$id": "9554", + "$id": "9567", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to delete.", "type": { - "$id": "9555", + "$id": "9568", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128212,7 +128405,7 @@ ], "response": { "type": { - "$ref": "6758" + "$ref": "6771" } }, "isOverride": false, @@ -128221,27 +128414,27 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStoreFile" }, { - "$id": "9556", + "$id": "9569", "kind": "basic", "name": "updateVectorStoreFileAttributes", "accessibility": "public", "apiVersions": [], "summary": "Update the attributes of a vector store file.", "operation": { - "$id": "9557", + "$id": "9570", "name": "updateVectorStoreFileAttributes", "resourceName": "VectorStores", "summary": "Update the attributes of a vector store file.", "accessibility": "public", "parameters": [ { - "$id": "9558", + "$id": "9571", "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": "9559", + "$id": "9572", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128259,13 +128452,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes.vector_store_id" }, { - "$id": "9560", + "$id": "9573", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to update attributes for.", "type": { - "$id": "9561", + "$id": "9574", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128283,13 +128476,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes.file_id" }, { - "$id": "9562", + "$id": "9575", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2247" + "$ref": "2248" }, "isApiVersion": false, "optional": false, @@ -128300,12 +128493,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes.contentType" }, { - "$id": "9563", + "$id": "9576", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2249" + "$ref": "2250" }, "isApiVersion": false, "optional": false, @@ -128316,12 +128509,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes.accept" }, { - "$id": "9564", + "$id": "9577", "kind": "body", "name": "updateVectorStoreFileAttributesRequest", "serializedName": "updateVectorStoreFileAttributesRequest", "type": { - "$ref": "6764" + "$ref": "6777" }, "isApiVersion": false, "contentTypes": [ @@ -128341,7 +128534,7 @@ 200 ], "bodyType": { - "$ref": "6712" + "$ref": "6725" }, "headers": [], "isErrorResponse": false, @@ -128364,13 +128557,13 @@ }, "parameters": [ { - "$id": "9565", + "$id": "9578", "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": "9566", + "$id": "9579", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128386,13 +128579,13 @@ "decorators": [] }, { - "$id": "9567", + "$id": "9580", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to update attributes for.", "type": { - "$id": "9568", + "$id": "9581", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128408,12 +128601,12 @@ "decorators": [] }, { - "$id": "9569", + "$id": "9582", "kind": "method", "name": "attributes", "serializedName": "attributes", "type": { - "$ref": "6766" + "$ref": "6779" }, "location": "Body", "isApiVersion": false, @@ -128425,13 +128618,13 @@ "decorators": [] }, { - "$id": "9570", + "$id": "9583", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2247" + "$ref": "2248" }, "location": "Header", "isApiVersion": false, @@ -128443,12 +128636,12 @@ "decorators": [] }, { - "$id": "9571", + "$id": "9584", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2249" + "$ref": "2250" }, "location": "Header", "isApiVersion": false, @@ -128462,7 +128655,7 @@ ], "response": { "type": { - "$ref": "6712" + "$ref": "6725" } }, "isOverride": false, @@ -128471,27 +128664,27 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes" }, { - "$id": "9572", + "$id": "9585", "kind": "basic", "name": "retrieveVectorStoreFileContent", "accessibility": "public", "apiVersions": [], "summary": "Retrieves the content of a vector store file.", "operation": { - "$id": "9573", + "$id": "9586", "name": "retrieveVectorStoreFileContent", "resourceName": "VectorStores", "summary": "Retrieves the content of a vector store file.", "accessibility": "public", "parameters": [ { - "$id": "9574", + "$id": "9587", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9575", + "$id": "9588", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128509,13 +128702,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.retrieveVectorStoreFileContent.vector_store_id" }, { - "$id": "9576", + "$id": "9589", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file with content being retrieved.", "type": { - "$id": "9577", + "$id": "9590", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128533,12 +128726,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.retrieveVectorStoreFileContent.file_id" }, { - "$id": "9578", + "$id": "9591", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2251" + "$ref": "2252" }, "isApiVersion": false, "optional": false, @@ -128555,7 +128748,7 @@ 200 ], "bodyType": { - "$ref": "6767" + "$ref": "6780" }, "headers": [], "isErrorResponse": false, @@ -128575,13 +128768,13 @@ }, "parameters": [ { - "$id": "9579", + "$id": "9592", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9580", + "$id": "9593", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128597,13 +128790,13 @@ "decorators": [] }, { - "$id": "9581", + "$id": "9594", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file with content being retrieved.", "type": { - "$id": "9582", + "$id": "9595", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128619,12 +128812,12 @@ "decorators": [] }, { - "$id": "9583", + "$id": "9596", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2251" + "$ref": "2252" }, "location": "Header", "isApiVersion": false, @@ -128638,7 +128831,7 @@ ], "response": { "type": { - "$ref": "6767" + "$ref": "6780" } }, "isOverride": false, @@ -128647,27 +128840,27 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.retrieveVectorStoreFileContent" }, { - "$id": "9584", + "$id": "9597", "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": "9585", + "$id": "9598", "name": "searchVectorStore", "resourceName": "VectorStores", "summary": "Searches a vector store for relevant chunks based on a query and file attributes filter.", "accessibility": "public", "parameters": [ { - "$id": "9586", + "$id": "9599", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to search.", "type": { - "$id": "9587", + "$id": "9600", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128685,13 +128878,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.searchVectorStore.vector_store_id" }, { - "$id": "9588", + "$id": "9601", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2253" + "$ref": "2254" }, "isApiVersion": false, "optional": false, @@ -128702,12 +128895,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.searchVectorStore.contentType" }, { - "$id": "9589", + "$id": "9602", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2255" + "$ref": "2256" }, "isApiVersion": false, "optional": false, @@ -128718,12 +128911,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.searchVectorStore.accept" }, { - "$id": "9590", + "$id": "9603", "kind": "body", "name": "vectorStoreSearchRequest", "serializedName": "vectorStoreSearchRequest", "type": { - "$ref": "6785" + "$ref": "6798" }, "isApiVersion": false, "contentTypes": [ @@ -128743,7 +128936,7 @@ 200 ], "bodyType": { - "$ref": "6796" + "$ref": "6809" }, "headers": [], "isErrorResponse": false, @@ -128766,13 +128959,13 @@ }, "parameters": [ { - "$id": "9591", + "$id": "9604", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to search.", "type": { - "$id": "9592", + "$id": "9605", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128788,13 +128981,13 @@ "decorators": [] }, { - "$id": "9593", + "$id": "9606", "kind": "method", "name": "query", "serializedName": "query", "doc": "A query string for a search", "type": { - "$ref": "6787" + "$ref": "6800" }, "location": "Body", "isApiVersion": false, @@ -128806,13 +128999,13 @@ "decorators": [] }, { - "$id": "9594", + "$id": "9607", "kind": "method", "name": "rewrite_query", "serializedName": "rewrite_query", "doc": "Whether to rewrite the natural language query for vector search.", "type": { - "$id": "9595", + "$id": "9608", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -128828,13 +129021,13 @@ "decorators": [] }, { - "$id": "9596", + "$id": "9609", "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": "9597", + "$id": "9610", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -128850,13 +129043,13 @@ "decorators": [] }, { - "$id": "9598", + "$id": "9611", "kind": "method", "name": "filters", "serializedName": "filters", "doc": "A filter to apply based on file attributes.", "type": { - "$ref": "6794" + "$ref": "6807" }, "location": "Body", "isApiVersion": false, @@ -128868,13 +129061,13 @@ "decorators": [] }, { - "$id": "9599", + "$id": "9612", "kind": "method", "name": "ranking_options", "serializedName": "ranking_options", "doc": "Ranking options for search.", "type": { - "$ref": "6781" + "$ref": "6794" }, "location": "Body", "isApiVersion": false, @@ -128886,13 +129079,13 @@ "decorators": [] }, { - "$id": "9600", + "$id": "9613", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2253" + "$ref": "2254" }, "location": "Header", "isApiVersion": false, @@ -128904,12 +129097,12 @@ "decorators": [] }, { - "$id": "9601", + "$id": "9614", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2255" + "$ref": "2256" }, "location": "Header", "isApiVersion": false, @@ -128923,7 +129116,7 @@ ], "response": { "type": { - "$ref": "6796" + "$ref": "6809" } }, "isOverride": false, @@ -128934,13 +129127,13 @@ ], "parameters": [ { - "$id": "9602", + "$id": "9615", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9603", + "$id": "9616", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -128951,7 +129144,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9604", + "$id": "9617", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -128969,36 +129162,36 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores", "apiVersions": [], "parent": { - "$ref": "8247" + "$ref": "8260" } }, { - "$id": "9605", + "$id": "9618", "kind": "client", "name": "Completions", "namespace": "OpenAI", "methods": [ { - "$id": "9606", + "$id": "9619", "kind": "basic", "name": "createCompletion", "accessibility": "public", "apiVersions": [], "summary": "Creates a completion for the provided prompt and parameters.", "operation": { - "$id": "9607", + "$id": "9620", "name": "createCompletion", "resourceName": "Completions", "summary": "Creates a completion for the provided prompt and parameters.", "accessibility": "public", "parameters": [ { - "$id": "9608", + "$id": "9621", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2257" + "$ref": "2258" }, "isApiVersion": false, "optional": false, @@ -129009,13 +129202,13 @@ "crossLanguageDefinitionId": "OpenAI.Completions.createCompletion.accept" }, { - "$id": "9609", + "$id": "9622", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2259" + "$ref": "2260" }, "isApiVersion": false, "optional": false, @@ -129026,12 +129219,12 @@ "crossLanguageDefinitionId": "OpenAI.Completions.createCompletion.contentType" }, { - "$id": "9610", + "$id": "9623", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6821" + "$ref": "6834" }, "isApiVersion": false, "contentTypes": [ @@ -129051,7 +129244,7 @@ 200 ], "bodyType": { - "$ref": "6871" + "$ref": "6884" }, "headers": [], "isErrorResponse": false, @@ -129074,12 +129267,12 @@ }, "parameters": [ { - "$id": "9611", + "$id": "9624", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2261" + "$ref": "2262" }, "location": "Header", "isApiVersion": false, @@ -129091,12 +129284,12 @@ "decorators": [] }, { - "$id": "9612", + "$id": "9625", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6821" + "$ref": "6834" }, "location": "Body", "isApiVersion": false, @@ -129108,13 +129301,13 @@ "decorators": [] }, { - "$id": "9613", + "$id": "9626", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2259" + "$ref": "2260" }, "location": "Header", "isApiVersion": false, @@ -129128,7 +129321,7 @@ ], "response": { "type": { - "$ref": "6871" + "$ref": "6884" } }, "isOverride": false, @@ -129139,13 +129332,13 @@ ], "parameters": [ { - "$id": "9614", + "$id": "9627", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9615", + "$id": "9628", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -129156,7 +129349,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9616", + "$id": "9629", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -129174,36 +129367,36 @@ "crossLanguageDefinitionId": "OpenAI.Completions", "apiVersions": [], "parent": { - "$ref": "8247" + "$ref": "8260" } }, { - "$id": "9617", + "$id": "9630", "kind": "client", "name": "Models", "namespace": "OpenAI", "methods": [ { - "$id": "9618", + "$id": "9631", "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": "9619", + "$id": "9632", "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": "9620", + "$id": "9633", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2263" + "$ref": "2264" }, "isApiVersion": false, "optional": false, @@ -129220,7 +129413,7 @@ 200 ], "bodyType": { - "$ref": "6902" + "$ref": "6915" }, "headers": [], "isErrorResponse": false, @@ -129240,12 +129433,12 @@ }, "parameters": [ { - "$id": "9621", + "$id": "9634", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2265" + "$ref": "2266" }, "location": "Header", "isApiVersion": false, @@ -129259,7 +129452,7 @@ ], "response": { "type": { - "$ref": "6902" + "$ref": "6915" } }, "isOverride": false, @@ -129268,26 +129461,26 @@ "crossLanguageDefinitionId": "OpenAI.Models.listModels" }, { - "$id": "9622", + "$id": "9635", "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": "9623", + "$id": "9636", "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": "9624", + "$id": "9637", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2267" + "$ref": "2268" }, "isApiVersion": false, "optional": false, @@ -129298,13 +129491,13 @@ "crossLanguageDefinitionId": "OpenAI.Models.retrieveModel.accept" }, { - "$id": "9625", + "$id": "9638", "kind": "path", "name": "model", "serializedName": "model", "doc": "The ID of the model to use for this request.", "type": { - "$id": "9626", + "$id": "9639", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129328,7 +129521,7 @@ 200 ], "bodyType": { - "$ref": "6906" + "$ref": "6919" }, "headers": [], "isErrorResponse": false, @@ -129348,12 +129541,12 @@ }, "parameters": [ { - "$id": "9627", + "$id": "9640", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2269" + "$ref": "2270" }, "location": "Header", "isApiVersion": false, @@ -129365,13 +129558,13 @@ "decorators": [] }, { - "$id": "9628", + "$id": "9641", "kind": "method", "name": "model", "serializedName": "model", "doc": "The ID of the model to use for this request.", "type": { - "$id": "9629", + "$id": "9642", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129389,7 +129582,7 @@ ], "response": { "type": { - "$ref": "6906" + "$ref": "6919" } }, "isOverride": false, @@ -129398,26 +129591,26 @@ "crossLanguageDefinitionId": "OpenAI.Models.retrieveModel" }, { - "$id": "9630", + "$id": "9643", "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": "9631", + "$id": "9644", "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": "9632", + "$id": "9645", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2271" + "$ref": "2272" }, "isApiVersion": false, "optional": false, @@ -129428,13 +129621,13 @@ "crossLanguageDefinitionId": "OpenAI.Models.deleteModel.accept" }, { - "$id": "9633", + "$id": "9646", "kind": "path", "name": "model", "serializedName": "model", "doc": "The model to delete", "type": { - "$id": "9634", + "$id": "9647", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129458,7 +129651,7 @@ 200 ], "bodyType": { - "$ref": "6915" + "$ref": "6928" }, "headers": [], "isErrorResponse": false, @@ -129478,12 +129671,12 @@ }, "parameters": [ { - "$id": "9635", + "$id": "9648", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2273" + "$ref": "2274" }, "location": "Header", "isApiVersion": false, @@ -129495,13 +129688,13 @@ "decorators": [] }, { - "$id": "9636", + "$id": "9649", "kind": "method", "name": "model", "serializedName": "model", "doc": "The model to delete", "type": { - "$id": "9637", + "$id": "9650", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129519,7 +129712,7 @@ ], "response": { "type": { - "$ref": "6915" + "$ref": "6928" } }, "isOverride": false, @@ -129530,13 +129723,13 @@ ], "parameters": [ { - "$id": "9638", + "$id": "9651", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9639", + "$id": "9652", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -129547,7 +129740,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9640", + "$id": "9653", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -129565,36 +129758,36 @@ "crossLanguageDefinitionId": "OpenAI.Models", "apiVersions": [], "parent": { - "$ref": "8247" + "$ref": "8260" } }, { - "$id": "9641", + "$id": "9654", "kind": "client", "name": "Realtime", "namespace": "OpenAI", "methods": [ { - "$id": "9642", + "$id": "9655", "kind": "basic", "name": "startRealtimeSession", "accessibility": "public", "apiVersions": [], "summary": "Starts a real-time session for conversation or transcription.", "operation": { - "$id": "9643", + "$id": "9656", "name": "startRealtimeSession", "resourceName": "Realtime", "summary": "Starts a real-time session for conversation or transcription.", "accessibility": "public", "parameters": [ { - "$id": "9644", + "$id": "9657", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2275" + "$ref": "2276" }, "isApiVersion": false, "optional": false, @@ -129605,13 +129798,13 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.startRealtimeSession.openAIBeta" }, { - "$id": "9645", + "$id": "9658", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2277" + "$ref": "2278" }, "isApiVersion": false, "optional": false, @@ -129622,12 +129815,12 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.startRealtimeSession.contentType" }, { - "$id": "9646", + "$id": "9659", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2279" + "$ref": "2280" }, "isApiVersion": false, "optional": false, @@ -129638,16 +129831,16 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.startRealtimeSession.accept" }, { - "$id": "9647", + "$id": "9660", "kind": "body", "name": "requestMessages", "serializedName": "requestMessages", "type": { - "$id": "9648", + "$id": "9661", "kind": "array", "name": "ArrayRealtimeClientEvent", "valueType": { - "$ref": "6921" + "$ref": "6934" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -129670,11 +129863,11 @@ 200 ], "bodyType": { - "$id": "9649", + "$id": "9662", "kind": "array", "name": "ArrayRealtimeServerEvent", "valueType": { - "$ref": "7218" + "$ref": "7231" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -129700,12 +129893,12 @@ }, "parameters": [ { - "$id": "9650", + "$id": "9663", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2281" + "$ref": "2282" }, "location": "Header", "isApiVersion": false, @@ -129717,12 +129910,12 @@ "decorators": [] }, { - "$id": "9651", + "$id": "9664", "kind": "method", "name": "requestMessages", "serializedName": "requestMessages", "type": { - "$ref": "9648" + "$ref": "9661" }, "location": "Body", "isApiVersion": false, @@ -129734,13 +129927,13 @@ "decorators": [] }, { - "$id": "9652", + "$id": "9665", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2277" + "$ref": "2278" }, "location": "Header", "isApiVersion": false, @@ -129752,12 +129945,12 @@ "decorators": [] }, { - "$id": "9653", + "$id": "9666", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2279" + "$ref": "2280" }, "location": "Header", "isApiVersion": false, @@ -129771,7 +129964,7 @@ ], "response": { "type": { - "$ref": "9649" + "$ref": "9662" } }, "isOverride": false, @@ -129780,27 +129973,27 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.startRealtimeSession" }, { - "$id": "9654", + "$id": "9667", "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": "9655", + "$id": "9668", "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": "9656", + "$id": "9669", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2283" + "$ref": "2284" }, "isApiVersion": false, "optional": false, @@ -129811,12 +130004,12 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralToken.contentType" }, { - "$id": "9657", + "$id": "9670", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2285" + "$ref": "2286" }, "isApiVersion": false, "optional": false, @@ -129827,12 +130020,12 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralToken.accept" }, { - "$id": "9658", + "$id": "9671", "kind": "body", "name": "request", "serializedName": "request", "type": { - "$ref": "7702" + "$ref": "7715" }, "isApiVersion": false, "contentTypes": [ @@ -129852,7 +130045,7 @@ 200 ], "bodyType": { - "$ref": "7762" + "$ref": "7775" }, "headers": [], "isErrorResponse": false, @@ -129875,12 +130068,12 @@ }, "parameters": [ { - "$id": "9659", + "$id": "9672", "kind": "method", "name": "request", "serializedName": "request", "type": { - "$ref": "7702" + "$ref": "7715" }, "location": "Body", "isApiVersion": false, @@ -129892,13 +130085,13 @@ "decorators": [] }, { - "$id": "9660", + "$id": "9673", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2283" + "$ref": "2284" }, "location": "Header", "isApiVersion": false, @@ -129910,12 +130103,12 @@ "decorators": [] }, { - "$id": "9661", + "$id": "9674", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2285" + "$ref": "2286" }, "location": "Header", "isApiVersion": false, @@ -129929,7 +130122,7 @@ ], "response": { "type": { - "$ref": "7762" + "$ref": "7775" } }, "isOverride": false, @@ -129938,27 +130131,27 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralToken" }, { - "$id": "9662", + "$id": "9675", "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": "9663", + "$id": "9676", "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": "9664", + "$id": "9677", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2287" + "$ref": "2288" }, "isApiVersion": false, "optional": false, @@ -129969,12 +130162,12 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralTranscriptionToken.contentType" }, { - "$id": "9665", + "$id": "9678", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2289" + "$ref": "2290" }, "isApiVersion": false, "optional": false, @@ -129985,12 +130178,12 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralTranscriptionToken.accept" }, { - "$id": "9666", + "$id": "9679", "kind": "body", "name": "request", "serializedName": "request", "type": { - "$ref": "7181" + "$ref": "7194" }, "isApiVersion": false, "contentTypes": [ @@ -130010,7 +130203,7 @@ 200 ], "bodyType": { - "$ref": "7673" + "$ref": "7686" }, "headers": [], "isErrorResponse": false, @@ -130033,12 +130226,12 @@ }, "parameters": [ { - "$id": "9667", + "$id": "9680", "kind": "method", "name": "request", "serializedName": "request", "type": { - "$ref": "7181" + "$ref": "7194" }, "location": "Body", "isApiVersion": false, @@ -130050,13 +130243,13 @@ "decorators": [] }, { - "$id": "9668", + "$id": "9681", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2287" + "$ref": "2288" }, "location": "Header", "isApiVersion": false, @@ -130068,12 +130261,12 @@ "decorators": [] }, { - "$id": "9669", + "$id": "9682", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2289" + "$ref": "2290" }, "location": "Header", "isApiVersion": false, @@ -130087,7 +130280,7 @@ ], "response": { "type": { - "$ref": "7673" + "$ref": "7686" } }, "isOverride": false, @@ -130098,13 +130291,13 @@ ], "parameters": [ { - "$id": "9670", + "$id": "9683", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9671", + "$id": "9684", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -130115,7 +130308,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9672", + "$id": "9685", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -130133,36 +130326,36 @@ "crossLanguageDefinitionId": "OpenAI.Realtime", "apiVersions": [], "parent": { - "$ref": "8247" + "$ref": "8260" } }, { - "$id": "9673", + "$id": "9686", "kind": "client", "name": "Uploads", "namespace": "OpenAI", "methods": [ { - "$id": "9674", + "$id": "9687", "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": "9675", + "$id": "9688", "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": "9676", + "$id": "9689", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2291" + "$ref": "2292" }, "isApiVersion": false, "optional": false, @@ -130173,13 +130366,13 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.createUpload.accept" }, { - "$id": "9677", + "$id": "9690", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2293" + "$ref": "2294" }, "isApiVersion": false, "optional": false, @@ -130190,12 +130383,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.createUpload.contentType" }, { - "$id": "9678", + "$id": "9691", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7809" + "$ref": "7822" }, "isApiVersion": false, "contentTypes": [ @@ -130215,7 +130408,7 @@ 200 ], "bodyType": { - "$ref": "7817" + "$ref": "7830" }, "headers": [], "isErrorResponse": false, @@ -130238,12 +130431,12 @@ }, "parameters": [ { - "$id": "9679", + "$id": "9692", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2295" + "$ref": "2296" }, "location": "Header", "isApiVersion": false, @@ -130255,12 +130448,12 @@ "decorators": [] }, { - "$id": "9680", + "$id": "9693", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7809" + "$ref": "7822" }, "location": "Body", "isApiVersion": false, @@ -130272,13 +130465,13 @@ "decorators": [] }, { - "$id": "9681", + "$id": "9694", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2293" + "$ref": "2294" }, "location": "Header", "isApiVersion": false, @@ -130292,7 +130485,7 @@ ], "response": { "type": { - "$ref": "7817" + "$ref": "7830" } }, "isOverride": false, @@ -130301,26 +130494,26 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.createUpload" }, { - "$id": "9682", + "$id": "9695", "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": "9683", + "$id": "9696", "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": "9684", + "$id": "9697", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2297" + "$ref": "2298" }, "isApiVersion": false, "optional": false, @@ -130331,12 +130524,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.addUploadPart.accept" }, { - "$id": "9685", + "$id": "9698", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "2299" + "$ref": "2300" }, "isApiVersion": false, "optional": false, @@ -130347,12 +130540,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.addUploadPart.contentType" }, { - "$id": "9686", + "$id": "9699", "kind": "path", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9687", + "$id": "9700", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130370,12 +130563,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.addUploadPart.upload_id" }, { - "$id": "9688", + "$id": "9701", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7836" + "$ref": "7849" }, "isApiVersion": false, "contentTypes": [ @@ -130395,7 +130588,7 @@ 200 ], "bodyType": { - "$ref": "7839" + "$ref": "7852" }, "headers": [], "isErrorResponse": false, @@ -130418,12 +130611,12 @@ }, "parameters": [ { - "$id": "9689", + "$id": "9702", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2301" + "$ref": "2302" }, "location": "Header", "isApiVersion": false, @@ -130435,12 +130628,12 @@ "decorators": [] }, { - "$id": "9690", + "$id": "9703", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "2303" + "$ref": "2304" }, "location": "Header", "isApiVersion": false, @@ -130452,12 +130645,12 @@ "decorators": [] }, { - "$id": "9691", + "$id": "9704", "kind": "method", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9692", + "$id": "9705", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130473,12 +130666,12 @@ "decorators": [] }, { - "$id": "9693", + "$id": "9706", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7836" + "$ref": "7849" }, "location": "Body", "isApiVersion": false, @@ -130492,7 +130685,7 @@ ], "response": { "type": { - "$ref": "7839" + "$ref": "7852" } }, "isOverride": false, @@ -130501,26 +130694,26 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.addUploadPart" }, { - "$id": "9694", + "$id": "9707", "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": "9695", + "$id": "9708", "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": "9696", + "$id": "9709", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2305" + "$ref": "2306" }, "isApiVersion": false, "optional": false, @@ -130531,12 +130724,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.completeUpload.accept" }, { - "$id": "9697", + "$id": "9710", "kind": "path", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9698", + "$id": "9711", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130554,13 +130747,13 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.completeUpload.upload_id" }, { - "$id": "9699", + "$id": "9712", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2307" + "$ref": "2308" }, "isApiVersion": false, "optional": false, @@ -130571,12 +130764,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.completeUpload.contentType" }, { - "$id": "9700", + "$id": "9713", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7848" + "$ref": "7861" }, "isApiVersion": false, "contentTypes": [ @@ -130596,7 +130789,7 @@ 200 ], "bodyType": { - "$ref": "7817" + "$ref": "7830" }, "headers": [], "isErrorResponse": false, @@ -130619,12 +130812,12 @@ }, "parameters": [ { - "$id": "9701", + "$id": "9714", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2309" + "$ref": "2310" }, "location": "Header", "isApiVersion": false, @@ -130636,12 +130829,12 @@ "decorators": [] }, { - "$id": "9702", + "$id": "9715", "kind": "method", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9703", + "$id": "9716", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130657,12 +130850,12 @@ "decorators": [] }, { - "$id": "9704", + "$id": "9717", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7848" + "$ref": "7861" }, "location": "Body", "isApiVersion": false, @@ -130674,13 +130867,13 @@ "decorators": [] }, { - "$id": "9705", + "$id": "9718", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2307" + "$ref": "2308" }, "location": "Header", "isApiVersion": false, @@ -130694,7 +130887,7 @@ ], "response": { "type": { - "$ref": "7817" + "$ref": "7830" } }, "isOverride": false, @@ -130703,26 +130896,26 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.completeUpload" }, { - "$id": "9706", + "$id": "9719", "kind": "basic", "name": "cancelUpload", "accessibility": "public", "apiVersions": [], "summary": "Cancels the Upload. No Parts may be added after an Upload is cancelled.", "operation": { - "$id": "9707", + "$id": "9720", "name": "cancelUpload", "resourceName": "Uploads", "summary": "Cancels the Upload. No Parts may be added after an Upload is cancelled.", "accessibility": "public", "parameters": [ { - "$id": "9708", + "$id": "9721", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2311" + "$ref": "2312" }, "isApiVersion": false, "optional": false, @@ -130733,12 +130926,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.cancelUpload.accept" }, { - "$id": "9709", + "$id": "9722", "kind": "path", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9710", + "$id": "9723", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130762,7 +130955,7 @@ 200 ], "bodyType": { - "$ref": "7817" + "$ref": "7830" }, "headers": [], "isErrorResponse": false, @@ -130782,12 +130975,12 @@ }, "parameters": [ { - "$id": "9711", + "$id": "9724", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2313" + "$ref": "2314" }, "location": "Header", "isApiVersion": false, @@ -130799,12 +130992,12 @@ "decorators": [] }, { - "$id": "9712", + "$id": "9725", "kind": "method", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9713", + "$id": "9726", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130822,7 +131015,7 @@ ], "response": { "type": { - "$ref": "7817" + "$ref": "7830" } }, "isOverride": false, @@ -130833,13 +131026,13 @@ ], "parameters": [ { - "$id": "9714", + "$id": "9727", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9715", + "$id": "9728", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -130850,7 +131043,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9716", + "$id": "9729", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -130868,17 +131061,17 @@ "crossLanguageDefinitionId": "OpenAI.Uploads", "apiVersions": [], "parent": { - "$ref": "8247" + "$ref": "8260" } }, { - "$id": "9717", + "$id": "9730", "kind": "client", "name": "Conversations", "namespace": "OpenAI", "methods": [ { - "$id": "9718", + "$id": "9731", "kind": "paging", "name": "GetConversationItems", "accessibility": "public", @@ -130886,7 +131079,7 @@ "doc": "List all items for a conversation with the given ID.", "summary": "List items", "operation": { - "$id": "9719", + "$id": "9732", "name": "GetConversationItems", "resourceName": "OpenAI", "summary": "List items", @@ -130894,13 +131087,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9720", + "$id": "9733", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to list items for.", "type": { - "$id": "9721", + "$id": "9734", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130918,13 +131111,13 @@ "crossLanguageDefinitionId": "OpenAI.listConversationItems.conversation_id" }, { - "$id": "9722", + "$id": "9735", "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": "9723", + "$id": "9736", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -130939,18 +131132,18 @@ "readOnly": false }, { - "$id": "9724", + "$id": "9737", "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": "9725", + "$id": "9738", "kind": "enum", "name": "ListConversationItemsRequestOrder", "crossLanguageDefinitionId": "OpenAI.listConversationItems.RequestOrder.anonymous", "valueType": { - "$id": "9726", + "$id": "9739", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130958,28 +131151,28 @@ }, "values": [ { - "$id": "9727", + "$id": "9740", "kind": "enumvalue", "name": "asc", "value": "asc", "valueType": { - "$ref": "9726" + "$ref": "9739" }, "enumType": { - "$ref": "9725" + "$ref": "9738" }, "decorators": [] }, { - "$id": "9728", + "$id": "9741", "kind": "enumvalue", "name": "desc", "value": "desc", "valueType": { - "$ref": "9726" + "$ref": "9739" }, "enumType": { - "$ref": "9725" + "$ref": "9738" }, "decorators": [] } @@ -130999,13 +131192,13 @@ "readOnly": false }, { - "$id": "9729", + "$id": "9742", "kind": "query", "name": "after", "serializedName": "after", "doc": "An item ID to list items after, used in pagination.", "type": { - "$id": "9730", + "$id": "9743", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131020,22 +131213,22 @@ "readOnly": false }, { - "$id": "9731", + "$id": "9744", "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": "9732", + "$id": "9745", "kind": "array", "name": "ArrayIncludeEnum", "valueType": { - "$id": "9733", + "$id": "9746", "kind": "enum", "name": "IncludeEnum", "crossLanguageDefinitionId": "OpenAI.IncludeEnum", "valueType": { - "$id": "9734", + "$id": "9747", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131043,106 +131236,106 @@ }, "values": [ { - "$id": "9735", + "$id": "9748", "kind": "enumvalue", "name": "file_search_call.results", "value": "file_search_call.results", "valueType": { - "$ref": "9734" + "$ref": "9747" }, "enumType": { - "$ref": "9733" + "$ref": "9746" }, "decorators": [] }, { - "$id": "9736", + "$id": "9749", "kind": "enumvalue", "name": "web_search_call.results", "value": "web_search_call.results", "valueType": { - "$ref": "9734" + "$ref": "9747" }, "enumType": { - "$ref": "9733" + "$ref": "9746" }, "decorators": [] }, { - "$id": "9737", + "$id": "9750", "kind": "enumvalue", "name": "web_search_call.action.sources", "value": "web_search_call.action.sources", "valueType": { - "$ref": "9734" + "$ref": "9747" }, "enumType": { - "$ref": "9733" + "$ref": "9746" }, "decorators": [] }, { - "$id": "9738", + "$id": "9751", "kind": "enumvalue", "name": "message.input_image.image_url", "value": "message.input_image.image_url", "valueType": { - "$ref": "9734" + "$ref": "9747" }, "enumType": { - "$ref": "9733" + "$ref": "9746" }, "decorators": [] }, { - "$id": "9739", + "$id": "9752", "kind": "enumvalue", "name": "computer_call_output.output.image_url", "value": "computer_call_output.output.image_url", "valueType": { - "$ref": "9734" + "$ref": "9747" }, "enumType": { - "$ref": "9733" + "$ref": "9746" }, "decorators": [] }, { - "$id": "9740", + "$id": "9753", "kind": "enumvalue", "name": "code_interpreter_call.outputs", "value": "code_interpreter_call.outputs", "valueType": { - "$ref": "9734" + "$ref": "9747" }, "enumType": { - "$ref": "9733" + "$ref": "9746" }, "decorators": [] }, { - "$id": "9741", + "$id": "9754", "kind": "enumvalue", "name": "reasoning.encrypted_content", "value": "reasoning.encrypted_content", "valueType": { - "$ref": "9734" + "$ref": "9747" }, "enumType": { - "$ref": "9733" + "$ref": "9746" }, "decorators": [] }, { - "$id": "9742", + "$id": "9755", "kind": "enumvalue", "name": "message.output_text.logprobs", "value": "message.output_text.logprobs", "valueType": { - "$ref": "9734" + "$ref": "9747" }, "enumType": { - "$ref": "9733" + "$ref": "9746" }, "decorators": [] } @@ -131166,12 +131359,12 @@ "readOnly": false }, { - "$id": "9743", + "$id": "9756", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2315" + "$ref": "2316" }, "isApiVersion": false, "optional": false, @@ -131188,7 +131381,7 @@ 200 ], "bodyType": { - "$id": "9744", + "$id": "9757", "kind": "model", "name": "ConversationItemList", "namespace": "OpenAI", @@ -131199,12 +131392,12 @@ "decorators": [], "properties": [ { - "$id": "9745", + "$id": "9758", "kind": "property", "name": "object", "doc": "The type of object returned, must be `list`.", "type": { - "$ref": "2317" + "$ref": "2318" }, "optional": false, "readOnly": false, @@ -131216,12 +131409,12 @@ "isHttpMetadata": false }, { - "$id": "9746", + "$id": "9759", "kind": "property", "name": "data", "doc": "A list of conversation items.", "type": { - "$ref": "5193" + "$ref": "5206" }, "optional": false, "readOnly": false, @@ -131233,12 +131426,12 @@ "isHttpMetadata": false }, { - "$id": "9747", + "$id": "9760", "kind": "property", "name": "has_more", "doc": "Whether there are more items available.", "type": { - "$id": "9748", + "$id": "9761", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -131254,12 +131447,12 @@ "isHttpMetadata": false }, { - "$id": "9749", + "$id": "9762", "kind": "property", "name": "first_id", "doc": "The ID of the first item in the list.", "type": { - "$id": "9750", + "$id": "9763", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131275,12 +131468,12 @@ "isHttpMetadata": false }, { - "$id": "9751", + "$id": "9764", "kind": "property", "name": "last_id", "doc": "The ID of the last item in the list.", "type": { - "$id": "9752", + "$id": "9765", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131315,13 +131508,13 @@ }, "parameters": [ { - "$id": "9753", + "$id": "9766", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to list items for.", "type": { - "$id": "9754", + "$id": "9767", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131337,13 +131530,13 @@ "decorators": [] }, { - "$id": "9755", + "$id": "9768", "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": "9756", + "$id": "9769", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -131359,13 +131552,13 @@ "decorators": [] }, { - "$id": "9757", + "$id": "9770", "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": "9725" + "$ref": "9738" }, "location": "Query", "isApiVersion": false, @@ -131377,13 +131570,13 @@ "decorators": [] }, { - "$id": "9758", + "$id": "9771", "kind": "method", "name": "after", "serializedName": "after", "doc": "An item ID to list items after, used in pagination.", "type": { - "$id": "9759", + "$id": "9772", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131399,13 +131592,13 @@ "decorators": [] }, { - "$id": "9760", + "$id": "9773", "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": "9732" + "$ref": "9745" }, "location": "Query", "isApiVersion": false, @@ -131417,12 +131610,12 @@ "decorators": [] }, { - "$id": "9761", + "$id": "9774", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2315" + "$ref": "2316" }, "location": "Header", "isApiVersion": false, @@ -131436,7 +131629,7 @@ ], "response": { "type": { - "$ref": "5193" + "$ref": "5206" }, "resultSegments": [ "data" @@ -131453,7 +131646,7 @@ } }, { - "$id": "9762", + "$id": "9775", "kind": "basic", "name": "createConversationItems", "accessibility": "public", @@ -131461,7 +131654,7 @@ "doc": "Create items in a conversation with the given ID.", "summary": "Create items", "operation": { - "$id": "9763", + "$id": "9776", "name": "createConversationItems", "resourceName": "OpenAI", "summary": "Create items", @@ -131469,13 +131662,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9764", + "$id": "9777", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to add the item to.", "type": { - "$id": "9765", + "$id": "9778", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131493,13 +131686,13 @@ "crossLanguageDefinitionId": "OpenAI.createConversationItems.conversation_id" }, { - "$id": "9766", + "$id": "9779", "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": "9732" + "$ref": "9745" }, "isApiVersion": false, "explode": true, @@ -131510,13 +131703,13 @@ "readOnly": false }, { - "$id": "9767", + "$id": "9780", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2319" + "$ref": "2320" }, "isApiVersion": false, "optional": false, @@ -131527,12 +131720,12 @@ "crossLanguageDefinitionId": "OpenAI.createConversationItems.contentType" }, { - "$id": "9768", + "$id": "9781", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2321" + "$ref": "2322" }, "isApiVersion": false, "optional": false, @@ -131543,12 +131736,12 @@ "crossLanguageDefinitionId": "OpenAI.createConversationItems.accept" }, { - "$id": "9769", + "$id": "9782", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$id": "9770", + "$id": "9783", "kind": "model", "name": "CreateConversationItemsParametersBody", "namespace": "OpenAI", @@ -131557,11 +131750,11 @@ "decorators": [], "properties": [ { - "$id": "9771", + "$id": "9784", "kind": "property", "name": "items", "type": { - "$ref": "5193" + "$ref": "5206" }, "optional": false, "readOnly": false, @@ -131592,7 +131785,7 @@ 200 ], "bodyType": { - "$ref": "9744" + "$ref": "9757" }, "headers": [], "isErrorResponse": false, @@ -131615,13 +131808,13 @@ }, "parameters": [ { - "$id": "9772", + "$id": "9785", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to add the item to.", "type": { - "$id": "9773", + "$id": "9786", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131637,13 +131830,13 @@ "decorators": [] }, { - "$id": "9774", + "$id": "9787", "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": "9732" + "$ref": "9745" }, "location": "Query", "isApiVersion": false, @@ -131655,12 +131848,12 @@ "decorators": [] }, { - "$id": "9775", + "$id": "9788", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "9770" + "$ref": "9783" }, "location": "Body", "isApiVersion": false, @@ -131672,13 +131865,13 @@ "decorators": [] }, { - "$id": "9776", + "$id": "9789", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2319" + "$ref": "2320" }, "location": "Header", "isApiVersion": false, @@ -131690,12 +131883,12 @@ "decorators": [] }, { - "$id": "9777", + "$id": "9790", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2321" + "$ref": "2322" }, "location": "Header", "isApiVersion": false, @@ -131709,7 +131902,7 @@ ], "response": { "type": { - "$ref": "9744" + "$ref": "9757" } }, "isOverride": false, @@ -131718,7 +131911,7 @@ "crossLanguageDefinitionId": "OpenAI.createConversationItems" }, { - "$id": "9778", + "$id": "9791", "kind": "basic", "name": "deleteConversationItem", "accessibility": "public", @@ -131726,7 +131919,7 @@ "doc": "Delete an item from a conversation with the given IDs.", "summary": "Delete an item", "operation": { - "$id": "9779", + "$id": "9792", "name": "deleteConversationItem", "resourceName": "OpenAI", "summary": "Delete an item", @@ -131734,13 +131927,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9780", + "$id": "9793", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation that contains the item.", "type": { - "$id": "9781", + "$id": "9794", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131758,13 +131951,13 @@ "crossLanguageDefinitionId": "OpenAI.deleteConversationItem.conversation_id" }, { - "$id": "9782", + "$id": "9795", "kind": "path", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to delete.", "type": { - "$id": "9783", + "$id": "9796", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131782,12 +131975,12 @@ "crossLanguageDefinitionId": "OpenAI.deleteConversationItem.item_id" }, { - "$id": "9784", + "$id": "9797", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2323" + "$ref": "2324" }, "isApiVersion": false, "optional": false, @@ -131804,7 +131997,7 @@ 200 ], "bodyType": { - "$id": "9785", + "$id": "9798", "kind": "model", "name": "ConversationResource", "namespace": "OpenAI", @@ -131813,12 +132006,12 @@ "decorators": [], "properties": [ { - "$id": "9786", + "$id": "9799", "kind": "property", "name": "id", "doc": "The unique ID of the conversation.", "type": { - "$id": "9787", + "$id": "9800", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131834,12 +132027,12 @@ "isHttpMetadata": false }, { - "$id": "9788", + "$id": "9801", "kind": "property", "name": "object", "doc": "The object type, which is always `conversation`.", "type": { - "$ref": "2325" + "$ref": "2326" }, "optional": false, "readOnly": false, @@ -131851,12 +132044,12 @@ "isHttpMetadata": false }, { - "$id": "9789", + "$id": "9802", "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": "9790", + "$id": "9803", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -131872,12 +132065,12 @@ "isHttpMetadata": false }, { - "$id": "9791", + "$id": "9804", "kind": "property", "name": "created_at", "doc": "The time at which the conversation was created, measured in seconds since the Unix epoch.", "type": { - "$id": "9792", + "$id": "9805", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -131912,13 +132105,13 @@ }, "parameters": [ { - "$id": "9793", + "$id": "9806", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation that contains the item.", "type": { - "$id": "9794", + "$id": "9807", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131934,13 +132127,13 @@ "decorators": [] }, { - "$id": "9795", + "$id": "9808", "kind": "method", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to delete.", "type": { - "$id": "9796", + "$id": "9809", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131956,12 +132149,12 @@ "decorators": [] }, { - "$id": "9797", + "$id": "9810", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2323" + "$ref": "2324" }, "location": "Header", "isApiVersion": false, @@ -131975,7 +132168,7 @@ ], "response": { "type": { - "$ref": "9785" + "$ref": "9798" } }, "isOverride": false, @@ -131984,7 +132177,7 @@ "crossLanguageDefinitionId": "OpenAI.deleteConversationItem" }, { - "$id": "9798", + "$id": "9811", "kind": "basic", "name": "getConversationItem", "accessibility": "public", @@ -131992,7 +132185,7 @@ "doc": "Get a single item from a conversation with the given IDs.", "summary": "Retrieve an item", "operation": { - "$id": "9799", + "$id": "9812", "name": "getConversationItem", "resourceName": "OpenAI", "summary": "Retrieve an item", @@ -132000,13 +132193,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9800", + "$id": "9813", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation that contains the item.", "type": { - "$id": "9801", + "$id": "9814", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132024,13 +132217,13 @@ "crossLanguageDefinitionId": "OpenAI.getConversationItem.conversation_id" }, { - "$id": "9802", + "$id": "9815", "kind": "path", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to retrieve.", "type": { - "$id": "9803", + "$id": "9816", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132048,13 +132241,13 @@ "crossLanguageDefinitionId": "OpenAI.getConversationItem.item_id" }, { - "$id": "9804", + "$id": "9817", "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": "9732" + "$ref": "9745" }, "isApiVersion": false, "explode": true, @@ -132065,12 +132258,12 @@ "readOnly": false }, { - "$id": "9805", + "$id": "9818", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2327" + "$ref": "2328" }, "isApiVersion": false, "optional": false, @@ -132087,7 +132280,7 @@ 200 ], "bodyType": { - "$ref": "5194" + "$ref": "5207" }, "headers": [], "isErrorResponse": false, @@ -132107,13 +132300,13 @@ }, "parameters": [ { - "$id": "9806", + "$id": "9819", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation that contains the item.", "type": { - "$id": "9807", + "$id": "9820", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132129,13 +132322,13 @@ "decorators": [] }, { - "$id": "9808", + "$id": "9821", "kind": "method", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to retrieve.", "type": { - "$id": "9809", + "$id": "9822", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132151,13 +132344,13 @@ "decorators": [] }, { - "$id": "9810", + "$id": "9823", "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": "9732" + "$ref": "9745" }, "location": "Query", "isApiVersion": false, @@ -132169,12 +132362,12 @@ "decorators": [] }, { - "$id": "9811", + "$id": "9824", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2327" + "$ref": "2328" }, "location": "Header", "isApiVersion": false, @@ -132188,7 +132381,7 @@ ], "response": { "type": { - "$ref": "5194" + "$ref": "5207" } }, "isOverride": false, @@ -132197,7 +132390,7 @@ "crossLanguageDefinitionId": "OpenAI.getConversationItem" }, { - "$id": "9812", + "$id": "9825", "kind": "basic", "name": "createConversation", "accessibility": "public", @@ -132205,7 +132398,7 @@ "doc": "Create a conversation.", "summary": "Create a conversation", "operation": { - "$id": "9813", + "$id": "9826", "name": "createConversation", "resourceName": "OpenAI", "summary": "Create a conversation", @@ -132213,13 +132406,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9814", + "$id": "9827", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2329" + "$ref": "2330" }, "isApiVersion": false, "optional": false, @@ -132230,12 +132423,12 @@ "crossLanguageDefinitionId": "OpenAI.createConversation.contentType" }, { - "$id": "9815", + "$id": "9828", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2331" + "$ref": "2332" }, "isApiVersion": false, "optional": false, @@ -132246,12 +132439,12 @@ "crossLanguageDefinitionId": "OpenAI.createConversation.accept" }, { - "$id": "9816", + "$id": "9829", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$id": "9817", + "$id": "9830", "kind": "model", "name": "CreateConversationBody", "namespace": "OpenAI", @@ -132260,14 +132453,14 @@ "decorators": [], "properties": [ { - "$id": "9818", + "$id": "9831", "kind": "property", "name": "metadata", "type": { - "$id": "9819", + "$id": "9832", "kind": "nullable", "type": { - "$id": "9820", + "$id": "9833", "kind": "model", "name": "Metadata", "namespace": "OpenAI", @@ -132289,14 +132482,14 @@ "isHttpMetadata": false }, { - "$id": "9821", + "$id": "9834", "kind": "property", "name": "items", "type": { - "$id": "9822", + "$id": "9835", "kind": "nullable", "type": { - "$ref": "5193" + "$ref": "5206" }, "namespace": "OpenAI" }, @@ -132329,7 +132522,7 @@ 200 ], "bodyType": { - "$ref": "9785" + "$ref": "9798" }, "headers": [], "isErrorResponse": false, @@ -132352,12 +132545,12 @@ }, "parameters": [ { - "$id": "9823", + "$id": "9836", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "9817" + "$ref": "9830" }, "location": "Body", "isApiVersion": false, @@ -132369,13 +132562,13 @@ "decorators": [] }, { - "$id": "9824", + "$id": "9837", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2329" + "$ref": "2330" }, "location": "Header", "isApiVersion": false, @@ -132387,12 +132580,12 @@ "decorators": [] }, { - "$id": "9825", + "$id": "9838", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2331" + "$ref": "2332" }, "location": "Header", "isApiVersion": false, @@ -132406,7 +132599,7 @@ ], "response": { "type": { - "$ref": "9785" + "$ref": "9798" } }, "isOverride": false, @@ -132415,7 +132608,7 @@ "crossLanguageDefinitionId": "OpenAI.createConversation" }, { - "$id": "9826", + "$id": "9839", "kind": "basic", "name": "deleteConversation", "accessibility": "public", @@ -132423,7 +132616,7 @@ "doc": "Delete a conversation. Items in the conversation will not be deleted.", "summary": "Delete a conversation", "operation": { - "$id": "9827", + "$id": "9840", "name": "deleteConversation", "resourceName": "OpenAI", "summary": "Delete a conversation", @@ -132431,13 +132624,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9828", + "$id": "9841", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to delete.", "type": { - "$id": "9829", + "$id": "9842", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132455,12 +132648,12 @@ "crossLanguageDefinitionId": "OpenAI.deleteConversation.conversation_id" }, { - "$id": "9830", + "$id": "9843", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2333" + "$ref": "2334" }, "isApiVersion": false, "optional": false, @@ -132477,7 +132670,7 @@ 200 ], "bodyType": { - "$id": "9831", + "$id": "9844", "kind": "model", "name": "DeletedConversationResource", "namespace": "OpenAI", @@ -132486,11 +132679,11 @@ "decorators": [], "properties": [ { - "$id": "9832", + "$id": "9845", "kind": "property", "name": "object", "type": { - "$ref": "2335" + "$ref": "2336" }, "optional": false, "readOnly": false, @@ -132502,11 +132695,11 @@ "isHttpMetadata": false }, { - "$id": "9833", + "$id": "9846", "kind": "property", "name": "deleted", "type": { - "$id": "9834", + "$id": "9847", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -132522,11 +132715,11 @@ "isHttpMetadata": false }, { - "$id": "9835", + "$id": "9848", "kind": "property", "name": "id", "type": { - "$id": "9836", + "$id": "9849", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132561,13 +132754,13 @@ }, "parameters": [ { - "$id": "9837", + "$id": "9850", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to delete.", "type": { - "$id": "9838", + "$id": "9851", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132583,12 +132776,12 @@ "decorators": [] }, { - "$id": "9839", + "$id": "9852", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2333" + "$ref": "2334" }, "location": "Header", "isApiVersion": false, @@ -132602,7 +132795,7 @@ ], "response": { "type": { - "$ref": "9831" + "$ref": "9844" } }, "isOverride": false, @@ -132611,7 +132804,7 @@ "crossLanguageDefinitionId": "OpenAI.deleteConversation" }, { - "$id": "9840", + "$id": "9853", "kind": "basic", "name": "getConversation", "accessibility": "public", @@ -132619,7 +132812,7 @@ "doc": "Get a conversation", "summary": "Retrieve a conversation", "operation": { - "$id": "9841", + "$id": "9854", "name": "getConversation", "resourceName": "OpenAI", "summary": "Retrieve a conversation", @@ -132627,13 +132820,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9842", + "$id": "9855", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to retrieve.", "type": { - "$id": "9843", + "$id": "9856", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132651,12 +132844,12 @@ "crossLanguageDefinitionId": "OpenAI.getConversation.conversation_id" }, { - "$id": "9844", + "$id": "9857", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2337" + "$ref": "2338" }, "isApiVersion": false, "optional": false, @@ -132673,7 +132866,7 @@ 200 ], "bodyType": { - "$ref": "9785" + "$ref": "9798" }, "headers": [], "isErrorResponse": false, @@ -132693,13 +132886,13 @@ }, "parameters": [ { - "$id": "9845", + "$id": "9858", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to retrieve.", "type": { - "$id": "9846", + "$id": "9859", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132715,12 +132908,12 @@ "decorators": [] }, { - "$id": "9847", + "$id": "9860", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2337" + "$ref": "2338" }, "location": "Header", "isApiVersion": false, @@ -132734,7 +132927,7 @@ ], "response": { "type": { - "$ref": "9785" + "$ref": "9798" } }, "isOverride": false, @@ -132743,7 +132936,7 @@ "crossLanguageDefinitionId": "OpenAI.getConversation" }, { - "$id": "9848", + "$id": "9861", "kind": "basic", "name": "updateConversation", "accessibility": "public", @@ -132751,7 +132944,7 @@ "doc": "Update a conversation", "summary": "Update a conversation", "operation": { - "$id": "9849", + "$id": "9862", "name": "updateConversation", "resourceName": "OpenAI", "summary": "Update a conversation", @@ -132759,13 +132952,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9850", + "$id": "9863", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to update.", "type": { - "$id": "9851", + "$id": "9864", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132783,13 +132976,13 @@ "crossLanguageDefinitionId": "OpenAI.updateConversation.conversation_id" }, { - "$id": "9852", + "$id": "9865", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2339" + "$ref": "2340" }, "isApiVersion": false, "optional": false, @@ -132800,12 +132993,12 @@ "crossLanguageDefinitionId": "OpenAI.updateConversation.contentType" }, { - "$id": "9853", + "$id": "9866", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2341" + "$ref": "2342" }, "isApiVersion": false, "optional": false, @@ -132816,12 +133009,12 @@ "crossLanguageDefinitionId": "OpenAI.updateConversation.accept" }, { - "$id": "9854", + "$id": "9867", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$id": "9855", + "$id": "9868", "kind": "model", "name": "UpdateConversationBody", "namespace": "OpenAI", @@ -132830,15 +133023,15 @@ "decorators": [], "properties": [ { - "$id": "9856", + "$id": "9869", "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": "9857", + "$id": "9870", "kind": "nullable", "type": { - "$ref": "9820" + "$ref": "9833" }, "namespace": "OpenAI" }, @@ -132871,7 +133064,7 @@ 200 ], "bodyType": { - "$ref": "9785" + "$ref": "9798" }, "headers": [], "isErrorResponse": false, @@ -132894,13 +133087,13 @@ }, "parameters": [ { - "$id": "9858", + "$id": "9871", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to update.", "type": { - "$id": "9859", + "$id": "9872", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132916,12 +133109,12 @@ "decorators": [] }, { - "$id": "9860", + "$id": "9873", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "9855" + "$ref": "9868" }, "location": "Body", "isApiVersion": false, @@ -132933,13 +133126,13 @@ "decorators": [] }, { - "$id": "9861", + "$id": "9874", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2339" + "$ref": "2340" }, "location": "Header", "isApiVersion": false, @@ -132951,12 +133144,12 @@ "decorators": [] }, { - "$id": "9862", + "$id": "9875", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2341" + "$ref": "2342" }, "location": "Header", "isApiVersion": false, @@ -132970,7 +133163,7 @@ ], "response": { "type": { - "$ref": "9785" + "$ref": "9798" } }, "isOverride": false, @@ -132981,13 +133174,13 @@ ], "parameters": [ { - "$id": "9863", + "$id": "9876", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9864", + "$id": "9877", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -132998,7 +133191,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9865", + "$id": "9878", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -133016,17 +133209,17 @@ "crossLanguageDefinitionId": "OpenAI", "apiVersions": [], "parent": { - "$ref": "8247" + "$ref": "8260" } }, { - "$id": "9866", + "$id": "9879", "kind": "client", "name": "Videos", "namespace": "OpenAI", "methods": [ { - "$id": "9867", + "$id": "9880", "kind": "paging", "name": "ListVideos", "accessibility": "public", @@ -133034,7 +133227,7 @@ "doc": "List videos", "summary": "List videos", "operation": { - "$id": "9868", + "$id": "9881", "name": "ListVideos", "resourceName": "OpenAI", "summary": "List videos", @@ -133042,13 +133235,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9869", + "$id": "9882", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "Number of items to retrieve", "type": { - "$id": "9870", + "$id": "9883", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -133063,18 +133256,18 @@ "readOnly": false }, { - "$id": "9871", + "$id": "9884", "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": "9872", + "$id": "9885", "kind": "enum", "name": "OrderEnum", "crossLanguageDefinitionId": "OpenAI.OrderEnum", "valueType": { - "$id": "9873", + "$id": "9886", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133082,28 +133275,28 @@ }, "values": [ { - "$id": "9874", + "$id": "9887", "kind": "enumvalue", "name": "asc", "value": "asc", "valueType": { - "$ref": "9873" + "$ref": "9886" }, "enumType": { - "$ref": "9872" + "$ref": "9885" }, "decorators": [] }, { - "$id": "9875", + "$id": "9888", "kind": "enumvalue", "name": "desc", "value": "desc", "valueType": { - "$ref": "9873" + "$ref": "9886" }, "enumType": { - "$ref": "9872" + "$ref": "9885" }, "decorators": [] } @@ -133123,13 +133316,13 @@ "readOnly": false }, { - "$id": "9876", + "$id": "9889", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last item from the previous pagination request", "type": { - "$id": "9877", + "$id": "9890", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133144,12 +133337,12 @@ "readOnly": false }, { - "$id": "9878", + "$id": "9891", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2343" + "$ref": "2344" }, "isApiVersion": false, "optional": false, @@ -133166,7 +133359,7 @@ 200 ], "bodyType": { - "$id": "9879", + "$id": "9892", "kind": "model", "name": "VideoListResource", "namespace": "OpenAI", @@ -133175,12 +133368,12 @@ "decorators": [], "properties": [ { - "$id": "9880", + "$id": "9893", "kind": "property", "name": "object", "doc": "The type of object returned, must be `list`.", "type": { - "$ref": "2345" + "$ref": "2346" }, "optional": false, "readOnly": false, @@ -133192,16 +133385,16 @@ "isHttpMetadata": false }, { - "$id": "9881", + "$id": "9894", "kind": "property", "name": "data", "doc": "A list of items", "type": { - "$id": "9882", + "$id": "9895", "kind": "array", "name": "ArrayVideoResource", "valueType": { - "$id": "9883", + "$id": "9896", "kind": "model", "name": "VideoResource", "namespace": "OpenAI", @@ -133212,12 +133405,12 @@ "decorators": [], "properties": [ { - "$id": "9884", + "$id": "9897", "kind": "property", "name": "id", "doc": "Unique identifier for the video job.", "type": { - "$id": "9885", + "$id": "9898", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133233,12 +133426,12 @@ "isHttpMetadata": false }, { - "$id": "9886", + "$id": "9899", "kind": "property", "name": "object", "doc": "The object type, which is always `video`.", "type": { - "$ref": "2347" + "$ref": "2348" }, "optional": false, "readOnly": false, @@ -133250,17 +133443,17 @@ "isHttpMetadata": false }, { - "$id": "9887", + "$id": "9900", "kind": "property", "name": "model", "doc": "The video generation model that produced the job.", "type": { - "$id": "9888", + "$id": "9901", "kind": "enum", "name": "VideoModel", "crossLanguageDefinitionId": "OpenAI.VideoModel", "valueType": { - "$id": "9889", + "$id": "9902", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133268,28 +133461,28 @@ }, "values": [ { - "$id": "9890", + "$id": "9903", "kind": "enumvalue", "name": "sora-2", "value": "sora-2", "valueType": { - "$ref": "9889" + "$ref": "9902" }, "enumType": { - "$ref": "9888" + "$ref": "9901" }, "decorators": [] }, { - "$id": "9891", + "$id": "9904", "kind": "enumvalue", "name": "sora-2-pro", "value": "sora-2-pro", "valueType": { - "$ref": "9889" + "$ref": "9902" }, "enumType": { - "$ref": "9888" + "$ref": "9901" }, "decorators": [] } @@ -133310,17 +133503,17 @@ "isHttpMetadata": false }, { - "$id": "9892", + "$id": "9905", "kind": "property", "name": "status", "doc": "Current lifecycle status of the video job.", "type": { - "$id": "9893", + "$id": "9906", "kind": "enum", "name": "VideoStatus", "crossLanguageDefinitionId": "OpenAI.VideoStatus", "valueType": { - "$id": "9894", + "$id": "9907", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133328,54 +133521,54 @@ }, "values": [ { - "$id": "9895", + "$id": "9908", "kind": "enumvalue", "name": "queued", "value": "queued", "valueType": { - "$ref": "9894" + "$ref": "9907" }, "enumType": { - "$ref": "9893" + "$ref": "9906" }, "decorators": [] }, { - "$id": "9896", + "$id": "9909", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "9894" + "$ref": "9907" }, "enumType": { - "$ref": "9893" + "$ref": "9906" }, "decorators": [] }, { - "$id": "9897", + "$id": "9910", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "9894" + "$ref": "9907" }, "enumType": { - "$ref": "9893" + "$ref": "9906" }, "decorators": [] }, { - "$id": "9898", + "$id": "9911", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "9894" + "$ref": "9907" }, "enumType": { - "$ref": "9893" + "$ref": "9906" }, "decorators": [] } @@ -133396,12 +133589,12 @@ "isHttpMetadata": false }, { - "$id": "9899", + "$id": "9912", "kind": "property", "name": "progress", "doc": "Approximate completion percentage for the generation task.", "type": { - "$id": "9900", + "$id": "9913", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -133417,12 +133610,12 @@ "isHttpMetadata": false }, { - "$id": "9901", + "$id": "9914", "kind": "property", "name": "created_at", "doc": "Unix timestamp (seconds) for when the job was created.", "type": { - "$id": "9902", + "$id": "9915", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -133438,14 +133631,14 @@ "isHttpMetadata": false }, { - "$id": "9903", + "$id": "9916", "kind": "property", "name": "completed_at", "type": { - "$id": "9904", + "$id": "9917", "kind": "nullable", "type": { - "$id": "9905", + "$id": "9918", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -133463,14 +133656,14 @@ "isHttpMetadata": false }, { - "$id": "9906", + "$id": "9919", "kind": "property", "name": "expires_at", "type": { - "$id": "9907", + "$id": "9920", "kind": "nullable", "type": { - "$id": "9908", + "$id": "9921", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -133488,17 +133681,17 @@ "isHttpMetadata": false }, { - "$id": "9909", + "$id": "9922", "kind": "property", "name": "size", "doc": "The resolution of the generated video.", "type": { - "$id": "9910", + "$id": "9923", "kind": "enum", "name": "VideoSize", "crossLanguageDefinitionId": "OpenAI.VideoSize", "valueType": { - "$id": "9911", + "$id": "9924", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133506,54 +133699,54 @@ }, "values": [ { - "$id": "9912", + "$id": "9925", "kind": "enumvalue", "name": "720x1280", "value": "720x1280", "valueType": { - "$ref": "9911" + "$ref": "9924" }, "enumType": { - "$ref": "9910" + "$ref": "9923" }, "decorators": [] }, { - "$id": "9913", + "$id": "9926", "kind": "enumvalue", "name": "1280x720", "value": "1280x720", "valueType": { - "$ref": "9911" + "$ref": "9924" }, "enumType": { - "$ref": "9910" + "$ref": "9923" }, "decorators": [] }, { - "$id": "9914", + "$id": "9927", "kind": "enumvalue", "name": "1024x1792", "value": "1024x1792", "valueType": { - "$ref": "9911" + "$ref": "9924" }, "enumType": { - "$ref": "9910" + "$ref": "9923" }, "decorators": [] }, { - "$id": "9915", + "$id": "9928", "kind": "enumvalue", "name": "1792x1024", "value": "1792x1024", "valueType": { - "$ref": "9911" + "$ref": "9924" }, "enumType": { - "$ref": "9910" + "$ref": "9923" }, "decorators": [] } @@ -133574,17 +133767,17 @@ "isHttpMetadata": false }, { - "$id": "9916", + "$id": "9929", "kind": "property", "name": "seconds", "doc": "Duration of the generated clip in seconds.", "type": { - "$id": "9917", + "$id": "9930", "kind": "enum", "name": "VideoSeconds", "crossLanguageDefinitionId": "OpenAI.VideoSeconds", "valueType": { - "$id": "9918", + "$id": "9931", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133592,41 +133785,41 @@ }, "values": [ { - "$id": "9919", + "$id": "9932", "kind": "enumvalue", "name": "4", "value": "4", "valueType": { - "$ref": "9918" + "$ref": "9931" }, "enumType": { - "$ref": "9917" + "$ref": "9930" }, "decorators": [] }, { - "$id": "9920", + "$id": "9933", "kind": "enumvalue", "name": "8", "value": "8", "valueType": { - "$ref": "9918" + "$ref": "9931" }, "enumType": { - "$ref": "9917" + "$ref": "9930" }, "decorators": [] }, { - "$id": "9921", + "$id": "9934", "kind": "enumvalue", "name": "12", "value": "12", "valueType": { - "$ref": "9918" + "$ref": "9931" }, "enumType": { - "$ref": "9917" + "$ref": "9930" }, "decorators": [] } @@ -133647,14 +133840,14 @@ "isHttpMetadata": false }, { - "$id": "9922", + "$id": "9935", "kind": "property", "name": "remixed_from_video_id", "type": { - "$id": "9923", + "$id": "9936", "kind": "nullable", "type": { - "$id": "9924", + "$id": "9937", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133672,14 +133865,14 @@ "isHttpMetadata": false }, { - "$id": "9925", + "$id": "9938", "kind": "property", "name": "error", "type": { - "$id": "9926", + "$id": "9939", "kind": "nullable", "type": { - "$id": "9927", + "$id": "9940", "kind": "model", "name": "Error-2", "namespace": "OpenAI", @@ -133688,11 +133881,11 @@ "decorators": [], "properties": [ { - "$id": "9928", + "$id": "9941", "kind": "property", "name": "code", "type": { - "$id": "9929", + "$id": "9942", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133708,11 +133901,11 @@ "isHttpMetadata": false }, { - "$id": "9930", + "$id": "9943", "kind": "property", "name": "message", "type": { - "$id": "9931", + "$id": "9944", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133755,11 +133948,11 @@ "isHttpMetadata": false }, { - "$id": "9932", + "$id": "9945", "kind": "property", "name": "first_id", "type": { - "$id": "9933", + "$id": "9946", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133775,11 +133968,11 @@ "isHttpMetadata": false }, { - "$id": "9934", + "$id": "9947", "kind": "property", "name": "last_id", "type": { - "$id": "9935", + "$id": "9948", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133795,12 +133988,12 @@ "isHttpMetadata": false }, { - "$id": "9936", + "$id": "9949", "kind": "property", "name": "has_more", "doc": "Whether there are more items available.", "type": { - "$id": "9937", + "$id": "9950", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -133835,13 +134028,13 @@ }, "parameters": [ { - "$id": "9938", + "$id": "9951", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "Number of items to retrieve", "type": { - "$id": "9939", + "$id": "9952", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -133857,13 +134050,13 @@ "decorators": [] }, { - "$id": "9940", + "$id": "9953", "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": "9872" + "$ref": "9885" }, "location": "Query", "isApiVersion": false, @@ -133875,13 +134068,13 @@ "decorators": [] }, { - "$id": "9941", + "$id": "9954", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last item from the previous pagination request", "type": { - "$id": "9942", + "$id": "9955", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133897,12 +134090,12 @@ "decorators": [] }, { - "$id": "9943", + "$id": "9956", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2343" + "$ref": "2344" }, "location": "Header", "isApiVersion": false, @@ -133916,7 +134109,7 @@ ], "response": { "type": { - "$ref": "9882" + "$ref": "9895" }, "resultSegments": [ "data" @@ -133933,7 +134126,7 @@ } }, { - "$id": "9944", + "$id": "9957", "kind": "basic", "name": "createVideo", "accessibility": "public", @@ -133941,7 +134134,7 @@ "doc": "Create a video", "summary": "Create video", "operation": { - "$id": "9945", + "$id": "9958", "name": "createVideo", "resourceName": "OpenAI", "summary": "Create video", @@ -133949,12 +134142,12 @@ "accessibility": "public", "parameters": [ { - "$id": "9946", + "$id": "9959", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "2349" + "$ref": "2350" }, "isApiVersion": false, "optional": false, @@ -133965,12 +134158,12 @@ "crossLanguageDefinitionId": "OpenAI.createVideo.contentType" }, { - "$id": "9947", + "$id": "9960", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2351" + "$ref": "2352" }, "isApiVersion": false, "optional": false, @@ -133981,12 +134174,12 @@ "crossLanguageDefinitionId": "OpenAI.createVideo.accept" }, { - "$id": "9948", + "$id": "9961", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$id": "9949", + "$id": "9962", "kind": "model", "name": "CreateVideoBody", "namespace": "OpenAI", @@ -133997,13 +134190,13 @@ "decorators": [], "properties": [ { - "$id": "9950", + "$id": "9963", "kind": "property", "name": "model", "serializedName": "model", "doc": "The video generation model to use. Defaults to `sora-2`.", "type": { - "$ref": "9888" + "$ref": "9901" }, "optional": true, "readOnly": false, @@ -134025,18 +134218,18 @@ "isHttpMetadata": false }, { - "$id": "9951", + "$id": "9964", "kind": "property", "name": "prompt", "serializedName": "prompt", "doc": "Text prompt that describes the video to generate.", "type": { - "$id": "9952", + "$id": "9965", "kind": "string", "name": "VideoPrompt", "crossLanguageDefinitionId": "OpenAI.VideoPrompt", "baseType": { - "$id": "9953", + "$id": "9966", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134064,13 +134257,13 @@ "isHttpMetadata": false }, { - "$id": "9954", + "$id": "9967", "kind": "property", "name": "input_reference", "serializedName": "input_reference", "doc": "Optional image reference that guides generation.", "type": { - "$id": "9955", + "$id": "9968", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -134097,13 +134290,13 @@ "isHttpMetadata": false }, { - "$id": "9956", + "$id": "9969", "kind": "property", "name": "seconds", "serializedName": "seconds", "doc": "Clip duration in seconds. Defaults to 4 seconds.", "type": { - "$ref": "9917" + "$ref": "9930" }, "optional": true, "readOnly": false, @@ -134125,13 +134318,13 @@ "isHttpMetadata": false }, { - "$id": "9957", + "$id": "9970", "kind": "property", "name": "size", "serializedName": "size", "doc": "Output resolution formatted as width x height. Defaults to 720x1280.", "type": { - "$ref": "9910" + "$ref": "9923" }, "optional": true, "readOnly": false, @@ -134172,7 +134365,7 @@ 200 ], "bodyType": { - "$ref": "9883" + "$ref": "9896" }, "headers": [], "isErrorResponse": false, @@ -134195,12 +134388,12 @@ }, "parameters": [ { - "$id": "9958", + "$id": "9971", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "2353" + "$ref": "2354" }, "location": "Header", "isApiVersion": false, @@ -134212,12 +134405,12 @@ "decorators": [] }, { - "$id": "9959", + "$id": "9972", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "9949" + "$ref": "9962" }, "location": "Body", "isApiVersion": false, @@ -134229,12 +134422,12 @@ "decorators": [] }, { - "$id": "9960", + "$id": "9973", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2351" + "$ref": "2352" }, "location": "Header", "isApiVersion": false, @@ -134248,7 +134441,7 @@ ], "response": { "type": { - "$ref": "9883" + "$ref": "9896" } }, "isOverride": false, @@ -134257,7 +134450,7 @@ "crossLanguageDefinitionId": "OpenAI.createVideo" }, { - "$id": "9961", + "$id": "9974", "kind": "basic", "name": "DeleteVideo", "accessibility": "public", @@ -134265,7 +134458,7 @@ "doc": "Delete a video", "summary": "Delete video", "operation": { - "$id": "9962", + "$id": "9975", "name": "DeleteVideo", "resourceName": "OpenAI", "summary": "Delete video", @@ -134273,13 +134466,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9963", + "$id": "9976", "kind": "path", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the video to delete.", "type": { - "$id": "9964", + "$id": "9977", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134297,12 +134490,12 @@ "crossLanguageDefinitionId": "OpenAI.DeleteVideo.video_id" }, { - "$id": "9965", + "$id": "9978", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2355" + "$ref": "2356" }, "isApiVersion": false, "optional": false, @@ -134319,7 +134512,7 @@ 200 ], "bodyType": { - "$id": "9966", + "$id": "9979", "kind": "model", "name": "DeletedVideoResource", "namespace": "OpenAI", @@ -134330,12 +134523,12 @@ "decorators": [], "properties": [ { - "$id": "9967", + "$id": "9980", "kind": "property", "name": "object", "doc": "The object type that signals the deletion response.", "type": { - "$ref": "2357" + "$ref": "2358" }, "optional": false, "readOnly": false, @@ -134347,12 +134540,12 @@ "isHttpMetadata": false }, { - "$id": "9968", + "$id": "9981", "kind": "property", "name": "deleted", "doc": "Indicates that the video resource was deleted.", "type": { - "$id": "9969", + "$id": "9982", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -134368,12 +134561,12 @@ "isHttpMetadata": false }, { - "$id": "9970", + "$id": "9983", "kind": "property", "name": "id", "doc": "Identifier of the deleted video.", "type": { - "$id": "9971", + "$id": "9984", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134408,13 +134601,13 @@ }, "parameters": [ { - "$id": "9972", + "$id": "9985", "kind": "method", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the video to delete.", "type": { - "$id": "9973", + "$id": "9986", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134430,12 +134623,12 @@ "decorators": [] }, { - "$id": "9974", + "$id": "9987", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2355" + "$ref": "2356" }, "location": "Header", "isApiVersion": false, @@ -134449,7 +134642,7 @@ ], "response": { "type": { - "$ref": "9966" + "$ref": "9979" } }, "isOverride": false, @@ -134458,7 +134651,7 @@ "crossLanguageDefinitionId": "OpenAI.DeleteVideo" }, { - "$id": "9975", + "$id": "9988", "kind": "basic", "name": "GetVideo", "accessibility": "public", @@ -134466,7 +134659,7 @@ "doc": "Retrieve a video", "summary": "Retrieve video", "operation": { - "$id": "9976", + "$id": "9989", "name": "GetVideo", "resourceName": "OpenAI", "summary": "Retrieve video", @@ -134474,13 +134667,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9977", + "$id": "9990", "kind": "path", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the video to retrieve.", "type": { - "$id": "9978", + "$id": "9991", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134498,12 +134691,12 @@ "crossLanguageDefinitionId": "OpenAI.GetVideo.video_id" }, { - "$id": "9979", + "$id": "9992", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2359" + "$ref": "2360" }, "isApiVersion": false, "optional": false, @@ -134520,7 +134713,7 @@ 200 ], "bodyType": { - "$ref": "9883" + "$ref": "9896" }, "headers": [], "isErrorResponse": false, @@ -134540,13 +134733,13 @@ }, "parameters": [ { - "$id": "9980", + "$id": "9993", "kind": "method", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the video to retrieve.", "type": { - "$id": "9981", + "$id": "9994", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134562,12 +134755,12 @@ "decorators": [] }, { - "$id": "9982", + "$id": "9995", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2359" + "$ref": "2360" }, "location": "Header", "isApiVersion": false, @@ -134581,7 +134774,7 @@ ], "response": { "type": { - "$ref": "9883" + "$ref": "9896" } }, "isOverride": false, @@ -134590,7 +134783,7 @@ "crossLanguageDefinitionId": "OpenAI.GetVideo" }, { - "$id": "9983", + "$id": "9996", "kind": "basic", "name": "DownloadVideo", "accessibility": "public", @@ -134598,7 +134791,7 @@ "doc": "Download video content", "summary": "Retrieve video content", "operation": { - "$id": "9984", + "$id": "9997", "name": "DownloadVideo", "resourceName": "OpenAI", "summary": "Retrieve video content", @@ -134606,13 +134799,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9985", + "$id": "9998", "kind": "path", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the video whose media to download.", "type": { - "$id": "9986", + "$id": "9999", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134630,18 +134823,18 @@ "crossLanguageDefinitionId": "OpenAI.RetrieveVideoContent.video_id" }, { - "$id": "9987", + "$id": "10000", "kind": "query", "name": "variant", "serializedName": "variant", "doc": "Which downloadable asset to return. Defaults to the MP4 video.", "type": { - "$id": "9988", + "$id": "10001", "kind": "enum", "name": "VideoContentVariant", "crossLanguageDefinitionId": "OpenAI.VideoContentVariant", "valueType": { - "$id": "9989", + "$id": "10002", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134649,41 +134842,41 @@ }, "values": [ { - "$id": "9990", + "$id": "10003", "kind": "enumvalue", "name": "video", "value": "video", "valueType": { - "$ref": "9989" + "$ref": "10002" }, "enumType": { - "$ref": "9988" + "$ref": "10001" }, "decorators": [] }, { - "$id": "9991", + "$id": "10004", "kind": "enumvalue", "name": "thumbnail", "value": "thumbnail", "valueType": { - "$ref": "9989" + "$ref": "10002" }, "enumType": { - "$ref": "9988" + "$ref": "10001" }, "decorators": [] }, { - "$id": "9992", + "$id": "10005", "kind": "enumvalue", "name": "spritesheet", "value": "spritesheet", "valueType": { - "$ref": "9989" + "$ref": "10002" }, "enumType": { - "$ref": "9988" + "$ref": "10001" }, "decorators": [] } @@ -134703,12 +134896,12 @@ "readOnly": false }, { - "$id": "9993", + "$id": "10006", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$id": "9994", + "$id": "10007", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134729,12 +134922,12 @@ 200 ], "bodyType": { - "$id": "9995", + "$id": "10008", "kind": "union", "name": "", "variantTypes": [ { - "$id": "9996", + "$id": "10009", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -134742,7 +134935,7 @@ "decorators": [] }, { - "$id": "9997", + "$id": "10010", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134757,14 +134950,14 @@ "name": "contentType", "nameInResponse": "content-type", "type": { - "$ref": "2361" + "$ref": "2362" } }, { "name": "contentType", "nameInResponse": "content-type", "type": { - "$ref": "2363" + "$ref": "2364" } } ], @@ -134787,13 +134980,13 @@ }, "parameters": [ { - "$id": "9998", + "$id": "10011", "kind": "method", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the video whose media to download.", "type": { - "$id": "9999", + "$id": "10012", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134809,13 +135002,13 @@ "decorators": [] }, { - "$id": "10000", + "$id": "10013", "kind": "method", "name": "variant", "serializedName": "variant", "doc": "Which downloadable asset to return. Defaults to the MP4 video.", "type": { - "$ref": "9988" + "$ref": "10001" }, "location": "Query", "isApiVersion": false, @@ -134827,12 +135020,12 @@ "decorators": [] }, { - "$id": "10001", + "$id": "10014", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "9994" + "$ref": "10007" }, "location": "Header", "isApiVersion": false, @@ -134846,7 +135039,7 @@ ], "response": { "type": { - "$ref": "9995" + "$ref": "10008" } }, "isOverride": false, @@ -134855,7 +135048,7 @@ "crossLanguageDefinitionId": "OpenAI.RetrieveVideoContent" }, { - "$id": "10002", + "$id": "10015", "kind": "basic", "name": "CreateVideoRemix", "accessibility": "public", @@ -134863,7 +135056,7 @@ "doc": "Create a video remix", "summary": "Remix video", "operation": { - "$id": "10003", + "$id": "10016", "name": "CreateVideoRemix", "resourceName": "OpenAI", "summary": "Remix video", @@ -134871,13 +135064,13 @@ "accessibility": "public", "parameters": [ { - "$id": "10004", + "$id": "10017", "kind": "path", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the completed video to remix.", "type": { - "$id": "10005", + "$id": "10018", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134895,12 +135088,12 @@ "crossLanguageDefinitionId": "OpenAI.CreateVideoRemix.video_id" }, { - "$id": "10006", + "$id": "10019", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "2365" + "$ref": "2366" }, "isApiVersion": false, "optional": false, @@ -134911,12 +135104,12 @@ "crossLanguageDefinitionId": "OpenAI.CreateVideoRemix.contentType" }, { - "$id": "10007", + "$id": "10020", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2367" + "$ref": "2368" }, "isApiVersion": false, "optional": false, @@ -134927,12 +135120,12 @@ "crossLanguageDefinitionId": "OpenAI.CreateVideoRemix.accept" }, { - "$id": "10008", + "$id": "10021", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$id": "10009", + "$id": "10022", "kind": "model", "name": "CreateVideoRemixBody", "namespace": "OpenAI", @@ -134943,18 +135136,18 @@ "decorators": [], "properties": [ { - "$id": "10010", + "$id": "10023", "kind": "property", "name": "prompt", "serializedName": "prompt", "doc": "Updated text prompt that directs the remix generation.", "type": { - "$id": "10011", + "$id": "10024", "kind": "string", "name": "VideoPrompt", "crossLanguageDefinitionId": "OpenAI.VideoPrompt", "baseType": { - "$id": "10012", + "$id": "10025", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135001,7 +135194,7 @@ 200 ], "bodyType": { - "$ref": "9883" + "$ref": "9896" }, "headers": [], "isErrorResponse": false, @@ -135024,13 +135217,13 @@ }, "parameters": [ { - "$id": "10013", + "$id": "10026", "kind": "method", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the completed video to remix.", "type": { - "$id": "10014", + "$id": "10027", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135046,12 +135239,12 @@ "decorators": [] }, { - "$id": "10015", + "$id": "10028", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "2369" + "$ref": "2370" }, "location": "Header", "isApiVersion": false, @@ -135063,12 +135256,12 @@ "decorators": [] }, { - "$id": "10016", + "$id": "10029", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "10009" + "$ref": "10022" }, "location": "Body", "isApiVersion": false, @@ -135080,12 +135273,12 @@ "decorators": [] }, { - "$id": "10017", + "$id": "10030", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2367" + "$ref": "2368" }, "location": "Header", "isApiVersion": false, @@ -135099,7 +135292,7 @@ ], "response": { "type": { - "$ref": "9883" + "$ref": "9896" } }, "isOverride": false, @@ -135110,13 +135303,13 @@ ], "parameters": [ { - "$id": "10018", + "$id": "10031", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "10019", + "$id": "10032", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -135127,7 +135320,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "10020", + "$id": "10033", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -135145,7 +135338,7 @@ "crossLanguageDefinitionId": "OpenAI", "apiVersions": [], "parent": { - "$ref": "8247" + "$ref": "8260" } } ]