diff --git a/api/OpenAI.net8.0.cs b/api/OpenAI.net8.0.cs index e0125cdcb..33653eab4 100644 --- a/api/OpenAI.net8.0.cs +++ b/api/OpenAI.net8.0.cs @@ -4979,6 +4979,153 @@ public class FunctionTool : ResponseTool, IJsonModel, IPersistable public override readonly string ToString(); } [Experimental("OPENAI001")] + public class ImageGenerationCallResponseItem : ResponseItem, IJsonModel, IPersistableModel { + public ImageGenerationCallResponseItem(BinaryData generatedImageBytes); + public BinaryData GeneratedImageBytes { get; set; } + public ImageGenerationCallStatus? Status { get; } + protected override ResponseItem JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); + protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options); + protected override ResponseItem PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options); + protected override BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options); + } + [Experimental("OPENAI001")] + public enum ImageGenerationCallStatus { + InProgress = 0, + Completed = 1, + Generating = 2, + Failed = 3 + } + [Experimental("OPENAI001")] + public class ImageGenerationTool : ResponseTool, IJsonModel, IPersistableModel { + public ImageGenerationTool(); + public ImageGenerationToolBackground? Background { get; set; } + public ImageGenerationToolInputFidelityLevel? InputFidelityLevel { get; set; } + public ImageGenerationToolInputImageMask InputImageMask { get; set; } + public string Model { get; set; } + public ImageGenerationToolModerationLevel? ModerationLevel { get; set; } + public int? OutputCompressionFactor { get; set; } + public ImageGenerationToolOutputFileFormat? OutputFileFormat { get; set; } + public int? PartialImageCount { get; set; } + public ImageGenerationToolQuality? Quality { get; set; } + public ImageGenerationToolSize? Size { 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 readonly partial struct ImageGenerationToolBackground : IEquatable { + public ImageGenerationToolBackground(string value); + public static ImageGenerationToolBackground Auto { get; } + public static ImageGenerationToolBackground Opaque { get; } + public static ImageGenerationToolBackground Transparent { get; } + public readonly bool Equals(ImageGenerationToolBackground other); + [EditorBrowsable(EditorBrowsableState.Never)] + public override readonly bool Equals(object obj); + [EditorBrowsable(EditorBrowsableState.Never)] + public override readonly int GetHashCode(); + public static bool operator ==(ImageGenerationToolBackground left, ImageGenerationToolBackground right); + public static implicit operator ImageGenerationToolBackground(string value); + public static implicit operator ImageGenerationToolBackground?(string value); + public static bool operator !=(ImageGenerationToolBackground left, ImageGenerationToolBackground right); + public override readonly string ToString(); + } + [Experimental("OPENAI001")] + public readonly partial struct ImageGenerationToolInputFidelityLevel : IEquatable { + public ImageGenerationToolInputFidelityLevel(string value); + public static ImageGenerationToolInputFidelityLevel High { get; } + public static ImageGenerationToolInputFidelityLevel Low { get; } + public readonly bool Equals(ImageGenerationToolInputFidelityLevel other); + [EditorBrowsable(EditorBrowsableState.Never)] + public override readonly bool Equals(object obj); + [EditorBrowsable(EditorBrowsableState.Never)] + public override readonly int GetHashCode(); + public static bool operator ==(ImageGenerationToolInputFidelityLevel left, ImageGenerationToolInputFidelityLevel right); + public static implicit operator ImageGenerationToolInputFidelityLevel(string value); + public static implicit operator ImageGenerationToolInputFidelityLevel?(string value); + public static bool operator !=(ImageGenerationToolInputFidelityLevel left, ImageGenerationToolInputFidelityLevel right); + public override readonly string ToString(); + } + [Experimental("OPENAI001")] + public class ImageGenerationToolInputImageMask : IJsonModel, IPersistableModel { + public ImageGenerationToolInputImageMask(BinaryData imageBytes, string imageBytesMediaType); + public ImageGenerationToolInputImageMask(string fileId); + public ImageGenerationToolInputImageMask(Uri imageUri); + public string FileId { get; } + public string ImageUrl { get; } + protected virtual ImageGenerationToolInputImageMask JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); + protected virtual void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options); + protected virtual ImageGenerationToolInputImageMask PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options); + protected virtual BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options); + } + [Experimental("OPENAI001")] + public readonly partial struct ImageGenerationToolModerationLevel : IEquatable { + public ImageGenerationToolModerationLevel(string value); + public static ImageGenerationToolModerationLevel Auto { get; } + public static ImageGenerationToolModerationLevel Low { get; } + public readonly bool Equals(ImageGenerationToolModerationLevel other); + [EditorBrowsable(EditorBrowsableState.Never)] + public override readonly bool Equals(object obj); + [EditorBrowsable(EditorBrowsableState.Never)] + public override readonly int GetHashCode(); + public static bool operator ==(ImageGenerationToolModerationLevel left, ImageGenerationToolModerationLevel right); + public static implicit operator ImageGenerationToolModerationLevel(string value); + public static implicit operator ImageGenerationToolModerationLevel?(string value); + public static bool operator !=(ImageGenerationToolModerationLevel left, ImageGenerationToolModerationLevel right); + public override readonly string ToString(); + } + [Experimental("OPENAI001")] + public readonly partial struct ImageGenerationToolOutputFileFormat : IEquatable { + public ImageGenerationToolOutputFileFormat(string value); + public static ImageGenerationToolOutputFileFormat Jpeg { get; } + public static ImageGenerationToolOutputFileFormat Png { get; } + public static ImageGenerationToolOutputFileFormat Webp { get; } + public readonly bool Equals(ImageGenerationToolOutputFileFormat other); + [EditorBrowsable(EditorBrowsableState.Never)] + public override readonly bool Equals(object obj); + [EditorBrowsable(EditorBrowsableState.Never)] + public override readonly int GetHashCode(); + public static bool operator ==(ImageGenerationToolOutputFileFormat left, ImageGenerationToolOutputFileFormat right); + public static implicit operator ImageGenerationToolOutputFileFormat(string value); + public static implicit operator ImageGenerationToolOutputFileFormat?(string value); + public static bool operator !=(ImageGenerationToolOutputFileFormat left, ImageGenerationToolOutputFileFormat right); + public override readonly string ToString(); + } + [Experimental("OPENAI001")] + public readonly partial struct ImageGenerationToolQuality : IEquatable { + public ImageGenerationToolQuality(string value); + public static ImageGenerationToolQuality Auto { get; } + public static ImageGenerationToolQuality High { get; } + public static ImageGenerationToolQuality Low { get; } + public static ImageGenerationToolQuality Medium { get; } + public readonly bool Equals(ImageGenerationToolQuality other); + [EditorBrowsable(EditorBrowsableState.Never)] + public override readonly bool Equals(object obj); + [EditorBrowsable(EditorBrowsableState.Never)] + public override readonly int GetHashCode(); + public static bool operator ==(ImageGenerationToolQuality left, ImageGenerationToolQuality right); + public static implicit operator ImageGenerationToolQuality(string value); + public static implicit operator ImageGenerationToolQuality?(string value); + public static bool operator !=(ImageGenerationToolQuality left, ImageGenerationToolQuality right); + public override readonly string ToString(); + } + [Experimental("OPENAI001")] + public readonly partial struct ImageGenerationToolSize : IEquatable { + public static readonly ImageGenerationToolSize W1024xH1024; + public static readonly ImageGenerationToolSize W1024xH1536; + public static readonly ImageGenerationToolSize W1536xH1024; + public ImageGenerationToolSize(int width, int height); + public static ImageGenerationToolSize Auto { get; } + public readonly bool Equals(ImageGenerationToolSize other); + [EditorBrowsable(EditorBrowsableState.Never)] + public override readonly bool Equals(object obj); + [EditorBrowsable(EditorBrowsableState.Never)] + public override readonly int GetHashCode(); + public static bool operator ==(ImageGenerationToolSize left, ImageGenerationToolSize right); + public static bool operator !=(ImageGenerationToolSize left, ImageGenerationToolSize right); + public override readonly string ToString(); + } + [Experimental("OPENAI001")] public class McpTool : ResponseTool, IJsonModel, IPersistableModel { public McpTool(string serverLabel, McpToolConnectorId connectorId); public McpTool(string serverLabel, Uri serverUri); @@ -5603,6 +5750,7 @@ public class ResponseTool : IJsonModel, IPersistableModel vectorStoreIds, int? maxResultCount = null, FileSearchToolRankingOptions rankingOptions = null, BinaryData filters = null); public static FunctionTool CreateFunctionTool(string functionName, BinaryData functionParameters, bool? strictModeEnabled, string functionDescription = null); + public static ImageGenerationTool CreateImageGenerationTool(string model, ImageGenerationToolQuality? quality = null, ImageGenerationToolSize? size = null, ImageGenerationToolOutputFileFormat? outputFileFormat = null, int? outputCompressionFactor = null, ImageGenerationToolModerationLevel? moderationLevel = null, ImageGenerationToolBackground? background = null, ImageGenerationToolInputFidelityLevel? inputFidelityLevel = null, ImageGenerationToolInputImageMask inputImageMask = null, int? partialImageCount = null); public static McpTool CreateMcpTool(string serverLabel, McpToolConnectorId connectorId, string authorizationToken = null, string serverDescription = null, IDictionary 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); @@ -5802,6 +5950,44 @@ public class StreamingResponseFunctionCallArgumentsDoneUpdate : StreamingRespons protected override BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options); } [Experimental("OPENAI001")] + public class StreamingResponseImageGenerationCallCompletedUpdate : StreamingResponseUpdate, IJsonModel, IPersistableModel { + public string ItemId { get; } + public int OutputIndex { get; } + protected override StreamingResponseUpdate JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); + protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options); + protected override StreamingResponseUpdate PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options); + protected override BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options); + } + [Experimental("OPENAI001")] + public class StreamingResponseImageGenerationCallGeneratingUpdate : StreamingResponseUpdate, IJsonModel, IPersistableModel { + public string ItemId { get; } + public int OutputIndex { get; } + protected override StreamingResponseUpdate JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); + protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options); + protected override StreamingResponseUpdate PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options); + protected override BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options); + } + [Experimental("OPENAI001")] + public class StreamingResponseImageGenerationCallInProgressUpdate : StreamingResponseUpdate, IJsonModel, IPersistableModel { + public string ItemId { get; } + public int OutputIndex { get; } + protected override StreamingResponseUpdate JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); + protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options); + protected override StreamingResponseUpdate PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options); + protected override BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options); + } + [Experimental("OPENAI001")] + public class StreamingResponseImageGenerationCallPartialImageUpdate : StreamingResponseUpdate, IJsonModel, IPersistableModel { + public string ItemId { get; } + public int OutputIndex { get; } + public BinaryData PartialImageBytes { get; } + public int PartialImageIndex { get; } + protected override StreamingResponseUpdate JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); + protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options); + protected override StreamingResponseUpdate PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options); + protected override BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options); + } + [Experimental("OPENAI001")] public class StreamingResponseIncompleteUpdate : StreamingResponseUpdate, IJsonModel, IPersistableModel { public OpenAIResponse Response { get; } protected override StreamingResponseUpdate JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); diff --git a/api/OpenAI.netstandard2.0.cs b/api/OpenAI.netstandard2.0.cs index 8bf07771e..021305cd9 100644 --- a/api/OpenAI.netstandard2.0.cs +++ b/api/OpenAI.netstandard2.0.cs @@ -4377,6 +4377,143 @@ public class FunctionTool : ResponseTool, IJsonModel, IPersistable public static bool operator !=(GlobalMcpToolCallApprovalPolicy left, GlobalMcpToolCallApprovalPolicy right); public override readonly string ToString(); } + public class ImageGenerationCallResponseItem : ResponseItem, IJsonModel, IPersistableModel { + public ImageGenerationCallResponseItem(BinaryData generatedImageBytes); + public BinaryData GeneratedImageBytes { get; set; } + public ImageGenerationCallStatus? Status { get; } + protected override ResponseItem JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); + protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options); + protected override ResponseItem PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options); + protected override BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options); + } + public enum ImageGenerationCallStatus { + InProgress = 0, + Completed = 1, + Generating = 2, + Failed = 3 + } + public class ImageGenerationTool : ResponseTool, IJsonModel, IPersistableModel { + public ImageGenerationTool(); + public ImageGenerationToolBackground? Background { get; set; } + public ImageGenerationToolInputFidelityLevel? InputFidelityLevel { get; set; } + public ImageGenerationToolInputImageMask InputImageMask { get; set; } + public string Model { get; set; } + public ImageGenerationToolModerationLevel? ModerationLevel { get; set; } + public int? OutputCompressionFactor { get; set; } + public ImageGenerationToolOutputFileFormat? OutputFileFormat { get; set; } + public int? PartialImageCount { get; set; } + public ImageGenerationToolQuality? Quality { get; set; } + public ImageGenerationToolSize? Size { 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 readonly partial struct ImageGenerationToolBackground : IEquatable { + public ImageGenerationToolBackground(string value); + public static ImageGenerationToolBackground Auto { get; } + public static ImageGenerationToolBackground Opaque { get; } + public static ImageGenerationToolBackground Transparent { get; } + public readonly bool Equals(ImageGenerationToolBackground other); + [EditorBrowsable(EditorBrowsableState.Never)] + public override readonly bool Equals(object obj); + [EditorBrowsable(EditorBrowsableState.Never)] + public override readonly int GetHashCode(); + public static bool operator ==(ImageGenerationToolBackground left, ImageGenerationToolBackground right); + public static implicit operator ImageGenerationToolBackground(string value); + public static implicit operator ImageGenerationToolBackground?(string value); + public static bool operator !=(ImageGenerationToolBackground left, ImageGenerationToolBackground right); + public override readonly string ToString(); + } + public readonly partial struct ImageGenerationToolInputFidelityLevel : IEquatable { + public ImageGenerationToolInputFidelityLevel(string value); + public static ImageGenerationToolInputFidelityLevel High { get; } + public static ImageGenerationToolInputFidelityLevel Low { get; } + public readonly bool Equals(ImageGenerationToolInputFidelityLevel other); + [EditorBrowsable(EditorBrowsableState.Never)] + public override readonly bool Equals(object obj); + [EditorBrowsable(EditorBrowsableState.Never)] + public override readonly int GetHashCode(); + public static bool operator ==(ImageGenerationToolInputFidelityLevel left, ImageGenerationToolInputFidelityLevel right); + public static implicit operator ImageGenerationToolInputFidelityLevel(string value); + public static implicit operator ImageGenerationToolInputFidelityLevel?(string value); + public static bool operator !=(ImageGenerationToolInputFidelityLevel left, ImageGenerationToolInputFidelityLevel right); + public override readonly string ToString(); + } + public class ImageGenerationToolInputImageMask : IJsonModel, IPersistableModel { + public ImageGenerationToolInputImageMask(BinaryData imageBytes, string imageBytesMediaType); + public ImageGenerationToolInputImageMask(string fileId); + public ImageGenerationToolInputImageMask(Uri imageUri); + public string FileId { get; } + public string ImageUrl { get; } + protected virtual ImageGenerationToolInputImageMask JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); + protected virtual void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options); + protected virtual ImageGenerationToolInputImageMask PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options); + protected virtual BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options); + } + public readonly partial struct ImageGenerationToolModerationLevel : IEquatable { + public ImageGenerationToolModerationLevel(string value); + public static ImageGenerationToolModerationLevel Auto { get; } + public static ImageGenerationToolModerationLevel Low { get; } + public readonly bool Equals(ImageGenerationToolModerationLevel other); + [EditorBrowsable(EditorBrowsableState.Never)] + public override readonly bool Equals(object obj); + [EditorBrowsable(EditorBrowsableState.Never)] + public override readonly int GetHashCode(); + public static bool operator ==(ImageGenerationToolModerationLevel left, ImageGenerationToolModerationLevel right); + public static implicit operator ImageGenerationToolModerationLevel(string value); + public static implicit operator ImageGenerationToolModerationLevel?(string value); + public static bool operator !=(ImageGenerationToolModerationLevel left, ImageGenerationToolModerationLevel right); + public override readonly string ToString(); + } + public readonly partial struct ImageGenerationToolOutputFileFormat : IEquatable { + public ImageGenerationToolOutputFileFormat(string value); + public static ImageGenerationToolOutputFileFormat Jpeg { get; } + public static ImageGenerationToolOutputFileFormat Png { get; } + public static ImageGenerationToolOutputFileFormat Webp { get; } + public readonly bool Equals(ImageGenerationToolOutputFileFormat other); + [EditorBrowsable(EditorBrowsableState.Never)] + public override readonly bool Equals(object obj); + [EditorBrowsable(EditorBrowsableState.Never)] + public override readonly int GetHashCode(); + public static bool operator ==(ImageGenerationToolOutputFileFormat left, ImageGenerationToolOutputFileFormat right); + public static implicit operator ImageGenerationToolOutputFileFormat(string value); + public static implicit operator ImageGenerationToolOutputFileFormat?(string value); + public static bool operator !=(ImageGenerationToolOutputFileFormat left, ImageGenerationToolOutputFileFormat right); + public override readonly string ToString(); + } + public readonly partial struct ImageGenerationToolQuality : IEquatable { + public ImageGenerationToolQuality(string value); + public static ImageGenerationToolQuality Auto { get; } + public static ImageGenerationToolQuality High { get; } + public static ImageGenerationToolQuality Low { get; } + public static ImageGenerationToolQuality Medium { get; } + public readonly bool Equals(ImageGenerationToolQuality other); + [EditorBrowsable(EditorBrowsableState.Never)] + public override readonly bool Equals(object obj); + [EditorBrowsable(EditorBrowsableState.Never)] + public override readonly int GetHashCode(); + public static bool operator ==(ImageGenerationToolQuality left, ImageGenerationToolQuality right); + public static implicit operator ImageGenerationToolQuality(string value); + public static implicit operator ImageGenerationToolQuality?(string value); + public static bool operator !=(ImageGenerationToolQuality left, ImageGenerationToolQuality right); + public override readonly string ToString(); + } + public readonly partial struct ImageGenerationToolSize : IEquatable { + public static readonly ImageGenerationToolSize W1024xH1024; + public static readonly ImageGenerationToolSize W1024xH1536; + public static readonly ImageGenerationToolSize W1536xH1024; + public ImageGenerationToolSize(int width, int height); + public static ImageGenerationToolSize Auto { get; } + public readonly bool Equals(ImageGenerationToolSize other); + [EditorBrowsable(EditorBrowsableState.Never)] + public override readonly bool Equals(object obj); + [EditorBrowsable(EditorBrowsableState.Never)] + public override readonly int GetHashCode(); + public static bool operator ==(ImageGenerationToolSize left, ImageGenerationToolSize right); + public static bool operator !=(ImageGenerationToolSize left, ImageGenerationToolSize right); + public override readonly string ToString(); + } public class McpTool : ResponseTool, IJsonModel, IPersistableModel { public McpTool(string serverLabel, McpToolConnectorId connectorId); public McpTool(string serverLabel, Uri serverUri); @@ -4951,6 +5088,7 @@ public class ResponseTool : IJsonModel, IPersistableModel vectorStoreIds, int? maxResultCount = null, FileSearchToolRankingOptions rankingOptions = null, BinaryData filters = null); public static FunctionTool CreateFunctionTool(string functionName, BinaryData functionParameters, bool? strictModeEnabled, string functionDescription = null); + public static ImageGenerationTool CreateImageGenerationTool(string model, ImageGenerationToolQuality? quality = null, ImageGenerationToolSize? size = null, ImageGenerationToolOutputFileFormat? outputFileFormat = null, int? outputCompressionFactor = null, ImageGenerationToolModerationLevel? moderationLevel = null, ImageGenerationToolBackground? background = null, ImageGenerationToolInputFidelityLevel? inputFidelityLevel = null, ImageGenerationToolInputImageMask inputImageMask = null, int? partialImageCount = null); public static McpTool CreateMcpTool(string serverLabel, McpToolConnectorId connectorId, string authorizationToken = null, string serverDescription = null, IDictionary 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); @@ -5129,6 +5267,40 @@ public class StreamingResponseFunctionCallArgumentsDoneUpdate : StreamingRespons protected override StreamingResponseUpdate PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options); protected override BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options); } + public class StreamingResponseImageGenerationCallCompletedUpdate : StreamingResponseUpdate, IJsonModel, IPersistableModel { + public string ItemId { get; } + public int OutputIndex { get; } + protected override StreamingResponseUpdate JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); + protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options); + protected override StreamingResponseUpdate PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options); + protected override BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options); + } + public class StreamingResponseImageGenerationCallGeneratingUpdate : StreamingResponseUpdate, IJsonModel, IPersistableModel { + public string ItemId { get; } + public int OutputIndex { get; } + protected override StreamingResponseUpdate JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); + protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options); + protected override StreamingResponseUpdate PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options); + protected override BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options); + } + public class StreamingResponseImageGenerationCallInProgressUpdate : StreamingResponseUpdate, IJsonModel, IPersistableModel { + public string ItemId { get; } + public int OutputIndex { get; } + protected override StreamingResponseUpdate JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); + protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options); + protected override StreamingResponseUpdate PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options); + protected override BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options); + } + public class StreamingResponseImageGenerationCallPartialImageUpdate : StreamingResponseUpdate, IJsonModel, IPersistableModel { + public string ItemId { get; } + public int OutputIndex { get; } + public BinaryData PartialImageBytes { get; } + public int PartialImageIndex { get; } + protected override StreamingResponseUpdate JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); + protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options); + protected override StreamingResponseUpdate PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options); + protected override BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options); + } public class StreamingResponseIncompleteUpdate : StreamingResponseUpdate, IJsonModel, IPersistableModel { public OpenAIResponse Response { get; } protected override StreamingResponseUpdate JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); diff --git a/specification/base/typespec/responses/models.tsp b/specification/base/typespec/responses/models.tsp index d3e782b30..f8dea359e 100644 --- a/specification/base/typespec/responses/models.tsp +++ b/specification/base/typespec/responses/models.tsp @@ -1915,6 +1915,13 @@ model ImageGenTool extends Tool { """) background?: "transparent" | "opaque" | "auto" = "auto"; + @doc(""" + Control how much effort the model will exert to match the style and features, + especially facial features, of input images. This parameter is only supported + for `gpt-image-1`. Supports `high` and `low`. Defaults to `low`. + """) + input_fidelity?: "low" | "high" = "low"; + @doc(""" Optional mask for inpainting. Contains `image_url` (string, optional) and `file_id` (string, optional). @@ -1937,7 +1944,8 @@ model ImageGenTool extends Tool { /** An image generation request made by the model. */ alias ImageGenToolCallItemBase = { /** The generated image encoded in base64. */ - result: string | null; + @encode("base64", string) + result: bytes | null; }; @@doc(ImageGenToolCallItemResource, @@ -2285,7 +2293,8 @@ model ResponseImageGenCallPartialImageEvent extends ResponseStreamEvent { partial_image_index: int32; /** Base64-encoded partial image data, suitable for rendering as an image. */ - partial_image_b64: string; + @encode("base64", string) + partial_image_b64: bytes; } // Tool customization: Remove shared sequence_number property that was moved to the common parent diff --git a/specification/client/responses.client.tsp b/specification/client/responses.client.tsp index 7726e84c1..b01bd7c59 100644 --- a/specification/client/responses.client.tsp +++ b/specification/client/responses.client.tsp @@ -50,6 +50,9 @@ using Azure.ClientGenerator.Core; @@alternateType(MCPListToolsItemResource.error, unknown | null); @@clientName(MCPListToolsItemResource.tools, "ToolDefinitions"); +@@visibility(ImageGenToolCallItemResource.status, Lifecycle.Read); +@@clientName(ImageGenToolCallItemResource.result, "GeneratedImageBytes"); + // ------------ Tools ------------ @@clientName(FileSearchTool.max_num_results, "MaxResultCount"); @@ -76,4 +79,6 @@ using Azure.ClientGenerator.Core; @@alternateType(ResponseMCPCallArgumentsDoneEvent.arguments, unknown); // @@clientName(ResponseMCPCallArgumentsDoneEvent.arguments, "ToolArguments"); -@@alternateType(ResponseMCPCallArgumentsDeltaEvent.delta, unknown); \ No newline at end of file +@@alternateType(ResponseMCPCallArgumentsDeltaEvent.delta, unknown); + +@@clientName(ResponseImageGenCallPartialImageEvent.partial_image_b64, "PartialImageBytes"); \ No newline at end of file diff --git a/src/Custom/Responses/Internal/GeneratorStubs.cs b/src/Custom/Responses/Internal/GeneratorStubs.cs index 3a7c4351e..8b1662558 100644 --- a/src/Custom/Responses/Internal/GeneratorStubs.cs +++ b/src/Custom/Responses/Internal/GeneratorStubs.cs @@ -91,21 +91,12 @@ namespace OpenAI.Responses; [CodeGenType("UnknownTool")] internal partial class InternalUnknownTool {} [CodeGenType("UnknownToolChoiceObject")] internal partial class InternalUnknownToolChoiceObject {} [CodeGenType("WebSearchToolCallItemParam")] internal partial class InternalWebSearchToolCallItemParam {} -[CodeGenType("ImageGenToolModel")] internal readonly partial struct InternalImageGenToolModel {} -[CodeGenType("ImageGenToolQuality")] internal readonly partial struct InternalImageGenToolQuality {} -[CodeGenType("ImageGenToolSize")] internal readonly partial struct InternalImageGenToolSize {} -[CodeGenType("ImageGenToolOutputFormat")] internal readonly partial struct InternalImageGenToolOutputFormat {} -[CodeGenType("ImageGenToolModeration")] internal readonly partial struct InternalImageGenToolModeration {} -[CodeGenType("ImageGenToolBackground")] internal readonly partial struct InternalImageGenToolBackground {} [CodeGenType("CodeInterpreterFileOutputType")] internal readonly partial struct InternalCodeInterpreterFileOutputType {} [CodeGenType("CodeInterpreterTextOutputType")] internal readonly partial struct InternalCodeInterpreterTextOutputType {} [CodeGenType("CodeInterpreterToolOutputType")] internal readonly partial struct InternalCodeInterpreterToolOutputType {} [CodeGenType("LocalShellExecActionType")] internal readonly partial struct InternalLocalShellExecActionType {} -[CodeGenType("ImageGenToolCallItemResourceStatus")] internal readonly partial struct InternalImageGenToolCallItemResourceStatus {} [CodeGenType("LocalShellToolCallItemResourceStatus")] internal readonly partial struct InternalLocalShellToolCallItemResourceStatus {} [CodeGenType("LocalShellToolCallOutputItemResourceStatus")] internal readonly partial struct InternalLocalShellToolCallOutputItemResourceStatus {} -[CodeGenType("ImageGenTool")] internal partial class InternalImageGenTool {} -[CodeGenType("ImageGenToolInputImageMask")] internal partial class InternalImageGenToolInputImageMask {} [CodeGenType("LocalShellTool")] internal partial class InternalLocalShellTool {} [CodeGenType("MCPToolRequireApproval1")] internal partial class InternalMCPToolRequireApproval1 {} [CodeGenType("MCPToolRequireApprovalAlways")] internal partial class InternalMCPToolRequireApprovalAlways {} @@ -124,13 +115,8 @@ namespace OpenAI.Responses; [CodeGenType("MCPApprovalRequestItemParam")] internal partial class InternalMCPApprovalRequestItemParam {} [CodeGenType("MCPApprovalResponseItemParam")] internal partial class InternalMCPApprovalResponseItemParam {} [CodeGenType("MCPCallItemParam")] internal partial class InternalMCPCallItemParam {} -[CodeGenType("ImageGenToolCallItemResource")] internal partial class InternalImageGenToolCallItemResource {} [CodeGenType("LocalShellToolCallItemResource")] internal partial class InternalLocalShellToolCallItemResource {} [CodeGenType("LocalShellToolCallOutputItemResource")] internal partial class InternalLocalShellToolCallOutputItemResource {} -[CodeGenType("ResponseImageGenCallCompletedEvent")] internal partial class InternalResponseImageGenCallCompletedEvent {} -[CodeGenType("ResponseImageGenCallGeneratingEvent")] internal partial class InternalResponseImageGenCallGeneratingEvent {} -[CodeGenType("ResponseImageGenCallInProgressEvent")] internal partial class InternalResponseImageGenCallInProgressEvent {} -[CodeGenType("ResponseImageGenCallPartialImageEvent")] internal partial class InternalResponseImageGenCallPartialImageEvent {} [CodeGenType("ResponseReasoningDeltaEvent")] internal partial class InternalResponseReasoningDeltaEvent {} [CodeGenType("ResponseReasoningDoneEvent")] internal partial class InternalResponseReasoningDoneEvent {} [CodeGenType("ResponseReasoningSummaryDeltaEvent")] internal partial class InternalResponseReasoningSummaryDeltaEvent {} diff --git a/src/Custom/Responses/Items/ImageGenerationTool/ImageGenerationCallResponseItem.cs b/src/Custom/Responses/Items/ImageGenerationTool/ImageGenerationCallResponseItem.cs new file mode 100644 index 000000000..d07babd43 --- /dev/null +++ b/src/Custom/Responses/Items/ImageGenerationTool/ImageGenerationCallResponseItem.cs @@ -0,0 +1,10 @@ +namespace OpenAI.Responses; + +// CUSTOM: Renamed. +[CodeGenType("ImageGenToolCallItemResource")] +public partial class ImageGenerationCallResponseItem +{ + // CUSTOM: Made nullable since this is a read-only property. + [CodeGenMember("Status")] + public ImageGenerationCallStatus? Status { get; } +} diff --git a/src/Custom/Responses/Items/ImageGenerationTool/ImageGenerationCallStatus.cs b/src/Custom/Responses/Items/ImageGenerationTool/ImageGenerationCallStatus.cs new file mode 100644 index 000000000..4ef033b33 --- /dev/null +++ b/src/Custom/Responses/Items/ImageGenerationTool/ImageGenerationCallStatus.cs @@ -0,0 +1,14 @@ +using System.Diagnostics.CodeAnalysis; + +namespace OpenAI.Responses; + +// CUSTOM: Renamed. +[Experimental("OPENAI001")] +[CodeGenType("ImageGenToolCallItemResourceStatus")] +public enum ImageGenerationCallStatus +{ + InProgress, + Completed, + Generating, + Failed +} diff --git a/src/Custom/Responses/Streaming/StreamingResponseImageGenerationCallCompletedUpdate.cs b/src/Custom/Responses/Streaming/StreamingResponseImageGenerationCallCompletedUpdate.cs new file mode 100644 index 000000000..976732c58 --- /dev/null +++ b/src/Custom/Responses/Streaming/StreamingResponseImageGenerationCallCompletedUpdate.cs @@ -0,0 +1,7 @@ +namespace OpenAI.Responses; + +// CUSTOM: Renamed. +[CodeGenType("ResponseImageGenCallCompletedEvent")] +public partial class StreamingResponseImageGenerationCallCompletedUpdate +{ +} diff --git a/src/Custom/Responses/Streaming/StreamingResponseImageGenerationCallGeneratingUpdate.cs b/src/Custom/Responses/Streaming/StreamingResponseImageGenerationCallGeneratingUpdate.cs new file mode 100644 index 000000000..c7780f57a --- /dev/null +++ b/src/Custom/Responses/Streaming/StreamingResponseImageGenerationCallGeneratingUpdate.cs @@ -0,0 +1,7 @@ +namespace OpenAI.Responses; + +// CUSTOM: Renamed. +[CodeGenType("ResponseImageGenCallGeneratingEvent")] +public partial class StreamingResponseImageGenerationCallGeneratingUpdate +{ +} diff --git a/src/Custom/Responses/Streaming/StreamingResponseImageGenerationCallInProgressUpdate.cs b/src/Custom/Responses/Streaming/StreamingResponseImageGenerationCallInProgressUpdate.cs new file mode 100644 index 000000000..87c592890 --- /dev/null +++ b/src/Custom/Responses/Streaming/StreamingResponseImageGenerationCallInProgressUpdate.cs @@ -0,0 +1,7 @@ +namespace OpenAI.Responses; + +// CUSTOM: Renamed. +[CodeGenType("ResponseImageGenCallInProgressEvent")] +public partial class StreamingResponseImageGenerationCallInProgressUpdate +{ +} diff --git a/src/Custom/Responses/Streaming/StreamingResponseImageGenerationCallPartialImageUpdate.cs b/src/Custom/Responses/Streaming/StreamingResponseImageGenerationCallPartialImageUpdate.cs new file mode 100644 index 000000000..e8e61a6a4 --- /dev/null +++ b/src/Custom/Responses/Streaming/StreamingResponseImageGenerationCallPartialImageUpdate.cs @@ -0,0 +1,7 @@ +namespace OpenAI.Responses; + +// CUSTOM: Renamed. +[CodeGenType("ResponseImageGenCallPartialImageEvent")] +public partial class StreamingResponseImageGenerationCallPartialImageUpdate +{ +} diff --git a/src/Custom/Responses/Tools/ImageGenerationTool.cs b/src/Custom/Responses/Tools/ImageGenerationTool.cs new file mode 100644 index 000000000..d3661422d --- /dev/null +++ b/src/Custom/Responses/Tools/ImageGenerationTool.cs @@ -0,0 +1,28 @@ +using System.Diagnostics.CodeAnalysis; + +namespace OpenAI.Responses; + +// CUSTOM: Renamed. +[CodeGenType("ImageGenTool")] +public partial class ImageGenerationTool +{ + // CUSTOM:Renamed. + [CodeGenMember("OutputCompression")] + public int? OutputCompressionFactor { get; set; } + + // CUSTOM: Renamed. + [CodeGenMember("OutputFormat")] + public ImageGenerationToolOutputFileFormat? OutputFileFormat { get; set; } + + // CUSTOM: Renamed. + [CodeGenMember("Moderation")] + public ImageGenerationToolModerationLevel? ModerationLevel { get; set; } + + // CUSTOM: Renamed. + [CodeGenMember("InputFidelity")] + public ImageGenerationToolInputFidelityLevel? InputFidelityLevel { get; set; } + + // CUSTOM:Renamed. + [CodeGenMember("PartialImages")] + public int? PartialImageCount { get; set; } +} diff --git a/src/Custom/Responses/Tools/ImageGenerationToolBackground.cs b/src/Custom/Responses/Tools/ImageGenerationToolBackground.cs new file mode 100644 index 000000000..0f529f548 --- /dev/null +++ b/src/Custom/Responses/Tools/ImageGenerationToolBackground.cs @@ -0,0 +1,7 @@ +namespace OpenAI.Responses; + +// CUSTOM: Renamed. +[CodeGenType("ImageGenToolBackground")] +public readonly partial struct ImageGenerationToolBackground +{ +} diff --git a/src/Custom/Responses/Tools/ImageGenerationToolInputImageMask.cs b/src/Custom/Responses/Tools/ImageGenerationToolInputImageMask.cs new file mode 100644 index 000000000..e974c8045 --- /dev/null +++ b/src/Custom/Responses/Tools/ImageGenerationToolInputImageMask.cs @@ -0,0 +1,41 @@ +using System; + +namespace OpenAI.Responses; + +// CUSTOM: Renamed. +[CodeGenType("ImageGenToolInputImageMask")] +public partial class ImageGenerationToolInputImageMask +{ + internal ImageGenerationToolInputImageMask() { } + + public ImageGenerationToolInputImageMask(string fileId) + { + Argument.AssertNotNullOrEmpty(fileId, nameof(fileId)); + + FileId = fileId; + } + + public ImageGenerationToolInputImageMask(BinaryData imageBytes, string imageBytesMediaType) + { + Argument.AssertNotNull(imageBytes, nameof(imageBytes)); + Argument.AssertNotNullOrEmpty(imageBytesMediaType, nameof(imageBytesMediaType)); + + string base64EncodedData = Convert.ToBase64String(imageBytes.ToArray()); + ImageUrl = $"data:{imageBytesMediaType};base64,{base64EncodedData}"; + } + + public ImageGenerationToolInputImageMask(Uri imageUri) + { + Argument.AssertNotNull(imageUri, nameof(imageUri)); + + ImageUrl = imageUri?.AbsoluteUri; + } + + // CUSTOM: Removed setter. + [CodeGenMember("ImageUrl")] + public string ImageUrl { get; } + + // CUSTOM: Removed setter. + [CodeGenMember("FileId")] + public string FileId { get; } +} diff --git a/src/Custom/Responses/Tools/ImageGenerationToolInputfidelityLevel.cs b/src/Custom/Responses/Tools/ImageGenerationToolInputfidelityLevel.cs new file mode 100644 index 000000000..9089bba19 --- /dev/null +++ b/src/Custom/Responses/Tools/ImageGenerationToolInputfidelityLevel.cs @@ -0,0 +1,7 @@ +namespace OpenAI.Responses; + +// CUSTOM: Renamed. +[CodeGenType("ImageGenToolInputFidelity")] +public readonly partial struct ImageGenerationToolInputFidelityLevel +{ +} diff --git a/src/Custom/Responses/Tools/ImageGenerationToolModerationLevel.cs b/src/Custom/Responses/Tools/ImageGenerationToolModerationLevel.cs new file mode 100644 index 000000000..647470724 --- /dev/null +++ b/src/Custom/Responses/Tools/ImageGenerationToolModerationLevel.cs @@ -0,0 +1,7 @@ +namespace OpenAI.Responses; + +// CUSTOM: Renamed. +[CodeGenType("ImageGenToolModeration")] +public readonly partial struct ImageGenerationToolModerationLevel +{ +} diff --git a/src/Custom/Responses/Tools/ImageGenerationToolOutputFileFormat.cs b/src/Custom/Responses/Tools/ImageGenerationToolOutputFileFormat.cs new file mode 100644 index 000000000..fc5f9d7c1 --- /dev/null +++ b/src/Custom/Responses/Tools/ImageGenerationToolOutputFileFormat.cs @@ -0,0 +1,7 @@ +namespace OpenAI.Responses; + +// CUSTOM: Renamed. +[CodeGenType("ImageGenToolOutputFormat")] +public readonly partial struct ImageGenerationToolOutputFileFormat +{ +} diff --git a/src/Custom/Responses/Tools/ImageGenerationToolQuality.cs b/src/Custom/Responses/Tools/ImageGenerationToolQuality.cs new file mode 100644 index 000000000..18ef8427b --- /dev/null +++ b/src/Custom/Responses/Tools/ImageGenerationToolQuality.cs @@ -0,0 +1,7 @@ +namespace OpenAI.Responses; + +// CUSTOM: Renamed. +[CodeGenType("ImageGenToolQuality")] +public readonly partial struct ImageGenerationToolQuality +{ +} diff --git a/src/Custom/Responses/Tools/ImageGenerationToolSize.cs b/src/Custom/Responses/Tools/ImageGenerationToolSize.cs new file mode 100644 index 000000000..f15d5a983 --- /dev/null +++ b/src/Custom/Responses/Tools/ImageGenerationToolSize.cs @@ -0,0 +1,62 @@ +using System; +using System.Diagnostics.CodeAnalysis; + +namespace OpenAI.Responses; + +// CUSTOM: Added custom struct in favor of the generated extensible enum. +/// The size of the image that will be generated. +[CodeGenType("ImageGenToolSize")] +[CodeGenSuppress("GeneratedImageSize", typeof(string))] +// CUSTOM: remove the implicit operator +[CodeGenSuppress("", typeof(string))] +public readonly partial struct ImageGenerationToolSize +{ + + /// Initializes a new instance of . + /// is null. + internal ImageGenerationToolSize(string value) + { + _value = value ?? throw new ArgumentNullException(nameof(value)); + } + + /// + /// Creates a new instance of . + /// + /// + /// Note: arbitrary dimensions are not supported and a given model will only support a set of predefined + /// sizes. If supported dimensions are not known, try using one of the static properties like . + /// + /// The desired width, in pixels, for an image. + /// The desired height, in pixels, for an image. + public ImageGenerationToolSize(int width, int height) + { + _value = $"{width}x{height}"; + } + + /// + /// A square image with 1024 pixels of both width and height. + /// + /// Supported and default for both dall-e-2 and dall-e-3 models. + /// + /// + [CodeGenMember("_1024x1024")] + public static readonly ImageGenerationToolSize W1024xH1024 = new ImageGenerationToolSize(1024, 1024); + + /// + /// An extra tall image, 1024 pixels wide by 1536 pixels high. + /// + /// Supported only for the dall-e-3 model. + /// + /// + [CodeGenMember("_1024x1536")] + public static readonly ImageGenerationToolSize W1024xH1536 = new(1024, 1536); + + /// + /// An extra wide image, 1536 pixels wide by 1024 pixels high. + /// + /// Supported only for the dall-e-3 model. + /// + /// + [CodeGenMember("_1536x1024")] + public static readonly ImageGenerationToolSize W1536xH1024 = new(1536, 1024); +} diff --git a/src/Custom/Responses/Tools/ResponseTool.cs b/src/Custom/Responses/Tools/ResponseTool.cs index d27d40813..c42a02a65 100644 --- a/src/Custom/Responses/Tools/ResponseTool.cs +++ b/src/Custom/Responses/Tools/ResponseTool.cs @@ -110,4 +110,25 @@ public static CodeInterpreterTool CreateCodeInterpreterTool(CodeInterpreterConta additionalBinaryDataProperties: null, container: container); } + + // CUSTOM: Added factory method for a convenience. + /// + /// Creates a new instance of the class. + /// + public static ImageGenerationTool CreateImageGenerationTool(string model, ImageGenerationToolQuality? quality = null, ImageGenerationToolSize? size = null, ImageGenerationToolOutputFileFormat? outputFileFormat = null, int? outputCompressionFactor = null, ImageGenerationToolModerationLevel? moderationLevel = null, ImageGenerationToolBackground? background = null, ImageGenerationToolInputFidelityLevel? inputFidelityLevel = null, ImageGenerationToolInputImageMask inputImageMask = null, int? partialImageCount = null) + { + return new ImageGenerationTool( + kind: InternalToolType.ImageGeneration, + additionalBinaryDataProperties: null, + model: model, + quality: quality, + size: size, + outputFileFormat: outputFileFormat, + outputCompressionFactor: outputCompressionFactor, + moderationLevel: moderationLevel, + background: background, + inputFidelityLevel: inputFidelityLevel, + inputImageMask: inputImageMask, + partialImageCount: partialImageCount); + } } diff --git a/src/Generated/Models/OpenAIContext.cs b/src/Generated/Models/OpenAIContext.cs index 6cdee87c6..cda349843 100644 --- a/src/Generated/Models/OpenAIContext.cs +++ b/src/Generated/Models/OpenAIContext.cs @@ -145,7 +145,10 @@ namespace OpenAI [ModelReaderWriterBuildable(typeof(HyperparametersForDPO))] [ModelReaderWriterBuildable(typeof(HyperparametersForSupervised))] [ModelReaderWriterBuildable(typeof(ImageEditOptions))] + [ModelReaderWriterBuildable(typeof(ImageGenerationCallResponseItem))] [ModelReaderWriterBuildable(typeof(ImageGenerationOptions))] + [ModelReaderWriterBuildable(typeof(ImageGenerationTool))] + [ModelReaderWriterBuildable(typeof(ImageGenerationToolInputImageMask))] [ModelReaderWriterBuildable(typeof(ImageInputTokenUsageDetails))] [ModelReaderWriterBuildable(typeof(ImageTokenUsage))] [ModelReaderWriterBuildable(typeof(ImageVariationOptions))] @@ -338,10 +341,7 @@ namespace OpenAI [ModelReaderWriterBuildable(typeof(InternalFunctionDefinition))] [ModelReaderWriterBuildable(typeof(InternalFunctionToolCallItemParam))] [ModelReaderWriterBuildable(typeof(InternalFunctionToolCallOutputItemParam))] - [ModelReaderWriterBuildable(typeof(InternalImageGenTool))] [ModelReaderWriterBuildable(typeof(InternalImageGenToolCallItemParam))] - [ModelReaderWriterBuildable(typeof(InternalImageGenToolCallItemResource))] - [ModelReaderWriterBuildable(typeof(InternalImageGenToolInputImageMask))] [ModelReaderWriterBuildable(typeof(InternalImplicitUserMessage))] [ModelReaderWriterBuildable(typeof(InternalItemContentInputAudio))] [ModelReaderWriterBuildable(typeof(InternalItemContentInputFile))] @@ -493,10 +493,6 @@ namespace OpenAI [ModelReaderWriterBuildable(typeof(InternalResponseFormatJsonSchemaJsonSchema))] [ModelReaderWriterBuildable(typeof(InternalResponseFormatJsonSchemaSchema))] [ModelReaderWriterBuildable(typeof(InternalResponseFormatText))] - [ModelReaderWriterBuildable(typeof(InternalResponseImageGenCallCompletedEvent))] - [ModelReaderWriterBuildable(typeof(InternalResponseImageGenCallGeneratingEvent))] - [ModelReaderWriterBuildable(typeof(InternalResponseImageGenCallInProgressEvent))] - [ModelReaderWriterBuildable(typeof(InternalResponseImageGenCallPartialImageEvent))] [ModelReaderWriterBuildable(typeof(InternalResponseItemList))] [ModelReaderWriterBuildable(typeof(InternalResponseReasoningDeltaEvent))] [ModelReaderWriterBuildable(typeof(InternalResponseReasoningDoneEvent))] @@ -731,6 +727,10 @@ namespace OpenAI [ModelReaderWriterBuildable(typeof(StreamingResponseFileSearchCallSearchingUpdate))] [ModelReaderWriterBuildable(typeof(StreamingResponseFunctionCallArgumentsDeltaUpdate))] [ModelReaderWriterBuildable(typeof(StreamingResponseFunctionCallArgumentsDoneUpdate))] + [ModelReaderWriterBuildable(typeof(StreamingResponseImageGenerationCallCompletedUpdate))] + [ModelReaderWriterBuildable(typeof(StreamingResponseImageGenerationCallGeneratingUpdate))] + [ModelReaderWriterBuildable(typeof(StreamingResponseImageGenerationCallInProgressUpdate))] + [ModelReaderWriterBuildable(typeof(StreamingResponseImageGenerationCallPartialImageUpdate))] [ModelReaderWriterBuildable(typeof(StreamingResponseIncompleteUpdate))] [ModelReaderWriterBuildable(typeof(StreamingResponseInProgressUpdate))] [ModelReaderWriterBuildable(typeof(StreamingResponseMcpCallArgumentsDeltaUpdate))] diff --git a/src/Generated/Models/Responses/InternalImageGenToolCallItemResource.Serialization.cs b/src/Generated/Models/Responses/ImageGenerationCallResponseItem.Serialization.cs similarity index 55% rename from src/Generated/Models/Responses/InternalImageGenToolCallItemResource.Serialization.cs rename to src/Generated/Models/Responses/ImageGenerationCallResponseItem.Serialization.cs index 51c319ab3..bcaf7213f 100644 --- a/src/Generated/Models/Responses/InternalImageGenToolCallItemResource.Serialization.cs +++ b/src/Generated/Models/Responses/ImageGenerationCallResponseItem.Serialization.cs @@ -10,13 +10,13 @@ namespace OpenAI.Responses { - internal partial class InternalImageGenToolCallItemResource : IJsonModel + public partial class ImageGenerationCallResponseItem : IJsonModel { - internal InternalImageGenToolCallItemResource() : this(InternalItemType.ImageGenerationCall, null, null, default, null) + internal ImageGenerationCallResponseItem() : this(InternalItemType.ImageGenerationCall, null, null, default, null) { } - void IJsonModel.Write(Utf8JsonWriter writer, ModelReaderWriterOptions options) + void IJsonModel.Write(Utf8JsonWriter writer, ModelReaderWriterOptions options) { writer.WriteStartObject(); JsonModelWriteCore(writer, options); @@ -25,23 +25,24 @@ void IJsonModel.Write(Utf8JsonWriter write protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; if (format != "J") { - throw new FormatException($"The model {nameof(InternalImageGenToolCallItemResource)} does not support writing '{format}' format."); + throw new FormatException($"The model {nameof(ImageGenerationCallResponseItem)} does not support writing '{format}' format."); } base.JsonModelWriteCore(writer, options); + // Plugin customization: remove options.Format != "W" check if (_additionalBinaryDataProperties?.ContainsKey("status") != true) { writer.WritePropertyName("status"u8); - writer.WriteStringValue(Status.ToString()); + writer.WriteStringValue(Status.Value.ToSerialString()); } if (_additionalBinaryDataProperties?.ContainsKey("result") != true) { - if (Optional.IsDefined(Result)) + if (Optional.IsDefined(GeneratedImageBytes)) { writer.WritePropertyName("result"u8); - writer.WriteStringValue(Result); + writer.WriteBase64StringValue(GeneratedImageBytes.ToArray(), "D"); } else { @@ -50,20 +51,20 @@ protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWri } } - InternalImageGenToolCallItemResource IJsonModel.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options) => (InternalImageGenToolCallItemResource)JsonModelCreateCore(ref reader, options); + ImageGenerationCallResponseItem IJsonModel.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options) => (ImageGenerationCallResponseItem)JsonModelCreateCore(ref reader, options); protected override ResponseItem JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; if (format != "J") { - throw new FormatException($"The model {nameof(InternalImageGenToolCallItemResource)} does not support reading '{format}' format."); + throw new FormatException($"The model {nameof(ImageGenerationCallResponseItem)} does not support reading '{format}' format."); } using JsonDocument document = JsonDocument.ParseValue(ref reader); - return DeserializeInternalImageGenToolCallItemResource(document.RootElement, options); + return DeserializeImageGenerationCallResponseItem(document.RootElement, options); } - internal static InternalImageGenToolCallItemResource DeserializeInternalImageGenToolCallItemResource(JsonElement element, ModelReaderWriterOptions options) + internal static ImageGenerationCallResponseItem DeserializeImageGenerationCallResponseItem(JsonElement element, ModelReaderWriterOptions options) { if (element.ValueKind == JsonValueKind.Null) { @@ -72,8 +73,8 @@ internal static InternalImageGenToolCallItemResource DeserializeInternalImageGen InternalItemType kind = default; string id = default; IDictionary additionalBinaryDataProperties = new ChangeTrackingDictionary(); - InternalImageGenToolCallItemResourceStatus status = default; - string result = default; + ImageGenerationCallStatus? status = default; + BinaryData generatedImageBytes = default; foreach (var prop in element.EnumerateObject()) { if (prop.NameEquals("type"u8)) @@ -88,56 +89,56 @@ internal static InternalImageGenToolCallItemResource DeserializeInternalImageGen } if (prop.NameEquals("status"u8)) { - status = new InternalImageGenToolCallItemResourceStatus(prop.Value.GetString()); + status = prop.Value.GetString().ToImageGenerationCallStatus(); continue; } if (prop.NameEquals("result"u8)) { if (prop.Value.ValueKind == JsonValueKind.Null) { - result = null; + generatedImageBytes = null; continue; } - result = prop.Value.GetString(); + generatedImageBytes = BinaryData.FromBytes(prop.Value.GetBytesFromBase64("D")); continue; } // Plugin customization: remove options.Format != "W" check additionalBinaryDataProperties.Add(prop.Name, BinaryData.FromString(prop.Value.GetRawText())); } - return new InternalImageGenToolCallItemResource(kind, id, additionalBinaryDataProperties, status, result); + return new ImageGenerationCallResponseItem(kind, id, additionalBinaryDataProperties, status, generatedImageBytes); } - BinaryData IPersistableModel.Write(ModelReaderWriterOptions options) => PersistableModelWriteCore(options); + BinaryData IPersistableModel.Write(ModelReaderWriterOptions options) => PersistableModelWriteCore(options); protected override BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + 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(InternalImageGenToolCallItemResource)} does not support writing '{options.Format}' format."); + throw new FormatException($"The model {nameof(ImageGenerationCallResponseItem)} does not support writing '{options.Format}' format."); } } - InternalImageGenToolCallItemResource IPersistableModel.Create(BinaryData data, ModelReaderWriterOptions options) => (InternalImageGenToolCallItemResource)PersistableModelCreateCore(data, options); + ImageGenerationCallResponseItem IPersistableModel.Create(BinaryData data, ModelReaderWriterOptions options) => (ImageGenerationCallResponseItem)PersistableModelCreateCore(data, options); protected override ResponseItem PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; switch (format) { case "J": using (JsonDocument document = JsonDocument.Parse(data)) { - return DeserializeInternalImageGenToolCallItemResource(document.RootElement, options); + return DeserializeImageGenerationCallResponseItem(document.RootElement, options); } default: - throw new FormatException($"The model {nameof(InternalImageGenToolCallItemResource)} does not support reading '{options.Format}' format."); + throw new FormatException($"The model {nameof(ImageGenerationCallResponseItem)} does not support reading '{options.Format}' format."); } } - string IPersistableModel.GetFormatFromOptions(ModelReaderWriterOptions options) => "J"; + string IPersistableModel.GetFormatFromOptions(ModelReaderWriterOptions options) => "J"; } } diff --git a/src/Generated/Models/Responses/ImageGenerationCallResponseItem.cs b/src/Generated/Models/Responses/ImageGenerationCallResponseItem.cs new file mode 100644 index 000000000..90c528e84 --- /dev/null +++ b/src/Generated/Models/Responses/ImageGenerationCallResponseItem.cs @@ -0,0 +1,27 @@ +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; + +namespace OpenAI.Responses +{ + [Experimental("OPENAI001")] + public partial class ImageGenerationCallResponseItem : ResponseItem + { + public ImageGenerationCallResponseItem(BinaryData generatedImageBytes) : base(InternalItemType.ImageGenerationCall) + { + GeneratedImageBytes = generatedImageBytes; + } + + internal ImageGenerationCallResponseItem(InternalItemType kind, string id, IDictionary additionalBinaryDataProperties, ImageGenerationCallStatus? status, BinaryData generatedImageBytes) : base(kind, id, additionalBinaryDataProperties) + { + Status = status; + GeneratedImageBytes = generatedImageBytes; + } + + public BinaryData GeneratedImageBytes { get; set; } + } +} diff --git a/src/Generated/Models/Responses/ImageGenerationCallStatus.Serialization.cs b/src/Generated/Models/Responses/ImageGenerationCallStatus.Serialization.cs new file mode 100644 index 000000000..b73b1e6be --- /dev/null +++ b/src/Generated/Models/Responses/ImageGenerationCallStatus.Serialization.cs @@ -0,0 +1,41 @@ +// + +#nullable disable + +using System; + +namespace OpenAI.Responses +{ + internal static partial class ImageGenerationCallStatusExtensions + { + public static string ToSerialString(this ImageGenerationCallStatus value) => value switch + { + ImageGenerationCallStatus.InProgress => "in_progress", + ImageGenerationCallStatus.Completed => "completed", + ImageGenerationCallStatus.Generating => "generating", + ImageGenerationCallStatus.Failed => "failed", + _ => throw new ArgumentOutOfRangeException(nameof(value), value, "Unknown ImageGenerationCallStatus value.") + }; + + public static ImageGenerationCallStatus ToImageGenerationCallStatus(this string value) + { + if (StringComparer.OrdinalIgnoreCase.Equals(value, "in_progress")) + { + return ImageGenerationCallStatus.InProgress; + } + if (StringComparer.OrdinalIgnoreCase.Equals(value, "completed")) + { + return ImageGenerationCallStatus.Completed; + } + if (StringComparer.OrdinalIgnoreCase.Equals(value, "generating")) + { + return ImageGenerationCallStatus.Generating; + } + if (StringComparer.OrdinalIgnoreCase.Equals(value, "failed")) + { + return ImageGenerationCallStatus.Failed; + } + throw new ArgumentOutOfRangeException(nameof(value), value, "Unknown ImageGenerationCallStatus value."); + } + } +} diff --git a/src/Generated/Models/Responses/InternalImageGenTool.Serialization.cs b/src/Generated/Models/Responses/ImageGenerationTool.Serialization.cs similarity index 58% rename from src/Generated/Models/Responses/InternalImageGenTool.Serialization.cs rename to src/Generated/Models/Responses/ImageGenerationTool.Serialization.cs index b6a7fd6c6..db7307635 100644 --- a/src/Generated/Models/Responses/InternalImageGenTool.Serialization.cs +++ b/src/Generated/Models/Responses/ImageGenerationTool.Serialization.cs @@ -10,9 +10,9 @@ namespace OpenAI.Responses { - internal partial class InternalImageGenTool : IJsonModel + public partial class ImageGenerationTool : IJsonModel { - void IJsonModel.Write(Utf8JsonWriter writer, ModelReaderWriterOptions options) + void IJsonModel.Write(Utf8JsonWriter writer, ModelReaderWriterOptions options) { writer.WriteStartObject(); JsonModelWriteCore(writer, options); @@ -21,10 +21,10 @@ void IJsonModel.Write(Utf8JsonWriter writer, ModelReaderWr protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; if (format != "J") { - throw new FormatException($"The model {nameof(InternalImageGenTool)} does not support writing '{format}' format."); + throw new FormatException($"The model {nameof(ImageGenerationTool)} does not support writing '{format}' format."); } base.JsonModelWriteCore(writer, options); if (Optional.IsDefined(Model) && _additionalBinaryDataProperties?.ContainsKey("model") != true) @@ -42,52 +42,57 @@ protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWri writer.WritePropertyName("size"u8); writer.WriteStringValue(Size.Value.ToString()); } - if (Optional.IsDefined(OutputFormat) && _additionalBinaryDataProperties?.ContainsKey("output_format") != true) + if (Optional.IsDefined(OutputFileFormat) && _additionalBinaryDataProperties?.ContainsKey("output_format") != true) { writer.WritePropertyName("output_format"u8); - writer.WriteStringValue(OutputFormat.Value.ToString()); + writer.WriteStringValue(OutputFileFormat.Value.ToString()); } - if (Optional.IsDefined(OutputCompression) && _additionalBinaryDataProperties?.ContainsKey("output_compression") != true) + if (Optional.IsDefined(OutputCompressionFactor) && _additionalBinaryDataProperties?.ContainsKey("output_compression") != true) { writer.WritePropertyName("output_compression"u8); - writer.WriteNumberValue(OutputCompression.Value); + writer.WriteNumberValue(OutputCompressionFactor.Value); } - if (Optional.IsDefined(Moderation) && _additionalBinaryDataProperties?.ContainsKey("moderation") != true) + if (Optional.IsDefined(ModerationLevel) && _additionalBinaryDataProperties?.ContainsKey("moderation") != true) { writer.WritePropertyName("moderation"u8); - writer.WriteStringValue(Moderation.Value.ToString()); + writer.WriteStringValue(ModerationLevel.Value.ToString()); } if (Optional.IsDefined(Background) && _additionalBinaryDataProperties?.ContainsKey("background") != true) { writer.WritePropertyName("background"u8); writer.WriteStringValue(Background.Value.ToString()); } + if (Optional.IsDefined(InputFidelityLevel) && _additionalBinaryDataProperties?.ContainsKey("input_fidelity") != true) + { + writer.WritePropertyName("input_fidelity"u8); + writer.WriteStringValue(InputFidelityLevel.Value.ToString()); + } if (Optional.IsDefined(InputImageMask) && _additionalBinaryDataProperties?.ContainsKey("input_image_mask") != true) { writer.WritePropertyName("input_image_mask"u8); writer.WriteObjectValue(InputImageMask, options); } - if (Optional.IsDefined(PartialImages) && _additionalBinaryDataProperties?.ContainsKey("partial_images") != true) + if (Optional.IsDefined(PartialImageCount) && _additionalBinaryDataProperties?.ContainsKey("partial_images") != true) { writer.WritePropertyName("partial_images"u8); - writer.WriteNumberValue(PartialImages.Value); + writer.WriteNumberValue(PartialImageCount.Value); } } - InternalImageGenTool IJsonModel.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options) => (InternalImageGenTool)JsonModelCreateCore(ref reader, options); + ImageGenerationTool IJsonModel.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options) => (ImageGenerationTool)JsonModelCreateCore(ref reader, options); protected override ResponseTool JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; if (format != "J") { - throw new FormatException($"The model {nameof(InternalImageGenTool)} does not support reading '{format}' format."); + throw new FormatException($"The model {nameof(ImageGenerationTool)} does not support reading '{format}' format."); } using JsonDocument document = JsonDocument.ParseValue(ref reader); - return DeserializeInternalImageGenTool(document.RootElement, options); + return DeserializeImageGenerationTool(document.RootElement, options); } - internal static InternalImageGenTool DeserializeInternalImageGenTool(JsonElement element, ModelReaderWriterOptions options) + internal static ImageGenerationTool DeserializeImageGenerationTool(JsonElement element, ModelReaderWriterOptions options) { if (element.ValueKind == JsonValueKind.Null) { @@ -96,14 +101,15 @@ internal static InternalImageGenTool DeserializeInternalImageGenTool(JsonElement InternalToolType kind = default; IDictionary additionalBinaryDataProperties = new ChangeTrackingDictionary(); string model = default; - InternalImageGenToolQuality? quality = default; - InternalImageGenToolSize? size = default; - InternalImageGenToolOutputFormat? outputFormat = default; - int? outputCompression = default; - InternalImageGenToolModeration? moderation = default; - InternalImageGenToolBackground? background = default; - InternalImageGenToolInputImageMask inputImageMask = default; - int? partialImages = default; + ImageGenerationToolQuality? quality = default; + ImageGenerationToolSize? size = default; + ImageGenerationToolOutputFileFormat? outputFileFormat = default; + int? outputCompressionFactor = default; + ImageGenerationToolModerationLevel? moderationLevel = default; + ImageGenerationToolBackground? background = default; + ImageGenerationToolInputFidelityLevel? inputFidelityLevel = default; + ImageGenerationToolInputImageMask inputImageMask = default; + int? partialImageCount = default; foreach (var prop in element.EnumerateObject()) { if (prop.NameEquals("type"u8)) @@ -122,7 +128,7 @@ internal static InternalImageGenTool DeserializeInternalImageGenTool(JsonElement { continue; } - quality = new InternalImageGenToolQuality(prop.Value.GetString()); + quality = new ImageGenerationToolQuality(prop.Value.GetString()); continue; } if (prop.NameEquals("size"u8)) @@ -131,7 +137,7 @@ internal static InternalImageGenTool DeserializeInternalImageGenTool(JsonElement { continue; } - size = new InternalImageGenToolSize(prop.Value.GetString()); + size = new ImageGenerationToolSize(prop.Value.GetString()); continue; } if (prop.NameEquals("output_format"u8)) @@ -140,7 +146,7 @@ internal static InternalImageGenTool DeserializeInternalImageGenTool(JsonElement { continue; } - outputFormat = new InternalImageGenToolOutputFormat(prop.Value.GetString()); + outputFileFormat = new ImageGenerationToolOutputFileFormat(prop.Value.GetString()); continue; } if (prop.NameEquals("output_compression"u8)) @@ -149,7 +155,7 @@ internal static InternalImageGenTool DeserializeInternalImageGenTool(JsonElement { continue; } - outputCompression = prop.Value.GetInt32(); + outputCompressionFactor = prop.Value.GetInt32(); continue; } if (prop.NameEquals("moderation"u8)) @@ -158,7 +164,7 @@ internal static InternalImageGenTool DeserializeInternalImageGenTool(JsonElement { continue; } - moderation = new InternalImageGenToolModeration(prop.Value.GetString()); + moderationLevel = new ImageGenerationToolModerationLevel(prop.Value.GetString()); continue; } if (prop.NameEquals("background"u8)) @@ -167,7 +173,16 @@ internal static InternalImageGenTool DeserializeInternalImageGenTool(JsonElement { continue; } - background = new InternalImageGenToolBackground(prop.Value.GetString()); + background = new ImageGenerationToolBackground(prop.Value.GetString()); + continue; + } + if (prop.NameEquals("input_fidelity"u8)) + { + if (prop.Value.ValueKind == JsonValueKind.Null) + { + continue; + } + inputFidelityLevel = new ImageGenerationToolInputFidelityLevel(prop.Value.GetString()); continue; } if (prop.NameEquals("input_image_mask"u8)) @@ -176,7 +191,7 @@ internal static InternalImageGenTool DeserializeInternalImageGenTool(JsonElement { continue; } - inputImageMask = InternalImageGenToolInputImageMask.DeserializeInternalImageGenToolInputImageMask(prop.Value, options); + inputImageMask = ImageGenerationToolInputImageMask.DeserializeImageGenerationToolInputImageMask(prop.Value, options); continue; } if (prop.NameEquals("partial_images"u8)) @@ -185,57 +200,58 @@ internal static InternalImageGenTool DeserializeInternalImageGenTool(JsonElement { continue; } - partialImages = prop.Value.GetInt32(); + partialImageCount = prop.Value.GetInt32(); continue; } // Plugin customization: remove options.Format != "W" check additionalBinaryDataProperties.Add(prop.Name, BinaryData.FromString(prop.Value.GetRawText())); } - return new InternalImageGenTool( + return new ImageGenerationTool( kind, additionalBinaryDataProperties, model, quality, size, - outputFormat, - outputCompression, - moderation, + outputFileFormat, + outputCompressionFactor, + moderationLevel, background, + inputFidelityLevel, inputImageMask, - partialImages); + partialImageCount); } - BinaryData IPersistableModel.Write(ModelReaderWriterOptions options) => PersistableModelWriteCore(options); + BinaryData IPersistableModel.Write(ModelReaderWriterOptions options) => PersistableModelWriteCore(options); protected override BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + 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(InternalImageGenTool)} does not support writing '{options.Format}' format."); + throw new FormatException($"The model {nameof(ImageGenerationTool)} does not support writing '{options.Format}' format."); } } - InternalImageGenTool IPersistableModel.Create(BinaryData data, ModelReaderWriterOptions options) => (InternalImageGenTool)PersistableModelCreateCore(data, options); + ImageGenerationTool IPersistableModel.Create(BinaryData data, ModelReaderWriterOptions options) => (ImageGenerationTool)PersistableModelCreateCore(data, options); protected override ResponseTool PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; switch (format) { case "J": using (JsonDocument document = JsonDocument.Parse(data)) { - return DeserializeInternalImageGenTool(document.RootElement, options); + return DeserializeImageGenerationTool(document.RootElement, options); } default: - throw new FormatException($"The model {nameof(InternalImageGenTool)} does not support reading '{options.Format}' format."); + throw new FormatException($"The model {nameof(ImageGenerationTool)} does not support reading '{options.Format}' format."); } } - string IPersistableModel.GetFormatFromOptions(ModelReaderWriterOptions options) => "J"; + string IPersistableModel.GetFormatFromOptions(ModelReaderWriterOptions options) => "J"; } } diff --git a/src/Generated/Models/Responses/ImageGenerationTool.cs b/src/Generated/Models/Responses/ImageGenerationTool.cs new file mode 100644 index 000000000..4f8014cb4 --- /dev/null +++ b/src/Generated/Models/Responses/ImageGenerationTool.cs @@ -0,0 +1,42 @@ +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; + +namespace OpenAI.Responses +{ + [Experimental("OPENAI001")] + public partial class ImageGenerationTool : ResponseTool + { + public ImageGenerationTool() : this(InternalToolType.ImageGeneration, null, null, default, default, default, default, default, default, default, null, default) + { + } + + internal ImageGenerationTool(InternalToolType kind, IDictionary additionalBinaryDataProperties, string model, ImageGenerationToolQuality? quality, ImageGenerationToolSize? size, ImageGenerationToolOutputFileFormat? outputFileFormat, int? outputCompressionFactor, ImageGenerationToolModerationLevel? moderationLevel, ImageGenerationToolBackground? background, ImageGenerationToolInputFidelityLevel? inputFidelityLevel, ImageGenerationToolInputImageMask inputImageMask, int? partialImageCount) : base(kind, additionalBinaryDataProperties) + { + Model = model; + Quality = quality; + Size = size; + OutputFileFormat = outputFileFormat; + OutputCompressionFactor = outputCompressionFactor; + ModerationLevel = moderationLevel; + Background = background; + InputFidelityLevel = inputFidelityLevel; + InputImageMask = inputImageMask; + PartialImageCount = partialImageCount; + } + + public string Model { get; set; } + + public ImageGenerationToolQuality? Quality { get; set; } + + public ImageGenerationToolSize? Size { get; set; } + + public ImageGenerationToolBackground? Background { get; set; } + + public ImageGenerationToolInputImageMask InputImageMask { get; set; } + } +} diff --git a/src/Generated/Models/Responses/ImageGenerationToolBackground.cs b/src/Generated/Models/Responses/ImageGenerationToolBackground.cs new file mode 100644 index 000000000..2d9580573 --- /dev/null +++ b/src/Generated/Models/Responses/ImageGenerationToolBackground.cs @@ -0,0 +1,51 @@ +// + +#nullable disable + +using System; +using System.ComponentModel; +using System.Diagnostics.CodeAnalysis; +using OpenAI; + +namespace OpenAI.Responses +{ + [Experimental("OPENAI001")] + public readonly partial struct ImageGenerationToolBackground : IEquatable + { + private readonly string _value; + private const string TransparentValue = "transparent"; + private const string OpaqueValue = "opaque"; + private const string AutoValue = "auto"; + + public ImageGenerationToolBackground(string value) + { + Argument.AssertNotNull(value, nameof(value)); + + _value = value; + } + + public static ImageGenerationToolBackground Transparent { get; } = new ImageGenerationToolBackground(TransparentValue); + + public static ImageGenerationToolBackground Opaque { get; } = new ImageGenerationToolBackground(OpaqueValue); + + public static ImageGenerationToolBackground Auto { get; } = new ImageGenerationToolBackground(AutoValue); + + public static bool operator ==(ImageGenerationToolBackground left, ImageGenerationToolBackground right) => left.Equals(right); + + public static bool operator !=(ImageGenerationToolBackground left, ImageGenerationToolBackground right) => !left.Equals(right); + + public static implicit operator ImageGenerationToolBackground(string value) => new ImageGenerationToolBackground(value); + + public static implicit operator ImageGenerationToolBackground?(string value) => value == null ? null : new ImageGenerationToolBackground(value); + + [EditorBrowsable(EditorBrowsableState.Never)] + public override bool Equals(object obj) => obj is ImageGenerationToolBackground other && Equals(other); + + public bool Equals(ImageGenerationToolBackground other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase); + + [EditorBrowsable(EditorBrowsableState.Never)] + public override int GetHashCode() => _value != null ? StringComparer.InvariantCultureIgnoreCase.GetHashCode(_value) : 0; + + public override string ToString() => _value; + } +} diff --git a/src/Generated/Models/Responses/ImageGenerationToolInputFidelityLevel.cs b/src/Generated/Models/Responses/ImageGenerationToolInputFidelityLevel.cs new file mode 100644 index 000000000..cbf4cdae9 --- /dev/null +++ b/src/Generated/Models/Responses/ImageGenerationToolInputFidelityLevel.cs @@ -0,0 +1,48 @@ +// + +#nullable disable + +using System; +using System.ComponentModel; +using System.Diagnostics.CodeAnalysis; +using OpenAI; + +namespace OpenAI.Responses +{ + [Experimental("OPENAI001")] + public readonly partial struct ImageGenerationToolInputFidelityLevel : IEquatable + { + private readonly string _value; + private const string LowValue = "low"; + private const string HighValue = "high"; + + public ImageGenerationToolInputFidelityLevel(string value) + { + Argument.AssertNotNull(value, nameof(value)); + + _value = value; + } + + public static ImageGenerationToolInputFidelityLevel Low { get; } = new ImageGenerationToolInputFidelityLevel(LowValue); + + public static ImageGenerationToolInputFidelityLevel High { get; } = new ImageGenerationToolInputFidelityLevel(HighValue); + + public static bool operator ==(ImageGenerationToolInputFidelityLevel left, ImageGenerationToolInputFidelityLevel right) => left.Equals(right); + + public static bool operator !=(ImageGenerationToolInputFidelityLevel left, ImageGenerationToolInputFidelityLevel right) => !left.Equals(right); + + public static implicit operator ImageGenerationToolInputFidelityLevel(string value) => new ImageGenerationToolInputFidelityLevel(value); + + public static implicit operator ImageGenerationToolInputFidelityLevel?(string value) => value == null ? null : new ImageGenerationToolInputFidelityLevel(value); + + [EditorBrowsable(EditorBrowsableState.Never)] + public override bool Equals(object obj) => obj is ImageGenerationToolInputFidelityLevel other && Equals(other); + + public bool Equals(ImageGenerationToolInputFidelityLevel other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase); + + [EditorBrowsable(EditorBrowsableState.Never)] + public override int GetHashCode() => _value != null ? StringComparer.InvariantCultureIgnoreCase.GetHashCode(_value) : 0; + + public override string ToString() => _value; + } +} diff --git a/src/Generated/Models/Responses/InternalImageGenToolInputImageMask.Serialization.cs b/src/Generated/Models/Responses/ImageGenerationToolInputImageMask.Serialization.cs similarity index 60% rename from src/Generated/Models/Responses/InternalImageGenToolInputImageMask.Serialization.cs rename to src/Generated/Models/Responses/ImageGenerationToolInputImageMask.Serialization.cs index b68607e08..c87959155 100644 --- a/src/Generated/Models/Responses/InternalImageGenToolInputImageMask.Serialization.cs +++ b/src/Generated/Models/Responses/ImageGenerationToolInputImageMask.Serialization.cs @@ -10,9 +10,9 @@ namespace OpenAI.Responses { - internal partial class InternalImageGenToolInputImageMask : IJsonModel + public partial class ImageGenerationToolInputImageMask : IJsonModel { - void IJsonModel.Write(Utf8JsonWriter writer, ModelReaderWriterOptions options) + void IJsonModel.Write(Utf8JsonWriter writer, ModelReaderWriterOptions options) { writer.WriteStartObject(); JsonModelWriteCore(writer, options); @@ -21,10 +21,10 @@ void IJsonModel.Write(Utf8JsonWriter writer, protected virtual void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; if (format != "J") { - throw new FormatException($"The model {nameof(InternalImageGenToolInputImageMask)} does not support writing '{format}' format."); + throw new FormatException($"The model {nameof(ImageGenerationToolInputImageMask)} does not support writing '{format}' format."); } if (Optional.IsDefined(ImageUrl) && _additionalBinaryDataProperties?.ContainsKey("image_url") != true) { @@ -58,20 +58,20 @@ protected virtual void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWrit } } - InternalImageGenToolInputImageMask IJsonModel.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options) => JsonModelCreateCore(ref reader, options); + ImageGenerationToolInputImageMask IJsonModel.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options) => JsonModelCreateCore(ref reader, options); - protected virtual InternalImageGenToolInputImageMask JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options) + protected virtual ImageGenerationToolInputImageMask JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; if (format != "J") { - throw new FormatException($"The model {nameof(InternalImageGenToolInputImageMask)} does not support reading '{format}' format."); + throw new FormatException($"The model {nameof(ImageGenerationToolInputImageMask)} does not support reading '{format}' format."); } using JsonDocument document = JsonDocument.ParseValue(ref reader); - return DeserializeInternalImageGenToolInputImageMask(document.RootElement, options); + return DeserializeImageGenerationToolInputImageMask(document.RootElement, options); } - internal static InternalImageGenToolInputImageMask DeserializeInternalImageGenToolInputImageMask(JsonElement element, ModelReaderWriterOptions options) + internal static ImageGenerationToolInputImageMask DeserializeImageGenerationToolInputImageMask(JsonElement element, ModelReaderWriterOptions options) { if (element.ValueKind == JsonValueKind.Null) { @@ -95,40 +95,40 @@ internal static InternalImageGenToolInputImageMask DeserializeInternalImageGenTo // Plugin customization: remove options.Format != "W" check additionalBinaryDataProperties.Add(prop.Name, BinaryData.FromString(prop.Value.GetRawText())); } - return new InternalImageGenToolInputImageMask(imageUrl, fileId, additionalBinaryDataProperties); + return new ImageGenerationToolInputImageMask(imageUrl, fileId, additionalBinaryDataProperties); } - BinaryData IPersistableModel.Write(ModelReaderWriterOptions options) => PersistableModelWriteCore(options); + BinaryData IPersistableModel.Write(ModelReaderWriterOptions options) => PersistableModelWriteCore(options); protected virtual BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + 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(InternalImageGenToolInputImageMask)} does not support writing '{options.Format}' format."); + throw new FormatException($"The model {nameof(ImageGenerationToolInputImageMask)} does not support writing '{options.Format}' format."); } } - InternalImageGenToolInputImageMask IPersistableModel.Create(BinaryData data, ModelReaderWriterOptions options) => PersistableModelCreateCore(data, options); + ImageGenerationToolInputImageMask IPersistableModel.Create(BinaryData data, ModelReaderWriterOptions options) => PersistableModelCreateCore(data, options); - protected virtual InternalImageGenToolInputImageMask PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options) + protected virtual ImageGenerationToolInputImageMask PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; switch (format) { case "J": using (JsonDocument document = JsonDocument.Parse(data)) { - return DeserializeInternalImageGenToolInputImageMask(document.RootElement, options); + return DeserializeImageGenerationToolInputImageMask(document.RootElement, options); } default: - throw new FormatException($"The model {nameof(InternalImageGenToolInputImageMask)} does not support reading '{options.Format}' format."); + throw new FormatException($"The model {nameof(ImageGenerationToolInputImageMask)} does not support reading '{options.Format}' format."); } } - string IPersistableModel.GetFormatFromOptions(ModelReaderWriterOptions options) => "J"; + string IPersistableModel.GetFormatFromOptions(ModelReaderWriterOptions options) => "J"; } } diff --git a/src/Generated/Models/Responses/InternalImageGenToolInputImageMask.cs b/src/Generated/Models/Responses/ImageGenerationToolInputImageMask.cs similarity index 61% rename from src/Generated/Models/Responses/InternalImageGenToolInputImageMask.cs rename to src/Generated/Models/Responses/ImageGenerationToolInputImageMask.cs index 657d867b6..066a204f6 100644 --- a/src/Generated/Models/Responses/InternalImageGenToolInputImageMask.cs +++ b/src/Generated/Models/Responses/ImageGenerationToolInputImageMask.cs @@ -4,28 +4,22 @@ using System; using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; namespace OpenAI.Responses { - internal partial class InternalImageGenToolInputImageMask + [Experimental("OPENAI001")] + public partial class ImageGenerationToolInputImageMask { private protected IDictionary _additionalBinaryDataProperties; - public InternalImageGenToolInputImageMask() - { - } - - internal InternalImageGenToolInputImageMask(string imageUrl, string fileId, IDictionary additionalBinaryDataProperties) + internal ImageGenerationToolInputImageMask(string imageUrl, string fileId, IDictionary additionalBinaryDataProperties) { ImageUrl = imageUrl; FileId = fileId; _additionalBinaryDataProperties = additionalBinaryDataProperties; } - public string ImageUrl { get; set; } - - public string FileId { get; set; } - internal IDictionary SerializedAdditionalRawData { get => _additionalBinaryDataProperties; diff --git a/src/Generated/Models/Responses/ImageGenerationToolModerationLevel.cs b/src/Generated/Models/Responses/ImageGenerationToolModerationLevel.cs new file mode 100644 index 000000000..722d4a318 --- /dev/null +++ b/src/Generated/Models/Responses/ImageGenerationToolModerationLevel.cs @@ -0,0 +1,48 @@ +// + +#nullable disable + +using System; +using System.ComponentModel; +using System.Diagnostics.CodeAnalysis; +using OpenAI; + +namespace OpenAI.Responses +{ + [Experimental("OPENAI001")] + public readonly partial struct ImageGenerationToolModerationLevel : IEquatable + { + private readonly string _value; + private const string AutoValue = "auto"; + private const string LowValue = "low"; + + public ImageGenerationToolModerationLevel(string value) + { + Argument.AssertNotNull(value, nameof(value)); + + _value = value; + } + + public static ImageGenerationToolModerationLevel Auto { get; } = new ImageGenerationToolModerationLevel(AutoValue); + + public static ImageGenerationToolModerationLevel Low { get; } = new ImageGenerationToolModerationLevel(LowValue); + + public static bool operator ==(ImageGenerationToolModerationLevel left, ImageGenerationToolModerationLevel right) => left.Equals(right); + + public static bool operator !=(ImageGenerationToolModerationLevel left, ImageGenerationToolModerationLevel right) => !left.Equals(right); + + public static implicit operator ImageGenerationToolModerationLevel(string value) => new ImageGenerationToolModerationLevel(value); + + public static implicit operator ImageGenerationToolModerationLevel?(string value) => value == null ? null : new ImageGenerationToolModerationLevel(value); + + [EditorBrowsable(EditorBrowsableState.Never)] + public override bool Equals(object obj) => obj is ImageGenerationToolModerationLevel other && Equals(other); + + public bool Equals(ImageGenerationToolModerationLevel other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase); + + [EditorBrowsable(EditorBrowsableState.Never)] + public override int GetHashCode() => _value != null ? StringComparer.InvariantCultureIgnoreCase.GetHashCode(_value) : 0; + + public override string ToString() => _value; + } +} diff --git a/src/Generated/Models/Responses/ImageGenerationToolOutputFileFormat.cs b/src/Generated/Models/Responses/ImageGenerationToolOutputFileFormat.cs new file mode 100644 index 000000000..9f504a81a --- /dev/null +++ b/src/Generated/Models/Responses/ImageGenerationToolOutputFileFormat.cs @@ -0,0 +1,51 @@ +// + +#nullable disable + +using System; +using System.ComponentModel; +using System.Diagnostics.CodeAnalysis; +using OpenAI; + +namespace OpenAI.Responses +{ + [Experimental("OPENAI001")] + public readonly partial struct ImageGenerationToolOutputFileFormat : IEquatable + { + private readonly string _value; + private const string PngValue = "png"; + private const string WebpValue = "webp"; + private const string JpegValue = "jpeg"; + + public ImageGenerationToolOutputFileFormat(string value) + { + Argument.AssertNotNull(value, nameof(value)); + + _value = value; + } + + public static ImageGenerationToolOutputFileFormat Png { get; } = new ImageGenerationToolOutputFileFormat(PngValue); + + public static ImageGenerationToolOutputFileFormat Webp { get; } = new ImageGenerationToolOutputFileFormat(WebpValue); + + public static ImageGenerationToolOutputFileFormat Jpeg { get; } = new ImageGenerationToolOutputFileFormat(JpegValue); + + public static bool operator ==(ImageGenerationToolOutputFileFormat left, ImageGenerationToolOutputFileFormat right) => left.Equals(right); + + public static bool operator !=(ImageGenerationToolOutputFileFormat left, ImageGenerationToolOutputFileFormat right) => !left.Equals(right); + + public static implicit operator ImageGenerationToolOutputFileFormat(string value) => new ImageGenerationToolOutputFileFormat(value); + + public static implicit operator ImageGenerationToolOutputFileFormat?(string value) => value == null ? null : new ImageGenerationToolOutputFileFormat(value); + + [EditorBrowsable(EditorBrowsableState.Never)] + public override bool Equals(object obj) => obj is ImageGenerationToolOutputFileFormat other && Equals(other); + + public bool Equals(ImageGenerationToolOutputFileFormat other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase); + + [EditorBrowsable(EditorBrowsableState.Never)] + public override int GetHashCode() => _value != null ? StringComparer.InvariantCultureIgnoreCase.GetHashCode(_value) : 0; + + public override string ToString() => _value; + } +} diff --git a/src/Generated/Models/Responses/ImageGenerationToolQuality.cs b/src/Generated/Models/Responses/ImageGenerationToolQuality.cs new file mode 100644 index 000000000..748c60c1f --- /dev/null +++ b/src/Generated/Models/Responses/ImageGenerationToolQuality.cs @@ -0,0 +1,54 @@ +// + +#nullable disable + +using System; +using System.ComponentModel; +using System.Diagnostics.CodeAnalysis; +using OpenAI; + +namespace OpenAI.Responses +{ + [Experimental("OPENAI001")] + public readonly partial struct ImageGenerationToolQuality : IEquatable + { + private readonly string _value; + private const string LowValue = "low"; + private const string MediumValue = "medium"; + private const string HighValue = "high"; + private const string AutoValue = "auto"; + + public ImageGenerationToolQuality(string value) + { + Argument.AssertNotNull(value, nameof(value)); + + _value = value; + } + + public static ImageGenerationToolQuality Low { get; } = new ImageGenerationToolQuality(LowValue); + + public static ImageGenerationToolQuality Medium { get; } = new ImageGenerationToolQuality(MediumValue); + + public static ImageGenerationToolQuality High { get; } = new ImageGenerationToolQuality(HighValue); + + public static ImageGenerationToolQuality Auto { get; } = new ImageGenerationToolQuality(AutoValue); + + public static bool operator ==(ImageGenerationToolQuality left, ImageGenerationToolQuality right) => left.Equals(right); + + public static bool operator !=(ImageGenerationToolQuality left, ImageGenerationToolQuality right) => !left.Equals(right); + + public static implicit operator ImageGenerationToolQuality(string value) => new ImageGenerationToolQuality(value); + + public static implicit operator ImageGenerationToolQuality?(string value) => value == null ? null : new ImageGenerationToolQuality(value); + + [EditorBrowsable(EditorBrowsableState.Never)] + public override bool Equals(object obj) => obj is ImageGenerationToolQuality other && Equals(other); + + public bool Equals(ImageGenerationToolQuality other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase); + + [EditorBrowsable(EditorBrowsableState.Never)] + public override int GetHashCode() => _value != null ? StringComparer.InvariantCultureIgnoreCase.GetHashCode(_value) : 0; + + public override string ToString() => _value; + } +} diff --git a/src/Generated/Models/Responses/ImageGenerationToolSize.cs b/src/Generated/Models/Responses/ImageGenerationToolSize.cs new file mode 100644 index 000000000..b7fd896bf --- /dev/null +++ b/src/Generated/Models/Responses/ImageGenerationToolSize.cs @@ -0,0 +1,36 @@ +// + +#nullable disable + +using System; +using System.ComponentModel; +using System.Diagnostics.CodeAnalysis; + +namespace OpenAI.Responses +{ + [Experimental("OPENAI001")] + public readonly partial struct ImageGenerationToolSize : IEquatable + { + private readonly string _value; + private const string _1024x1024Value = "1024x1024"; + private const string _1024x1536Value = "1024x1536"; + private const string _1536x1024Value = "1536x1024"; + private const string AutoValue = "auto"; + + public static ImageGenerationToolSize Auto { get; } = new ImageGenerationToolSize(AutoValue); + + public static bool operator ==(ImageGenerationToolSize left, ImageGenerationToolSize right) => left.Equals(right); + + public static bool operator !=(ImageGenerationToolSize left, ImageGenerationToolSize right) => !left.Equals(right); + + [EditorBrowsable(EditorBrowsableState.Never)] + public override bool Equals(object obj) => obj is ImageGenerationToolSize other && Equals(other); + + public bool Equals(ImageGenerationToolSize other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase); + + [EditorBrowsable(EditorBrowsableState.Never)] + public override int GetHashCode() => _value != null ? StringComparer.InvariantCultureIgnoreCase.GetHashCode(_value) : 0; + + public override string ToString() => _value; + } +} diff --git a/src/Generated/Models/Responses/InternalImageGenTool.cs b/src/Generated/Models/Responses/InternalImageGenTool.cs deleted file mode 100644 index 33b290239..000000000 --- a/src/Generated/Models/Responses/InternalImageGenTool.cs +++ /dev/null @@ -1,47 +0,0 @@ -// - -#nullable disable - -using System; -using System.Collections.Generic; - -namespace OpenAI.Responses -{ - internal partial class InternalImageGenTool : ResponseTool - { - public InternalImageGenTool() : this(InternalToolType.ImageGeneration, null, null, default, default, default, default, default, default, null, default) - { - } - - internal InternalImageGenTool(InternalToolType kind, IDictionary additionalBinaryDataProperties, string model, InternalImageGenToolQuality? quality, InternalImageGenToolSize? size, InternalImageGenToolOutputFormat? outputFormat, int? outputCompression, InternalImageGenToolModeration? moderation, InternalImageGenToolBackground? background, InternalImageGenToolInputImageMask inputImageMask, int? partialImages) : base(kind, additionalBinaryDataProperties) - { - Model = model; - Quality = quality; - Size = size; - OutputFormat = outputFormat; - OutputCompression = outputCompression; - Moderation = moderation; - Background = background; - InputImageMask = inputImageMask; - PartialImages = partialImages; - } - - public string Model { get; set; } - - internal InternalImageGenToolQuality? Quality { get; set; } - - internal InternalImageGenToolSize? Size { get; set; } - - internal InternalImageGenToolOutputFormat? OutputFormat { get; set; } - - public int? OutputCompression { get; set; } - - internal InternalImageGenToolModeration? Moderation { get; set; } - - internal InternalImageGenToolBackground? Background { get; set; } - - internal InternalImageGenToolInputImageMask InputImageMask { get; set; } - - public int? PartialImages { get; set; } - } -} diff --git a/src/Generated/Models/Responses/InternalImageGenToolBackground.cs b/src/Generated/Models/Responses/InternalImageGenToolBackground.cs deleted file mode 100644 index 51f5b974b..000000000 --- a/src/Generated/Models/Responses/InternalImageGenToolBackground.cs +++ /dev/null @@ -1,49 +0,0 @@ -// - -#nullable disable - -using System; -using System.ComponentModel; -using OpenAI; - -namespace OpenAI.Responses -{ - internal readonly partial struct InternalImageGenToolBackground : IEquatable - { - private readonly string _value; - private const string TransparentValue = "transparent"; - private const string OpaqueValue = "opaque"; - private const string AutoValue = "auto"; - - public InternalImageGenToolBackground(string value) - { - Argument.AssertNotNull(value, nameof(value)); - - _value = value; - } - - internal static InternalImageGenToolBackground Transparent { get; } = new InternalImageGenToolBackground(TransparentValue); - - internal static InternalImageGenToolBackground Opaque { get; } = new InternalImageGenToolBackground(OpaqueValue); - - internal static InternalImageGenToolBackground Auto { get; } = new InternalImageGenToolBackground(AutoValue); - - public static bool operator ==(InternalImageGenToolBackground left, InternalImageGenToolBackground right) => left.Equals(right); - - public static bool operator !=(InternalImageGenToolBackground left, InternalImageGenToolBackground right) => !left.Equals(right); - - public static implicit operator InternalImageGenToolBackground(string value) => new InternalImageGenToolBackground(value); - - public static implicit operator InternalImageGenToolBackground?(string value) => value == null ? null : new InternalImageGenToolBackground(value); - - [EditorBrowsable(EditorBrowsableState.Never)] - public override bool Equals(object obj) => obj is InternalImageGenToolBackground other && Equals(other); - - public bool Equals(InternalImageGenToolBackground other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase); - - [EditorBrowsable(EditorBrowsableState.Never)] - public override int GetHashCode() => _value != null ? StringComparer.InvariantCultureIgnoreCase.GetHashCode(_value) : 0; - - public override string ToString() => _value; - } -} diff --git a/src/Generated/Models/Responses/InternalImageGenToolCallItemParam.Serialization.cs b/src/Generated/Models/Responses/InternalImageGenToolCallItemParam.Serialization.cs index 5992c6c56..a03cb8f6a 100644 --- a/src/Generated/Models/Responses/InternalImageGenToolCallItemParam.Serialization.cs +++ b/src/Generated/Models/Responses/InternalImageGenToolCallItemParam.Serialization.cs @@ -36,7 +36,7 @@ protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWri if (Optional.IsDefined(Result)) { writer.WritePropertyName("result"u8); - writer.WriteStringValue(Result); + writer.WriteBase64StringValue(Result.ToArray(), "D"); } else { @@ -66,7 +66,7 @@ internal static InternalImageGenToolCallItemParam DeserializeInternalImageGenToo } InternalItemType kind = default; IDictionary additionalBinaryDataProperties = new ChangeTrackingDictionary(); - string result = default; + BinaryData result = default; foreach (var prop in element.EnumerateObject()) { if (prop.NameEquals("type"u8)) @@ -81,7 +81,7 @@ internal static InternalImageGenToolCallItemParam DeserializeInternalImageGenToo result = null; continue; } - result = prop.Value.GetString(); + result = BinaryData.FromBytes(prop.Value.GetBytesFromBase64("D")); continue; } // Plugin customization: remove options.Format != "W" check diff --git a/src/Generated/Models/Responses/InternalImageGenToolCallItemParam.cs b/src/Generated/Models/Responses/InternalImageGenToolCallItemParam.cs index f93b72773..ca03ac7e5 100644 --- a/src/Generated/Models/Responses/InternalImageGenToolCallItemParam.cs +++ b/src/Generated/Models/Responses/InternalImageGenToolCallItemParam.cs @@ -9,16 +9,16 @@ namespace OpenAI.Responses { internal partial class InternalImageGenToolCallItemParam : InternalItemParam { - public InternalImageGenToolCallItemParam(string result) : base(InternalItemType.ImageGenerationCall) + public InternalImageGenToolCallItemParam(BinaryData result) : base(InternalItemType.ImageGenerationCall) { Result = result; } - internal InternalImageGenToolCallItemParam(InternalItemType kind, IDictionary additionalBinaryDataProperties, string result) : base(kind, additionalBinaryDataProperties) + internal InternalImageGenToolCallItemParam(InternalItemType kind, IDictionary additionalBinaryDataProperties, BinaryData result) : base(kind, additionalBinaryDataProperties) { Result = result; } - public string Result { get; } + public BinaryData Result { get; } } } diff --git a/src/Generated/Models/Responses/InternalImageGenToolCallItemResource.cs b/src/Generated/Models/Responses/InternalImageGenToolCallItemResource.cs deleted file mode 100644 index ca17fd5f1..000000000 --- a/src/Generated/Models/Responses/InternalImageGenToolCallItemResource.cs +++ /dev/null @@ -1,28 +0,0 @@ -// - -#nullable disable - -using System; -using System.Collections.Generic; - -namespace OpenAI.Responses -{ - internal partial class InternalImageGenToolCallItemResource : ResponseItem - { - internal InternalImageGenToolCallItemResource(InternalImageGenToolCallItemResourceStatus status, string result) : base(InternalItemType.ImageGenerationCall) - { - Status = status; - Result = result; - } - - internal InternalImageGenToolCallItemResource(InternalItemType kind, string id, IDictionary additionalBinaryDataProperties, InternalImageGenToolCallItemResourceStatus status, string result) : base(kind, id, additionalBinaryDataProperties) - { - Status = status; - Result = result; - } - - internal InternalImageGenToolCallItemResourceStatus Status { get; set; } - - public string Result { get; set; } - } -} diff --git a/src/Generated/Models/Responses/InternalImageGenToolCallItemResourceStatus.cs b/src/Generated/Models/Responses/InternalImageGenToolCallItemResourceStatus.cs deleted file mode 100644 index 3a616e6bf..000000000 --- a/src/Generated/Models/Responses/InternalImageGenToolCallItemResourceStatus.cs +++ /dev/null @@ -1,52 +0,0 @@ -// - -#nullable disable - -using System; -using System.ComponentModel; -using OpenAI; - -namespace OpenAI.Responses -{ - internal readonly partial struct InternalImageGenToolCallItemResourceStatus : IEquatable - { - private readonly string _value; - private const string InProgressValue = "in_progress"; - private const string CompletedValue = "completed"; - private const string GeneratingValue = "generating"; - private const string FailedValue = "failed"; - - public InternalImageGenToolCallItemResourceStatus(string value) - { - Argument.AssertNotNull(value, nameof(value)); - - _value = value; - } - - internal static InternalImageGenToolCallItemResourceStatus InProgress { get; } = new InternalImageGenToolCallItemResourceStatus(InProgressValue); - - internal static InternalImageGenToolCallItemResourceStatus Completed { get; } = new InternalImageGenToolCallItemResourceStatus(CompletedValue); - - internal static InternalImageGenToolCallItemResourceStatus Generating { get; } = new InternalImageGenToolCallItemResourceStatus(GeneratingValue); - - internal static InternalImageGenToolCallItemResourceStatus Failed { get; } = new InternalImageGenToolCallItemResourceStatus(FailedValue); - - public static bool operator ==(InternalImageGenToolCallItemResourceStatus left, InternalImageGenToolCallItemResourceStatus right) => left.Equals(right); - - public static bool operator !=(InternalImageGenToolCallItemResourceStatus left, InternalImageGenToolCallItemResourceStatus right) => !left.Equals(right); - - public static implicit operator InternalImageGenToolCallItemResourceStatus(string value) => new InternalImageGenToolCallItemResourceStatus(value); - - public static implicit operator InternalImageGenToolCallItemResourceStatus?(string value) => value == null ? null : new InternalImageGenToolCallItemResourceStatus(value); - - [EditorBrowsable(EditorBrowsableState.Never)] - public override bool Equals(object obj) => obj is InternalImageGenToolCallItemResourceStatus other && Equals(other); - - public bool Equals(InternalImageGenToolCallItemResourceStatus other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase); - - [EditorBrowsable(EditorBrowsableState.Never)] - public override int GetHashCode() => _value != null ? StringComparer.InvariantCultureIgnoreCase.GetHashCode(_value) : 0; - - public override string ToString() => _value; - } -} diff --git a/src/Generated/Models/Responses/InternalImageGenToolModeration.cs b/src/Generated/Models/Responses/InternalImageGenToolModeration.cs deleted file mode 100644 index fdbd0d196..000000000 --- a/src/Generated/Models/Responses/InternalImageGenToolModeration.cs +++ /dev/null @@ -1,46 +0,0 @@ -// - -#nullable disable - -using System; -using System.ComponentModel; -using OpenAI; - -namespace OpenAI.Responses -{ - internal readonly partial struct InternalImageGenToolModeration : IEquatable - { - private readonly string _value; - private const string AutoValue = "auto"; - private const string LowValue = "low"; - - public InternalImageGenToolModeration(string value) - { - Argument.AssertNotNull(value, nameof(value)); - - _value = value; - } - - internal static InternalImageGenToolModeration Auto { get; } = new InternalImageGenToolModeration(AutoValue); - - internal static InternalImageGenToolModeration Low { get; } = new InternalImageGenToolModeration(LowValue); - - public static bool operator ==(InternalImageGenToolModeration left, InternalImageGenToolModeration right) => left.Equals(right); - - public static bool operator !=(InternalImageGenToolModeration left, InternalImageGenToolModeration right) => !left.Equals(right); - - public static implicit operator InternalImageGenToolModeration(string value) => new InternalImageGenToolModeration(value); - - public static implicit operator InternalImageGenToolModeration?(string value) => value == null ? null : new InternalImageGenToolModeration(value); - - [EditorBrowsable(EditorBrowsableState.Never)] - public override bool Equals(object obj) => obj is InternalImageGenToolModeration other && Equals(other); - - public bool Equals(InternalImageGenToolModeration other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase); - - [EditorBrowsable(EditorBrowsableState.Never)] - public override int GetHashCode() => _value != null ? StringComparer.InvariantCultureIgnoreCase.GetHashCode(_value) : 0; - - public override string ToString() => _value; - } -} diff --git a/src/Generated/Models/Responses/InternalImageGenToolOutputFormat.cs b/src/Generated/Models/Responses/InternalImageGenToolOutputFormat.cs deleted file mode 100644 index 2c90defd2..000000000 --- a/src/Generated/Models/Responses/InternalImageGenToolOutputFormat.cs +++ /dev/null @@ -1,49 +0,0 @@ -// - -#nullable disable - -using System; -using System.ComponentModel; -using OpenAI; - -namespace OpenAI.Responses -{ - internal readonly partial struct InternalImageGenToolOutputFormat : IEquatable - { - private readonly string _value; - private const string PngValue = "png"; - private const string WebpValue = "webp"; - private const string JpegValue = "jpeg"; - - public InternalImageGenToolOutputFormat(string value) - { - Argument.AssertNotNull(value, nameof(value)); - - _value = value; - } - - internal static InternalImageGenToolOutputFormat Png { get; } = new InternalImageGenToolOutputFormat(PngValue); - - internal static InternalImageGenToolOutputFormat Webp { get; } = new InternalImageGenToolOutputFormat(WebpValue); - - internal static InternalImageGenToolOutputFormat Jpeg { get; } = new InternalImageGenToolOutputFormat(JpegValue); - - public static bool operator ==(InternalImageGenToolOutputFormat left, InternalImageGenToolOutputFormat right) => left.Equals(right); - - public static bool operator !=(InternalImageGenToolOutputFormat left, InternalImageGenToolOutputFormat right) => !left.Equals(right); - - public static implicit operator InternalImageGenToolOutputFormat(string value) => new InternalImageGenToolOutputFormat(value); - - public static implicit operator InternalImageGenToolOutputFormat?(string value) => value == null ? null : new InternalImageGenToolOutputFormat(value); - - [EditorBrowsable(EditorBrowsableState.Never)] - public override bool Equals(object obj) => obj is InternalImageGenToolOutputFormat other && Equals(other); - - public bool Equals(InternalImageGenToolOutputFormat other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase); - - [EditorBrowsable(EditorBrowsableState.Never)] - public override int GetHashCode() => _value != null ? StringComparer.InvariantCultureIgnoreCase.GetHashCode(_value) : 0; - - public override string ToString() => _value; - } -} diff --git a/src/Generated/Models/Responses/InternalImageGenToolQuality.cs b/src/Generated/Models/Responses/InternalImageGenToolQuality.cs deleted file mode 100644 index 91dbe534b..000000000 --- a/src/Generated/Models/Responses/InternalImageGenToolQuality.cs +++ /dev/null @@ -1,52 +0,0 @@ -// - -#nullable disable - -using System; -using System.ComponentModel; -using OpenAI; - -namespace OpenAI.Responses -{ - internal readonly partial struct InternalImageGenToolQuality : IEquatable - { - private readonly string _value; - private const string LowValue = "low"; - private const string MediumValue = "medium"; - private const string HighValue = "high"; - private const string AutoValue = "auto"; - - public InternalImageGenToolQuality(string value) - { - Argument.AssertNotNull(value, nameof(value)); - - _value = value; - } - - internal static InternalImageGenToolQuality Low { get; } = new InternalImageGenToolQuality(LowValue); - - internal static InternalImageGenToolQuality Medium { get; } = new InternalImageGenToolQuality(MediumValue); - - internal static InternalImageGenToolQuality High { get; } = new InternalImageGenToolQuality(HighValue); - - internal static InternalImageGenToolQuality Auto { get; } = new InternalImageGenToolQuality(AutoValue); - - public static bool operator ==(InternalImageGenToolQuality left, InternalImageGenToolQuality right) => left.Equals(right); - - public static bool operator !=(InternalImageGenToolQuality left, InternalImageGenToolQuality right) => !left.Equals(right); - - public static implicit operator InternalImageGenToolQuality(string value) => new InternalImageGenToolQuality(value); - - public static implicit operator InternalImageGenToolQuality?(string value) => value == null ? null : new InternalImageGenToolQuality(value); - - [EditorBrowsable(EditorBrowsableState.Never)] - public override bool Equals(object obj) => obj is InternalImageGenToolQuality other && Equals(other); - - public bool Equals(InternalImageGenToolQuality other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase); - - [EditorBrowsable(EditorBrowsableState.Never)] - public override int GetHashCode() => _value != null ? StringComparer.InvariantCultureIgnoreCase.GetHashCode(_value) : 0; - - public override string ToString() => _value; - } -} diff --git a/src/Generated/Models/Responses/InternalImageGenToolSize.cs b/src/Generated/Models/Responses/InternalImageGenToolSize.cs deleted file mode 100644 index 57f31013f..000000000 --- a/src/Generated/Models/Responses/InternalImageGenToolSize.cs +++ /dev/null @@ -1,52 +0,0 @@ -// - -#nullable disable - -using System; -using System.ComponentModel; -using OpenAI; - -namespace OpenAI.Responses -{ - internal readonly partial struct InternalImageGenToolSize : IEquatable - { - private readonly string _value; - private const string _1024x1024Value = "1024x1024"; - private const string _1024x1536Value = "1024x1536"; - private const string _1536x1024Value = "1536x1024"; - private const string AutoValue = "auto"; - - public InternalImageGenToolSize(string value) - { - Argument.AssertNotNull(value, nameof(value)); - - _value = value; - } - - internal static InternalImageGenToolSize _1024x1024 { get; } = new InternalImageGenToolSize(_1024x1024Value); - - internal static InternalImageGenToolSize _1024x1536 { get; } = new InternalImageGenToolSize(_1024x1536Value); - - internal static InternalImageGenToolSize _1536x1024 { get; } = new InternalImageGenToolSize(_1536x1024Value); - - internal static InternalImageGenToolSize Auto { get; } = new InternalImageGenToolSize(AutoValue); - - public static bool operator ==(InternalImageGenToolSize left, InternalImageGenToolSize right) => left.Equals(right); - - public static bool operator !=(InternalImageGenToolSize left, InternalImageGenToolSize right) => !left.Equals(right); - - public static implicit operator InternalImageGenToolSize(string value) => new InternalImageGenToolSize(value); - - public static implicit operator InternalImageGenToolSize?(string value) => value == null ? null : new InternalImageGenToolSize(value); - - [EditorBrowsable(EditorBrowsableState.Never)] - public override bool Equals(object obj) => obj is InternalImageGenToolSize other && Equals(other); - - public bool Equals(InternalImageGenToolSize other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase); - - [EditorBrowsable(EditorBrowsableState.Never)] - public override int GetHashCode() => _value != null ? StringComparer.InvariantCultureIgnoreCase.GetHashCode(_value) : 0; - - public override string ToString() => _value; - } -} diff --git a/src/Generated/Models/Responses/InternalResponseImageGenCallCompletedEvent.cs b/src/Generated/Models/Responses/InternalResponseImageGenCallCompletedEvent.cs deleted file mode 100644 index f2ad715f1..000000000 --- a/src/Generated/Models/Responses/InternalResponseImageGenCallCompletedEvent.cs +++ /dev/null @@ -1,28 +0,0 @@ -// - -#nullable disable - -using System; -using System.Collections.Generic; - -namespace OpenAI.Responses -{ - internal partial class InternalResponseImageGenCallCompletedEvent : StreamingResponseUpdate - { - internal InternalResponseImageGenCallCompletedEvent(int sequenceNumber, int outputIndex, string itemId) : base(InternalResponseStreamEventType.ResponseImageGenerationCallCompleted, sequenceNumber) - { - OutputIndex = outputIndex; - ItemId = itemId; - } - - internal InternalResponseImageGenCallCompletedEvent(InternalResponseStreamEventType kind, int sequenceNumber, IDictionary additionalBinaryDataProperties, int outputIndex, string itemId) : base(kind, sequenceNumber, additionalBinaryDataProperties) - { - OutputIndex = outputIndex; - ItemId = itemId; - } - - public int OutputIndex { get; } - - public string ItemId { get; } - } -} diff --git a/src/Generated/Models/Responses/InternalResponseImageGenCallGeneratingEvent.cs b/src/Generated/Models/Responses/InternalResponseImageGenCallGeneratingEvent.cs deleted file mode 100644 index 4e83f2ef4..000000000 --- a/src/Generated/Models/Responses/InternalResponseImageGenCallGeneratingEvent.cs +++ /dev/null @@ -1,28 +0,0 @@ -// - -#nullable disable - -using System; -using System.Collections.Generic; - -namespace OpenAI.Responses -{ - internal partial class InternalResponseImageGenCallGeneratingEvent : StreamingResponseUpdate - { - internal InternalResponseImageGenCallGeneratingEvent(int sequenceNumber, int outputIndex, string itemId) : base(InternalResponseStreamEventType.ResponseImageGenerationCallGenerating, sequenceNumber) - { - OutputIndex = outputIndex; - ItemId = itemId; - } - - internal InternalResponseImageGenCallGeneratingEvent(InternalResponseStreamEventType kind, int sequenceNumber, IDictionary additionalBinaryDataProperties, int outputIndex, string itemId) : base(kind, sequenceNumber, additionalBinaryDataProperties) - { - OutputIndex = outputIndex; - ItemId = itemId; - } - - public int OutputIndex { get; } - - public string ItemId { get; } - } -} diff --git a/src/Generated/Models/Responses/InternalResponseImageGenCallInProgressEvent.cs b/src/Generated/Models/Responses/InternalResponseImageGenCallInProgressEvent.cs deleted file mode 100644 index a14e8f19d..000000000 --- a/src/Generated/Models/Responses/InternalResponseImageGenCallInProgressEvent.cs +++ /dev/null @@ -1,28 +0,0 @@ -// - -#nullable disable - -using System; -using System.Collections.Generic; - -namespace OpenAI.Responses -{ - internal partial class InternalResponseImageGenCallInProgressEvent : StreamingResponseUpdate - { - internal InternalResponseImageGenCallInProgressEvent(int sequenceNumber, int outputIndex, string itemId) : base(InternalResponseStreamEventType.ResponseImageGenerationCallInProgress, sequenceNumber) - { - OutputIndex = outputIndex; - ItemId = itemId; - } - - internal InternalResponseImageGenCallInProgressEvent(InternalResponseStreamEventType kind, int sequenceNumber, IDictionary additionalBinaryDataProperties, int outputIndex, string itemId) : base(kind, sequenceNumber, additionalBinaryDataProperties) - { - OutputIndex = outputIndex; - ItemId = itemId; - } - - public int OutputIndex { get; } - - public string ItemId { get; } - } -} diff --git a/src/Generated/Models/Responses/InternalResponseImageGenCallPartialImageEvent.cs b/src/Generated/Models/Responses/InternalResponseImageGenCallPartialImageEvent.cs deleted file mode 100644 index fdb735278..000000000 --- a/src/Generated/Models/Responses/InternalResponseImageGenCallPartialImageEvent.cs +++ /dev/null @@ -1,36 +0,0 @@ -// - -#nullable disable - -using System; -using System.Collections.Generic; - -namespace OpenAI.Responses -{ - internal partial class InternalResponseImageGenCallPartialImageEvent : StreamingResponseUpdate - { - internal InternalResponseImageGenCallPartialImageEvent(int sequenceNumber, int outputIndex, string itemId, int partialImageIndex, string partialImageB64) : base(InternalResponseStreamEventType.ResponseImageGenerationCallPartialImage, sequenceNumber) - { - OutputIndex = outputIndex; - ItemId = itemId; - PartialImageIndex = partialImageIndex; - PartialImageB64 = partialImageB64; - } - - internal InternalResponseImageGenCallPartialImageEvent(InternalResponseStreamEventType kind, int sequenceNumber, IDictionary additionalBinaryDataProperties, int outputIndex, string itemId, int partialImageIndex, string partialImageB64) : base(kind, sequenceNumber, additionalBinaryDataProperties) - { - OutputIndex = outputIndex; - ItemId = itemId; - PartialImageIndex = partialImageIndex; - PartialImageB64 = partialImageB64; - } - - public int OutputIndex { get; } - - public string ItemId { get; } - - public int PartialImageIndex { get; } - - public string PartialImageB64 { get; } - } -} diff --git a/src/Generated/Models/Responses/ResponseItem.Serialization.cs b/src/Generated/Models/Responses/ResponseItem.Serialization.cs index 1e0f5d43a..05b9a31d6 100644 --- a/src/Generated/Models/Responses/ResponseItem.Serialization.cs +++ b/src/Generated/Models/Responses/ResponseItem.Serialization.cs @@ -102,7 +102,7 @@ internal static ResponseItem DeserializeResponseItem(JsonElement element, ModelR case "reasoning": return ReasoningResponseItem.DeserializeReasoningResponseItem(element, options); case "image_generation_call": - return InternalImageGenToolCallItemResource.DeserializeInternalImageGenToolCallItemResource(element, options); + return ImageGenerationCallResponseItem.DeserializeImageGenerationCallResponseItem(element, options); case "code_interpreter_call": return CodeInterpreterCallResponseItem.DeserializeCodeInterpreterCallResponseItem(element, options); case "local_shell_call": diff --git a/src/Generated/Models/Responses/ResponseTool.Serialization.cs b/src/Generated/Models/Responses/ResponseTool.Serialization.cs index 14259fdc4..d96115d57 100644 --- a/src/Generated/Models/Responses/ResponseTool.Serialization.cs +++ b/src/Generated/Models/Responses/ResponseTool.Serialization.cs @@ -91,7 +91,7 @@ internal static ResponseTool DeserializeResponseTool(JsonElement element, ModelR case "code_interpreter": return CodeInterpreterTool.DeserializeCodeInterpreterTool(element, options); case "image_generation": - return InternalImageGenTool.DeserializeInternalImageGenTool(element, options); + return ImageGenerationTool.DeserializeImageGenerationTool(element, options); case "local_shell": return InternalLocalShellTool.DeserializeInternalLocalShellTool(element, options); case "mcp": diff --git a/src/Generated/Models/Responses/InternalResponseImageGenCallGeneratingEvent.Serialization.cs b/src/Generated/Models/Responses/StreamingResponseImageGenerationCallCompletedUpdate.Serialization.cs similarity index 56% rename from src/Generated/Models/Responses/InternalResponseImageGenCallGeneratingEvent.Serialization.cs rename to src/Generated/Models/Responses/StreamingResponseImageGenerationCallCompletedUpdate.Serialization.cs index a2a5d3ac4..b0ab82192 100644 --- a/src/Generated/Models/Responses/InternalResponseImageGenCallGeneratingEvent.Serialization.cs +++ b/src/Generated/Models/Responses/StreamingResponseImageGenerationCallCompletedUpdate.Serialization.cs @@ -10,13 +10,13 @@ namespace OpenAI.Responses { - internal partial class InternalResponseImageGenCallGeneratingEvent : IJsonModel + public partial class StreamingResponseImageGenerationCallCompletedUpdate : IJsonModel { - internal InternalResponseImageGenCallGeneratingEvent() : this(InternalResponseStreamEventType.ResponseImageGenerationCallGenerating, default, null, default, null) + internal StreamingResponseImageGenerationCallCompletedUpdate() : this(InternalResponseStreamEventType.ResponseImageGenerationCallCompleted, default, null, default, null) { } - void IJsonModel.Write(Utf8JsonWriter writer, ModelReaderWriterOptions options) + void IJsonModel.Write(Utf8JsonWriter writer, ModelReaderWriterOptions options) { writer.WriteStartObject(); JsonModelWriteCore(writer, options); @@ -25,10 +25,10 @@ void IJsonModel.Write(Utf8JsonWrite protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; if (format != "J") { - throw new FormatException($"The model {nameof(InternalResponseImageGenCallGeneratingEvent)} does not support writing '{format}' format."); + throw new FormatException($"The model {nameof(StreamingResponseImageGenerationCallCompletedUpdate)} does not support writing '{format}' format."); } base.JsonModelWriteCore(writer, options); if (_additionalBinaryDataProperties?.ContainsKey("output_index") != true) @@ -43,20 +43,20 @@ protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWri } } - InternalResponseImageGenCallGeneratingEvent IJsonModel.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options) => (InternalResponseImageGenCallGeneratingEvent)JsonModelCreateCore(ref reader, options); + StreamingResponseImageGenerationCallCompletedUpdate IJsonModel.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options) => (StreamingResponseImageGenerationCallCompletedUpdate)JsonModelCreateCore(ref reader, options); protected override StreamingResponseUpdate JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; if (format != "J") { - throw new FormatException($"The model {nameof(InternalResponseImageGenCallGeneratingEvent)} does not support reading '{format}' format."); + throw new FormatException($"The model {nameof(StreamingResponseImageGenerationCallCompletedUpdate)} does not support reading '{format}' format."); } using JsonDocument document = JsonDocument.ParseValue(ref reader); - return DeserializeInternalResponseImageGenCallGeneratingEvent(document.RootElement, options); + return DeserializeStreamingResponseImageGenerationCallCompletedUpdate(document.RootElement, options); } - internal static InternalResponseImageGenCallGeneratingEvent DeserializeInternalResponseImageGenCallGeneratingEvent(JsonElement element, ModelReaderWriterOptions options) + internal static StreamingResponseImageGenerationCallCompletedUpdate DeserializeStreamingResponseImageGenerationCallCompletedUpdate(JsonElement element, ModelReaderWriterOptions options) { if (element.ValueKind == JsonValueKind.Null) { @@ -92,40 +92,40 @@ internal static InternalResponseImageGenCallGeneratingEvent DeserializeInternalR // Plugin customization: remove options.Format != "W" check additionalBinaryDataProperties.Add(prop.Name, BinaryData.FromString(prop.Value.GetRawText())); } - return new InternalResponseImageGenCallGeneratingEvent(kind, sequenceNumber, additionalBinaryDataProperties, outputIndex, itemId); + return new StreamingResponseImageGenerationCallCompletedUpdate(kind, sequenceNumber, additionalBinaryDataProperties, outputIndex, itemId); } - BinaryData IPersistableModel.Write(ModelReaderWriterOptions options) => PersistableModelWriteCore(options); + BinaryData IPersistableModel.Write(ModelReaderWriterOptions options) => PersistableModelWriteCore(options); protected override BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + 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(InternalResponseImageGenCallGeneratingEvent)} does not support writing '{options.Format}' format."); + throw new FormatException($"The model {nameof(StreamingResponseImageGenerationCallCompletedUpdate)} does not support writing '{options.Format}' format."); } } - InternalResponseImageGenCallGeneratingEvent IPersistableModel.Create(BinaryData data, ModelReaderWriterOptions options) => (InternalResponseImageGenCallGeneratingEvent)PersistableModelCreateCore(data, options); + StreamingResponseImageGenerationCallCompletedUpdate IPersistableModel.Create(BinaryData data, ModelReaderWriterOptions options) => (StreamingResponseImageGenerationCallCompletedUpdate)PersistableModelCreateCore(data, options); protected override StreamingResponseUpdate PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; switch (format) { case "J": using (JsonDocument document = JsonDocument.Parse(data)) { - return DeserializeInternalResponseImageGenCallGeneratingEvent(document.RootElement, options); + return DeserializeStreamingResponseImageGenerationCallCompletedUpdate(document.RootElement, options); } default: - throw new FormatException($"The model {nameof(InternalResponseImageGenCallGeneratingEvent)} does not support reading '{options.Format}' format."); + throw new FormatException($"The model {nameof(StreamingResponseImageGenerationCallCompletedUpdate)} does not support reading '{options.Format}' format."); } } - string IPersistableModel.GetFormatFromOptions(ModelReaderWriterOptions options) => "J"; + string IPersistableModel.GetFormatFromOptions(ModelReaderWriterOptions options) => "J"; } } diff --git a/src/Generated/Models/Responses/StreamingResponseImageGenerationCallCompletedUpdate.cs b/src/Generated/Models/Responses/StreamingResponseImageGenerationCallCompletedUpdate.cs new file mode 100644 index 000000000..4264afe3a --- /dev/null +++ b/src/Generated/Models/Responses/StreamingResponseImageGenerationCallCompletedUpdate.cs @@ -0,0 +1,30 @@ +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; + +namespace OpenAI.Responses +{ + [Experimental("OPENAI001")] + public partial class StreamingResponseImageGenerationCallCompletedUpdate : StreamingResponseUpdate + { + internal StreamingResponseImageGenerationCallCompletedUpdate(int sequenceNumber, int outputIndex, string itemId) : base(InternalResponseStreamEventType.ResponseImageGenerationCallCompleted, sequenceNumber) + { + OutputIndex = outputIndex; + ItemId = itemId; + } + + internal StreamingResponseImageGenerationCallCompletedUpdate(InternalResponseStreamEventType kind, int sequenceNumber, IDictionary additionalBinaryDataProperties, int outputIndex, string itemId) : base(kind, sequenceNumber, additionalBinaryDataProperties) + { + OutputIndex = outputIndex; + ItemId = itemId; + } + + public int OutputIndex { get; } + + public string ItemId { get; } + } +} diff --git a/src/Generated/Models/Responses/InternalResponseImageGenCallInProgressEvent.Serialization.cs b/src/Generated/Models/Responses/StreamingResponseImageGenerationCallGeneratingUpdate.Serialization.cs similarity index 56% rename from src/Generated/Models/Responses/InternalResponseImageGenCallInProgressEvent.Serialization.cs rename to src/Generated/Models/Responses/StreamingResponseImageGenerationCallGeneratingUpdate.Serialization.cs index ecc13b1dd..5521fcbe2 100644 --- a/src/Generated/Models/Responses/InternalResponseImageGenCallInProgressEvent.Serialization.cs +++ b/src/Generated/Models/Responses/StreamingResponseImageGenerationCallGeneratingUpdate.Serialization.cs @@ -10,13 +10,13 @@ namespace OpenAI.Responses { - internal partial class InternalResponseImageGenCallInProgressEvent : IJsonModel + public partial class StreamingResponseImageGenerationCallGeneratingUpdate : IJsonModel { - internal InternalResponseImageGenCallInProgressEvent() : this(InternalResponseStreamEventType.ResponseImageGenerationCallInProgress, default, null, default, null) + internal StreamingResponseImageGenerationCallGeneratingUpdate() : this(InternalResponseStreamEventType.ResponseImageGenerationCallGenerating, default, null, default, null) { } - void IJsonModel.Write(Utf8JsonWriter writer, ModelReaderWriterOptions options) + void IJsonModel.Write(Utf8JsonWriter writer, ModelReaderWriterOptions options) { writer.WriteStartObject(); JsonModelWriteCore(writer, options); @@ -25,10 +25,10 @@ void IJsonModel.Write(Utf8JsonWrite protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; if (format != "J") { - throw new FormatException($"The model {nameof(InternalResponseImageGenCallInProgressEvent)} does not support writing '{format}' format."); + throw new FormatException($"The model {nameof(StreamingResponseImageGenerationCallGeneratingUpdate)} does not support writing '{format}' format."); } base.JsonModelWriteCore(writer, options); if (_additionalBinaryDataProperties?.ContainsKey("output_index") != true) @@ -43,20 +43,20 @@ protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWri } } - InternalResponseImageGenCallInProgressEvent IJsonModel.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options) => (InternalResponseImageGenCallInProgressEvent)JsonModelCreateCore(ref reader, options); + StreamingResponseImageGenerationCallGeneratingUpdate IJsonModel.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options) => (StreamingResponseImageGenerationCallGeneratingUpdate)JsonModelCreateCore(ref reader, options); protected override StreamingResponseUpdate JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; if (format != "J") { - throw new FormatException($"The model {nameof(InternalResponseImageGenCallInProgressEvent)} does not support reading '{format}' format."); + throw new FormatException($"The model {nameof(StreamingResponseImageGenerationCallGeneratingUpdate)} does not support reading '{format}' format."); } using JsonDocument document = JsonDocument.ParseValue(ref reader); - return DeserializeInternalResponseImageGenCallInProgressEvent(document.RootElement, options); + return DeserializeStreamingResponseImageGenerationCallGeneratingUpdate(document.RootElement, options); } - internal static InternalResponseImageGenCallInProgressEvent DeserializeInternalResponseImageGenCallInProgressEvent(JsonElement element, ModelReaderWriterOptions options) + internal static StreamingResponseImageGenerationCallGeneratingUpdate DeserializeStreamingResponseImageGenerationCallGeneratingUpdate(JsonElement element, ModelReaderWriterOptions options) { if (element.ValueKind == JsonValueKind.Null) { @@ -92,40 +92,40 @@ internal static InternalResponseImageGenCallInProgressEvent DeserializeInternalR // Plugin customization: remove options.Format != "W" check additionalBinaryDataProperties.Add(prop.Name, BinaryData.FromString(prop.Value.GetRawText())); } - return new InternalResponseImageGenCallInProgressEvent(kind, sequenceNumber, additionalBinaryDataProperties, outputIndex, itemId); + return new StreamingResponseImageGenerationCallGeneratingUpdate(kind, sequenceNumber, additionalBinaryDataProperties, outputIndex, itemId); } - BinaryData IPersistableModel.Write(ModelReaderWriterOptions options) => PersistableModelWriteCore(options); + BinaryData IPersistableModel.Write(ModelReaderWriterOptions options) => PersistableModelWriteCore(options); protected override BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + 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(InternalResponseImageGenCallInProgressEvent)} does not support writing '{options.Format}' format."); + throw new FormatException($"The model {nameof(StreamingResponseImageGenerationCallGeneratingUpdate)} does not support writing '{options.Format}' format."); } } - InternalResponseImageGenCallInProgressEvent IPersistableModel.Create(BinaryData data, ModelReaderWriterOptions options) => (InternalResponseImageGenCallInProgressEvent)PersistableModelCreateCore(data, options); + StreamingResponseImageGenerationCallGeneratingUpdate IPersistableModel.Create(BinaryData data, ModelReaderWriterOptions options) => (StreamingResponseImageGenerationCallGeneratingUpdate)PersistableModelCreateCore(data, options); protected override StreamingResponseUpdate PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; switch (format) { case "J": using (JsonDocument document = JsonDocument.Parse(data)) { - return DeserializeInternalResponseImageGenCallInProgressEvent(document.RootElement, options); + return DeserializeStreamingResponseImageGenerationCallGeneratingUpdate(document.RootElement, options); } default: - throw new FormatException($"The model {nameof(InternalResponseImageGenCallInProgressEvent)} does not support reading '{options.Format}' format."); + throw new FormatException($"The model {nameof(StreamingResponseImageGenerationCallGeneratingUpdate)} does not support reading '{options.Format}' format."); } } - string IPersistableModel.GetFormatFromOptions(ModelReaderWriterOptions options) => "J"; + string IPersistableModel.GetFormatFromOptions(ModelReaderWriterOptions options) => "J"; } } diff --git a/src/Generated/Models/Responses/StreamingResponseImageGenerationCallGeneratingUpdate.cs b/src/Generated/Models/Responses/StreamingResponseImageGenerationCallGeneratingUpdate.cs new file mode 100644 index 000000000..a5b7beeae --- /dev/null +++ b/src/Generated/Models/Responses/StreamingResponseImageGenerationCallGeneratingUpdate.cs @@ -0,0 +1,30 @@ +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; + +namespace OpenAI.Responses +{ + [Experimental("OPENAI001")] + public partial class StreamingResponseImageGenerationCallGeneratingUpdate : StreamingResponseUpdate + { + internal StreamingResponseImageGenerationCallGeneratingUpdate(int sequenceNumber, int outputIndex, string itemId) : base(InternalResponseStreamEventType.ResponseImageGenerationCallGenerating, sequenceNumber) + { + OutputIndex = outputIndex; + ItemId = itemId; + } + + internal StreamingResponseImageGenerationCallGeneratingUpdate(InternalResponseStreamEventType kind, int sequenceNumber, IDictionary additionalBinaryDataProperties, int outputIndex, string itemId) : base(kind, sequenceNumber, additionalBinaryDataProperties) + { + OutputIndex = outputIndex; + ItemId = itemId; + } + + public int OutputIndex { get; } + + public string ItemId { get; } + } +} diff --git a/src/Generated/Models/Responses/InternalResponseImageGenCallCompletedEvent.Serialization.cs b/src/Generated/Models/Responses/StreamingResponseImageGenerationCallInProgressUpdate.Serialization.cs similarity index 56% rename from src/Generated/Models/Responses/InternalResponseImageGenCallCompletedEvent.Serialization.cs rename to src/Generated/Models/Responses/StreamingResponseImageGenerationCallInProgressUpdate.Serialization.cs index 41c050ff0..31171cc9b 100644 --- a/src/Generated/Models/Responses/InternalResponseImageGenCallCompletedEvent.Serialization.cs +++ b/src/Generated/Models/Responses/StreamingResponseImageGenerationCallInProgressUpdate.Serialization.cs @@ -10,13 +10,13 @@ namespace OpenAI.Responses { - internal partial class InternalResponseImageGenCallCompletedEvent : IJsonModel + public partial class StreamingResponseImageGenerationCallInProgressUpdate : IJsonModel { - internal InternalResponseImageGenCallCompletedEvent() : this(InternalResponseStreamEventType.ResponseImageGenerationCallCompleted, default, null, default, null) + internal StreamingResponseImageGenerationCallInProgressUpdate() : this(InternalResponseStreamEventType.ResponseImageGenerationCallInProgress, default, null, default, null) { } - void IJsonModel.Write(Utf8JsonWriter writer, ModelReaderWriterOptions options) + void IJsonModel.Write(Utf8JsonWriter writer, ModelReaderWriterOptions options) { writer.WriteStartObject(); JsonModelWriteCore(writer, options); @@ -25,10 +25,10 @@ void IJsonModel.Write(Utf8JsonWriter protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; if (format != "J") { - throw new FormatException($"The model {nameof(InternalResponseImageGenCallCompletedEvent)} does not support writing '{format}' format."); + throw new FormatException($"The model {nameof(StreamingResponseImageGenerationCallInProgressUpdate)} does not support writing '{format}' format."); } base.JsonModelWriteCore(writer, options); if (_additionalBinaryDataProperties?.ContainsKey("output_index") != true) @@ -43,20 +43,20 @@ protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWri } } - InternalResponseImageGenCallCompletedEvent IJsonModel.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options) => (InternalResponseImageGenCallCompletedEvent)JsonModelCreateCore(ref reader, options); + StreamingResponseImageGenerationCallInProgressUpdate IJsonModel.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options) => (StreamingResponseImageGenerationCallInProgressUpdate)JsonModelCreateCore(ref reader, options); protected override StreamingResponseUpdate JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; if (format != "J") { - throw new FormatException($"The model {nameof(InternalResponseImageGenCallCompletedEvent)} does not support reading '{format}' format."); + throw new FormatException($"The model {nameof(StreamingResponseImageGenerationCallInProgressUpdate)} does not support reading '{format}' format."); } using JsonDocument document = JsonDocument.ParseValue(ref reader); - return DeserializeInternalResponseImageGenCallCompletedEvent(document.RootElement, options); + return DeserializeStreamingResponseImageGenerationCallInProgressUpdate(document.RootElement, options); } - internal static InternalResponseImageGenCallCompletedEvent DeserializeInternalResponseImageGenCallCompletedEvent(JsonElement element, ModelReaderWriterOptions options) + internal static StreamingResponseImageGenerationCallInProgressUpdate DeserializeStreamingResponseImageGenerationCallInProgressUpdate(JsonElement element, ModelReaderWriterOptions options) { if (element.ValueKind == JsonValueKind.Null) { @@ -92,40 +92,40 @@ internal static InternalResponseImageGenCallCompletedEvent DeserializeInternalRe // Plugin customization: remove options.Format != "W" check additionalBinaryDataProperties.Add(prop.Name, BinaryData.FromString(prop.Value.GetRawText())); } - return new InternalResponseImageGenCallCompletedEvent(kind, sequenceNumber, additionalBinaryDataProperties, outputIndex, itemId); + return new StreamingResponseImageGenerationCallInProgressUpdate(kind, sequenceNumber, additionalBinaryDataProperties, outputIndex, itemId); } - BinaryData IPersistableModel.Write(ModelReaderWriterOptions options) => PersistableModelWriteCore(options); + BinaryData IPersistableModel.Write(ModelReaderWriterOptions options) => PersistableModelWriteCore(options); protected override BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + 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(InternalResponseImageGenCallCompletedEvent)} does not support writing '{options.Format}' format."); + throw new FormatException($"The model {nameof(StreamingResponseImageGenerationCallInProgressUpdate)} does not support writing '{options.Format}' format."); } } - InternalResponseImageGenCallCompletedEvent IPersistableModel.Create(BinaryData data, ModelReaderWriterOptions options) => (InternalResponseImageGenCallCompletedEvent)PersistableModelCreateCore(data, options); + StreamingResponseImageGenerationCallInProgressUpdate IPersistableModel.Create(BinaryData data, ModelReaderWriterOptions options) => (StreamingResponseImageGenerationCallInProgressUpdate)PersistableModelCreateCore(data, options); protected override StreamingResponseUpdate PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; switch (format) { case "J": using (JsonDocument document = JsonDocument.Parse(data)) { - return DeserializeInternalResponseImageGenCallCompletedEvent(document.RootElement, options); + return DeserializeStreamingResponseImageGenerationCallInProgressUpdate(document.RootElement, options); } default: - throw new FormatException($"The model {nameof(InternalResponseImageGenCallCompletedEvent)} does not support reading '{options.Format}' format."); + throw new FormatException($"The model {nameof(StreamingResponseImageGenerationCallInProgressUpdate)} does not support reading '{options.Format}' format."); } } - string IPersistableModel.GetFormatFromOptions(ModelReaderWriterOptions options) => "J"; + string IPersistableModel.GetFormatFromOptions(ModelReaderWriterOptions options) => "J"; } } diff --git a/src/Generated/Models/Responses/StreamingResponseImageGenerationCallInProgressUpdate.cs b/src/Generated/Models/Responses/StreamingResponseImageGenerationCallInProgressUpdate.cs new file mode 100644 index 000000000..87c140ae8 --- /dev/null +++ b/src/Generated/Models/Responses/StreamingResponseImageGenerationCallInProgressUpdate.cs @@ -0,0 +1,30 @@ +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; + +namespace OpenAI.Responses +{ + [Experimental("OPENAI001")] + public partial class StreamingResponseImageGenerationCallInProgressUpdate : StreamingResponseUpdate + { + internal StreamingResponseImageGenerationCallInProgressUpdate(int sequenceNumber, int outputIndex, string itemId) : base(InternalResponseStreamEventType.ResponseImageGenerationCallInProgress, sequenceNumber) + { + OutputIndex = outputIndex; + ItemId = itemId; + } + + internal StreamingResponseImageGenerationCallInProgressUpdate(InternalResponseStreamEventType kind, int sequenceNumber, IDictionary additionalBinaryDataProperties, int outputIndex, string itemId) : base(kind, sequenceNumber, additionalBinaryDataProperties) + { + OutputIndex = outputIndex; + ItemId = itemId; + } + + public int OutputIndex { get; } + + public string ItemId { get; } + } +} diff --git a/src/Generated/Models/Responses/InternalResponseImageGenCallPartialImageEvent.Serialization.cs b/src/Generated/Models/Responses/StreamingResponseImageGenerationCallPartialImageUpdate.Serialization.cs similarity index 57% rename from src/Generated/Models/Responses/InternalResponseImageGenCallPartialImageEvent.Serialization.cs rename to src/Generated/Models/Responses/StreamingResponseImageGenerationCallPartialImageUpdate.Serialization.cs index ca8ca2293..2103805b4 100644 --- a/src/Generated/Models/Responses/InternalResponseImageGenCallPartialImageEvent.Serialization.cs +++ b/src/Generated/Models/Responses/StreamingResponseImageGenerationCallPartialImageUpdate.Serialization.cs @@ -10,13 +10,13 @@ namespace OpenAI.Responses { - internal partial class InternalResponseImageGenCallPartialImageEvent : IJsonModel + public partial class StreamingResponseImageGenerationCallPartialImageUpdate : IJsonModel { - internal InternalResponseImageGenCallPartialImageEvent() : this(InternalResponseStreamEventType.ResponseImageGenerationCallPartialImage, default, null, default, null, default, null) + internal StreamingResponseImageGenerationCallPartialImageUpdate() : this(InternalResponseStreamEventType.ResponseImageGenerationCallPartialImage, default, null, default, null, default, null) { } - void IJsonModel.Write(Utf8JsonWriter writer, ModelReaderWriterOptions options) + void IJsonModel.Write(Utf8JsonWriter writer, ModelReaderWriterOptions options) { writer.WriteStartObject(); JsonModelWriteCore(writer, options); @@ -25,10 +25,10 @@ void IJsonModel.Write(Utf8JsonWri protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; if (format != "J") { - throw new FormatException($"The model {nameof(InternalResponseImageGenCallPartialImageEvent)} does not support writing '{format}' format."); + throw new FormatException($"The model {nameof(StreamingResponseImageGenerationCallPartialImageUpdate)} does not support writing '{format}' format."); } base.JsonModelWriteCore(writer, options); if (_additionalBinaryDataProperties?.ContainsKey("output_index") != true) @@ -46,27 +46,27 @@ protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWri writer.WritePropertyName("partial_image_index"u8); writer.WriteNumberValue(PartialImageIndex); } - if (_additionalBinaryDataProperties?.ContainsKey("partial_image_b64") != true) + if (_additionalBinaryDataProperties?.ContainsKey("PartialImageBytes") != true) { - writer.WritePropertyName("partial_image_b64"u8); - writer.WriteStringValue(PartialImageB64); + writer.WritePropertyName("PartialImageBytes"u8); + writer.WriteBase64StringValue(PartialImageBytes.ToArray(), "D"); } } - InternalResponseImageGenCallPartialImageEvent IJsonModel.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options) => (InternalResponseImageGenCallPartialImageEvent)JsonModelCreateCore(ref reader, options); + StreamingResponseImageGenerationCallPartialImageUpdate IJsonModel.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options) => (StreamingResponseImageGenerationCallPartialImageUpdate)JsonModelCreateCore(ref reader, options); protected override StreamingResponseUpdate JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; if (format != "J") { - throw new FormatException($"The model {nameof(InternalResponseImageGenCallPartialImageEvent)} does not support reading '{format}' format."); + throw new FormatException($"The model {nameof(StreamingResponseImageGenerationCallPartialImageUpdate)} does not support reading '{format}' format."); } using JsonDocument document = JsonDocument.ParseValue(ref reader); - return DeserializeInternalResponseImageGenCallPartialImageEvent(document.RootElement, options); + return DeserializeStreamingResponseImageGenerationCallPartialImageUpdate(document.RootElement, options); } - internal static InternalResponseImageGenCallPartialImageEvent DeserializeInternalResponseImageGenCallPartialImageEvent(JsonElement element, ModelReaderWriterOptions options) + internal static StreamingResponseImageGenerationCallPartialImageUpdate DeserializeStreamingResponseImageGenerationCallPartialImageUpdate(JsonElement element, ModelReaderWriterOptions options) { if (element.ValueKind == JsonValueKind.Null) { @@ -78,7 +78,7 @@ internal static InternalResponseImageGenCallPartialImageEvent DeserializeInterna int outputIndex = default; string itemId = default; int partialImageIndex = default; - string partialImageB64 = default; + BinaryData partialImageBytes = default; foreach (var prop in element.EnumerateObject()) { if (prop.NameEquals("type"u8)) @@ -106,55 +106,55 @@ internal static InternalResponseImageGenCallPartialImageEvent DeserializeInterna partialImageIndex = prop.Value.GetInt32(); continue; } - if (prop.NameEquals("partial_image_b64"u8)) + if (prop.NameEquals("PartialImageBytes"u8)) { - partialImageB64 = prop.Value.GetString(); + partialImageBytes = BinaryData.FromBytes(prop.Value.GetBytesFromBase64("D")); continue; } // Plugin customization: remove options.Format != "W" check additionalBinaryDataProperties.Add(prop.Name, BinaryData.FromString(prop.Value.GetRawText())); } - return new InternalResponseImageGenCallPartialImageEvent( + return new StreamingResponseImageGenerationCallPartialImageUpdate( kind, sequenceNumber, additionalBinaryDataProperties, outputIndex, itemId, partialImageIndex, - partialImageB64); + partialImageBytes); } - BinaryData IPersistableModel.Write(ModelReaderWriterOptions options) => PersistableModelWriteCore(options); + BinaryData IPersistableModel.Write(ModelReaderWriterOptions options) => PersistableModelWriteCore(options); protected override BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + 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(InternalResponseImageGenCallPartialImageEvent)} does not support writing '{options.Format}' format."); + throw new FormatException($"The model {nameof(StreamingResponseImageGenerationCallPartialImageUpdate)} does not support writing '{options.Format}' format."); } } - InternalResponseImageGenCallPartialImageEvent IPersistableModel.Create(BinaryData data, ModelReaderWriterOptions options) => (InternalResponseImageGenCallPartialImageEvent)PersistableModelCreateCore(data, options); + StreamingResponseImageGenerationCallPartialImageUpdate IPersistableModel.Create(BinaryData data, ModelReaderWriterOptions options) => (StreamingResponseImageGenerationCallPartialImageUpdate)PersistableModelCreateCore(data, options); protected override StreamingResponseUpdate PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options) { - string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; + string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; switch (format) { case "J": using (JsonDocument document = JsonDocument.Parse(data)) { - return DeserializeInternalResponseImageGenCallPartialImageEvent(document.RootElement, options); + return DeserializeStreamingResponseImageGenerationCallPartialImageUpdate(document.RootElement, options); } default: - throw new FormatException($"The model {nameof(InternalResponseImageGenCallPartialImageEvent)} does not support reading '{options.Format}' format."); + throw new FormatException($"The model {nameof(StreamingResponseImageGenerationCallPartialImageUpdate)} does not support reading '{options.Format}' format."); } } - string IPersistableModel.GetFormatFromOptions(ModelReaderWriterOptions options) => "J"; + string IPersistableModel.GetFormatFromOptions(ModelReaderWriterOptions options) => "J"; } } diff --git a/src/Generated/Models/Responses/StreamingResponseImageGenerationCallPartialImageUpdate.cs b/src/Generated/Models/Responses/StreamingResponseImageGenerationCallPartialImageUpdate.cs new file mode 100644 index 000000000..d98d0fb74 --- /dev/null +++ b/src/Generated/Models/Responses/StreamingResponseImageGenerationCallPartialImageUpdate.cs @@ -0,0 +1,38 @@ +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; + +namespace OpenAI.Responses +{ + [Experimental("OPENAI001")] + public partial class StreamingResponseImageGenerationCallPartialImageUpdate : StreamingResponseUpdate + { + internal StreamingResponseImageGenerationCallPartialImageUpdate(int sequenceNumber, int outputIndex, string itemId, int partialImageIndex, BinaryData partialImageBytes) : base(InternalResponseStreamEventType.ResponseImageGenerationCallPartialImage, sequenceNumber) + { + OutputIndex = outputIndex; + ItemId = itemId; + PartialImageIndex = partialImageIndex; + PartialImageBytes = partialImageBytes; + } + + internal StreamingResponseImageGenerationCallPartialImageUpdate(InternalResponseStreamEventType kind, int sequenceNumber, IDictionary additionalBinaryDataProperties, int outputIndex, string itemId, int partialImageIndex, BinaryData partialImageBytes) : base(kind, sequenceNumber, additionalBinaryDataProperties) + { + OutputIndex = outputIndex; + ItemId = itemId; + PartialImageIndex = partialImageIndex; + PartialImageBytes = partialImageBytes; + } + + public int OutputIndex { get; } + + public string ItemId { get; } + + public int PartialImageIndex { get; } + + public BinaryData PartialImageBytes { get; } + } +} diff --git a/src/Generated/Models/Responses/StreamingResponseUpdate.Serialization.cs b/src/Generated/Models/Responses/StreamingResponseUpdate.Serialization.cs index 08a184e7b..02f70b39a 100644 --- a/src/Generated/Models/Responses/StreamingResponseUpdate.Serialization.cs +++ b/src/Generated/Models/Responses/StreamingResponseUpdate.Serialization.cs @@ -138,13 +138,13 @@ internal static StreamingResponseUpdate DeserializeStreamingResponseUpdate(JsonE case "response.web_search_call.searching": return StreamingResponseWebSearchCallSearchingUpdate.DeserializeStreamingResponseWebSearchCallSearchingUpdate(element, options); case "response.image_generation_call.completed": - return InternalResponseImageGenCallCompletedEvent.DeserializeInternalResponseImageGenCallCompletedEvent(element, options); + return StreamingResponseImageGenerationCallCompletedUpdate.DeserializeStreamingResponseImageGenerationCallCompletedUpdate(element, options); case "response.image_generation_call.generating": - return InternalResponseImageGenCallGeneratingEvent.DeserializeInternalResponseImageGenCallGeneratingEvent(element, options); + return StreamingResponseImageGenerationCallGeneratingUpdate.DeserializeStreamingResponseImageGenerationCallGeneratingUpdate(element, options); case "response.image_generation_call.in_progress": - return InternalResponseImageGenCallInProgressEvent.DeserializeInternalResponseImageGenCallInProgressEvent(element, options); + return StreamingResponseImageGenerationCallInProgressUpdate.DeserializeStreamingResponseImageGenerationCallInProgressUpdate(element, options); case "response.image_generation_call.partial_image": - return InternalResponseImageGenCallPartialImageEvent.DeserializeInternalResponseImageGenCallPartialImageEvent(element, options); + return StreamingResponseImageGenerationCallPartialImageUpdate.DeserializeStreamingResponseImageGenerationCallPartialImageUpdate(element, options); case "response.mcp_call_arguments.delta": return StreamingResponseMcpCallArgumentsDeltaUpdate.DeserializeStreamingResponseMcpCallArgumentsDeltaUpdate(element, options); case "response.mcp_call_arguments.done": diff --git a/src/Generated/OpenAIModelFactory.cs b/src/Generated/OpenAIModelFactory.cs index 97bd326db..cf0e1d9ea 100644 --- a/src/Generated/OpenAIModelFactory.cs +++ b/src/Generated/OpenAIModelFactory.cs @@ -561,6 +561,11 @@ public static FileSearchToolRankingOptions FileSearchToolRankingOptions(FileSear return new FileSearchToolRankingOptions(ranker, scoreThreshold, additionalBinaryDataProperties: null); } + public static ImageGenerationToolInputImageMask ImageGenerationToolInputImageMask(string imageUrl = default, string fileId = default) + { + return new ImageGenerationToolInputImageMask(imageUrl, fileId, additionalBinaryDataProperties: null); + } + public static McpToolFilter McpToolFilter(IEnumerable toolNames = default, bool? isReadOnly = default) { toolNames ??= new ChangeTrackingList(); diff --git a/tests/Responses/ResponsesTests.cs b/tests/Responses/ResponsesTests.cs index 397680cfb..19b949af5 100644 --- a/tests/Responses/ResponsesTests.cs +++ b/tests/Responses/ResponsesTests.cs @@ -230,6 +230,236 @@ in client.CreateResponseStreamingAsync(message, responseOptions)) Assert.That(searchItemId, Is.Not.Null.And.Not.Empty); } + [Test] + public async Task ResponseWithImageGenTool() + { + OpenAIResponseClient client = GetTestClient(); + + ResponseCreationOptions options = new() + { + Tools = + { + ResponseTool.CreateImageGenerationTool( + model: "gpt-image-1", + quality: ImageGenerationToolQuality.High, + size: ImageGenerationToolSize.W1024xH1024, + outputFileFormat: ImageGenerationToolOutputFileFormat.Png, + moderationLevel: ImageGenerationToolModerationLevel.Auto, + background: ImageGenerationToolBackground.Transparent, + inputFidelityLevel: ImageGenerationToolInputFidelityLevel.High) + } + }; + + OpenAIResponse response = await client.CreateResponseAsync( + "Generate an image of gray tabby cat hugging an otter with an orange scarf", + options); + + 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(response.Tools.FirstOrDefault(), Is.TypeOf()); + + ImageGenerationCallResponseItem imageGenResponse = (ImageGenerationCallResponseItem)response.OutputItems[0]; + Assert.AreEqual(imageGenResponse.Status, ImageGenerationCallStatus.Completed); + Assert.That(imageGenResponse.GeneratedImageBytes.ToArray(), Is.Not.Null.And.Not.Empty); + } + + [Test] + public async Task ImageGenToolStreaming() + { + OpenAIResponseClient client = GetTestClient(); + + const string message = "Draw a gorgeous image of a river made of white owl feathers, snaking its way through a serene winter landscape"; + + ResponseCreationOptions responseOptions = new() + { + Tools = + { + ResponseTool.CreateImageGenerationTool( + model: "gpt-image-1", + quality: ImageGenerationToolQuality.High, + size: ImageGenerationToolSize.W1024xH1024, + outputFileFormat: ImageGenerationToolOutputFileFormat.Png, + moderationLevel: ImageGenerationToolModerationLevel.Auto, + background: ImageGenerationToolBackground.Transparent) + } + }; + + string imageGenItemId = null; + int partialCount = 0; + int inProgressCount = 0; + int generateCount = 0; + bool gotCompletedImageGenItem = false; + + await foreach (StreamingResponseUpdate update + in client.CreateResponseStreamingAsync(message, responseOptions)) + { + if (update is StreamingResponseImageGenerationCallPartialImageUpdate imageGenCallInPartialUpdate) + { + Assert.That(imageGenCallInPartialUpdate.ItemId, Is.Not.Null.And.Not.Empty); + imageGenItemId ??= imageGenCallInPartialUpdate.ItemId; + Assert.That(imageGenItemId, Is.EqualTo(imageGenCallInPartialUpdate.ItemId)); + Assert.That(imageGenCallInPartialUpdate.OutputIndex, Is.EqualTo(0)); + partialCount++; + } + else if (update is StreamingResponseImageGenerationCallInProgressUpdate imageGenCallInProgressUpdate) + { + Assert.That(imageGenCallInProgressUpdate.ItemId, Is.Not.Null.And.Not.Empty); + imageGenItemId ??= imageGenCallInProgressUpdate.ItemId; + Assert.That(imageGenItemId, Is.EqualTo(imageGenCallInProgressUpdate.ItemId)); + Assert.That(imageGenCallInProgressUpdate.OutputIndex, Is.EqualTo(0)); + inProgressCount++; + } + else if (update is StreamingResponseImageGenerationCallGeneratingUpdate imageGenCallGeneratingUpdate) + { + Assert.That(imageGenCallGeneratingUpdate.ItemId, Is.Not.Null.And.Not.Empty); + imageGenItemId ??= imageGenCallGeneratingUpdate.ItemId; + Assert.That(imageGenItemId, Is.EqualTo(imageGenCallGeneratingUpdate.ItemId)); + Assert.That(imageGenCallGeneratingUpdate.OutputIndex, Is.EqualTo(0)); + generateCount++; + } + else if (update is StreamingResponseImageGenerationCallCompletedUpdate outputItemCompleteUpdate) + { + Assert.That(outputItemCompleteUpdate.ItemId, Is.Not.Null.And.Not.Empty); + imageGenItemId ??= outputItemCompleteUpdate.ItemId; + Assert.That(imageGenItemId, Is.EqualTo(outputItemCompleteUpdate.ItemId)); + Assert.That(outputItemCompleteUpdate.OutputIndex, Is.EqualTo(0)); + gotCompletedImageGenItem = true; + } + } + + Assert.That(gotCompletedImageGenItem, Is.True); + Assert.That(partialCount, Is.EqualTo(1)); + Assert.That(inProgressCount, Is.EqualTo(1)); + Assert.That(generateCount, Is.EqualTo(1)); + Assert.That(imageGenItemId, Is.Not.Null.And.Not.Empty); + } + + [Test] + public async Task ImageGenToolInputMaskWithImageBytes() + { + OpenAIResponseClient client = GetTestClient(); + + string imageFilename = "images_dog_and_cat.png"; + string imagePath = Path.Combine("Assets", imageFilename); + ResponseCreationOptions options = new() + { + Tools = + { + ResponseTool.CreateImageGenerationTool( + model: "gpt-image-1", + outputFileFormat: ImageGenerationToolOutputFileFormat.Png, + inputImageMask: new(BinaryData.FromBytes(File.ReadAllBytes(imagePath)), "image/png")) + } + }; + + OpenAIResponse response = await client.CreateResponseAsync( + "Generate an image of gray tabby cat hugging an otter with an orange scarf", + options); + + 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(response.Tools.FirstOrDefault(), Is.TypeOf()); + + ImageGenerationCallResponseItem imageGenResponse = (ImageGenerationCallResponseItem)response.OutputItems[0]; + Assert.AreEqual(imageGenResponse.Status, ImageGenerationCallStatus.Completed); + Assert.That(imageGenResponse.GeneratedImageBytes.ToArray(), Is.Not.Null.And.Not.Empty); + } + + [Test] + public async Task ImageGenToolInputMaskWithImageUri() + { + OpenAIResponseClient client = GetTestClient(); + + ResponseCreationOptions options = new() + { + Tools = + { + ResponseTool.CreateImageGenerationTool( + model: "gpt-image-1", + outputFileFormat: ImageGenerationToolOutputFileFormat.Png, + inputImageMask: new(imageUri: new Uri("https://upload.wikimedia.org/wikipedia/commons/c/c3/Openai.png"))) + } + }; + + OpenAIResponse response = await client.CreateResponseAsync( + "Generate an image of gray tabby cat hugging an otter with an orange scarf", + options); + + 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(response.Tools.FirstOrDefault(), Is.TypeOf()); + + ImageGenerationCallResponseItem imageGenResponse = (ImageGenerationCallResponseItem)response.OutputItems[0]; + Assert.AreEqual(imageGenResponse.Status, ImageGenerationCallStatus.Completed); + Assert.That(imageGenResponse.GeneratedImageBytes.ToArray(), Is.Not.Null.And.Not.Empty); + } + + [Test] + public async Task ImageGenToolInputMaskWithFileId() + { + OpenAIResponseClient client = GetTestClient(); + + OpenAIFileClient fileClient = GetTestClient(TestScenario.Files); + + string imageFilename = "images_dog_and_cat.png"; + string imagePath = Path.Combine("Assets", imageFilename); + using Stream image = File.OpenRead(imagePath); + BinaryData imageData = BinaryData.FromStream(image); + + OpenAIFile file = await fileClient.UploadFileAsync( + imageData, + imageFilename, + FileUploadPurpose.UserData); + Validate(file); + + ResponseCreationOptions options = new() + { + Tools = + { + ResponseTool.CreateImageGenerationTool( + model: "gpt-image-1", + outputFileFormat: ImageGenerationToolOutputFileFormat.Png, + inputImageMask: new(fileId: file.Id)) + } + }; + + OpenAIResponse response = await client.CreateResponseAsync( + "Generate an image of gray tabby cat hugging an otter with an orange scarf", + options); + + 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(response.Tools.FirstOrDefault(), Is.TypeOf()); + + ImageGenerationCallResponseItem imageGenResponse = (ImageGenerationCallResponseItem)response.OutputItems[0]; + Assert.AreEqual(imageGenResponse.Status, ImageGenerationCallStatus.Completed); + Assert.That(imageGenResponse.GeneratedImageBytes.ToArray(), Is.Not.Null.And.Not.Empty); + } + [Test] public async Task StreamingResponses() { diff --git a/tspCodeModel.json b/tspCodeModel.json index f4d734fca..962aa0e34 100644 --- a/tspCodeModel.json +++ b/tspCodeModel.json @@ -5661,8 +5661,8 @@ { "$id": "467", "kind": "enum", - "name": "MCPToolConnectorId", - "crossLanguageDefinitionId": "OpenAI.MCPTool.connector_id.anonymous", + "name": "ImageGenToolInputFidelity", + "crossLanguageDefinitionId": "OpenAI.ImageGenTool.input_fidelity.anonymous", "valueType": { "$id": "468", "kind": "string", @@ -5674,8 +5674,8 @@ { "$id": "469", "kind": "enumvalue", - "name": "connector_dropbox", - "value": "connector_dropbox", + "name": "low", + "value": "low", "valueType": { "$ref": "468" }, @@ -5687,8 +5687,8 @@ { "$id": "470", "kind": "enumvalue", - "name": "connector_gmail", - "value": "connector_gmail", + "name": "high", + "value": "high", "valueType": { "$ref": "468" }, @@ -5696,82 +5696,128 @@ "$ref": "467" }, "decorators": [] + } + ], + "namespace": "OpenAI", + "isFixed": true, + "isFlags": false, + "usage": "Input,Output,Json", + "decorators": [] + }, + { + "$id": "471", + "kind": "enum", + "name": "MCPToolConnectorId", + "crossLanguageDefinitionId": "OpenAI.MCPTool.connector_id.anonymous", + "valueType": { + "$id": "472", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "values": [ + { + "$id": "473", + "kind": "enumvalue", + "name": "connector_dropbox", + "value": "connector_dropbox", + "valueType": { + "$ref": "472" + }, + "enumType": { + "$ref": "471" + }, + "decorators": [] }, { - "$id": "471", + "$id": "474", + "kind": "enumvalue", + "name": "connector_gmail", + "value": "connector_gmail", + "valueType": { + "$ref": "472" + }, + "enumType": { + "$ref": "471" + }, + "decorators": [] + }, + { + "$id": "475", "kind": "enumvalue", "name": "connector_googlecalendar", "value": "connector_googlecalendar", "valueType": { - "$ref": "468" + "$ref": "472" }, "enumType": { - "$ref": "467" + "$ref": "471" }, "decorators": [] }, { - "$id": "472", + "$id": "476", "kind": "enumvalue", "name": "connector_googledrive", "value": "connector_googledrive", "valueType": { - "$ref": "468" + "$ref": "472" }, "enumType": { - "$ref": "467" + "$ref": "471" }, "decorators": [] }, { - "$id": "473", + "$id": "477", "kind": "enumvalue", "name": "connector_microsoftteams", "value": "connector_microsoftteams", "valueType": { - "$ref": "468" + "$ref": "472" }, "enumType": { - "$ref": "467" + "$ref": "471" }, "decorators": [] }, { - "$id": "474", + "$id": "478", "kind": "enumvalue", "name": "connector_outlookcalendar", "value": "connector_outlookcalendar", "valueType": { - "$ref": "468" + "$ref": "472" }, "enumType": { - "$ref": "467" + "$ref": "471" }, "decorators": [] }, { - "$id": "475", + "$id": "479", "kind": "enumvalue", "name": "connector_outlookemail", "value": "connector_outlookemail", "valueType": { - "$ref": "468" + "$ref": "472" }, "enumType": { - "$ref": "467" + "$ref": "471" }, "decorators": [] }, { - "$id": "476", + "$id": "480", "kind": "enumvalue", "name": "connector_sharepoint", "value": "connector_sharepoint", "valueType": { - "$ref": "468" + "$ref": "472" }, "enumType": { - "$ref": "467" + "$ref": "471" }, "decorators": [] } @@ -5783,12 +5829,12 @@ "decorators": [] }, { - "$id": "477", + "$id": "481", "kind": "enum", "name": "DotNetResponseServiceTier", "crossLanguageDefinitionId": "OpenAI.DotNetResponseServiceTier", "valueType": { - "$id": "478", + "$id": "482", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5796,54 +5842,54 @@ }, "values": [ { - "$id": "479", + "$id": "483", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "478" + "$ref": "482" }, "enumType": { - "$ref": "477" + "$ref": "481" }, "decorators": [] }, { - "$id": "480", + "$id": "484", "kind": "enumvalue", "name": "default", "value": "default", "valueType": { - "$ref": "478" + "$ref": "482" }, "enumType": { - "$ref": "477" + "$ref": "481" }, "decorators": [] }, { - "$id": "481", + "$id": "485", "kind": "enumvalue", "name": "flex", "value": "flex", "valueType": { - "$ref": "478" + "$ref": "482" }, "enumType": { - "$ref": "477" + "$ref": "481" }, "decorators": [] }, { - "$id": "482", + "$id": "486", "kind": "enumvalue", "name": "scale", "value": "scale", "valueType": { - "$ref": "478" + "$ref": "482" }, "enumType": { - "$ref": "477" + "$ref": "481" }, "decorators": [] } @@ -5855,12 +5901,12 @@ "decorators": [] }, { - "$id": "483", + "$id": "487", "kind": "enum", "name": "ModelIdsResponses", "crossLanguageDefinitionId": "OpenAI.ModelIdsResponses", "valueType": { - "$id": "484", + "$id": "488", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5868,795 +5914,795 @@ }, "values": [ { - "$id": "485", + "$id": "489", "kind": "enumvalue", "name": "gpt-4.1", "value": "gpt-4.1", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "486", + "$id": "490", "kind": "enumvalue", "name": "gpt-4.1-mini", "value": "gpt-4.1-mini", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "487", + "$id": "491", "kind": "enumvalue", "name": "gpt-4.1-nano", "value": "gpt-4.1-nano", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "488", + "$id": "492", "kind": "enumvalue", "name": "gpt-4.1-2025-04-14", "value": "gpt-4.1-2025-04-14", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "489", + "$id": "493", "kind": "enumvalue", "name": "gpt-4.1-mini-2025-04-14", "value": "gpt-4.1-mini-2025-04-14", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "490", + "$id": "494", "kind": "enumvalue", "name": "gpt-4.1-nano-2025-04-14", "value": "gpt-4.1-nano-2025-04-14", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "491", + "$id": "495", "kind": "enumvalue", "name": "o4-mini", "value": "o4-mini", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "492", + "$id": "496", "kind": "enumvalue", "name": "o4-mini-2025-04-16", "value": "o4-mini-2025-04-16", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "493", + "$id": "497", "kind": "enumvalue", "name": "o3", "value": "o3", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "494", + "$id": "498", "kind": "enumvalue", "name": "o3-2025-04-16", "value": "o3-2025-04-16", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "495", + "$id": "499", "kind": "enumvalue", "name": "o3-mini", "value": "o3-mini", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "496", + "$id": "500", "kind": "enumvalue", "name": "o3-mini-2025-01-31", "value": "o3-mini-2025-01-31", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "497", + "$id": "501", "kind": "enumvalue", "name": "o1", "value": "o1", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "498", + "$id": "502", "kind": "enumvalue", "name": "o1-2024-12-17", "value": "o1-2024-12-17", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "499", + "$id": "503", "kind": "enumvalue", "name": "o1-preview", "value": "o1-preview", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "500", + "$id": "504", "kind": "enumvalue", "name": "o1-preview-2024-09-12", "value": "o1-preview-2024-09-12", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "501", + "$id": "505", "kind": "enumvalue", "name": "o1-mini", "value": "o1-mini", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "502", + "$id": "506", "kind": "enumvalue", "name": "o1-mini-2024-09-12", "value": "o1-mini-2024-09-12", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "503", + "$id": "507", "kind": "enumvalue", "name": "gpt-4o", "value": "gpt-4o", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "504", + "$id": "508", "kind": "enumvalue", "name": "gpt-4o-2024-11-20", "value": "gpt-4o-2024-11-20", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "505", + "$id": "509", "kind": "enumvalue", "name": "gpt-4o-2024-08-06", "value": "gpt-4o-2024-08-06", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "506", + "$id": "510", "kind": "enumvalue", "name": "gpt-4o-2024-05-13", "value": "gpt-4o-2024-05-13", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "507", + "$id": "511", "kind": "enumvalue", "name": "gpt-4o-audio-preview", "value": "gpt-4o-audio-preview", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "508", + "$id": "512", "kind": "enumvalue", "name": "gpt-4o-audio-preview-2024-10-01", "value": "gpt-4o-audio-preview-2024-10-01", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "509", + "$id": "513", "kind": "enumvalue", "name": "gpt-4o-audio-preview-2024-12-17", "value": "gpt-4o-audio-preview-2024-12-17", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "510", + "$id": "514", "kind": "enumvalue", "name": "gpt-4o-audio-preview-2025-06-03", "value": "gpt-4o-audio-preview-2025-06-03", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "511", + "$id": "515", "kind": "enumvalue", "name": "gpt-4o-mini-audio-preview", "value": "gpt-4o-mini-audio-preview", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "512", + "$id": "516", "kind": "enumvalue", "name": "gpt-4o-mini-audio-preview-2024-12-17", "value": "gpt-4o-mini-audio-preview-2024-12-17", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "513", + "$id": "517", "kind": "enumvalue", "name": "gpt-4o-search-preview", "value": "gpt-4o-search-preview", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "514", + "$id": "518", "kind": "enumvalue", "name": "gpt-4o-mini-search-preview", "value": "gpt-4o-mini-search-preview", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "515", + "$id": "519", "kind": "enumvalue", "name": "gpt-4o-search-preview-2025-03-11", "value": "gpt-4o-search-preview-2025-03-11", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "516", + "$id": "520", "kind": "enumvalue", "name": "gpt-4o-mini-search-preview-2025-03-11", "value": "gpt-4o-mini-search-preview-2025-03-11", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "517", + "$id": "521", "kind": "enumvalue", "name": "chatgpt-4o-latest", "value": "chatgpt-4o-latest", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "518", + "$id": "522", "kind": "enumvalue", "name": "codex-mini-latest", "value": "codex-mini-latest", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "519", + "$id": "523", "kind": "enumvalue", "name": "gpt-4o-mini", "value": "gpt-4o-mini", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "520", + "$id": "524", "kind": "enumvalue", "name": "gpt-4o-mini-2024-07-18", "value": "gpt-4o-mini-2024-07-18", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "521", + "$id": "525", "kind": "enumvalue", "name": "gpt-4-turbo", "value": "gpt-4-turbo", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "522", + "$id": "526", "kind": "enumvalue", "name": "gpt-4-turbo-2024-04-09", "value": "gpt-4-turbo-2024-04-09", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "523", + "$id": "527", "kind": "enumvalue", "name": "gpt-4-0125-preview", "value": "gpt-4-0125-preview", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "524", + "$id": "528", "kind": "enumvalue", "name": "gpt-4-turbo-preview", "value": "gpt-4-turbo-preview", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "525", + "$id": "529", "kind": "enumvalue", "name": "gpt-4-1106-preview", "value": "gpt-4-1106-preview", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "526", + "$id": "530", "kind": "enumvalue", "name": "gpt-4-vision-preview", "value": "gpt-4-vision-preview", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "527", + "$id": "531", "kind": "enumvalue", "name": "gpt-4", "value": "gpt-4", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "528", + "$id": "532", "kind": "enumvalue", "name": "gpt-4-0314", "value": "gpt-4-0314", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "529", + "$id": "533", "kind": "enumvalue", "name": "gpt-4-0613", "value": "gpt-4-0613", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "530", + "$id": "534", "kind": "enumvalue", "name": "gpt-4-32k", "value": "gpt-4-32k", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "531", + "$id": "535", "kind": "enumvalue", "name": "gpt-4-32k-0314", "value": "gpt-4-32k-0314", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "532", + "$id": "536", "kind": "enumvalue", "name": "gpt-4-32k-0613", "value": "gpt-4-32k-0613", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "533", + "$id": "537", "kind": "enumvalue", "name": "gpt-3.5-turbo", "value": "gpt-3.5-turbo", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "534", + "$id": "538", "kind": "enumvalue", "name": "gpt-3.5-turbo-16k", "value": "gpt-3.5-turbo-16k", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "535", + "$id": "539", "kind": "enumvalue", "name": "gpt-3.5-turbo-0301", "value": "gpt-3.5-turbo-0301", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "536", + "$id": "540", "kind": "enumvalue", "name": "gpt-3.5-turbo-0613", "value": "gpt-3.5-turbo-0613", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "537", + "$id": "541", "kind": "enumvalue", "name": "gpt-3.5-turbo-1106", "value": "gpt-3.5-turbo-1106", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "538", + "$id": "542", "kind": "enumvalue", "name": "gpt-3.5-turbo-0125", "value": "gpt-3.5-turbo-0125", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "539", + "$id": "543", "kind": "enumvalue", "name": "gpt-3.5-turbo-16k-0613", "value": "gpt-3.5-turbo-16k-0613", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "540", + "$id": "544", "kind": "enumvalue", "name": "o1-pro", "value": "o1-pro", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "541", + "$id": "545", "kind": "enumvalue", "name": "o1-pro-2025-03-19", "value": "o1-pro-2025-03-19", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "542", + "$id": "546", "kind": "enumvalue", "name": "o3-pro", "value": "o3-pro", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "543", + "$id": "547", "kind": "enumvalue", "name": "o3-pro-2025-06-10", "value": "o3-pro-2025-06-10", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "544", + "$id": "548", "kind": "enumvalue", "name": "computer-use-preview", "value": "computer-use-preview", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] }, { - "$id": "545", + "$id": "549", "kind": "enumvalue", "name": "computer-use-preview-2025-03-11", "value": "computer-use-preview-2025-03-11", "valueType": { - "$ref": "484" + "$ref": "488" }, "enumType": { - "$ref": "483" + "$ref": "487" }, "decorators": [] } @@ -6668,12 +6714,12 @@ "decorators": [] }, { - "$id": "546", + "$id": "550", "kind": "enum", "name": "ReasoningSummary", "crossLanguageDefinitionId": "OpenAI.Reasoning.summary.anonymous", "valueType": { - "$id": "547", + "$id": "551", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -6681,41 +6727,41 @@ }, "values": [ { - "$id": "548", + "$id": "552", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "547" + "$ref": "551" }, "enumType": { - "$ref": "546" + "$ref": "550" }, "decorators": [] }, { - "$id": "549", + "$id": "553", "kind": "enumvalue", "name": "concise", "value": "concise", "valueType": { - "$ref": "547" + "$ref": "551" }, "enumType": { - "$ref": "546" + "$ref": "550" }, "decorators": [] }, { - "$id": "550", + "$id": "554", "kind": "enumvalue", "name": "detailed", "value": "detailed", "valueType": { - "$ref": "547" + "$ref": "551" }, "enumType": { - "$ref": "546" + "$ref": "550" }, "decorators": [] } @@ -6727,12 +6773,12 @@ "decorators": [] }, { - "$id": "551", + "$id": "555", "kind": "enum", "name": "ReasoningGenerateSummary", "crossLanguageDefinitionId": "OpenAI.Reasoning.generate_summary.anonymous", "valueType": { - "$id": "552", + "$id": "556", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -6740,41 +6786,41 @@ }, "values": [ { - "$id": "553", + "$id": "557", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "552" + "$ref": "556" }, "enumType": { - "$ref": "551" + "$ref": "555" }, "decorators": [] }, { - "$id": "554", + "$id": "558", "kind": "enumvalue", "name": "concise", "value": "concise", "valueType": { - "$ref": "552" + "$ref": "556" }, "enumType": { - "$ref": "551" + "$ref": "555" }, "decorators": [] }, { - "$id": "555", + "$id": "559", "kind": "enumvalue", "name": "detailed", "value": "detailed", "valueType": { - "$ref": "552" + "$ref": "556" }, "enumType": { - "$ref": "551" + "$ref": "555" }, "decorators": [] } @@ -6786,12 +6832,12 @@ "decorators": [] }, { - "$id": "556", + "$id": "560", "kind": "enum", "name": "ToolChoiceOptions", "crossLanguageDefinitionId": "OpenAI.ToolChoiceOptions", "valueType": { - "$id": "557", + "$id": "561", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -6799,41 +6845,41 @@ }, "values": [ { - "$id": "558", + "$id": "562", "kind": "enumvalue", "name": "none", "value": "none", "valueType": { - "$ref": "557" + "$ref": "561" }, "enumType": { - "$ref": "556" + "$ref": "560" }, "decorators": [] }, { - "$id": "559", + "$id": "563", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "557" + "$ref": "561" }, "enumType": { - "$ref": "556" + "$ref": "560" }, "decorators": [] }, { - "$id": "560", + "$id": "564", "kind": "enumvalue", "name": "required", "value": "required", "valueType": { - "$ref": "557" + "$ref": "561" }, "enumType": { - "$ref": "556" + "$ref": "560" }, "decorators": [] } @@ -6846,12 +6892,12 @@ "decorators": [] }, { - "$id": "561", + "$id": "565", "kind": "enum", "name": "ToolChoiceObjectType", "crossLanguageDefinitionId": "OpenAI.ToolChoiceObjectType", "valueType": { - "$id": "562", + "$id": "566", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -6859,93 +6905,93 @@ }, "values": [ { - "$id": "563", + "$id": "567", "kind": "enumvalue", "name": "file_search", "value": "file_search", "valueType": { - "$ref": "562" + "$ref": "566" }, "enumType": { - "$ref": "561" + "$ref": "565" }, "decorators": [] }, { - "$id": "564", + "$id": "568", "kind": "enumvalue", "name": "function", "value": "function", "valueType": { - "$ref": "562" + "$ref": "566" }, "enumType": { - "$ref": "561" + "$ref": "565" }, "decorators": [] }, { - "$id": "565", + "$id": "569", "kind": "enumvalue", "name": "computer", "value": "computer_use_preview", "valueType": { - "$ref": "562" + "$ref": "566" }, "enumType": { - "$ref": "561" + "$ref": "565" }, "decorators": [] }, { - "$id": "566", + "$id": "570", "kind": "enumvalue", "name": "web_search", "value": "web_search_preview", "valueType": { - "$ref": "562" + "$ref": "566" }, "enumType": { - "$ref": "561" + "$ref": "565" }, "decorators": [] }, { - "$id": "567", + "$id": "571", "kind": "enumvalue", "name": "image_generation", "value": "image_generation", "valueType": { - "$ref": "562" + "$ref": "566" }, "enumType": { - "$ref": "561" + "$ref": "565" }, "decorators": [] }, { - "$id": "568", + "$id": "572", "kind": "enumvalue", "name": "code_interpreter", "value": "code_interpreter", "valueType": { - "$ref": "562" + "$ref": "566" }, "enumType": { - "$ref": "561" + "$ref": "565" }, "decorators": [] }, { - "$id": "569", + "$id": "573", "kind": "enumvalue", "name": "mcp", "value": "mcp", "valueType": { - "$ref": "562" + "$ref": "566" }, "enumType": { - "$ref": "561" + "$ref": "565" }, "decorators": [] } @@ -6958,12 +7004,12 @@ "decorators": [] }, { - "$id": "570", + "$id": "574", "kind": "enum", "name": "CreateResponseTruncation", "crossLanguageDefinitionId": "OpenAI.CreateResponse.truncation.anonymous", "valueType": { - "$id": "571", + "$id": "575", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -6971,28 +7017,28 @@ }, "values": [ { - "$id": "572", + "$id": "576", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "571" + "$ref": "575" }, "enumType": { - "$ref": "570" + "$ref": "574" }, "decorators": [] }, { - "$id": "573", + "$id": "577", "kind": "enumvalue", "name": "disabled", "value": "disabled", "valueType": { - "$ref": "571" + "$ref": "575" }, "enumType": { - "$ref": "570" + "$ref": "574" }, "decorators": [] } @@ -7004,12 +7050,12 @@ "decorators": [] }, { - "$id": "574", + "$id": "578", "kind": "enum", "name": "ItemContentType", "crossLanguageDefinitionId": "OpenAI.ItemContentType", "valueType": { - "$id": "575", + "$id": "579", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7017,93 +7063,93 @@ }, "values": [ { - "$id": "576", + "$id": "580", "kind": "enumvalue", "name": "input_text", "value": "input_text", "valueType": { - "$ref": "575" + "$ref": "579" }, "enumType": { - "$ref": "574" + "$ref": "578" }, "decorators": [] }, { - "$id": "577", + "$id": "581", "kind": "enumvalue", "name": "input_audio", "value": "input_audio", "valueType": { - "$ref": "575" + "$ref": "579" }, "enumType": { - "$ref": "574" + "$ref": "578" }, "decorators": [] }, { - "$id": "578", + "$id": "582", "kind": "enumvalue", "name": "input_image", "value": "input_image", "valueType": { - "$ref": "575" + "$ref": "579" }, "enumType": { - "$ref": "574" + "$ref": "578" }, "decorators": [] }, { - "$id": "579", + "$id": "583", "kind": "enumvalue", "name": "input_file", "value": "input_file", "valueType": { - "$ref": "575" + "$ref": "579" }, "enumType": { - "$ref": "574" + "$ref": "578" }, "decorators": [] }, { - "$id": "580", + "$id": "584", "kind": "enumvalue", "name": "output_text", "value": "output_text", "valueType": { - "$ref": "575" + "$ref": "579" }, "enumType": { - "$ref": "574" + "$ref": "578" }, "decorators": [] }, { - "$id": "581", + "$id": "585", "kind": "enumvalue", "name": "output_audio", "value": "output_audio", "valueType": { - "$ref": "575" + "$ref": "579" }, "enumType": { - "$ref": "574" + "$ref": "578" }, "decorators": [] }, { - "$id": "582", + "$id": "586", "kind": "enumvalue", "name": "refusal", "value": "refusal", "valueType": { - "$ref": "575" + "$ref": "579" }, "enumType": { - "$ref": "574" + "$ref": "578" }, "decorators": [] } @@ -7116,12 +7162,12 @@ "decorators": [] }, { - "$id": "583", + "$id": "587", "kind": "enum", "name": "ItemContentInputAudioFormat", "crossLanguageDefinitionId": "OpenAI.ItemContentInputAudio.format.anonymous", "valueType": { - "$id": "584", + "$id": "588", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7129,28 +7175,28 @@ }, "values": [ { - "$id": "585", + "$id": "589", "kind": "enumvalue", "name": "mp3", "value": "mp3", "valueType": { - "$ref": "584" + "$ref": "588" }, "enumType": { - "$ref": "583" + "$ref": "587" }, "decorators": [] }, { - "$id": "586", + "$id": "590", "kind": "enumvalue", "name": "wav", "value": "wav", "valueType": { - "$ref": "584" + "$ref": "588" }, "enumType": { - "$ref": "583" + "$ref": "587" }, "decorators": [] } @@ -7162,12 +7208,12 @@ "decorators": [] }, { - "$id": "587", + "$id": "591", "kind": "enum", "name": "ItemContentInputImageDetail", "crossLanguageDefinitionId": "OpenAI.ItemContentInputImage.detail.anonymous", "valueType": { - "$id": "588", + "$id": "592", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7175,41 +7221,41 @@ }, "values": [ { - "$id": "589", + "$id": "593", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "588" + "$ref": "592" }, "enumType": { - "$ref": "587" + "$ref": "591" }, "decorators": [] }, { - "$id": "590", + "$id": "594", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "588" + "$ref": "592" }, "enumType": { - "$ref": "587" + "$ref": "591" }, "decorators": [] }, { - "$id": "591", + "$id": "595", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "588" + "$ref": "592" }, "enumType": { - "$ref": "587" + "$ref": "591" }, "decorators": [] } @@ -7221,12 +7267,12 @@ "decorators": [] }, { - "$id": "592", + "$id": "596", "kind": "enum", "name": "AnnotationType", "crossLanguageDefinitionId": "OpenAI.AnnotationType", "valueType": { - "$id": "593", + "$id": "597", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7234,54 +7280,54 @@ }, "values": [ { - "$id": "594", + "$id": "598", "kind": "enumvalue", "name": "file_citation", "value": "file_citation", "valueType": { - "$ref": "593" + "$ref": "597" }, "enumType": { - "$ref": "592" + "$ref": "596" }, "decorators": [] }, { - "$id": "595", + "$id": "599", "kind": "enumvalue", "name": "url_citation", "value": "url_citation", "valueType": { - "$ref": "593" + "$ref": "597" }, "enumType": { - "$ref": "592" + "$ref": "596" }, "decorators": [] }, { - "$id": "596", + "$id": "600", "kind": "enumvalue", "name": "file_path", "value": "file_path", "valueType": { - "$ref": "593" + "$ref": "597" }, "enumType": { - "$ref": "592" + "$ref": "596" }, "decorators": [] }, { - "$id": "597", + "$id": "601", "kind": "enumvalue", "name": "container_file_citation", "value": "container_file_citation", "valueType": { - "$ref": "593" + "$ref": "597" }, "enumType": { - "$ref": "592" + "$ref": "596" }, "decorators": [] } @@ -7293,12 +7339,12 @@ "decorators": [] }, { - "$id": "598", + "$id": "602", "kind": "enum", "name": "ItemType", "crossLanguageDefinitionId": "OpenAI.ItemType", "valueType": { - "$id": "599", + "$id": "603", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7306,223 +7352,223 @@ }, "values": [ { - "$id": "600", + "$id": "604", "kind": "enumvalue", "name": "message", "value": "message", "valueType": { - "$ref": "599" + "$ref": "603" }, "enumType": { - "$ref": "598" + "$ref": "602" }, "decorators": [] }, { - "$id": "601", + "$id": "605", "kind": "enumvalue", "name": "file_search_call", "value": "file_search_call", "valueType": { - "$ref": "599" + "$ref": "603" }, "enumType": { - "$ref": "598" + "$ref": "602" }, "decorators": [] }, { - "$id": "602", + "$id": "606", "kind": "enumvalue", "name": "function_call", "value": "function_call", "valueType": { - "$ref": "599" + "$ref": "603" }, "enumType": { - "$ref": "598" + "$ref": "602" }, "decorators": [] }, { - "$id": "603", + "$id": "607", "kind": "enumvalue", "name": "function_call_output", "value": "function_call_output", "valueType": { - "$ref": "599" + "$ref": "603" }, "enumType": { - "$ref": "598" + "$ref": "602" }, "decorators": [] }, { - "$id": "604", + "$id": "608", "kind": "enumvalue", "name": "computer_call", "value": "computer_call", "valueType": { - "$ref": "599" + "$ref": "603" }, "enumType": { - "$ref": "598" + "$ref": "602" }, "decorators": [] }, { - "$id": "605", + "$id": "609", "kind": "enumvalue", "name": "computer_call_output", "value": "computer_call_output", "valueType": { - "$ref": "599" + "$ref": "603" }, "enumType": { - "$ref": "598" + "$ref": "602" }, "decorators": [] }, { - "$id": "606", + "$id": "610", "kind": "enumvalue", "name": "web_search_call", "value": "web_search_call", "valueType": { - "$ref": "599" + "$ref": "603" }, "enumType": { - "$ref": "598" + "$ref": "602" }, "decorators": [] }, { - "$id": "607", + "$id": "611", "kind": "enumvalue", "name": "reasoning", "value": "reasoning", "valueType": { - "$ref": "599" + "$ref": "603" }, "enumType": { - "$ref": "598" + "$ref": "602" }, "decorators": [] }, { - "$id": "608", + "$id": "612", "kind": "enumvalue", "name": "item_reference", "value": "item_reference", "valueType": { - "$ref": "599" + "$ref": "603" }, "enumType": { - "$ref": "598" + "$ref": "602" }, "decorators": [] }, { - "$id": "609", + "$id": "613", "kind": "enumvalue", "name": "image_generation_call", "value": "image_generation_call", "valueType": { - "$ref": "599" + "$ref": "603" }, "enumType": { - "$ref": "598" + "$ref": "602" }, "decorators": [] }, { - "$id": "610", + "$id": "614", "kind": "enumvalue", "name": "code_interpreter_call", "value": "code_interpreter_call", "valueType": { - "$ref": "599" + "$ref": "603" }, "enumType": { - "$ref": "598" + "$ref": "602" }, "decorators": [] }, { - "$id": "611", + "$id": "615", "kind": "enumvalue", "name": "local_shell_call", "value": "local_shell_call", "valueType": { - "$ref": "599" + "$ref": "603" }, "enumType": { - "$ref": "598" + "$ref": "602" }, "decorators": [] }, { - "$id": "612", + "$id": "616", "kind": "enumvalue", "name": "local_shell_call_output", "value": "local_shell_call_output", "valueType": { - "$ref": "599" + "$ref": "603" }, "enumType": { - "$ref": "598" + "$ref": "602" }, "decorators": [] }, { - "$id": "613", + "$id": "617", "kind": "enumvalue", "name": "mcp_list_tools", "value": "mcp_list_tools", "valueType": { - "$ref": "599" + "$ref": "603" }, "enumType": { - "$ref": "598" + "$ref": "602" }, "decorators": [] }, { - "$id": "614", + "$id": "618", "kind": "enumvalue", "name": "mcp_approval_request", "value": "mcp_approval_request", "valueType": { - "$ref": "599" + "$ref": "603" }, "enumType": { - "$ref": "598" + "$ref": "602" }, "decorators": [] }, { - "$id": "615", + "$id": "619", "kind": "enumvalue", "name": "mcp_approval_response", "value": "mcp_approval_response", "valueType": { - "$ref": "599" + "$ref": "603" }, "enumType": { - "$ref": "598" + "$ref": "602" }, "decorators": [] }, { - "$id": "616", + "$id": "620", "kind": "enumvalue", "name": "mcp_call", "value": "mcp_call", "valueType": { - "$ref": "599" + "$ref": "603" }, "enumType": { - "$ref": "598" + "$ref": "602" }, "decorators": [] } @@ -7534,12 +7580,12 @@ "decorators": [] }, { - "$id": "617", + "$id": "621", "kind": "enum", "name": "ComputerActionType", "crossLanguageDefinitionId": "OpenAI.ComputerActionType", "valueType": { - "$id": "618", + "$id": "622", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7547,119 +7593,119 @@ }, "values": [ { - "$id": "619", + "$id": "623", "kind": "enumvalue", "name": "screenshot", "value": "screenshot", "valueType": { - "$ref": "618" + "$ref": "622" }, "enumType": { - "$ref": "617" + "$ref": "621" }, "decorators": [] }, { - "$id": "620", + "$id": "624", "kind": "enumvalue", "name": "click", "value": "click", "valueType": { - "$ref": "618" + "$ref": "622" }, "enumType": { - "$ref": "617" + "$ref": "621" }, "decorators": [] }, { - "$id": "621", + "$id": "625", "kind": "enumvalue", "name": "double_click", "value": "double_click", "valueType": { - "$ref": "618" + "$ref": "622" }, "enumType": { - "$ref": "617" + "$ref": "621" }, "decorators": [] }, { - "$id": "622", + "$id": "626", "kind": "enumvalue", "name": "scroll", "value": "scroll", "valueType": { - "$ref": "618" + "$ref": "622" }, "enumType": { - "$ref": "617" + "$ref": "621" }, "decorators": [] }, { - "$id": "623", + "$id": "627", "kind": "enumvalue", "name": "type", "value": "type", "valueType": { - "$ref": "618" + "$ref": "622" }, "enumType": { - "$ref": "617" + "$ref": "621" }, "decorators": [] }, { - "$id": "624", + "$id": "628", "kind": "enumvalue", "name": "wait", "value": "wait", "valueType": { - "$ref": "618" + "$ref": "622" }, "enumType": { - "$ref": "617" + "$ref": "621" }, "decorators": [] }, { - "$id": "625", + "$id": "629", "kind": "enumvalue", "name": "keypress", "value": "keypress", "valueType": { - "$ref": "618" + "$ref": "622" }, "enumType": { - "$ref": "617" + "$ref": "621" }, "decorators": [] }, { - "$id": "626", + "$id": "630", "kind": "enumvalue", "name": "drag", "value": "drag", "valueType": { - "$ref": "618" + "$ref": "622" }, "enumType": { - "$ref": "617" + "$ref": "621" }, "decorators": [] }, { - "$id": "627", + "$id": "631", "kind": "enumvalue", "name": "move", "value": "move", "valueType": { - "$ref": "618" + "$ref": "622" }, "enumType": { - "$ref": "617" + "$ref": "621" }, "decorators": [] } @@ -7671,12 +7717,12 @@ "decorators": [] }, { - "$id": "628", + "$id": "632", "kind": "enum", "name": "ComputerActionClickButton", "crossLanguageDefinitionId": "OpenAI.ComputerActionClick.button.anonymous", "valueType": { - "$id": "629", + "$id": "633", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7684,67 +7730,67 @@ }, "values": [ { - "$id": "630", + "$id": "634", "kind": "enumvalue", "name": "left", "value": "left", "valueType": { - "$ref": "629" + "$ref": "633" }, "enumType": { - "$ref": "628" + "$ref": "632" }, "decorators": [] }, { - "$id": "631", + "$id": "635", "kind": "enumvalue", "name": "right", "value": "right", "valueType": { - "$ref": "629" + "$ref": "633" }, "enumType": { - "$ref": "628" + "$ref": "632" }, "decorators": [] }, { - "$id": "632", + "$id": "636", "kind": "enumvalue", "name": "wheel", "value": "wheel", "valueType": { - "$ref": "629" + "$ref": "633" }, "enumType": { - "$ref": "628" + "$ref": "632" }, "decorators": [] }, { - "$id": "633", + "$id": "637", "kind": "enumvalue", "name": "back", "value": "back", "valueType": { - "$ref": "629" + "$ref": "633" }, "enumType": { - "$ref": "628" + "$ref": "632" }, "decorators": [] }, { - "$id": "634", + "$id": "638", "kind": "enumvalue", "name": "forward", "value": "forward", "valueType": { - "$ref": "629" + "$ref": "633" }, "enumType": { - "$ref": "628" + "$ref": "632" }, "decorators": [] } @@ -7756,12 +7802,12 @@ "decorators": [] }, { - "$id": "635", + "$id": "639", "kind": "enum", "name": "ComputerToolCallOutputItemOutputType", "crossLanguageDefinitionId": "OpenAI.ComputerToolCallOutputItemOutputType", "valueType": { - "$id": "636", + "$id": "640", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7769,15 +7815,15 @@ }, "values": [ { - "$id": "637", + "$id": "641", "kind": "enumvalue", "name": "screenshot", "value": "computer_screenshot", "valueType": { - "$ref": "636" + "$ref": "640" }, "enumType": { - "$ref": "635" + "$ref": "639" }, "decorators": [] } @@ -7790,12 +7836,12 @@ "decorators": [] }, { - "$id": "638", + "$id": "642", "kind": "enum", "name": "ReasoningItemSummaryPartType", "crossLanguageDefinitionId": "OpenAI.ReasoningItemSummaryPartType", "valueType": { - "$id": "639", + "$id": "643", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7803,15 +7849,15 @@ }, "values": [ { - "$id": "640", + "$id": "644", "kind": "enumvalue", "name": "summary_text", "value": "summary_text", "valueType": { - "$ref": "639" + "$ref": "643" }, "enumType": { - "$ref": "638" + "$ref": "642" }, "decorators": [] } @@ -7823,12 +7869,12 @@ "decorators": [] }, { - "$id": "641", + "$id": "645", "kind": "enum", "name": "CodeInterpreterToolOutputType", "crossLanguageDefinitionId": "OpenAI.CodeInterpreterToolOutputType", "valueType": { - "$id": "642", + "$id": "646", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7836,28 +7882,28 @@ }, "values": [ { - "$id": "643", + "$id": "647", "kind": "enumvalue", "name": "logs", "value": "logs", "valueType": { - "$ref": "642" + "$ref": "646" }, "enumType": { - "$ref": "641" + "$ref": "645" }, "decorators": [] }, { - "$id": "644", + "$id": "648", "kind": "enumvalue", "name": "image", "value": "image", "valueType": { - "$ref": "642" + "$ref": "646" }, "enumType": { - "$ref": "641" + "$ref": "645" }, "decorators": [] } @@ -7869,12 +7915,12 @@ "decorators": [] }, { - "$id": "645", + "$id": "649", "kind": "enum", "name": "ResponsesMessageRole", "crossLanguageDefinitionId": "OpenAI.ResponsesMessageRole", "valueType": { - "$id": "646", + "$id": "650", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7882,54 +7928,54 @@ }, "values": [ { - "$id": "647", + "$id": "651", "kind": "enumvalue", "name": "system", "value": "system", "valueType": { - "$ref": "646" + "$ref": "650" }, "enumType": { - "$ref": "645" + "$ref": "649" }, "decorators": [] }, { - "$id": "648", + "$id": "652", "kind": "enumvalue", "name": "developer", "value": "developer", "valueType": { - "$ref": "646" + "$ref": "650" }, "enumType": { - "$ref": "645" + "$ref": "649" }, "decorators": [] }, { - "$id": "649", + "$id": "653", "kind": "enumvalue", "name": "user", "value": "user", "valueType": { - "$ref": "646" + "$ref": "650" }, "enumType": { - "$ref": "645" + "$ref": "649" }, "decorators": [] }, { - "$id": "650", + "$id": "654", "kind": "enumvalue", "name": "assistant", "value": "assistant", "valueType": { - "$ref": "646" + "$ref": "650" }, "enumType": { - "$ref": "645" + "$ref": "649" }, "decorators": [] } @@ -7942,12 +7988,12 @@ "decorators": [] }, { - "$id": "651", + "$id": "655", "kind": "enum", "name": "Includable", "crossLanguageDefinitionId": "OpenAI.Includable", "valueType": { - "$id": "652", + "$id": "656", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7955,67 +8001,67 @@ }, "values": [ { - "$id": "653", + "$id": "657", "kind": "enumvalue", "name": "file_search_call.results", "value": "file_search_call.results", "valueType": { - "$ref": "652" + "$ref": "656" }, "enumType": { - "$ref": "651" + "$ref": "655" }, "decorators": [] }, { - "$id": "654", + "$id": "658", "kind": "enumvalue", "name": "message.input_image.image_url", "value": "message.input_image.image_url", "valueType": { - "$ref": "652" + "$ref": "656" }, "enumType": { - "$ref": "651" + "$ref": "655" }, "decorators": [] }, { - "$id": "655", + "$id": "659", "kind": "enumvalue", "name": "computer_call_output.output.image_url", "value": "computer_call_output.output.image_url", "valueType": { - "$ref": "652" + "$ref": "656" }, "enumType": { - "$ref": "651" + "$ref": "655" }, "decorators": [] }, { - "$id": "656", + "$id": "660", "kind": "enumvalue", "name": "reasoning.encrypted_content", "value": "reasoning.encrypted_content", "valueType": { - "$ref": "652" + "$ref": "656" }, "enumType": { - "$ref": "651" + "$ref": "655" }, "decorators": [] }, { - "$id": "657", + "$id": "661", "kind": "enumvalue", "name": "code_interpreter_call.outputs", "value": "code_interpreter_call.outputs", "valueType": { - "$ref": "652" + "$ref": "656" }, "enumType": { - "$ref": "651" + "$ref": "655" }, "decorators": [] } @@ -8028,12 +8074,12 @@ "decorators": [] }, { - "$id": "658", + "$id": "662", "kind": "enum", "name": "ResponseStatus", "crossLanguageDefinitionId": "OpenAI.Response.status.anonymous", "valueType": { - "$id": "659", + "$id": "663", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8041,80 +8087,80 @@ }, "values": [ { - "$id": "660", + "$id": "664", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "659" + "$ref": "663" }, "enumType": { - "$ref": "658" + "$ref": "662" }, "decorators": [] }, { - "$id": "661", + "$id": "665", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "659" + "$ref": "663" }, "enumType": { - "$ref": "658" + "$ref": "662" }, "decorators": [] }, { - "$id": "662", + "$id": "666", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "659" + "$ref": "663" }, "enumType": { - "$ref": "658" + "$ref": "662" }, "decorators": [] }, { - "$id": "663", + "$id": "667", "kind": "enumvalue", "name": "cancelled", "value": "cancelled", "valueType": { - "$ref": "659" + "$ref": "663" }, "enumType": { - "$ref": "658" + "$ref": "662" }, "decorators": [] }, { - "$id": "664", + "$id": "668", "kind": "enumvalue", "name": "queued", "value": "queued", "valueType": { - "$ref": "659" + "$ref": "663" }, "enumType": { - "$ref": "658" + "$ref": "662" }, "decorators": [] }, { - "$id": "665", + "$id": "669", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "659" + "$ref": "663" }, "enumType": { - "$ref": "658" + "$ref": "662" }, "decorators": [] } @@ -8126,12 +8172,12 @@ "decorators": [] }, { - "$id": "666", + "$id": "670", "kind": "enum", "name": "ResponseErrorCode", "crossLanguageDefinitionId": "OpenAI.ResponseErrorCode", "valueType": { - "$id": "667", + "$id": "671", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8139,236 +8185,236 @@ }, "values": [ { - "$id": "668", + "$id": "672", "kind": "enumvalue", "name": "server_error", "value": "server_error", "valueType": { - "$ref": "667" + "$ref": "671" }, "enumType": { - "$ref": "666" + "$ref": "670" }, "decorators": [] }, { - "$id": "669", + "$id": "673", "kind": "enumvalue", "name": "rate_limit_exceeded", "value": "rate_limit_exceeded", "valueType": { - "$ref": "667" + "$ref": "671" }, "enumType": { - "$ref": "666" + "$ref": "670" }, "decorators": [] }, { - "$id": "670", + "$id": "674", "kind": "enumvalue", "name": "invalid_prompt", "value": "invalid_prompt", "valueType": { - "$ref": "667" + "$ref": "671" }, "enumType": { - "$ref": "666" + "$ref": "670" }, "decorators": [] }, { - "$id": "671", + "$id": "675", "kind": "enumvalue", "name": "vector_store_timeout", "value": "vector_store_timeout", "valueType": { - "$ref": "667" + "$ref": "671" }, "enumType": { - "$ref": "666" + "$ref": "670" }, "decorators": [] }, { - "$id": "672", + "$id": "676", "kind": "enumvalue", "name": "invalid_image", "value": "invalid_image", "valueType": { - "$ref": "667" + "$ref": "671" }, "enumType": { - "$ref": "666" + "$ref": "670" }, "decorators": [] }, { - "$id": "673", + "$id": "677", "kind": "enumvalue", "name": "invalid_image_format", "value": "invalid_image_format", "valueType": { - "$ref": "667" + "$ref": "671" }, "enumType": { - "$ref": "666" + "$ref": "670" }, "decorators": [] }, { - "$id": "674", + "$id": "678", "kind": "enumvalue", "name": "invalid_base64_image", "value": "invalid_base64_image", "valueType": { - "$ref": "667" + "$ref": "671" }, "enumType": { - "$ref": "666" + "$ref": "670" }, "decorators": [] }, { - "$id": "675", + "$id": "679", "kind": "enumvalue", "name": "invalid_image_url", "value": "invalid_image_url", "valueType": { - "$ref": "667" + "$ref": "671" }, "enumType": { - "$ref": "666" + "$ref": "670" }, "decorators": [] }, { - "$id": "676", + "$id": "680", "kind": "enumvalue", "name": "image_too_large", "value": "image_too_large", "valueType": { - "$ref": "667" + "$ref": "671" }, "enumType": { - "$ref": "666" + "$ref": "670" }, "decorators": [] }, { - "$id": "677", + "$id": "681", "kind": "enumvalue", "name": "image_too_small", "value": "image_too_small", "valueType": { - "$ref": "667" + "$ref": "671" }, "enumType": { - "$ref": "666" + "$ref": "670" }, "decorators": [] }, { - "$id": "678", + "$id": "682", "kind": "enumvalue", "name": "image_parse_error", "value": "image_parse_error", "valueType": { - "$ref": "667" + "$ref": "671" }, "enumType": { - "$ref": "666" + "$ref": "670" }, "decorators": [] }, { - "$id": "679", + "$id": "683", "kind": "enumvalue", "name": "image_content_policy_violation", "value": "image_content_policy_violation", "valueType": { - "$ref": "667" + "$ref": "671" }, "enumType": { - "$ref": "666" + "$ref": "670" }, "decorators": [] }, { - "$id": "680", + "$id": "684", "kind": "enumvalue", "name": "invalid_image_mode", "value": "invalid_image_mode", "valueType": { - "$ref": "667" + "$ref": "671" }, "enumType": { - "$ref": "666" + "$ref": "670" }, "decorators": [] }, { - "$id": "681", + "$id": "685", "kind": "enumvalue", "name": "image_file_too_large", "value": "image_file_too_large", "valueType": { - "$ref": "667" + "$ref": "671" }, "enumType": { - "$ref": "666" + "$ref": "670" }, "decorators": [] }, { - "$id": "682", + "$id": "686", "kind": "enumvalue", "name": "unsupported_image_media_type", "value": "unsupported_image_media_type", "valueType": { - "$ref": "667" + "$ref": "671" }, "enumType": { - "$ref": "666" + "$ref": "670" }, "decorators": [] }, { - "$id": "683", + "$id": "687", "kind": "enumvalue", "name": "empty_image_file", "value": "empty_image_file", "valueType": { - "$ref": "667" + "$ref": "671" }, "enumType": { - "$ref": "666" + "$ref": "670" }, "decorators": [] }, { - "$id": "684", + "$id": "688", "kind": "enumvalue", "name": "failed_to_download_image", "value": "failed_to_download_image", "valueType": { - "$ref": "667" + "$ref": "671" }, "enumType": { - "$ref": "666" + "$ref": "670" }, "decorators": [] }, { - "$id": "685", + "$id": "689", "kind": "enumvalue", "name": "image_file_not_found", "value": "image_file_not_found", "valueType": { - "$ref": "667" + "$ref": "671" }, "enumType": { - "$ref": "666" + "$ref": "670" }, "decorators": [] } @@ -8381,12 +8427,12 @@ "decorators": [] }, { - "$id": "686", + "$id": "690", "kind": "enum", "name": "ResponseIncompleteDetailsReason", "crossLanguageDefinitionId": "OpenAI.Response.incomplete_details.reason.anonymous", "valueType": { - "$id": "687", + "$id": "691", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8394,28 +8440,28 @@ }, "values": [ { - "$id": "688", + "$id": "692", "kind": "enumvalue", "name": "max_output_tokens", "value": "max_output_tokens", "valueType": { - "$ref": "687" + "$ref": "691" }, "enumType": { - "$ref": "686" + "$ref": "690" }, "decorators": [] }, { - "$id": "689", + "$id": "693", "kind": "enumvalue", "name": "content_filter", "value": "content_filter", "valueType": { - "$ref": "687" + "$ref": "691" }, "enumType": { - "$ref": "686" + "$ref": "690" }, "decorators": [] } @@ -8427,12 +8473,12 @@ "decorators": [] }, { - "$id": "690", + "$id": "694", "kind": "enum", "name": "FileSearchToolCallItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.FileSearchToolCallItemResource.status.anonymous", "valueType": { - "$id": "691", + "$id": "695", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8440,67 +8486,67 @@ }, "values": [ { - "$id": "692", + "$id": "696", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "691" + "$ref": "695" }, "enumType": { - "$ref": "690" + "$ref": "694" }, "decorators": [] }, { - "$id": "693", + "$id": "697", "kind": "enumvalue", "name": "searching", "value": "searching", "valueType": { - "$ref": "691" + "$ref": "695" }, "enumType": { - "$ref": "690" + "$ref": "694" }, "decorators": [] }, { - "$id": "694", + "$id": "698", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "691" + "$ref": "695" }, "enumType": { - "$ref": "690" + "$ref": "694" }, "decorators": [] }, { - "$id": "695", + "$id": "699", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "691" + "$ref": "695" }, "enumType": { - "$ref": "690" + "$ref": "694" }, "decorators": [] }, { - "$id": "696", + "$id": "700", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "691" + "$ref": "695" }, "enumType": { - "$ref": "690" + "$ref": "694" }, "decorators": [] } @@ -8512,12 +8558,12 @@ "decorators": [] }, { - "$id": "697", + "$id": "701", "kind": "enum", "name": "ComputerToolCallItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.ComputerToolCallItemResource.status.anonymous", "valueType": { - "$id": "698", + "$id": "702", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8525,41 +8571,41 @@ }, "values": [ { - "$id": "699", + "$id": "703", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "698" + "$ref": "702" }, "enumType": { - "$ref": "697" + "$ref": "701" }, "decorators": [] }, { - "$id": "700", + "$id": "704", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "698" + "$ref": "702" }, "enumType": { - "$ref": "697" + "$ref": "701" }, "decorators": [] }, { - "$id": "701", + "$id": "705", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "698" + "$ref": "702" }, "enumType": { - "$ref": "697" + "$ref": "701" }, "decorators": [] } @@ -8571,12 +8617,12 @@ "decorators": [] }, { - "$id": "702", + "$id": "706", "kind": "enum", "name": "ComputerToolCallOutputItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.ComputerToolCallOutputItemResource.status.anonymous", "valueType": { - "$id": "703", + "$id": "707", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8584,41 +8630,41 @@ }, "values": [ { - "$id": "704", + "$id": "708", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "703" + "$ref": "707" }, "enumType": { - "$ref": "702" + "$ref": "706" }, "decorators": [] }, { - "$id": "705", + "$id": "709", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "703" + "$ref": "707" }, "enumType": { - "$ref": "702" + "$ref": "706" }, "decorators": [] }, { - "$id": "706", + "$id": "710", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "703" + "$ref": "707" }, "enumType": { - "$ref": "702" + "$ref": "706" }, "decorators": [] } @@ -8630,12 +8676,12 @@ "decorators": [] }, { - "$id": "707", + "$id": "711", "kind": "enum", "name": "WebSearchToolCallItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.WebSearchToolCallItemResource.status.anonymous", "valueType": { - "$id": "708", + "$id": "712", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8643,54 +8689,54 @@ }, "values": [ { - "$id": "709", + "$id": "713", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "708" + "$ref": "712" }, "enumType": { - "$ref": "707" + "$ref": "711" }, "decorators": [] }, { - "$id": "710", + "$id": "714", "kind": "enumvalue", "name": "searching", "value": "searching", "valueType": { - "$ref": "708" + "$ref": "712" }, "enumType": { - "$ref": "707" + "$ref": "711" }, "decorators": [] }, { - "$id": "711", + "$id": "715", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "708" + "$ref": "712" }, "enumType": { - "$ref": "707" + "$ref": "711" }, "decorators": [] }, { - "$id": "712", + "$id": "716", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "708" + "$ref": "712" }, "enumType": { - "$ref": "707" + "$ref": "711" }, "decorators": [] } @@ -8702,12 +8748,12 @@ "decorators": [] }, { - "$id": "713", + "$id": "717", "kind": "enum", "name": "FunctionToolCallItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.FunctionToolCallItemResource.status.anonymous", "valueType": { - "$id": "714", + "$id": "718", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8715,41 +8761,41 @@ }, "values": [ { - "$id": "715", + "$id": "719", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "714" + "$ref": "718" }, "enumType": { - "$ref": "713" + "$ref": "717" }, "decorators": [] }, { - "$id": "716", + "$id": "720", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "714" + "$ref": "718" }, "enumType": { - "$ref": "713" + "$ref": "717" }, "decorators": [] }, { - "$id": "717", + "$id": "721", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "714" + "$ref": "718" }, "enumType": { - "$ref": "713" + "$ref": "717" }, "decorators": [] } @@ -8761,12 +8807,12 @@ "decorators": [] }, { - "$id": "718", + "$id": "722", "kind": "enum", "name": "FunctionToolCallOutputItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.FunctionToolCallOutputItemResource.status.anonymous", "valueType": { - "$id": "719", + "$id": "723", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8774,41 +8820,41 @@ }, "values": [ { - "$id": "720", + "$id": "724", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "719" + "$ref": "723" }, "enumType": { - "$ref": "718" + "$ref": "722" }, "decorators": [] }, { - "$id": "721", + "$id": "725", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "719" + "$ref": "723" }, "enumType": { - "$ref": "718" + "$ref": "722" }, "decorators": [] }, { - "$id": "722", + "$id": "726", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "719" + "$ref": "723" }, "enumType": { - "$ref": "718" + "$ref": "722" }, "decorators": [] } @@ -8820,12 +8866,12 @@ "decorators": [] }, { - "$id": "723", + "$id": "727", "kind": "enum", "name": "ReasoningItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.ReasoningItemResource.status.anonymous", "valueType": { - "$id": "724", + "$id": "728", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8833,41 +8879,41 @@ }, "values": [ { - "$id": "725", + "$id": "729", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "724" + "$ref": "728" }, "enumType": { - "$ref": "723" + "$ref": "727" }, "decorators": [] }, { - "$id": "726", + "$id": "730", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "724" + "$ref": "728" }, "enumType": { - "$ref": "723" + "$ref": "727" }, "decorators": [] }, { - "$id": "727", + "$id": "731", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "724" + "$ref": "728" }, "enumType": { - "$ref": "723" + "$ref": "727" }, "decorators": [] } @@ -8879,12 +8925,12 @@ "decorators": [] }, { - "$id": "728", + "$id": "732", "kind": "enum", "name": "ImageGenToolCallItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.ImageGenToolCallItemResource.status.anonymous", "valueType": { - "$id": "729", + "$id": "733", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8892,54 +8938,54 @@ }, "values": [ { - "$id": "730", + "$id": "734", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "729" + "$ref": "733" }, "enumType": { - "$ref": "728" + "$ref": "732" }, "decorators": [] }, { - "$id": "731", + "$id": "735", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "729" + "$ref": "733" }, "enumType": { - "$ref": "728" + "$ref": "732" }, "decorators": [] }, { - "$id": "732", + "$id": "736", "kind": "enumvalue", "name": "generating", "value": "generating", "valueType": { - "$ref": "729" + "$ref": "733" }, "enumType": { - "$ref": "728" + "$ref": "732" }, "decorators": [] }, { - "$id": "733", + "$id": "737", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "729" + "$ref": "733" }, "enumType": { - "$ref": "728" + "$ref": "732" }, "decorators": [] } @@ -8951,12 +8997,12 @@ "decorators": [] }, { - "$id": "734", + "$id": "738", "kind": "enum", "name": "CodeInterpreterToolCallItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.CodeInterpreterToolCallItemResource.status.anonymous", "valueType": { - "$id": "735", + "$id": "739", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8964,41 +9010,41 @@ }, "values": [ { - "$id": "736", + "$id": "740", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "735" + "$ref": "739" }, "enumType": { - "$ref": "734" + "$ref": "738" }, "decorators": [] }, { - "$id": "737", + "$id": "741", "kind": "enumvalue", "name": "interpreting", "value": "interpreting", "valueType": { - "$ref": "735" + "$ref": "739" }, "enumType": { - "$ref": "734" + "$ref": "738" }, "decorators": [] }, { - "$id": "738", + "$id": "742", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "735" + "$ref": "739" }, "enumType": { - "$ref": "734" + "$ref": "738" }, "decorators": [] } @@ -9010,12 +9056,12 @@ "decorators": [] }, { - "$id": "739", + "$id": "743", "kind": "enum", "name": "LocalShellToolCallItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.LocalShellToolCallItemResource.status.anonymous", "valueType": { - "$id": "740", + "$id": "744", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -9023,41 +9069,41 @@ }, "values": [ { - "$id": "741", + "$id": "745", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "740" + "$ref": "744" }, "enumType": { - "$ref": "739" + "$ref": "743" }, "decorators": [] }, { - "$id": "742", + "$id": "746", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "740" + "$ref": "744" }, "enumType": { - "$ref": "739" + "$ref": "743" }, "decorators": [] }, { - "$id": "743", + "$id": "747", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "740" + "$ref": "744" }, "enumType": { - "$ref": "739" + "$ref": "743" }, "decorators": [] } @@ -9069,12 +9115,12 @@ "decorators": [] }, { - "$id": "744", + "$id": "748", "kind": "enum", "name": "LocalShellToolCallOutputItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.LocalShellToolCallOutputItemResource.status.anonymous", "valueType": { - "$id": "745", + "$id": "749", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -9082,41 +9128,41 @@ }, "values": [ { - "$id": "746", + "$id": "750", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "745" + "$ref": "749" }, "enumType": { - "$ref": "744" + "$ref": "748" }, "decorators": [] }, { - "$id": "747", + "$id": "751", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "745" + "$ref": "749" }, "enumType": { - "$ref": "744" + "$ref": "748" }, "decorators": [] }, { - "$id": "748", + "$id": "752", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "745" + "$ref": "749" }, "enumType": { - "$ref": "744" + "$ref": "748" }, "decorators": [] } @@ -9128,12 +9174,12 @@ "decorators": [] }, { - "$id": "749", + "$id": "753", "kind": "enum", "name": "ResponsesMessageItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.ResponsesMessageItemResource.status.anonymous", "valueType": { - "$id": "750", + "$id": "754", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -9141,41 +9187,41 @@ }, "values": [ { - "$id": "751", + "$id": "755", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "750" + "$ref": "754" }, "enumType": { - "$ref": "749" + "$ref": "753" }, "decorators": [] }, { - "$id": "752", + "$id": "756", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "750" + "$ref": "754" }, "enumType": { - "$ref": "749" + "$ref": "753" }, "decorators": [] }, { - "$id": "753", + "$id": "757", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "750" + "$ref": "754" }, "enumType": { - "$ref": "749" + "$ref": "753" }, "decorators": [] } @@ -9187,12 +9233,12 @@ "decorators": [] }, { - "$id": "754", + "$id": "758", "kind": "enum", "name": "ResponseStreamEventType", "crossLanguageDefinitionId": "OpenAI.ResponseStreamEventType", "valueType": { - "$id": "755", + "$id": "759", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -9200,691 +9246,691 @@ }, "values": [ { - "$id": "756", + "$id": "760", "kind": "enumvalue", "name": "response_audio_delta", "value": "response.audio.delta", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "757", + "$id": "761", "kind": "enumvalue", "name": "response_audio_done", "value": "response.audio.done", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "758", + "$id": "762", "kind": "enumvalue", "name": "response_audio_transcript_delta", "value": "response.audio_transcript.delta", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "759", + "$id": "763", "kind": "enumvalue", "name": "response_audio_transcript_done", "value": "response.audio_transcript.done", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "760", + "$id": "764", "kind": "enumvalue", "name": "response_code_interpreter_call_code_delta", "value": "response.code_interpreter_call_code.delta", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "761", + "$id": "765", "kind": "enumvalue", "name": "response_code_interpreter_call_code_done", "value": "response.code_interpreter_call_code.done", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "762", + "$id": "766", "kind": "enumvalue", "name": "response_code_interpreter_call_completed", "value": "response.code_interpreter_call.completed", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "763", + "$id": "767", "kind": "enumvalue", "name": "response_code_interpreter_call_in_progress", "value": "response.code_interpreter_call.in_progress", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "764", + "$id": "768", "kind": "enumvalue", "name": "response_code_interpreter_call_interpreting", "value": "response.code_interpreter_call.interpreting", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "765", + "$id": "769", "kind": "enumvalue", "name": "response_completed", "value": "response.completed", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "766", + "$id": "770", "kind": "enumvalue", "name": "response_content_part_added", "value": "response.content_part.added", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "767", + "$id": "771", "kind": "enumvalue", "name": "response_content_part_done", "value": "response.content_part.done", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "768", + "$id": "772", "kind": "enumvalue", "name": "response_created", "value": "response.created", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "769", + "$id": "773", "kind": "enumvalue", "name": "error", "value": "error", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "770", + "$id": "774", "kind": "enumvalue", "name": "response_file_search_call_completed", "value": "response.file_search_call.completed", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "771", + "$id": "775", "kind": "enumvalue", "name": "response_file_search_call_in_progress", "value": "response.file_search_call.in_progress", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "772", + "$id": "776", "kind": "enumvalue", "name": "response_file_search_call_searching", "value": "response.file_search_call.searching", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "773", + "$id": "777", "kind": "enumvalue", "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "774", + "$id": "778", "kind": "enumvalue", "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "775", + "$id": "779", "kind": "enumvalue", "name": "response_in_progress", "value": "response.in_progress", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "776", + "$id": "780", "kind": "enumvalue", "name": "response_failed", "value": "response.failed", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "777", + "$id": "781", "kind": "enumvalue", "name": "response_incomplete", "value": "response.incomplete", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "778", + "$id": "782", "kind": "enumvalue", "name": "response_output_item_added", "value": "response.output_item.added", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "779", + "$id": "783", "kind": "enumvalue", "name": "response_output_item_done", "value": "response.output_item.done", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "780", + "$id": "784", "kind": "enumvalue", "name": "response_refusal_delta", "value": "response.refusal.delta", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "781", + "$id": "785", "kind": "enumvalue", "name": "response_refusal_done", "value": "response.refusal.done", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "782", + "$id": "786", "kind": "enumvalue", "name": "response_output_text_annotation_added", "value": "response.output_text.annotation.added", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "783", + "$id": "787", "kind": "enumvalue", "name": "response_output_text_delta", "value": "response.output_text.delta", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "784", + "$id": "788", "kind": "enumvalue", "name": "response_output_text_done", "value": "response.output_text.done", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "785", + "$id": "789", "kind": "enumvalue", "name": "response_reasoning_summary_part_added", "value": "response.reasoning_summary_part.added", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "786", + "$id": "790", "kind": "enumvalue", "name": "response_reasoning_summary_part_done", "value": "response.reasoning_summary_part.done", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "787", + "$id": "791", "kind": "enumvalue", "name": "response_reasoning_summary_text_delta", "value": "response.reasoning_summary_text.delta", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "788", + "$id": "792", "kind": "enumvalue", "name": "response_reasoning_summary_text_done", "value": "response.reasoning_summary_text.done", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "789", + "$id": "793", "kind": "enumvalue", "name": "response_web_search_call_completed", "value": "response.web_search_call.completed", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "790", + "$id": "794", "kind": "enumvalue", "name": "response_web_search_call_in_progress", "value": "response.web_search_call.in_progress", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "791", + "$id": "795", "kind": "enumvalue", "name": "response_web_search_call_searching", "value": "response.web_search_call.searching", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "792", + "$id": "796", "kind": "enumvalue", "name": "response_image_generation_call_completed", "value": "response.image_generation_call.completed", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "793", + "$id": "797", "kind": "enumvalue", "name": "response_image_generation_call_generating", "value": "response.image_generation_call.generating", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "794", + "$id": "798", "kind": "enumvalue", "name": "response_image_generation_call_in_progress", "value": "response.image_generation_call.in_progress", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "795", + "$id": "799", "kind": "enumvalue", "name": "response_image_generation_call_partial_image", "value": "response.image_generation_call.partial_image", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "796", + "$id": "800", "kind": "enumvalue", "name": "response_mcp_call_arguments_delta", "value": "response.mcp_call_arguments.delta", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "797", + "$id": "801", "kind": "enumvalue", "name": "response_mcp_call_arguments_done", "value": "response.mcp_call_arguments.done", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "798", + "$id": "802", "kind": "enumvalue", "name": "response_mcp_call_completed", "value": "response.mcp_call.completed", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "799", + "$id": "803", "kind": "enumvalue", "name": "response_mcp_call_failed", "value": "response.mcp_call.failed", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "800", + "$id": "804", "kind": "enumvalue", "name": "response_mcp_call_in_progress", "value": "response.mcp_call.in_progress", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "801", + "$id": "805", "kind": "enumvalue", "name": "response_mcp_list_tools_completed", "value": "response.mcp_list_tools.completed", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "802", + "$id": "806", "kind": "enumvalue", "name": "response_mcp_list_tools_failed", "value": "response.mcp_list_tools.failed", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "803", + "$id": "807", "kind": "enumvalue", "name": "response_mcp_list_tools_in_progress", "value": "response.mcp_list_tools.in_progress", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "804", + "$id": "808", "kind": "enumvalue", "name": "response_queued", "value": "response.queued", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "805", + "$id": "809", "kind": "enumvalue", "name": "response_reasoning_delta", "value": "response.reasoning.delta", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "806", + "$id": "810", "kind": "enumvalue", "name": "response_reasoning_done", "value": "response.reasoning.done", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "807", + "$id": "811", "kind": "enumvalue", "name": "response_reasoning_summary_delta", "value": "response.reasoning_summary.delta", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] }, { - "$id": "808", + "$id": "812", "kind": "enumvalue", "name": "response_reasoning_summary_done", "value": "response.reasoning_summary.done", "valueType": { - "$ref": "755" + "$ref": "759" }, "enumType": { - "$ref": "754" + "$ref": "758" }, "decorators": [] } @@ -9896,12 +9942,12 @@ "decorators": [] }, { - "$id": "809", + "$id": "813", "kind": "enum", "name": "CreateImageRequestModel", "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.model.anonymous", "valueType": { - "$id": "810", + "$id": "814", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -9909,41 +9955,41 @@ }, "values": [ { - "$id": "811", + "$id": "815", "kind": "enumvalue", "name": "dall-e-2", "value": "dall-e-2", "valueType": { - "$ref": "810" + "$ref": "814" }, "enumType": { - "$ref": "809" + "$ref": "813" }, "decorators": [] }, { - "$id": "812", + "$id": "816", "kind": "enumvalue", "name": "dall-e-3", "value": "dall-e-3", "valueType": { - "$ref": "810" + "$ref": "814" }, "enumType": { - "$ref": "809" + "$ref": "813" }, "decorators": [] }, { - "$id": "813", + "$id": "817", "kind": "enumvalue", "name": "gpt-image-1", "value": "gpt-image-1", "valueType": { - "$ref": "810" + "$ref": "814" }, "enumType": { - "$ref": "809" + "$ref": "813" }, "decorators": [] } @@ -9955,12 +10001,12 @@ "decorators": [] }, { - "$id": "814", + "$id": "818", "kind": "enum", "name": "CreateImageRequestQuality", "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.quality.anonymous", "valueType": { - "$id": "815", + "$id": "819", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -9968,80 +10014,80 @@ }, "values": [ { - "$id": "816", + "$id": "820", "kind": "enumvalue", "name": "standard", "value": "standard", "valueType": { - "$ref": "815" + "$ref": "819" }, "enumType": { - "$ref": "814" + "$ref": "818" }, "decorators": [] }, { - "$id": "817", + "$id": "821", "kind": "enumvalue", "name": "hd", "value": "hd", "valueType": { - "$ref": "815" + "$ref": "819" }, "enumType": { - "$ref": "814" + "$ref": "818" }, "decorators": [] }, { - "$id": "818", + "$id": "822", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "815" + "$ref": "819" }, "enumType": { - "$ref": "814" + "$ref": "818" }, "decorators": [] }, { - "$id": "819", + "$id": "823", "kind": "enumvalue", "name": "medium", "value": "medium", "valueType": { - "$ref": "815" + "$ref": "819" }, "enumType": { - "$ref": "814" + "$ref": "818" }, "decorators": [] }, { - "$id": "820", + "$id": "824", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "815" + "$ref": "819" }, "enumType": { - "$ref": "814" + "$ref": "818" }, "decorators": [] }, { - "$id": "821", + "$id": "825", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "815" + "$ref": "819" }, "enumType": { - "$ref": "814" + "$ref": "818" }, "decorators": [] } @@ -10053,12 +10099,12 @@ "decorators": [] }, { - "$id": "822", + "$id": "826", "kind": "enum", "name": "CreateImageRequestResponseFormat", "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.response_format.anonymous", "valueType": { - "$id": "823", + "$id": "827", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10066,28 +10112,28 @@ }, "values": [ { - "$id": "824", + "$id": "828", "kind": "enumvalue", "name": "url", "value": "url", "valueType": { - "$ref": "823" + "$ref": "827" }, "enumType": { - "$ref": "822" + "$ref": "826" }, "decorators": [] }, { - "$id": "825", + "$id": "829", "kind": "enumvalue", "name": "b64_json", "value": "b64_json", "valueType": { - "$ref": "823" + "$ref": "827" }, "enumType": { - "$ref": "822" + "$ref": "826" }, "decorators": [] } @@ -10099,12 +10145,12 @@ "decorators": [] }, { - "$id": "826", + "$id": "830", "kind": "enum", "name": "CreateImageRequestOutputFormat", "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.output_format.anonymous", "valueType": { - "$id": "827", + "$id": "831", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10112,41 +10158,41 @@ }, "values": [ { - "$id": "828", + "$id": "832", "kind": "enumvalue", "name": "png", "value": "png", "valueType": { - "$ref": "827" + "$ref": "831" }, "enumType": { - "$ref": "826" + "$ref": "830" }, "decorators": [] }, { - "$id": "829", + "$id": "833", "kind": "enumvalue", "name": "jpeg", "value": "jpeg", "valueType": { - "$ref": "827" + "$ref": "831" }, "enumType": { - "$ref": "826" + "$ref": "830" }, "decorators": [] }, { - "$id": "830", + "$id": "834", "kind": "enumvalue", "name": "webp", "value": "webp", "valueType": { - "$ref": "827" + "$ref": "831" }, "enumType": { - "$ref": "826" + "$ref": "830" }, "decorators": [] } @@ -10158,12 +10204,12 @@ "decorators": [] }, { - "$id": "831", + "$id": "835", "kind": "enum", "name": "CreateImageRequestSize", "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.size.anonymous", "valueType": { - "$id": "832", + "$id": "836", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10171,106 +10217,106 @@ }, "values": [ { - "$id": "833", + "$id": "837", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "832" + "$ref": "836" }, "enumType": { - "$ref": "831" + "$ref": "835" }, "decorators": [] }, { - "$id": "834", + "$id": "838", "kind": "enumvalue", "name": "1024x1024", "value": "1024x1024", "valueType": { - "$ref": "832" + "$ref": "836" }, "enumType": { - "$ref": "831" + "$ref": "835" }, "decorators": [] }, { - "$id": "835", + "$id": "839", "kind": "enumvalue", "name": "1536x1024", "value": "1536x1024", "valueType": { - "$ref": "832" + "$ref": "836" }, "enumType": { - "$ref": "831" + "$ref": "835" }, "decorators": [] }, { - "$id": "836", + "$id": "840", "kind": "enumvalue", "name": "1024x1536", "value": "1024x1536", "valueType": { - "$ref": "832" + "$ref": "836" }, "enumType": { - "$ref": "831" + "$ref": "835" }, "decorators": [] }, { - "$id": "837", + "$id": "841", "kind": "enumvalue", "name": "256x256", "value": "256x256", "valueType": { - "$ref": "832" + "$ref": "836" }, "enumType": { - "$ref": "831" + "$ref": "835" }, "decorators": [] }, { - "$id": "838", + "$id": "842", "kind": "enumvalue", "name": "512x512", "value": "512x512", "valueType": { - "$ref": "832" + "$ref": "836" }, "enumType": { - "$ref": "831" + "$ref": "835" }, "decorators": [] }, { - "$id": "839", + "$id": "843", "kind": "enumvalue", "name": "1792x1024", "value": "1792x1024", "valueType": { - "$ref": "832" + "$ref": "836" }, "enumType": { - "$ref": "831" + "$ref": "835" }, "decorators": [] }, { - "$id": "840", + "$id": "844", "kind": "enumvalue", "name": "1024x1792", "value": "1024x1792", "valueType": { - "$ref": "832" + "$ref": "836" }, "enumType": { - "$ref": "831" + "$ref": "835" }, "decorators": [] } @@ -10282,12 +10328,12 @@ "decorators": [] }, { - "$id": "841", + "$id": "845", "kind": "enum", "name": "CreateImageRequestModeration", "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.moderation.anonymous", "valueType": { - "$id": "842", + "$id": "846", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10295,28 +10341,28 @@ }, "values": [ { - "$id": "843", + "$id": "847", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "842" + "$ref": "846" }, "enumType": { - "$ref": "841" + "$ref": "845" }, "decorators": [] }, { - "$id": "844", + "$id": "848", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "842" + "$ref": "846" }, "enumType": { - "$ref": "841" + "$ref": "845" }, "decorators": [] } @@ -10328,12 +10374,12 @@ "decorators": [] }, { - "$id": "845", + "$id": "849", "kind": "enum", "name": "CreateImageRequestBackground", "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.background.anonymous", "valueType": { - "$id": "846", + "$id": "850", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10341,41 +10387,41 @@ }, "values": [ { - "$id": "847", + "$id": "851", "kind": "enumvalue", "name": "transparent", "value": "transparent", "valueType": { - "$ref": "846" + "$ref": "850" }, "enumType": { - "$ref": "845" + "$ref": "849" }, "decorators": [] }, { - "$id": "848", + "$id": "852", "kind": "enumvalue", "name": "opaque", "value": "opaque", "valueType": { - "$ref": "846" + "$ref": "850" }, "enumType": { - "$ref": "845" + "$ref": "849" }, "decorators": [] }, { - "$id": "849", + "$id": "853", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "846" + "$ref": "850" }, "enumType": { - "$ref": "845" + "$ref": "849" }, "decorators": [] } @@ -10387,12 +10433,12 @@ "decorators": [] }, { - "$id": "850", + "$id": "854", "kind": "enum", "name": "CreateImageRequestStyle", "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.style.anonymous", "valueType": { - "$id": "851", + "$id": "855", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10400,28 +10446,28 @@ }, "values": [ { - "$id": "852", + "$id": "856", "kind": "enumvalue", "name": "vivid", "value": "vivid", "valueType": { - "$ref": "851" + "$ref": "855" }, "enumType": { - "$ref": "850" + "$ref": "854" }, "decorators": [] }, { - "$id": "853", + "$id": "857", "kind": "enumvalue", "name": "natural", "value": "natural", "valueType": { - "$ref": "851" + "$ref": "855" }, "enumType": { - "$ref": "850" + "$ref": "854" }, "decorators": [] } @@ -10433,12 +10479,12 @@ "decorators": [] }, { - "$id": "854", + "$id": "858", "kind": "enum", "name": "CreateImageEditRequestBackground", "crossLanguageDefinitionId": "OpenAI.CreateImageEditRequest.background.anonymous", "valueType": { - "$id": "855", + "$id": "859", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10446,41 +10492,41 @@ }, "values": [ { - "$id": "856", + "$id": "860", "kind": "enumvalue", "name": "transparent", "value": "transparent", "valueType": { - "$ref": "855" + "$ref": "859" }, "enumType": { - "$ref": "854" + "$ref": "858" }, "decorators": [] }, { - "$id": "857", + "$id": "861", "kind": "enumvalue", "name": "opaque", "value": "opaque", "valueType": { - "$ref": "855" + "$ref": "859" }, "enumType": { - "$ref": "854" + "$ref": "858" }, "decorators": [] }, { - "$id": "858", + "$id": "862", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "855" + "$ref": "859" }, "enumType": { - "$ref": "854" + "$ref": "858" }, "decorators": [] } @@ -10492,12 +10538,12 @@ "decorators": [] }, { - "$id": "859", + "$id": "863", "kind": "enum", "name": "CreateImageEditRequestModel", "crossLanguageDefinitionId": "OpenAI.CreateImageEditRequest.model.anonymous", "valueType": { - "$id": "860", + "$id": "864", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10505,28 +10551,28 @@ }, "values": [ { - "$id": "861", + "$id": "865", "kind": "enumvalue", "name": "dall-e-2", "value": "dall-e-2", "valueType": { - "$ref": "860" + "$ref": "864" }, "enumType": { - "$ref": "859" + "$ref": "863" }, "decorators": [] }, { - "$id": "862", + "$id": "866", "kind": "enumvalue", "name": "gpt-image-1", "value": "gpt-image-1", "valueType": { - "$ref": "860" + "$ref": "864" }, "enumType": { - "$ref": "859" + "$ref": "863" }, "decorators": [] } @@ -10538,12 +10584,12 @@ "decorators": [] }, { - "$id": "863", + "$id": "867", "kind": "enum", "name": "CreateImageEditRequestSize", "crossLanguageDefinitionId": "OpenAI.CreateImageEditRequest.size.anonymous", "valueType": { - "$id": "864", + "$id": "868", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10551,80 +10597,80 @@ }, "values": [ { - "$id": "865", + "$id": "869", "kind": "enumvalue", "name": "256x256", "value": "256x256", "valueType": { - "$ref": "864" + "$ref": "868" }, "enumType": { - "$ref": "863" + "$ref": "867" }, "decorators": [] }, { - "$id": "866", + "$id": "870", "kind": "enumvalue", "name": "512x512", "value": "512x512", "valueType": { - "$ref": "864" + "$ref": "868" }, "enumType": { - "$ref": "863" + "$ref": "867" }, "decorators": [] }, { - "$id": "867", + "$id": "871", "kind": "enumvalue", "name": "1024x1024", "value": "1024x1024", "valueType": { - "$ref": "864" + "$ref": "868" }, "enumType": { - "$ref": "863" + "$ref": "867" }, "decorators": [] }, { - "$id": "868", + "$id": "872", "kind": "enumvalue", "name": "1536x1024", "value": "1536x1024", "valueType": { - "$ref": "864" + "$ref": "868" }, "enumType": { - "$ref": "863" + "$ref": "867" }, "decorators": [] }, { - "$id": "869", + "$id": "873", "kind": "enumvalue", "name": "1024x1536", "value": "1024x1536", "valueType": { - "$ref": "864" + "$ref": "868" }, "enumType": { - "$ref": "863" + "$ref": "867" }, "decorators": [] }, { - "$id": "870", + "$id": "874", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "864" + "$ref": "868" }, "enumType": { - "$ref": "863" + "$ref": "867" }, "decorators": [] } @@ -10636,12 +10682,12 @@ "decorators": [] }, { - "$id": "871", + "$id": "875", "kind": "enum", "name": "CreateImageEditRequestResponseFormat", "crossLanguageDefinitionId": "OpenAI.CreateImageEditRequest.response_format.anonymous", "valueType": { - "$id": "872", + "$id": "876", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10649,28 +10695,28 @@ }, "values": [ { - "$id": "873", + "$id": "877", "kind": "enumvalue", "name": "url", "value": "url", "valueType": { - "$ref": "872" + "$ref": "876" }, "enumType": { - "$ref": "871" + "$ref": "875" }, "decorators": [] }, { - "$id": "874", + "$id": "878", "kind": "enumvalue", "name": "b64_json", "value": "b64_json", "valueType": { - "$ref": "872" + "$ref": "876" }, "enumType": { - "$ref": "871" + "$ref": "875" }, "decorators": [] } @@ -10682,12 +10728,12 @@ "decorators": [] }, { - "$id": "875", + "$id": "879", "kind": "enum", "name": "CreateImageEditRequestQuality", "crossLanguageDefinitionId": "OpenAI.CreateImageEditRequest.quality.anonymous", "valueType": { - "$id": "876", + "$id": "880", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10695,67 +10741,67 @@ }, "values": [ { - "$id": "877", + "$id": "881", "kind": "enumvalue", "name": "standard", "value": "standard", "valueType": { - "$ref": "876" + "$ref": "880" }, "enumType": { - "$ref": "875" + "$ref": "879" }, "decorators": [] }, { - "$id": "878", + "$id": "882", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "876" + "$ref": "880" }, "enumType": { - "$ref": "875" + "$ref": "879" }, "decorators": [] }, { - "$id": "879", + "$id": "883", "kind": "enumvalue", "name": "medium", "value": "medium", "valueType": { - "$ref": "876" + "$ref": "880" }, "enumType": { - "$ref": "875" + "$ref": "879" }, "decorators": [] }, { - "$id": "880", + "$id": "884", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "876" + "$ref": "880" }, "enumType": { - "$ref": "875" + "$ref": "879" }, "decorators": [] }, { - "$id": "881", + "$id": "885", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "876" + "$ref": "880" }, "enumType": { - "$ref": "875" + "$ref": "879" }, "decorators": [] } @@ -10767,12 +10813,12 @@ "decorators": [] }, { - "$id": "882", + "$id": "886", "kind": "enum", "name": "CreateImageVariationRequestModel", "crossLanguageDefinitionId": "OpenAI.CreateImageVariationRequest.model.anonymous", "valueType": { - "$id": "883", + "$id": "887", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10780,15 +10826,15 @@ }, "values": [ { - "$id": "884", + "$id": "888", "kind": "enumvalue", "name": "dall-e-2", "value": "dall-e-2", "valueType": { - "$ref": "883" + "$ref": "887" }, "enumType": { - "$ref": "882" + "$ref": "886" }, "decorators": [] } @@ -10800,12 +10846,12 @@ "decorators": [] }, { - "$id": "885", + "$id": "889", "kind": "enum", "name": "CreateImageVariationRequestResponseFormat", "crossLanguageDefinitionId": "OpenAI.CreateImageVariationRequest.response_format.anonymous", "valueType": { - "$id": "886", + "$id": "890", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10813,28 +10859,28 @@ }, "values": [ { - "$id": "887", + "$id": "891", "kind": "enumvalue", "name": "url", "value": "url", "valueType": { - "$ref": "886" + "$ref": "890" }, "enumType": { - "$ref": "885" + "$ref": "889" }, "decorators": [] }, { - "$id": "888", + "$id": "892", "kind": "enumvalue", "name": "b64_json", "value": "b64_json", "valueType": { - "$ref": "886" + "$ref": "890" }, "enumType": { - "$ref": "885" + "$ref": "889" }, "decorators": [] } @@ -10846,12 +10892,12 @@ "decorators": [] }, { - "$id": "889", + "$id": "893", "kind": "enum", "name": "CreateImageVariationRequestSize", "crossLanguageDefinitionId": "OpenAI.CreateImageVariationRequest.size.anonymous", "valueType": { - "$id": "890", + "$id": "894", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10859,41 +10905,41 @@ }, "values": [ { - "$id": "891", + "$id": "895", "kind": "enumvalue", "name": "256x256", "value": "256x256", "valueType": { - "$ref": "890" + "$ref": "894" }, "enumType": { - "$ref": "889" + "$ref": "893" }, "decorators": [] }, { - "$id": "892", + "$id": "896", "kind": "enumvalue", "name": "512x512", "value": "512x512", "valueType": { - "$ref": "890" + "$ref": "894" }, "enumType": { - "$ref": "889" + "$ref": "893" }, "decorators": [] }, { - "$id": "893", + "$id": "897", "kind": "enumvalue", "name": "1024x1024", "value": "1024x1024", "valueType": { - "$ref": "890" + "$ref": "894" }, "enumType": { - "$ref": "889" + "$ref": "893" }, "decorators": [] } @@ -10905,12 +10951,12 @@ "decorators": [] }, { - "$id": "894", + "$id": "898", "kind": "enum", "name": "CreateMessageRequestRole", "crossLanguageDefinitionId": "OpenAI.CreateMessageRequest.role.anonymous", "valueType": { - "$id": "895", + "$id": "899", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10918,28 +10964,28 @@ }, "values": [ { - "$id": "896", + "$id": "900", "kind": "enumvalue", "name": "user", "value": "user", "valueType": { - "$ref": "895" + "$ref": "899" }, "enumType": { - "$ref": "894" + "$ref": "898" }, "decorators": [] }, { - "$id": "897", + "$id": "901", "kind": "enumvalue", "name": "assistant", "value": "assistant", "valueType": { - "$ref": "895" + "$ref": "899" }, "enumType": { - "$ref": "894" + "$ref": "898" }, "decorators": [] } @@ -10951,12 +10997,12 @@ "decorators": [] }, { - "$id": "898", + "$id": "902", "kind": "enum", "name": "MessageContentType", "crossLanguageDefinitionId": "OpenAI.MessageContentType", "valueType": { - "$id": "899", + "$id": "903", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10964,57 +11010,57 @@ }, "values": [ { - "$id": "900", + "$id": "904", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "899" + "$ref": "903" }, "enumType": { - "$ref": "898" + "$ref": "902" }, "doc": "The content is a text message.", "decorators": [] }, { - "$id": "901", + "$id": "905", "kind": "enumvalue", "name": "image_file", "value": "image_file", "valueType": { - "$ref": "899" + "$ref": "903" }, "enumType": { - "$ref": "898" + "$ref": "902" }, "doc": "The content is an image file.", "decorators": [] }, { - "$id": "902", + "$id": "906", "kind": "enumvalue", "name": "image_url", "value": "image_url", "valueType": { - "$ref": "899" + "$ref": "903" }, "enumType": { - "$ref": "898" + "$ref": "902" }, "doc": "The content is an image URL.", "decorators": [] }, { - "$id": "903", + "$id": "907", "kind": "enumvalue", "name": "refusal", "value": "refusal", "valueType": { - "$ref": "899" + "$ref": "903" }, "enumType": { - "$ref": "898" + "$ref": "902" }, "doc": "The content is a refusal message.", "decorators": [] @@ -11027,12 +11073,12 @@ "decorators": [] }, { - "$id": "904", + "$id": "908", "kind": "enum", "name": "MessageContentImageFileObjectImageFileDetail", "crossLanguageDefinitionId": "OpenAI.MessageContentImageFileObject.image_file.detail.anonymous", "valueType": { - "$id": "905", + "$id": "909", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11040,41 +11086,41 @@ }, "values": [ { - "$id": "906", + "$id": "910", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "905" + "$ref": "909" }, "enumType": { - "$ref": "904" + "$ref": "908" }, "decorators": [] }, { - "$id": "907", + "$id": "911", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "905" + "$ref": "909" }, "enumType": { - "$ref": "904" + "$ref": "908" }, "decorators": [] }, { - "$id": "908", + "$id": "912", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "905" + "$ref": "909" }, "enumType": { - "$ref": "904" + "$ref": "908" }, "decorators": [] } @@ -11086,12 +11132,12 @@ "decorators": [] }, { - "$id": "909", + "$id": "913", "kind": "enum", "name": "MessageContentTextAnnotationType", "crossLanguageDefinitionId": "OpenAI.MessageContentTextAnnotationType", "valueType": { - "$id": "910", + "$id": "914", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11099,28 +11145,28 @@ }, "values": [ { - "$id": "911", + "$id": "915", "kind": "enumvalue", "name": "file_citation", "value": "file_citation", "valueType": { - "$ref": "910" + "$ref": "914" }, "enumType": { - "$ref": "909" + "$ref": "913" }, "decorators": [] }, { - "$id": "912", + "$id": "916", "kind": "enumvalue", "name": "file_path", "value": "file_path", "valueType": { - "$ref": "910" + "$ref": "914" }, "enumType": { - "$ref": "909" + "$ref": "913" }, "decorators": [] } @@ -11132,12 +11178,12 @@ "decorators": [] }, { - "$id": "913", + "$id": "917", "kind": "enum", "name": "MessageContentImageUrlObjectImageUrlDetail", "crossLanguageDefinitionId": "OpenAI.MessageContentImageUrlObject.image_url.detail.anonymous", "valueType": { - "$id": "914", + "$id": "918", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11145,41 +11191,41 @@ }, "values": [ { - "$id": "915", + "$id": "919", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "914" + "$ref": "918" }, "enumType": { - "$ref": "913" + "$ref": "917" }, "decorators": [] }, { - "$id": "916", + "$id": "920", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "914" + "$ref": "918" }, "enumType": { - "$ref": "913" + "$ref": "917" }, "decorators": [] }, { - "$id": "917", + "$id": "921", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "914" + "$ref": "918" }, "enumType": { - "$ref": "913" + "$ref": "917" }, "decorators": [] } @@ -11191,12 +11237,12 @@ "decorators": [] }, { - "$id": "918", + "$id": "922", "kind": "enum", "name": "MessageObjectStatus", "crossLanguageDefinitionId": "OpenAI.MessageObject.status.anonymous", "valueType": { - "$id": "919", + "$id": "923", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11204,41 +11250,41 @@ }, "values": [ { - "$id": "920", + "$id": "924", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "919" + "$ref": "923" }, "enumType": { - "$ref": "918" + "$ref": "922" }, "decorators": [] }, { - "$id": "921", + "$id": "925", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "919" + "$ref": "923" }, "enumType": { - "$ref": "918" + "$ref": "922" }, "decorators": [] }, { - "$id": "922", + "$id": "926", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "919" + "$ref": "923" }, "enumType": { - "$ref": "918" + "$ref": "922" }, "decorators": [] } @@ -11250,12 +11296,12 @@ "decorators": [] }, { - "$id": "923", + "$id": "927", "kind": "enum", "name": "MessageObjectIncompleteDetailsReason", "crossLanguageDefinitionId": "OpenAI.MessageObject.incomplete_details.reason.anonymous", "valueType": { - "$id": "924", + "$id": "928", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11263,67 +11309,67 @@ }, "values": [ { - "$id": "925", + "$id": "929", "kind": "enumvalue", "name": "content_filter", "value": "content_filter", "valueType": { - "$ref": "924" + "$ref": "928" }, "enumType": { - "$ref": "923" + "$ref": "927" }, "decorators": [] }, { - "$id": "926", + "$id": "930", "kind": "enumvalue", "name": "max_tokens", "value": "max_tokens", "valueType": { - "$ref": "924" + "$ref": "928" }, "enumType": { - "$ref": "923" + "$ref": "927" }, "decorators": [] }, { - "$id": "927", + "$id": "931", "kind": "enumvalue", "name": "run_cancelled", "value": "run_cancelled", "valueType": { - "$ref": "924" + "$ref": "928" }, "enumType": { - "$ref": "923" + "$ref": "927" }, "decorators": [] }, { - "$id": "928", + "$id": "932", "kind": "enumvalue", "name": "run_expired", "value": "run_expired", "valueType": { - "$ref": "924" + "$ref": "928" }, "enumType": { - "$ref": "923" + "$ref": "927" }, "decorators": [] }, { - "$id": "929", + "$id": "933", "kind": "enumvalue", "name": "run_failed", "value": "run_failed", "valueType": { - "$ref": "924" + "$ref": "928" }, "enumType": { - "$ref": "923" + "$ref": "927" }, "decorators": [] } @@ -11335,12 +11381,12 @@ "decorators": [] }, { - "$id": "930", + "$id": "934", "kind": "enum", "name": "MessageObjectRole", "crossLanguageDefinitionId": "OpenAI.MessageObject.role.anonymous", "valueType": { - "$id": "931", + "$id": "935", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11348,28 +11394,28 @@ }, "values": [ { - "$id": "932", + "$id": "936", "kind": "enumvalue", "name": "user", "value": "user", "valueType": { - "$ref": "931" + "$ref": "935" }, "enumType": { - "$ref": "930" + "$ref": "934" }, "decorators": [] }, { - "$id": "933", + "$id": "937", "kind": "enumvalue", "name": "assistant", "value": "assistant", "valueType": { - "$ref": "931" + "$ref": "935" }, "enumType": { - "$ref": "930" + "$ref": "934" }, "decorators": [] } @@ -11381,12 +11427,12 @@ "decorators": [] }, { - "$id": "934", + "$id": "938", "kind": "enum", "name": "CreateModerationRequestModel", "crossLanguageDefinitionId": "OpenAI.CreateModerationRequest.model.anonymous", "valueType": { - "$id": "935", + "$id": "939", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11394,54 +11440,54 @@ }, "values": [ { - "$id": "936", + "$id": "940", "kind": "enumvalue", "name": "omni-moderation-latest", "value": "omni-moderation-latest", "valueType": { - "$ref": "935" + "$ref": "939" }, "enumType": { - "$ref": "934" + "$ref": "938" }, "decorators": [] }, { - "$id": "937", + "$id": "941", "kind": "enumvalue", "name": "omni-moderation-2024-09-26", "value": "omni-moderation-2024-09-26", "valueType": { - "$ref": "935" + "$ref": "939" }, "enumType": { - "$ref": "934" + "$ref": "938" }, "decorators": [] }, { - "$id": "938", + "$id": "942", "kind": "enumvalue", "name": "text-moderation-latest", "value": "text-moderation-latest", "valueType": { - "$ref": "935" + "$ref": "939" }, "enumType": { - "$ref": "934" + "$ref": "938" }, "decorators": [] }, { - "$id": "939", + "$id": "943", "kind": "enumvalue", "name": "text-moderation-stable", "value": "text-moderation-stable", "valueType": { - "$ref": "935" + "$ref": "939" }, "enumType": { - "$ref": "934" + "$ref": "938" }, "decorators": [] } @@ -11453,12 +11499,12 @@ "decorators": [] }, { - "$id": "940", + "$id": "944", "kind": "enum", "name": "ModerationAppliedInputType", "crossLanguageDefinitionId": "OpenAI.ModerationAppliedInputType", "valueType": { - "$id": "941", + "$id": "945", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11466,28 +11512,28 @@ }, "values": [ { - "$id": "942", + "$id": "946", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "941" + "$ref": "945" }, "enumType": { - "$ref": "940" + "$ref": "944" }, "decorators": [] }, { - "$id": "943", + "$id": "947", "kind": "enumvalue", "name": "image", "value": "image", "valueType": { - "$ref": "941" + "$ref": "945" }, "enumType": { - "$ref": "940" + "$ref": "944" }, "decorators": [] } @@ -11499,12 +11545,12 @@ "decorators": [] }, { - "$id": "944", + "$id": "948", "kind": "enum", "name": "CreateThreadAndRunRequestModel", "crossLanguageDefinitionId": "OpenAI.CreateThreadAndRunRequest.model.anonymous", "valueType": { - "$id": "945", + "$id": "949", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11512,418 +11558,418 @@ }, "values": [ { - "$id": "946", + "$id": "950", "kind": "enumvalue", "name": "gpt-4.1", "value": "gpt-4.1", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "947", + "$id": "951", "kind": "enumvalue", "name": "gpt-4.1-mini", "value": "gpt-4.1-mini", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "948", + "$id": "952", "kind": "enumvalue", "name": "gpt-4.1-nano", "value": "gpt-4.1-nano", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "949", + "$id": "953", "kind": "enumvalue", "name": "gpt-4.1-2025-04-14", "value": "gpt-4.1-2025-04-14", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "950", + "$id": "954", "kind": "enumvalue", "name": "gpt-4.1-mini-2025-04-14", "value": "gpt-4.1-mini-2025-04-14", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "951", + "$id": "955", "kind": "enumvalue", "name": "gpt-4.1-nano-2025-04-14", "value": "gpt-4.1-nano-2025-04-14", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "952", + "$id": "956", "kind": "enumvalue", "name": "gpt-4o", "value": "gpt-4o", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "953", + "$id": "957", "kind": "enumvalue", "name": "gpt-4o-2024-11-20", "value": "gpt-4o-2024-11-20", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "954", + "$id": "958", "kind": "enumvalue", "name": "gpt-4o-2024-08-06", "value": "gpt-4o-2024-08-06", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "955", + "$id": "959", "kind": "enumvalue", "name": "gpt-4o-2024-05-13", "value": "gpt-4o-2024-05-13", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "956", + "$id": "960", "kind": "enumvalue", "name": "gpt-4o-mini", "value": "gpt-4o-mini", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "957", + "$id": "961", "kind": "enumvalue", "name": "gpt-4o-mini-2024-07-18", "value": "gpt-4o-mini-2024-07-18", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "958", + "$id": "962", "kind": "enumvalue", "name": "gpt-4.5-preview", "value": "gpt-4.5-preview", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "959", + "$id": "963", "kind": "enumvalue", "name": "gpt-4.5-preview-2025-02-27", "value": "gpt-4.5-preview-2025-02-27", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "960", + "$id": "964", "kind": "enumvalue", "name": "gpt-4-turbo", "value": "gpt-4-turbo", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "961", + "$id": "965", "kind": "enumvalue", "name": "gpt-4-turbo-2024-04-09", "value": "gpt-4-turbo-2024-04-09", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "962", + "$id": "966", "kind": "enumvalue", "name": "gpt-4-0125-preview", "value": "gpt-4-0125-preview", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "963", + "$id": "967", "kind": "enumvalue", "name": "gpt-4-turbo-preview", "value": "gpt-4-turbo-preview", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "964", + "$id": "968", "kind": "enumvalue", "name": "gpt-4-1106-preview", "value": "gpt-4-1106-preview", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "965", + "$id": "969", "kind": "enumvalue", "name": "gpt-4-vision-preview", "value": "gpt-4-vision-preview", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "966", + "$id": "970", "kind": "enumvalue", "name": "gpt-4", "value": "gpt-4", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "967", + "$id": "971", "kind": "enumvalue", "name": "gpt-4-0314", "value": "gpt-4-0314", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "968", + "$id": "972", "kind": "enumvalue", "name": "gpt-4-0613", "value": "gpt-4-0613", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "969", + "$id": "973", "kind": "enumvalue", "name": "gpt-4-32k", "value": "gpt-4-32k", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "970", + "$id": "974", "kind": "enumvalue", "name": "gpt-4-32k-0314", "value": "gpt-4-32k-0314", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "971", + "$id": "975", "kind": "enumvalue", "name": "gpt-4-32k-0613", "value": "gpt-4-32k-0613", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "972", + "$id": "976", "kind": "enumvalue", "name": "gpt-3.5-turbo", "value": "gpt-3.5-turbo", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "973", + "$id": "977", "kind": "enumvalue", "name": "gpt-3.5-turbo-16k", "value": "gpt-3.5-turbo-16k", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "974", + "$id": "978", "kind": "enumvalue", "name": "gpt-3.5-turbo-0613", "value": "gpt-3.5-turbo-0613", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "975", + "$id": "979", "kind": "enumvalue", "name": "gpt-3.5-turbo-1106", "value": "gpt-3.5-turbo-1106", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "976", + "$id": "980", "kind": "enumvalue", "name": "gpt-3.5-turbo-0125", "value": "gpt-3.5-turbo-0125", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] }, { - "$id": "977", + "$id": "981", "kind": "enumvalue", "name": "gpt-3.5-turbo-16k-0613", "value": "gpt-3.5-turbo-16k-0613", "valueType": { - "$ref": "945" + "$ref": "949" }, "enumType": { - "$ref": "944" + "$ref": "948" }, "decorators": [] } @@ -11935,12 +11981,12 @@ "decorators": [] }, { - "$id": "978", + "$id": "982", "kind": "enum", "name": "TruncationObjectType", "crossLanguageDefinitionId": "OpenAI.TruncationObject.type.anonymous", "valueType": { - "$id": "979", + "$id": "983", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11948,28 +11994,28 @@ }, "values": [ { - "$id": "980", + "$id": "984", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "979" + "$ref": "983" }, "enumType": { - "$ref": "978" + "$ref": "982" }, "decorators": [] }, { - "$id": "981", + "$id": "985", "kind": "enumvalue", "name": "last_messages", "value": "last_messages", "valueType": { - "$ref": "979" + "$ref": "983" }, "enumType": { - "$ref": "978" + "$ref": "982" }, "decorators": [] } @@ -11981,12 +12027,12 @@ "decorators": [] }, { - "$id": "982", + "$id": "986", "kind": "enum", "name": "CreateThreadAndRunRequestToolChoice1", "crossLanguageDefinitionId": "OpenAI.CreateThreadAndRunRequest.tool_choice.anonymous", "valueType": { - "$id": "983", + "$id": "987", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11994,41 +12040,41 @@ }, "values": [ { - "$id": "984", + "$id": "988", "kind": "enumvalue", "name": "none", "value": "none", "valueType": { - "$ref": "983" + "$ref": "987" }, "enumType": { - "$ref": "982" + "$ref": "986" }, "decorators": [] }, { - "$id": "985", + "$id": "989", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "983" + "$ref": "987" }, "enumType": { - "$ref": "982" + "$ref": "986" }, "decorators": [] }, { - "$id": "986", + "$id": "990", "kind": "enumvalue", "name": "required", "value": "required", "valueType": { - "$ref": "983" + "$ref": "987" }, "enumType": { - "$ref": "982" + "$ref": "986" }, "decorators": [] } @@ -12040,12 +12086,12 @@ "decorators": [] }, { - "$id": "987", + "$id": "991", "kind": "enum", "name": "AssistantsNamedToolChoiceType", "crossLanguageDefinitionId": "OpenAI.AssistantsNamedToolChoice.type.anonymous", "valueType": { - "$id": "988", + "$id": "992", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12053,41 +12099,41 @@ }, "values": [ { - "$id": "989", + "$id": "993", "kind": "enumvalue", "name": "function", "value": "function", "valueType": { - "$ref": "988" + "$ref": "992" }, "enumType": { - "$ref": "987" + "$ref": "991" }, "decorators": [] }, { - "$id": "990", + "$id": "994", "kind": "enumvalue", "name": "code_interpreter", "value": "code_interpreter", "valueType": { - "$ref": "988" + "$ref": "992" }, "enumType": { - "$ref": "987" + "$ref": "991" }, "decorators": [] }, { - "$id": "991", + "$id": "995", "kind": "enumvalue", "name": "file_search", "value": "file_search", "valueType": { - "$ref": "988" + "$ref": "992" }, "enumType": { - "$ref": "987" + "$ref": "991" }, "decorators": [] } @@ -12099,12 +12145,12 @@ "decorators": [] }, { - "$id": "992", + "$id": "996", "kind": "enum", "name": "RunObjectStatus", "crossLanguageDefinitionId": "OpenAI.RunObject.status.anonymous", "valueType": { - "$id": "993", + "$id": "997", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12112,119 +12158,119 @@ }, "values": [ { - "$id": "994", + "$id": "998", "kind": "enumvalue", "name": "queued", "value": "queued", "valueType": { - "$ref": "993" + "$ref": "997" }, "enumType": { - "$ref": "992" + "$ref": "996" }, "decorators": [] }, { - "$id": "995", + "$id": "999", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "993" + "$ref": "997" }, "enumType": { - "$ref": "992" + "$ref": "996" }, "decorators": [] }, { - "$id": "996", + "$id": "1000", "kind": "enumvalue", "name": "requires_action", "value": "requires_action", "valueType": { - "$ref": "993" + "$ref": "997" }, "enumType": { - "$ref": "992" + "$ref": "996" }, "decorators": [] }, { - "$id": "997", + "$id": "1001", "kind": "enumvalue", "name": "cancelling", "value": "cancelling", "valueType": { - "$ref": "993" + "$ref": "997" }, "enumType": { - "$ref": "992" + "$ref": "996" }, "decorators": [] }, { - "$id": "998", + "$id": "1002", "kind": "enumvalue", "name": "cancelled", "value": "cancelled", "valueType": { - "$ref": "993" + "$ref": "997" }, "enumType": { - "$ref": "992" + "$ref": "996" }, "decorators": [] }, { - "$id": "999", + "$id": "1003", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "993" + "$ref": "997" }, "enumType": { - "$ref": "992" + "$ref": "996" }, "decorators": [] }, { - "$id": "1000", + "$id": "1004", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "993" + "$ref": "997" }, "enumType": { - "$ref": "992" + "$ref": "996" }, "decorators": [] }, { - "$id": "1001", + "$id": "1005", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "993" + "$ref": "997" }, "enumType": { - "$ref": "992" + "$ref": "996" }, "decorators": [] }, { - "$id": "1002", + "$id": "1006", "kind": "enumvalue", "name": "expired", "value": "expired", "valueType": { - "$ref": "993" + "$ref": "997" }, "enumType": { - "$ref": "992" + "$ref": "996" }, "decorators": [] } @@ -12236,12 +12282,12 @@ "decorators": [] }, { - "$id": "1003", + "$id": "1007", "kind": "enum", "name": "RunObjectLastErrorCode", "crossLanguageDefinitionId": "OpenAI.RunObject.last_error.code.anonymous", "valueType": { - "$id": "1004", + "$id": "1008", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12249,41 +12295,41 @@ }, "values": [ { - "$id": "1005", + "$id": "1009", "kind": "enumvalue", "name": "server_error", "value": "server_error", "valueType": { - "$ref": "1004" + "$ref": "1008" }, "enumType": { - "$ref": "1003" + "$ref": "1007" }, "decorators": [] }, { - "$id": "1006", + "$id": "1010", "kind": "enumvalue", "name": "rate_limit_exceeded", "value": "rate_limit_exceeded", "valueType": { - "$ref": "1004" + "$ref": "1008" }, "enumType": { - "$ref": "1003" + "$ref": "1007" }, "decorators": [] }, { - "$id": "1007", + "$id": "1011", "kind": "enumvalue", "name": "invalid_prompt", "value": "invalid_prompt", "valueType": { - "$ref": "1004" + "$ref": "1008" }, "enumType": { - "$ref": "1003" + "$ref": "1007" }, "decorators": [] } @@ -12295,12 +12341,12 @@ "decorators": [] }, { - "$id": "1008", + "$id": "1012", "kind": "enum", "name": "RunObjectIncompleteDetailsReason", "crossLanguageDefinitionId": "OpenAI.RunObject.incomplete_details.reason.anonymous", "valueType": { - "$id": "1009", + "$id": "1013", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12308,28 +12354,28 @@ }, "values": [ { - "$id": "1010", + "$id": "1014", "kind": "enumvalue", "name": "max_completion_tokens", "value": "max_completion_tokens", "valueType": { - "$ref": "1009" + "$ref": "1013" }, "enumType": { - "$ref": "1008" + "$ref": "1012" }, "decorators": [] }, { - "$id": "1011", + "$id": "1015", "kind": "enumvalue", "name": "max_prompt_tokens", "value": "max_prompt_tokens", "valueType": { - "$ref": "1009" + "$ref": "1013" }, "enumType": { - "$ref": "1008" + "$ref": "1012" }, "decorators": [] } @@ -12341,12 +12387,12 @@ "decorators": [] }, { - "$id": "1012", + "$id": "1016", "kind": "enum", "name": "RunStepObjectType", "crossLanguageDefinitionId": "OpenAI.RunStepObject.type.anonymous", "valueType": { - "$id": "1013", + "$id": "1017", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12354,28 +12400,28 @@ }, "values": [ { - "$id": "1014", + "$id": "1018", "kind": "enumvalue", "name": "message_creation", "value": "message_creation", "valueType": { - "$ref": "1013" + "$ref": "1017" }, "enumType": { - "$ref": "1012" + "$ref": "1016" }, "decorators": [] }, { - "$id": "1015", + "$id": "1019", "kind": "enumvalue", "name": "tool_calls", "value": "tool_calls", "valueType": { - "$ref": "1013" + "$ref": "1017" }, "enumType": { - "$ref": "1012" + "$ref": "1016" }, "decorators": [] } @@ -12387,12 +12433,12 @@ "decorators": [] }, { - "$id": "1016", + "$id": "1020", "kind": "enum", "name": "RunStepObjectStatus", "crossLanguageDefinitionId": "OpenAI.RunStepObject.status.anonymous", "valueType": { - "$id": "1017", + "$id": "1021", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12400,67 +12446,67 @@ }, "values": [ { - "$id": "1018", + "$id": "1022", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "1017" + "$ref": "1021" }, "enumType": { - "$ref": "1016" + "$ref": "1020" }, "decorators": [] }, { - "$id": "1019", + "$id": "1023", "kind": "enumvalue", "name": "cancelled", "value": "cancelled", "valueType": { - "$ref": "1017" + "$ref": "1021" }, "enumType": { - "$ref": "1016" + "$ref": "1020" }, "decorators": [] }, { - "$id": "1020", + "$id": "1024", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "1017" + "$ref": "1021" }, "enumType": { - "$ref": "1016" + "$ref": "1020" }, "decorators": [] }, { - "$id": "1021", + "$id": "1025", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "1017" + "$ref": "1021" }, "enumType": { - "$ref": "1016" + "$ref": "1020" }, "decorators": [] }, { - "$id": "1022", + "$id": "1026", "kind": "enumvalue", "name": "expired", "value": "expired", "valueType": { - "$ref": "1017" + "$ref": "1021" }, "enumType": { - "$ref": "1016" + "$ref": "1020" }, "decorators": [] } @@ -12472,12 +12518,12 @@ "decorators": [] }, { - "$id": "1023", + "$id": "1027", "kind": "enum", "name": "RunStepDetailsType", "crossLanguageDefinitionId": "OpenAI.RunStepDetailsType", "valueType": { - "$id": "1024", + "$id": "1028", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12485,28 +12531,28 @@ }, "values": [ { - "$id": "1025", + "$id": "1029", "kind": "enumvalue", "name": "message_creation", "value": "message_creation", "valueType": { - "$ref": "1024" + "$ref": "1028" }, "enumType": { - "$ref": "1023" + "$ref": "1027" }, "decorators": [] }, { - "$id": "1026", + "$id": "1030", "kind": "enumvalue", "name": "tool_calls", "value": "tool_calls", "valueType": { - "$ref": "1024" + "$ref": "1028" }, "enumType": { - "$ref": "1023" + "$ref": "1027" }, "decorators": [] } @@ -12518,12 +12564,12 @@ "decorators": [] }, { - "$id": "1027", + "$id": "1031", "kind": "enum", "name": "RunStepDetailsToolCallType", "crossLanguageDefinitionId": "OpenAI.RunStepDetailsToolCallType", "valueType": { - "$id": "1028", + "$id": "1032", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12531,41 +12577,41 @@ }, "values": [ { - "$id": "1029", + "$id": "1033", "kind": "enumvalue", "name": "code_interpreter", "value": "code_interpreter", "valueType": { - "$ref": "1028" + "$ref": "1032" }, "enumType": { - "$ref": "1027" + "$ref": "1031" }, "decorators": [] }, { - "$id": "1030", + "$id": "1034", "kind": "enumvalue", "name": "file_search", "value": "file_search", "valueType": { - "$ref": "1028" + "$ref": "1032" }, "enumType": { - "$ref": "1027" + "$ref": "1031" }, "decorators": [] }, { - "$id": "1031", + "$id": "1035", "kind": "enumvalue", "name": "function", "value": "function", "valueType": { - "$ref": "1028" + "$ref": "1032" }, "enumType": { - "$ref": "1027" + "$ref": "1031" }, "decorators": [] } @@ -12577,12 +12623,12 @@ "decorators": [] }, { - "$id": "1032", + "$id": "1036", "kind": "enum", "name": "RunStepDetailsCodeInterpreterOutputType", "crossLanguageDefinitionId": "OpenAI.RunStepDetailsCodeInterpreterOutputType", "valueType": { - "$id": "1033", + "$id": "1037", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12590,28 +12636,28 @@ }, "values": [ { - "$id": "1034", + "$id": "1038", "kind": "enumvalue", "name": "logs", "value": "logs", "valueType": { - "$ref": "1033" + "$ref": "1037" }, "enumType": { - "$ref": "1032" + "$ref": "1036" }, "decorators": [] }, { - "$id": "1035", + "$id": "1039", "kind": "enumvalue", "name": "image", "value": "image", "valueType": { - "$ref": "1033" + "$ref": "1037" }, "enumType": { - "$ref": "1032" + "$ref": "1036" }, "decorators": [] } @@ -12623,12 +12669,12 @@ "decorators": [] }, { - "$id": "1036", + "$id": "1040", "kind": "enum", "name": "RunStepDetailsToolCallsFileSearchResultObjectContentType", "crossLanguageDefinitionId": "OpenAI.RunStepDetailsToolCallsFileSearchResultObjectContentType", "valueType": { - "$id": "1037", + "$id": "1041", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12636,15 +12682,15 @@ }, "values": [ { - "$id": "1038", + "$id": "1042", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "1037" + "$ref": "1041" }, "enumType": { - "$ref": "1036" + "$ref": "1040" }, "decorators": [] } @@ -12656,12 +12702,12 @@ "decorators": [] }, { - "$id": "1039", + "$id": "1043", "kind": "enum", "name": "RunStepObjectLastErrorCode", "crossLanguageDefinitionId": "OpenAI.RunStepObject.last_error.code.anonymous", "valueType": { - "$id": "1040", + "$id": "1044", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12669,28 +12715,28 @@ }, "values": [ { - "$id": "1041", + "$id": "1045", "kind": "enumvalue", "name": "server_error", "value": "server_error", "valueType": { - "$ref": "1040" + "$ref": "1044" }, "enumType": { - "$ref": "1039" + "$ref": "1043" }, "decorators": [] }, { - "$id": "1042", + "$id": "1046", "kind": "enumvalue", "name": "rate_limit_exceeded", "value": "rate_limit_exceeded", "valueType": { - "$ref": "1040" + "$ref": "1044" }, "enumType": { - "$ref": "1039" + "$ref": "1043" }, "decorators": [] } @@ -12702,12 +12748,12 @@ "decorators": [] }, { - "$id": "1043", + "$id": "1047", "kind": "enum", "name": "VectorStoreObjectStatus", "crossLanguageDefinitionId": "OpenAI.VectorStoreObject.status.anonymous", "valueType": { - "$id": "1044", + "$id": "1048", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12715,41 +12761,41 @@ }, "values": [ { - "$id": "1045", + "$id": "1049", "kind": "enumvalue", "name": "expired", "value": "expired", "valueType": { - "$ref": "1044" + "$ref": "1048" }, "enumType": { - "$ref": "1043" + "$ref": "1047" }, "decorators": [] }, { - "$id": "1046", + "$id": "1050", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "1044" + "$ref": "1048" }, "enumType": { - "$ref": "1043" + "$ref": "1047" }, "decorators": [] }, { - "$id": "1047", + "$id": "1051", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "1044" + "$ref": "1048" }, "enumType": { - "$ref": "1043" + "$ref": "1047" }, "decorators": [] } @@ -12761,12 +12807,12 @@ "decorators": [] }, { - "$id": "1048", + "$id": "1052", "kind": "enum", "name": "VectorStoreExpirationAnchor", "crossLanguageDefinitionId": "OpenAI.VectorStoreExpirationAnchor", "valueType": { - "$id": "1049", + "$id": "1053", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12774,15 +12820,15 @@ }, "values": [ { - "$id": "1050", + "$id": "1054", "kind": "enumvalue", "name": "last_active_at", "value": "last_active_at", "valueType": { - "$ref": "1049" + "$ref": "1053" }, "enumType": { - "$ref": "1048" + "$ref": "1052" }, "decorators": [] } @@ -12794,12 +12840,12 @@ "decorators": [] }, { - "$id": "1051", + "$id": "1055", "kind": "enum", "name": "VectorStoreFileBatchObjectStatus", "crossLanguageDefinitionId": "OpenAI.VectorStoreFileBatchObject.status.anonymous", "valueType": { - "$id": "1052", + "$id": "1056", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12807,54 +12853,54 @@ }, "values": [ { - "$id": "1053", + "$id": "1057", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "1052" + "$ref": "1056" }, "enumType": { - "$ref": "1051" + "$ref": "1055" }, "decorators": [] }, { - "$id": "1054", + "$id": "1058", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "1052" + "$ref": "1056" }, "enumType": { - "$ref": "1051" + "$ref": "1055" }, "decorators": [] }, { - "$id": "1055", + "$id": "1059", "kind": "enumvalue", "name": "cancelled", "value": "cancelled", "valueType": { - "$ref": "1052" + "$ref": "1056" }, "enumType": { - "$ref": "1051" + "$ref": "1055" }, "decorators": [] }, { - "$id": "1056", + "$id": "1060", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "1052" + "$ref": "1056" }, "enumType": { - "$ref": "1051" + "$ref": "1055" }, "decorators": [] } @@ -12866,12 +12912,12 @@ "decorators": [] }, { - "$id": "1057", + "$id": "1061", "kind": "enum", "name": "VectorStoreFileObjectStatus", "crossLanguageDefinitionId": "OpenAI.VectorStoreFileObject.status.anonymous", "valueType": { - "$id": "1058", + "$id": "1062", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12879,54 +12925,54 @@ }, "values": [ { - "$id": "1059", + "$id": "1063", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "1058" + "$ref": "1062" }, "enumType": { - "$ref": "1057" + "$ref": "1061" }, "decorators": [] }, { - "$id": "1060", + "$id": "1064", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "1058" + "$ref": "1062" }, "enumType": { - "$ref": "1057" + "$ref": "1061" }, "decorators": [] }, { - "$id": "1061", + "$id": "1065", "kind": "enumvalue", "name": "cancelled", "value": "cancelled", "valueType": { - "$ref": "1058" + "$ref": "1062" }, "enumType": { - "$ref": "1057" + "$ref": "1061" }, "decorators": [] }, { - "$id": "1062", + "$id": "1066", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "1058" + "$ref": "1062" }, "enumType": { - "$ref": "1057" + "$ref": "1061" }, "decorators": [] } @@ -12938,12 +12984,12 @@ "decorators": [] }, { - "$id": "1063", + "$id": "1067", "kind": "enum", "name": "VectorStoreFileObjectLastErrorCode", "crossLanguageDefinitionId": "OpenAI.VectorStoreFileObject.last_error.code.anonymous", "valueType": { - "$id": "1064", + "$id": "1068", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12951,41 +12997,41 @@ }, "values": [ { - "$id": "1065", + "$id": "1069", "kind": "enumvalue", "name": "server_error", "value": "server_error", "valueType": { - "$ref": "1064" + "$ref": "1068" }, "enumType": { - "$ref": "1063" + "$ref": "1067" }, "decorators": [] }, { - "$id": "1066", + "$id": "1070", "kind": "enumvalue", "name": "unsupported_file", "value": "unsupported_file", "valueType": { - "$ref": "1064" + "$ref": "1068" }, "enumType": { - "$ref": "1063" + "$ref": "1067" }, "decorators": [] }, { - "$id": "1067", + "$id": "1071", "kind": "enumvalue", "name": "invalid_file", "value": "invalid_file", "valueType": { - "$ref": "1064" + "$ref": "1068" }, "enumType": { - "$ref": "1063" + "$ref": "1067" }, "decorators": [] } @@ -12997,12 +13043,12 @@ "decorators": [] }, { - "$id": "1068", + "$id": "1072", "kind": "enum", "name": "ChunkingStrategyResponseParamType", "crossLanguageDefinitionId": "OpenAI.ChunkingStrategyResponseParam.type.anonymous", "valueType": { - "$id": "1069", + "$id": "1073", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13010,28 +13056,28 @@ }, "values": [ { - "$id": "1070", + "$id": "1074", "kind": "enumvalue", "name": "static", "value": "static", "valueType": { - "$ref": "1069" + "$ref": "1073" }, "enumType": { - "$ref": "1068" + "$ref": "1072" }, "decorators": [] }, { - "$id": "1071", + "$id": "1075", "kind": "enumvalue", "name": "other", "value": "other", "valueType": { - "$ref": "1069" + "$ref": "1073" }, "enumType": { - "$ref": "1068" + "$ref": "1072" }, "decorators": [] } @@ -13043,12 +13089,12 @@ "decorators": [] }, { - "$id": "1072", + "$id": "1076", "kind": "enum", "name": "VectorStoreSearchRequestRankingOptionsRanker", "crossLanguageDefinitionId": "OpenAI.VectorStoreSearchRequest.ranking_options.ranker.anonymous", "valueType": { - "$id": "1073", + "$id": "1077", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13056,28 +13102,28 @@ }, "values": [ { - "$id": "1074", + "$id": "1078", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1073" + "$ref": "1077" }, "enumType": { - "$ref": "1072" + "$ref": "1076" }, "decorators": [] }, { - "$id": "1075", + "$id": "1079", "kind": "enumvalue", "name": "default-2024-11-15", "value": "default-2024-11-15", "valueType": { - "$ref": "1073" + "$ref": "1077" }, "enumType": { - "$ref": "1072" + "$ref": "1076" }, "decorators": [] } @@ -13089,12 +13135,12 @@ "decorators": [] }, { - "$id": "1076", + "$id": "1080", "kind": "enum", "name": "CreateCompletionRequestModel", "crossLanguageDefinitionId": "OpenAI.CreateCompletionRequest.model.anonymous", "valueType": { - "$id": "1077", + "$id": "1081", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13102,41 +13148,41 @@ }, "values": [ { - "$id": "1078", + "$id": "1082", "kind": "enumvalue", "name": "gpt-3.5-turbo-instruct", "value": "gpt-3.5-turbo-instruct", "valueType": { - "$ref": "1077" + "$ref": "1081" }, "enumType": { - "$ref": "1076" + "$ref": "1080" }, "decorators": [] }, { - "$id": "1079", + "$id": "1083", "kind": "enumvalue", "name": "davinci-002", "value": "davinci-002", "valueType": { - "$ref": "1077" + "$ref": "1081" }, "enumType": { - "$ref": "1076" + "$ref": "1080" }, "decorators": [] }, { - "$id": "1080", + "$id": "1084", "kind": "enumvalue", "name": "babbage-002", "value": "babbage-002", "valueType": { - "$ref": "1077" + "$ref": "1081" }, "enumType": { - "$ref": "1076" + "$ref": "1080" }, "decorators": [] } @@ -13148,12 +13194,12 @@ "decorators": [] }, { - "$id": "1081", + "$id": "1085", "kind": "enum", "name": "CreateCompletionResponseChoiceFinishReason", "crossLanguageDefinitionId": "OpenAI.CreateCompletionResponse.choice.finish_reason.anonymous", "valueType": { - "$id": "1082", + "$id": "1086", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13161,41 +13207,41 @@ }, "values": [ { - "$id": "1083", + "$id": "1087", "kind": "enumvalue", "name": "stop", "value": "stop", "valueType": { - "$ref": "1082" + "$ref": "1086" }, "enumType": { - "$ref": "1081" + "$ref": "1085" }, "decorators": [] }, { - "$id": "1084", + "$id": "1088", "kind": "enumvalue", "name": "length", "value": "length", "valueType": { - "$ref": "1082" + "$ref": "1086" }, "enumType": { - "$ref": "1081" + "$ref": "1085" }, "decorators": [] }, { - "$id": "1085", + "$id": "1089", "kind": "enumvalue", "name": "content_filter", "value": "content_filter", "valueType": { - "$ref": "1082" + "$ref": "1086" }, "enumType": { - "$ref": "1081" + "$ref": "1085" }, "decorators": [] } @@ -13207,12 +13253,12 @@ "decorators": [] }, { - "$id": "1086", + "$id": "1090", "kind": "enum", "name": "RealtimeClientEventType", "crossLanguageDefinitionId": "OpenAI.RealtimeClientEventType", "valueType": { - "$id": "1087", + "$id": "1091", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13220,158 +13266,158 @@ }, "values": [ { - "$id": "1088", + "$id": "1092", "kind": "enumvalue", "name": "session_update", "value": "session.update", "valueType": { - "$ref": "1087" + "$ref": "1091" }, "enumType": { - "$ref": "1086" + "$ref": "1090" }, "decorators": [] }, { - "$id": "1089", + "$id": "1093", "kind": "enumvalue", "name": "input_audio_buffer_append", "value": "input_audio_buffer.append", "valueType": { - "$ref": "1087" + "$ref": "1091" }, "enumType": { - "$ref": "1086" + "$ref": "1090" }, "decorators": [] }, { - "$id": "1090", + "$id": "1094", "kind": "enumvalue", "name": "input_audio_buffer_commit", "value": "input_audio_buffer.commit", "valueType": { - "$ref": "1087" + "$ref": "1091" }, "enumType": { - "$ref": "1086" + "$ref": "1090" }, "decorators": [] }, { - "$id": "1091", + "$id": "1095", "kind": "enumvalue", "name": "input_audio_buffer_clear", "value": "input_audio_buffer.clear", "valueType": { - "$ref": "1087" + "$ref": "1091" }, "enumType": { - "$ref": "1086" + "$ref": "1090" }, "decorators": [] }, { - "$id": "1092", + "$id": "1096", "kind": "enumvalue", "name": "output_audio_buffer_clear", "value": "output_audio_buffer.clear", "valueType": { - "$ref": "1087" + "$ref": "1091" }, "enumType": { - "$ref": "1086" + "$ref": "1090" }, "decorators": [] }, { - "$id": "1093", + "$id": "1097", "kind": "enumvalue", "name": "conversation_item_create", "value": "conversation.item.create", "valueType": { - "$ref": "1087" + "$ref": "1091" }, "enumType": { - "$ref": "1086" + "$ref": "1090" }, "decorators": [] }, { - "$id": "1094", + "$id": "1098", "kind": "enumvalue", "name": "conversation_item_retrieve", "value": "conversation.item.retrieve", "valueType": { - "$ref": "1087" + "$ref": "1091" }, "enumType": { - "$ref": "1086" + "$ref": "1090" }, "decorators": [] }, { - "$id": "1095", + "$id": "1099", "kind": "enumvalue", "name": "conversation_item_truncate", "value": "conversation.item.truncate", "valueType": { - "$ref": "1087" + "$ref": "1091" }, "enumType": { - "$ref": "1086" + "$ref": "1090" }, "decorators": [] }, { - "$id": "1096", + "$id": "1100", "kind": "enumvalue", "name": "conversation_item_delete", "value": "conversation.item.delete", "valueType": { - "$ref": "1087" + "$ref": "1091" }, "enumType": { - "$ref": "1086" + "$ref": "1090" }, "decorators": [] }, { - "$id": "1097", + "$id": "1101", "kind": "enumvalue", "name": "response_create", "value": "response.create", "valueType": { - "$ref": "1087" + "$ref": "1091" }, "enumType": { - "$ref": "1086" + "$ref": "1090" }, "decorators": [] }, { - "$id": "1098", + "$id": "1102", "kind": "enumvalue", "name": "response_cancel", "value": "response.cancel", "valueType": { - "$ref": "1087" + "$ref": "1091" }, "enumType": { - "$ref": "1086" + "$ref": "1090" }, "decorators": [] }, { - "$id": "1099", + "$id": "1103", "kind": "enumvalue", "name": "transcription_session_update", "value": "transcription_session.update", "valueType": { - "$ref": "1087" + "$ref": "1091" }, "enumType": { - "$ref": "1086" + "$ref": "1090" }, "decorators": [] } @@ -13383,12 +13429,12 @@ "decorators": [] }, { - "$id": "1100", + "$id": "1104", "kind": "enum", "name": "RealtimeModality", "crossLanguageDefinitionId": "OpenAI.RealtimeModality", "valueType": { - "$id": "1101", + "$id": "1105", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13396,28 +13442,28 @@ }, "values": [ { - "$id": "1102", + "$id": "1106", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "1101" + "$ref": "1105" }, "enumType": { - "$ref": "1100" + "$ref": "1104" }, "decorators": [] }, { - "$id": "1103", + "$id": "1107", "kind": "enumvalue", "name": "audio", "value": "audio", "valueType": { - "$ref": "1101" + "$ref": "1105" }, "enumType": { - "$ref": "1100" + "$ref": "1104" }, "decorators": [] } @@ -13429,12 +13475,12 @@ "decorators": [] }, { - "$id": "1104", + "$id": "1108", "kind": "enum", "name": "RealtimeRequestSessionModel", "crossLanguageDefinitionId": "OpenAI.RealtimeRequestSession.model.anonymous", "valueType": { - "$id": "1105", + "$id": "1109", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13442,67 +13488,67 @@ }, "values": [ { - "$id": "1106", + "$id": "1110", "kind": "enumvalue", "name": "gpt-4o-realtime-preview", "value": "gpt-4o-realtime-preview", "valueType": { - "$ref": "1105" + "$ref": "1109" }, "enumType": { - "$ref": "1104" + "$ref": "1108" }, "decorators": [] }, { - "$id": "1107", + "$id": "1111", "kind": "enumvalue", "name": "gpt-4o-realtime-preview-2024-10-01", "value": "gpt-4o-realtime-preview-2024-10-01", "valueType": { - "$ref": "1105" + "$ref": "1109" }, "enumType": { - "$ref": "1104" + "$ref": "1108" }, "decorators": [] }, { - "$id": "1108", + "$id": "1112", "kind": "enumvalue", "name": "gpt-4o-realtime-preview-2024-12-17", "value": "gpt-4o-realtime-preview-2024-12-17", "valueType": { - "$ref": "1105" + "$ref": "1109" }, "enumType": { - "$ref": "1104" + "$ref": "1108" }, "decorators": [] }, { - "$id": "1109", + "$id": "1113", "kind": "enumvalue", "name": "gpt-4o-mini-realtime-preview", "value": "gpt-4o-mini-realtime-preview", "valueType": { - "$ref": "1105" + "$ref": "1109" }, "enumType": { - "$ref": "1104" + "$ref": "1108" }, "decorators": [] }, { - "$id": "1110", + "$id": "1114", "kind": "enumvalue", "name": "gpt-4o-mini-realtime-preview-2024-12-17", "value": "gpt-4o-mini-realtime-preview-2024-12-17", "valueType": { - "$ref": "1105" + "$ref": "1109" }, "enumType": { - "$ref": "1104" + "$ref": "1108" }, "decorators": [] } @@ -13514,12 +13560,12 @@ "decorators": [] }, { - "$id": "1111", + "$id": "1115", "kind": "enum", "name": "RealtimeAudioFormat", "crossLanguageDefinitionId": "OpenAI.RealtimeAudioFormat", "valueType": { - "$id": "1112", + "$id": "1116", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13527,41 +13573,41 @@ }, "values": [ { - "$id": "1113", + "$id": "1117", "kind": "enumvalue", "name": "pcm16", "value": "pcm16", "valueType": { - "$ref": "1112" + "$ref": "1116" }, "enumType": { - "$ref": "1111" + "$ref": "1115" }, "decorators": [] }, { - "$id": "1114", + "$id": "1118", "kind": "enumvalue", "name": "g711_ulaw", "value": "g711_ulaw", "valueType": { - "$ref": "1112" + "$ref": "1116" }, "enumType": { - "$ref": "1111" + "$ref": "1115" }, "decorators": [] }, { - "$id": "1115", + "$id": "1119", "kind": "enumvalue", "name": "g711_alaw", "value": "g711_alaw", "valueType": { - "$ref": "1112" + "$ref": "1116" }, "enumType": { - "$ref": "1111" + "$ref": "1115" }, "decorators": [] } @@ -13573,12 +13619,12 @@ "decorators": [] }, { - "$id": "1116", + "$id": "1120", "kind": "enum", "name": "RealtimeAudioInputTranscriptionModel", "crossLanguageDefinitionId": "OpenAI.RealtimeAudioInputTranscriptionModel", "valueType": { - "$id": "1117", + "$id": "1121", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13586,15 +13632,15 @@ }, "values": [ { - "$id": "1118", + "$id": "1122", "kind": "enumvalue", "name": "whisper_1", "value": "whisper-1", "valueType": { - "$ref": "1117" + "$ref": "1121" }, "enumType": { - "$ref": "1116" + "$ref": "1120" }, "decorators": [] } @@ -13606,12 +13652,12 @@ "decorators": [] }, { - "$id": "1119", + "$id": "1123", "kind": "enum", "name": "RealtimeTurnDetectionType", "crossLanguageDefinitionId": "OpenAI.RealtimeTurnDetectionType", "valueType": { - "$id": "1120", + "$id": "1124", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13619,29 +13665,29 @@ }, "values": [ { - "$id": "1121", + "$id": "1125", "kind": "enumvalue", "name": "server_vad", "value": "server_vad", "valueType": { - "$ref": "1120" + "$ref": "1124" }, "enumType": { - "$ref": "1119" + "$ref": "1123" }, "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": "1122", + "$id": "1126", "kind": "enumvalue", "name": "semantic_vad", "value": "semantic_vad", "valueType": { - "$ref": "1120" + "$ref": "1124" }, "enumType": { - "$ref": "1119" + "$ref": "1123" }, "decorators": [] } @@ -13653,12 +13699,12 @@ "decorators": [] }, { - "$id": "1123", + "$id": "1127", "kind": "enum", "name": "RealtimeSemanticVadTurnDetectionEagerness", "crossLanguageDefinitionId": "OpenAI.RealtimeSemanticVadTurnDetection.eagerness.anonymous", "valueType": { - "$id": "1124", + "$id": "1128", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13666,54 +13712,54 @@ }, "values": [ { - "$id": "1125", + "$id": "1129", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "1124" + "$ref": "1128" }, "enumType": { - "$ref": "1123" + "$ref": "1127" }, "decorators": [] }, { - "$id": "1126", + "$id": "1130", "kind": "enumvalue", "name": "medium", "value": "medium", "valueType": { - "$ref": "1124" + "$ref": "1128" }, "enumType": { - "$ref": "1123" + "$ref": "1127" }, "decorators": [] }, { - "$id": "1127", + "$id": "1131", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "1124" + "$ref": "1128" }, "enumType": { - "$ref": "1123" + "$ref": "1127" }, "decorators": [] }, { - "$id": "1128", + "$id": "1132", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1124" + "$ref": "1128" }, "enumType": { - "$ref": "1123" + "$ref": "1127" }, "decorators": [] } @@ -13725,12 +13771,12 @@ "decorators": [] }, { - "$id": "1129", + "$id": "1133", "kind": "enum", "name": "RealtimeAudioNoiseReductionType", "crossLanguageDefinitionId": "OpenAI.RealtimeAudioNoiseReductionType", "valueType": { - "$id": "1130", + "$id": "1134", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13738,28 +13784,28 @@ }, "values": [ { - "$id": "1131", + "$id": "1135", "kind": "enumvalue", "name": "near_field", "value": "near_field", "valueType": { - "$ref": "1130" + "$ref": "1134" }, "enumType": { - "$ref": "1129" + "$ref": "1133" }, "decorators": [] }, { - "$id": "1132", + "$id": "1136", "kind": "enumvalue", "name": "far_field", "value": "far_field", "valueType": { - "$ref": "1130" + "$ref": "1134" }, "enumType": { - "$ref": "1129" + "$ref": "1133" }, "decorators": [] } @@ -13771,12 +13817,12 @@ "decorators": [] }, { - "$id": "1133", + "$id": "1137", "kind": "enum", "name": "RealtimeToolType", "crossLanguageDefinitionId": "OpenAI.RealtimeToolType", "valueType": { - "$id": "1134", + "$id": "1138", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13784,15 +13830,15 @@ }, "values": [ { - "$id": "1135", + "$id": "1139", "kind": "enumvalue", "name": "function", "value": "function", "valueType": { - "$ref": "1134" + "$ref": "1138" }, "enumType": { - "$ref": "1133" + "$ref": "1137" }, "decorators": [] } @@ -13805,12 +13851,12 @@ "decorators": [] }, { - "$id": "1136", + "$id": "1140", "kind": "enum", "name": "RealtimeToolChoiceLiteral", "crossLanguageDefinitionId": "OpenAI.RealtimeToolChoiceLiteral", "valueType": { - "$id": "1137", + "$id": "1141", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13818,43 +13864,43 @@ }, "values": [ { - "$id": "1138", + "$id": "1142", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1137" + "$ref": "1141" }, "enumType": { - "$ref": "1136" + "$ref": "1140" }, "doc": "Specifies that the model should freely determine which tool or tools, if any, to call.", "decorators": [] }, { - "$id": "1139", + "$id": "1143", "kind": "enumvalue", "name": "none", "value": "none", "valueType": { - "$ref": "1137" + "$ref": "1141" }, "enumType": { - "$ref": "1136" + "$ref": "1140" }, "doc": "Specifies that the model should call no tools whatsoever.", "decorators": [] }, { - "$id": "1140", + "$id": "1144", "kind": "enumvalue", "name": "required", "value": "required", "valueType": { - "$ref": "1137" + "$ref": "1141" }, "enumType": { - "$ref": "1136" + "$ref": "1140" }, "doc": "Specifies that the model should call at least one tool.", "decorators": [] @@ -13868,12 +13914,12 @@ "decorators": [] }, { - "$id": "1141", + "$id": "1145", "kind": "enum", "name": "RealtimeItemType", "crossLanguageDefinitionId": "OpenAI.RealtimeItemType", "valueType": { - "$id": "1142", + "$id": "1146", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13881,41 +13927,41 @@ }, "values": [ { - "$id": "1143", + "$id": "1147", "kind": "enumvalue", "name": "message", "value": "message", "valueType": { - "$ref": "1142" + "$ref": "1146" }, "enumType": { - "$ref": "1141" + "$ref": "1145" }, "decorators": [] }, { - "$id": "1144", + "$id": "1148", "kind": "enumvalue", "name": "function_call", "value": "function_call", "valueType": { - "$ref": "1142" + "$ref": "1146" }, "enumType": { - "$ref": "1141" + "$ref": "1145" }, "decorators": [] }, { - "$id": "1145", + "$id": "1149", "kind": "enumvalue", "name": "function_call_output", "value": "function_call_output", "valueType": { - "$ref": "1142" + "$ref": "1146" }, "enumType": { - "$ref": "1141" + "$ref": "1145" }, "decorators": [] } @@ -13927,12 +13973,12 @@ "decorators": [] }, { - "$id": "1146", + "$id": "1150", "kind": "enum", "name": "RealtimeMessageRole", "crossLanguageDefinitionId": "OpenAI.RealtimeMessageRole", "valueType": { - "$id": "1147", + "$id": "1151", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13940,41 +13986,41 @@ }, "values": [ { - "$id": "1148", + "$id": "1152", "kind": "enumvalue", "name": "system", "value": "system", "valueType": { - "$ref": "1147" + "$ref": "1151" }, "enumType": { - "$ref": "1146" + "$ref": "1150" }, "decorators": [] }, { - "$id": "1149", + "$id": "1153", "kind": "enumvalue", "name": "user", "value": "user", "valueType": { - "$ref": "1147" + "$ref": "1151" }, "enumType": { - "$ref": "1146" + "$ref": "1150" }, "decorators": [] }, { - "$id": "1150", + "$id": "1154", "kind": "enumvalue", "name": "assistant", "value": "assistant", "valueType": { - "$ref": "1147" + "$ref": "1151" }, "enumType": { - "$ref": "1146" + "$ref": "1150" }, "decorators": [] } @@ -13986,12 +14032,12 @@ "decorators": [] }, { - "$id": "1151", + "$id": "1155", "kind": "enum", "name": "RealtimeItemStatus", "crossLanguageDefinitionId": "OpenAI.RealtimeItemStatus", "valueType": { - "$id": "1152", + "$id": "1156", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13999,41 +14045,41 @@ }, "values": [ { - "$id": "1153", + "$id": "1157", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "1152" + "$ref": "1156" }, "enumType": { - "$ref": "1151" + "$ref": "1155" }, "decorators": [] }, { - "$id": "1154", + "$id": "1158", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "1152" + "$ref": "1156" }, "enumType": { - "$ref": "1151" + "$ref": "1155" }, "decorators": [] }, { - "$id": "1155", + "$id": "1159", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "1152" + "$ref": "1156" }, "enumType": { - "$ref": "1151" + "$ref": "1155" }, "decorators": [] } @@ -14045,12 +14091,12 @@ "decorators": [] }, { - "$id": "1156", + "$id": "1160", "kind": "enum", "name": "RealtimeContentPartType", "crossLanguageDefinitionId": "OpenAI.RealtimeContentPartType", "valueType": { - "$id": "1157", + "$id": "1161", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14058,54 +14104,54 @@ }, "values": [ { - "$id": "1158", + "$id": "1162", "kind": "enumvalue", "name": "input_text", "value": "input_text", "valueType": { - "$ref": "1157" + "$ref": "1161" }, "enumType": { - "$ref": "1156" + "$ref": "1160" }, "decorators": [] }, { - "$id": "1159", + "$id": "1163", "kind": "enumvalue", "name": "input_audio", "value": "input_audio", "valueType": { - "$ref": "1157" + "$ref": "1161" }, "enumType": { - "$ref": "1156" + "$ref": "1160" }, "decorators": [] }, { - "$id": "1160", + "$id": "1164", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "1157" + "$ref": "1161" }, "enumType": { - "$ref": "1156" + "$ref": "1160" }, "decorators": [] }, { - "$id": "1161", + "$id": "1165", "kind": "enumvalue", "name": "audio", "value": "audio", "valueType": { - "$ref": "1157" + "$ref": "1161" }, "enumType": { - "$ref": "1156" + "$ref": "1160" }, "decorators": [] } @@ -14117,12 +14163,12 @@ "decorators": [] }, { - "$id": "1162", + "$id": "1166", "kind": "enum", "name": "RealtimeResponseCreateParamsConversation", "crossLanguageDefinitionId": "OpenAI.RealtimeResponseCreateParams.conversation.anonymous", "valueType": { - "$id": "1163", + "$id": "1167", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14130,28 +14176,28 @@ }, "values": [ { - "$id": "1164", + "$id": "1168", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1163" + "$ref": "1167" }, "enumType": { - "$ref": "1162" + "$ref": "1166" }, "decorators": [] }, { - "$id": "1165", + "$id": "1169", "kind": "enumvalue", "name": "none", "value": "none", "valueType": { - "$ref": "1163" + "$ref": "1167" }, "enumType": { - "$ref": "1162" + "$ref": "1166" }, "decorators": [] } @@ -14163,12 +14209,12 @@ "decorators": [] }, { - "$id": "1166", + "$id": "1170", "kind": "enum", "name": "RealtimeTranscriptionSessionCreateRequestModality", "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateRequest.modality.anonymous", "valueType": { - "$id": "1167", + "$id": "1171", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14176,28 +14222,28 @@ }, "values": [ { - "$id": "1168", + "$id": "1172", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "1167" + "$ref": "1171" }, "enumType": { - "$ref": "1166" + "$ref": "1170" }, "decorators": [] }, { - "$id": "1169", + "$id": "1173", "kind": "enumvalue", "name": "audio", "value": "audio", "valueType": { - "$ref": "1167" + "$ref": "1171" }, "enumType": { - "$ref": "1166" + "$ref": "1170" }, "decorators": [] } @@ -14209,12 +14255,12 @@ "decorators": [] }, { - "$id": "1170", + "$id": "1174", "kind": "enum", "name": "RealtimeTranscriptionSessionCreateRequestInputAudioFormat", "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateRequest.input_audio_format.anonymous", "valueType": { - "$id": "1171", + "$id": "1175", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14222,41 +14268,41 @@ }, "values": [ { - "$id": "1172", + "$id": "1176", "kind": "enumvalue", "name": "pcm16", "value": "pcm16", "valueType": { - "$ref": "1171" + "$ref": "1175" }, "enumType": { - "$ref": "1170" + "$ref": "1174" }, "decorators": [] }, { - "$id": "1173", + "$id": "1177", "kind": "enumvalue", "name": "g711_ulaw", "value": "g711_ulaw", "valueType": { - "$ref": "1171" + "$ref": "1175" }, "enumType": { - "$ref": "1170" + "$ref": "1174" }, "decorators": [] }, { - "$id": "1174", + "$id": "1178", "kind": "enumvalue", "name": "g711_alaw", "value": "g711_alaw", "valueType": { - "$ref": "1171" + "$ref": "1175" }, "enumType": { - "$ref": "1170" + "$ref": "1174" }, "decorators": [] } @@ -14268,12 +14314,12 @@ "decorators": [] }, { - "$id": "1175", + "$id": "1179", "kind": "enum", "name": "RealtimeTranscriptionSessionCreateRequestInputAudioTranscriptionModel", "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateRequest.input_audio_transcription.model.anonymous", "valueType": { - "$id": "1176", + "$id": "1180", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14281,41 +14327,41 @@ }, "values": [ { - "$id": "1177", + "$id": "1181", "kind": "enumvalue", "name": "gpt-4o-transcribe", "value": "gpt-4o-transcribe", "valueType": { - "$ref": "1176" + "$ref": "1180" }, "enumType": { - "$ref": "1175" + "$ref": "1179" }, "decorators": [] }, { - "$id": "1178", + "$id": "1182", "kind": "enumvalue", "name": "gpt-4o-mini-transcribe", "value": "gpt-4o-mini-transcribe", "valueType": { - "$ref": "1176" + "$ref": "1180" }, "enumType": { - "$ref": "1175" + "$ref": "1179" }, "decorators": [] }, { - "$id": "1179", + "$id": "1183", "kind": "enumvalue", "name": "whisper-1", "value": "whisper-1", "valueType": { - "$ref": "1176" + "$ref": "1180" }, "enumType": { - "$ref": "1175" + "$ref": "1179" }, "decorators": [] } @@ -14327,12 +14373,12 @@ "decorators": [] }, { - "$id": "1180", + "$id": "1184", "kind": "enum", "name": "RealtimeTranscriptionSessionCreateRequestTurnDetectionType", "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateRequest.turn_detection.type.anonymous", "valueType": { - "$id": "1181", + "$id": "1185", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14340,28 +14386,28 @@ }, "values": [ { - "$id": "1182", + "$id": "1186", "kind": "enumvalue", "name": "server_vad", "value": "server_vad", "valueType": { - "$ref": "1181" + "$ref": "1185" }, "enumType": { - "$ref": "1180" + "$ref": "1184" }, "decorators": [] }, { - "$id": "1183", + "$id": "1187", "kind": "enumvalue", "name": "semantic_vad", "value": "semantic_vad", "valueType": { - "$ref": "1181" + "$ref": "1185" }, "enumType": { - "$ref": "1180" + "$ref": "1184" }, "decorators": [] } @@ -14373,12 +14419,12 @@ "decorators": [] }, { - "$id": "1184", + "$id": "1188", "kind": "enum", "name": "RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness", "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateRequest.turn_detection.eagerness.anonymous", "valueType": { - "$id": "1185", + "$id": "1189", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14386,54 +14432,54 @@ }, "values": [ { - "$id": "1186", + "$id": "1190", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "1185" + "$ref": "1189" }, "enumType": { - "$ref": "1184" + "$ref": "1188" }, "decorators": [] }, { - "$id": "1187", + "$id": "1191", "kind": "enumvalue", "name": "medium", "value": "medium", "valueType": { - "$ref": "1185" + "$ref": "1189" }, "enumType": { - "$ref": "1184" + "$ref": "1188" }, "decorators": [] }, { - "$id": "1188", + "$id": "1192", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "1185" + "$ref": "1189" }, "enumType": { - "$ref": "1184" + "$ref": "1188" }, "decorators": [] }, { - "$id": "1189", + "$id": "1193", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1185" + "$ref": "1189" }, "enumType": { - "$ref": "1184" + "$ref": "1188" }, "decorators": [] } @@ -14445,12 +14491,12 @@ "decorators": [] }, { - "$id": "1190", + "$id": "1194", "kind": "enum", "name": "RealtimeTranscriptionSessionCreateRequestInputAudioNoiseReductionType", "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateRequest.input_audio_noise_reduction.type.anonymous", "valueType": { - "$id": "1191", + "$id": "1195", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14458,28 +14504,28 @@ }, "values": [ { - "$id": "1192", + "$id": "1196", "kind": "enumvalue", "name": "near_field", "value": "near_field", "valueType": { - "$ref": "1191" + "$ref": "1195" }, "enumType": { - "$ref": "1190" + "$ref": "1194" }, "decorators": [] }, { - "$id": "1193", + "$id": "1197", "kind": "enumvalue", "name": "far_field", "value": "far_field", "valueType": { - "$ref": "1191" + "$ref": "1195" }, "enumType": { - "$ref": "1190" + "$ref": "1194" }, "decorators": [] } @@ -14491,12 +14537,12 @@ "decorators": [] }, { - "$id": "1194", + "$id": "1198", "kind": "enum", "name": "RealtimeServerEventType", "crossLanguageDefinitionId": "OpenAI.RealtimeServerEventType", "valueType": { - "$id": "1195", + "$id": "1199", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14504,444 +14550,444 @@ }, "values": [ { - "$id": "1196", + "$id": "1200", "kind": "enumvalue", "name": "error", "value": "error", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1197", + "$id": "1201", "kind": "enumvalue", "name": "session_created", "value": "session.created", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1198", + "$id": "1202", "kind": "enumvalue", "name": "session_updated", "value": "session.updated", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1199", + "$id": "1203", "kind": "enumvalue", "name": "conversation_created", "value": "conversation.created", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1200", + "$id": "1204", "kind": "enumvalue", "name": "conversation_item_input_audio_transcription_completed", "value": "conversation.item.input_audio_transcription.completed", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1201", + "$id": "1205", "kind": "enumvalue", "name": "conversation_item_input_audio_transcription_delta", "value": "conversation.item.input_audio_transcription.delta", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1202", + "$id": "1206", "kind": "enumvalue", "name": "conversation_item_input_audio_transcription_failed", "value": "conversation.item.input_audio_transcription.failed", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1203", + "$id": "1207", "kind": "enumvalue", "name": "conversation_item_created", "value": "conversation.item.created", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1204", + "$id": "1208", "kind": "enumvalue", "name": "conversation_item_retrieved", "value": "conversation.item.retrieved", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1205", + "$id": "1209", "kind": "enumvalue", "name": "conversation_item_truncated", "value": "conversation.item.truncated", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1206", + "$id": "1210", "kind": "enumvalue", "name": "conversation_item_deleted", "value": "conversation.item.deleted", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1207", + "$id": "1211", "kind": "enumvalue", "name": "input_audio_buffer_committed", "value": "input_audio_buffer.committed", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1208", + "$id": "1212", "kind": "enumvalue", "name": "input_audio_buffer_cleared", "value": "input_audio_buffer.cleared", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1209", + "$id": "1213", "kind": "enumvalue", "name": "input_audio_buffer_speech_started", "value": "input_audio_buffer.speech_started", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1210", + "$id": "1214", "kind": "enumvalue", "name": "input_audio_buffer_speech_stopped", "value": "input_audio_buffer.speech_stopped", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1211", + "$id": "1215", "kind": "enumvalue", "name": "output_audio_buffer_cleared", "value": "output_audio_buffer.cleared", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1212", + "$id": "1216", "kind": "enumvalue", "name": "output_audio_buffer_started", "value": "output_audio_buffer.started", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1213", + "$id": "1217", "kind": "enumvalue", "name": "output_audio_buffer_stopped", "value": "output_audio_buffer.stopped", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1214", + "$id": "1218", "kind": "enumvalue", "name": "response_created", "value": "response.created", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1215", + "$id": "1219", "kind": "enumvalue", "name": "response_done", "value": "response.done", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1216", + "$id": "1220", "kind": "enumvalue", "name": "response_output_item_added", "value": "response.output_item.added", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1217", + "$id": "1221", "kind": "enumvalue", "name": "response_output_item_done", "value": "response.output_item.done", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1218", + "$id": "1222", "kind": "enumvalue", "name": "response_content_part_added", "value": "response.content_part.added", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1219", + "$id": "1223", "kind": "enumvalue", "name": "response_content_part_done", "value": "response.content_part.done", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1220", + "$id": "1224", "kind": "enumvalue", "name": "response_text_delta", "value": "response.text.delta", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1221", + "$id": "1225", "kind": "enumvalue", "name": "response_text_done", "value": "response.text.done", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1222", + "$id": "1226", "kind": "enumvalue", "name": "response_audio_transcript_delta", "value": "response.audio_transcript.delta", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1223", + "$id": "1227", "kind": "enumvalue", "name": "response_audio_transcript_done", "value": "response.audio_transcript.done", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1224", + "$id": "1228", "kind": "enumvalue", "name": "response_audio_delta", "value": "response.audio.delta", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1225", + "$id": "1229", "kind": "enumvalue", "name": "response_audio_done", "value": "response.audio.done", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1226", + "$id": "1230", "kind": "enumvalue", "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1227", + "$id": "1231", "kind": "enumvalue", "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1228", + "$id": "1232", "kind": "enumvalue", "name": "transcription_session_updated", "value": "transcription_session.updated", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] }, { - "$id": "1229", + "$id": "1233", "kind": "enumvalue", "name": "rate_limits_updated", "value": "rate_limits.updated", "valueType": { - "$ref": "1195" + "$ref": "1199" }, "enumType": { - "$ref": "1194" + "$ref": "1198" }, "decorators": [] } @@ -14953,12 +14999,12 @@ "decorators": [] }, { - "$id": "1230", + "$id": "1234", "kind": "enum", "name": "RealtimeResponseStatus", "crossLanguageDefinitionId": "OpenAI.RealtimeResponse.status.anonymous", "valueType": { - "$id": "1231", + "$id": "1235", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14966,54 +15012,54 @@ }, "values": [ { - "$id": "1232", + "$id": "1236", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "1231" + "$ref": "1235" }, "enumType": { - "$ref": "1230" + "$ref": "1234" }, "decorators": [] }, { - "$id": "1233", + "$id": "1237", "kind": "enumvalue", "name": "cancelled", "value": "cancelled", "valueType": { - "$ref": "1231" + "$ref": "1235" }, "enumType": { - "$ref": "1230" + "$ref": "1234" }, "decorators": [] }, { - "$id": "1234", + "$id": "1238", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "1231" + "$ref": "1235" }, "enumType": { - "$ref": "1230" + "$ref": "1234" }, "decorators": [] }, { - "$id": "1235", + "$id": "1239", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "1231" + "$ref": "1235" }, "enumType": { - "$ref": "1230" + "$ref": "1234" }, "decorators": [] } @@ -15025,12 +15071,12 @@ "decorators": [] }, { - "$id": "1236", + "$id": "1240", "kind": "enum", "name": "RealtimeResponseStatusDetailsType", "crossLanguageDefinitionId": "OpenAI.RealtimeResponse.status_details.type.anonymous", "valueType": { - "$id": "1237", + "$id": "1241", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15038,54 +15084,54 @@ }, "values": [ { - "$id": "1238", + "$id": "1242", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "1237" + "$ref": "1241" }, "enumType": { - "$ref": "1236" + "$ref": "1240" }, "decorators": [] }, { - "$id": "1239", + "$id": "1243", "kind": "enumvalue", "name": "cancelled", "value": "cancelled", "valueType": { - "$ref": "1237" + "$ref": "1241" }, "enumType": { - "$ref": "1236" + "$ref": "1240" }, "decorators": [] }, { - "$id": "1240", + "$id": "1244", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "1237" + "$ref": "1241" }, "enumType": { - "$ref": "1236" + "$ref": "1240" }, "decorators": [] }, { - "$id": "1241", + "$id": "1245", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "1237" + "$ref": "1241" }, "enumType": { - "$ref": "1236" + "$ref": "1240" }, "decorators": [] } @@ -15097,12 +15143,12 @@ "decorators": [] }, { - "$id": "1242", + "$id": "1246", "kind": "enum", "name": "RealtimeResponseStatusDetailsReason", "crossLanguageDefinitionId": "OpenAI.RealtimeResponse.status_details.reason.anonymous", "valueType": { - "$id": "1243", + "$id": "1247", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15110,54 +15156,54 @@ }, "values": [ { - "$id": "1244", + "$id": "1248", "kind": "enumvalue", "name": "turn_detected", "value": "turn_detected", "valueType": { - "$ref": "1243" + "$ref": "1247" }, "enumType": { - "$ref": "1242" + "$ref": "1246" }, "decorators": [] }, { - "$id": "1245", + "$id": "1249", "kind": "enumvalue", "name": "client_cancelled", "value": "client_cancelled", "valueType": { - "$ref": "1243" + "$ref": "1247" }, "enumType": { - "$ref": "1242" + "$ref": "1246" }, "decorators": [] }, { - "$id": "1246", + "$id": "1250", "kind": "enumvalue", "name": "max_output_tokens", "value": "max_output_tokens", "valueType": { - "$ref": "1243" + "$ref": "1247" }, "enumType": { - "$ref": "1242" + "$ref": "1246" }, "decorators": [] }, { - "$id": "1247", + "$id": "1251", "kind": "enumvalue", "name": "content_filter", "value": "content_filter", "valueType": { - "$ref": "1243" + "$ref": "1247" }, "enumType": { - "$ref": "1242" + "$ref": "1246" }, "decorators": [] } @@ -15169,12 +15215,12 @@ "decorators": [] }, { - "$id": "1248", + "$id": "1252", "kind": "enum", "name": "RealtimeResponseModality", "crossLanguageDefinitionId": "OpenAI.RealtimeResponse.modality.anonymous", "valueType": { - "$id": "1249", + "$id": "1253", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15182,28 +15228,28 @@ }, "values": [ { - "$id": "1250", + "$id": "1254", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "1249" + "$ref": "1253" }, "enumType": { - "$ref": "1248" + "$ref": "1252" }, "decorators": [] }, { - "$id": "1251", + "$id": "1255", "kind": "enumvalue", "name": "audio", "value": "audio", "valueType": { - "$ref": "1249" + "$ref": "1253" }, "enumType": { - "$ref": "1248" + "$ref": "1252" }, "decorators": [] } @@ -15215,12 +15261,12 @@ "decorators": [] }, { - "$id": "1252", + "$id": "1256", "kind": "enum", "name": "RealtimeResponseOutputAudioFormat", "crossLanguageDefinitionId": "OpenAI.RealtimeResponse.output_audio_format.anonymous", "valueType": { - "$id": "1253", + "$id": "1257", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15228,41 +15274,41 @@ }, "values": [ { - "$id": "1254", + "$id": "1258", "kind": "enumvalue", "name": "pcm16", "value": "pcm16", "valueType": { - "$ref": "1253" + "$ref": "1257" }, "enumType": { - "$ref": "1252" + "$ref": "1256" }, "decorators": [] }, { - "$id": "1255", + "$id": "1259", "kind": "enumvalue", "name": "g711_ulaw", "value": "g711_ulaw", "valueType": { - "$ref": "1253" + "$ref": "1257" }, "enumType": { - "$ref": "1252" + "$ref": "1256" }, "decorators": [] }, { - "$id": "1256", + "$id": "1260", "kind": "enumvalue", "name": "g711_alaw", "value": "g711_alaw", "valueType": { - "$ref": "1253" + "$ref": "1257" }, "enumType": { - "$ref": "1252" + "$ref": "1256" }, "decorators": [] } @@ -15274,12 +15320,12 @@ "decorators": [] }, { - "$id": "1257", + "$id": "1261", "kind": "enum", "name": "RealtimeTranscriptionSessionCreateResponseModality", "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateResponse.modality.anonymous", "valueType": { - "$id": "1258", + "$id": "1262", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15287,28 +15333,28 @@ }, "values": [ { - "$id": "1259", + "$id": "1263", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "1258" + "$ref": "1262" }, "enumType": { - "$ref": "1257" + "$ref": "1261" }, "decorators": [] }, { - "$id": "1260", + "$id": "1264", "kind": "enumvalue", "name": "audio", "value": "audio", "valueType": { - "$ref": "1258" + "$ref": "1262" }, "enumType": { - "$ref": "1257" + "$ref": "1261" }, "decorators": [] } @@ -15320,12 +15366,12 @@ "decorators": [] }, { - "$id": "1261", + "$id": "1265", "kind": "enum", "name": "RealtimeTranscriptionSessionCreateResponseInputAudioTranscriptionModel", "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateResponse.input_audio_transcription.model.anonymous", "valueType": { - "$id": "1262", + "$id": "1266", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15333,41 +15379,41 @@ }, "values": [ { - "$id": "1263", + "$id": "1267", "kind": "enumvalue", "name": "gpt-4o-transcribe", "value": "gpt-4o-transcribe", "valueType": { - "$ref": "1262" + "$ref": "1266" }, "enumType": { - "$ref": "1261" + "$ref": "1265" }, "decorators": [] }, { - "$id": "1264", + "$id": "1268", "kind": "enumvalue", "name": "gpt-4o-mini-transcribe", "value": "gpt-4o-mini-transcribe", "valueType": { - "$ref": "1262" + "$ref": "1266" }, "enumType": { - "$ref": "1261" + "$ref": "1265" }, "decorators": [] }, { - "$id": "1265", + "$id": "1269", "kind": "enumvalue", "name": "whisper-1", "value": "whisper-1", "valueType": { - "$ref": "1262" + "$ref": "1266" }, "enumType": { - "$ref": "1261" + "$ref": "1265" }, "decorators": [] } @@ -15379,12 +15425,12 @@ "decorators": [] }, { - "$id": "1266", + "$id": "1270", "kind": "enum", "name": "RealtimeSessionCreateRequestModel", "crossLanguageDefinitionId": "OpenAI.RealtimeSessionCreateRequest.model.anonymous", "valueType": { - "$id": "1267", + "$id": "1271", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15392,80 +15438,80 @@ }, "values": [ { - "$id": "1268", + "$id": "1272", "kind": "enumvalue", "name": "gpt-4o-realtime-preview", "value": "gpt-4o-realtime-preview", "valueType": { - "$ref": "1267" + "$ref": "1271" }, "enumType": { - "$ref": "1266" + "$ref": "1270" }, "decorators": [] }, { - "$id": "1269", + "$id": "1273", "kind": "enumvalue", "name": "gpt-4o-realtime-preview-2024-10-01", "value": "gpt-4o-realtime-preview-2024-10-01", "valueType": { - "$ref": "1267" + "$ref": "1271" }, "enumType": { - "$ref": "1266" + "$ref": "1270" }, "decorators": [] }, { - "$id": "1270", + "$id": "1274", "kind": "enumvalue", "name": "gpt-4o-realtime-preview-2024-12-17", "value": "gpt-4o-realtime-preview-2024-12-17", "valueType": { - "$ref": "1267" + "$ref": "1271" }, "enumType": { - "$ref": "1266" + "$ref": "1270" }, "decorators": [] }, { - "$id": "1271", + "$id": "1275", "kind": "enumvalue", "name": "gpt-4o-realtime-preview-2025-06-03", "value": "gpt-4o-realtime-preview-2025-06-03", "valueType": { - "$ref": "1267" + "$ref": "1271" }, "enumType": { - "$ref": "1266" + "$ref": "1270" }, "decorators": [] }, { - "$id": "1272", + "$id": "1276", "kind": "enumvalue", "name": "gpt-4o-mini-realtime-preview", "value": "gpt-4o-mini-realtime-preview", "valueType": { - "$ref": "1267" + "$ref": "1271" }, "enumType": { - "$ref": "1266" + "$ref": "1270" }, "decorators": [] }, { - "$id": "1273", + "$id": "1277", "kind": "enumvalue", "name": "gpt-4o-mini-realtime-preview-2024-12-17", "value": "gpt-4o-mini-realtime-preview-2024-12-17", "valueType": { - "$ref": "1267" + "$ref": "1271" }, "enumType": { - "$ref": "1266" + "$ref": "1270" }, "decorators": [] } @@ -15477,12 +15523,12 @@ "decorators": [] }, { - "$id": "1274", + "$id": "1278", "kind": "enum", "name": "RealtimeSessionCreateRequestTurnDetectionType", "crossLanguageDefinitionId": "OpenAI.RealtimeSessionCreateRequest.turn_detection.type.anonymous", "valueType": { - "$id": "1275", + "$id": "1279", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15490,28 +15536,28 @@ }, "values": [ { - "$id": "1276", + "$id": "1280", "kind": "enumvalue", "name": "server_vad", "value": "server_vad", "valueType": { - "$ref": "1275" + "$ref": "1279" }, "enumType": { - "$ref": "1274" + "$ref": "1278" }, "decorators": [] }, { - "$id": "1277", + "$id": "1281", "kind": "enumvalue", "name": "semantic_vad", "value": "semantic_vad", "valueType": { - "$ref": "1275" + "$ref": "1279" }, "enumType": { - "$ref": "1274" + "$ref": "1278" }, "decorators": [] } @@ -15523,12 +15569,12 @@ "decorators": [] }, { - "$id": "1278", + "$id": "1282", "kind": "enum", "name": "RealtimeSessionCreateRequestTurnDetectionEagerness", "crossLanguageDefinitionId": "OpenAI.RealtimeSessionCreateRequest.turn_detection.eagerness.anonymous", "valueType": { - "$id": "1279", + "$id": "1283", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15536,54 +15582,54 @@ }, "values": [ { - "$id": "1280", + "$id": "1284", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "1279" + "$ref": "1283" }, "enumType": { - "$ref": "1278" + "$ref": "1282" }, "decorators": [] }, { - "$id": "1281", + "$id": "1285", "kind": "enumvalue", "name": "medium", "value": "medium", "valueType": { - "$ref": "1279" + "$ref": "1283" }, "enumType": { - "$ref": "1278" + "$ref": "1282" }, "decorators": [] }, { - "$id": "1282", + "$id": "1286", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "1279" + "$ref": "1283" }, "enumType": { - "$ref": "1278" + "$ref": "1282" }, "decorators": [] }, { - "$id": "1283", + "$id": "1287", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1279" + "$ref": "1283" }, "enumType": { - "$ref": "1278" + "$ref": "1282" }, "decorators": [] } @@ -15595,12 +15641,12 @@ "decorators": [] }, { - "$id": "1284", + "$id": "1288", "kind": "enum", "name": "RealtimeSessionCreateRequestInputAudioNoiseReductionType", "crossLanguageDefinitionId": "OpenAI.RealtimeSessionCreateRequest.input_audio_noise_reduction.type.anonymous", "valueType": { - "$id": "1285", + "$id": "1289", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15608,28 +15654,28 @@ }, "values": [ { - "$id": "1286", + "$id": "1290", "kind": "enumvalue", "name": "near_field", "value": "near_field", "valueType": { - "$ref": "1285" + "$ref": "1289" }, "enumType": { - "$ref": "1284" + "$ref": "1288" }, "decorators": [] }, { - "$id": "1287", + "$id": "1291", "kind": "enumvalue", "name": "far_field", "value": "far_field", "valueType": { - "$ref": "1285" + "$ref": "1289" }, "enumType": { - "$ref": "1284" + "$ref": "1288" }, "decorators": [] } @@ -15641,12 +15687,12 @@ "decorators": [] }, { - "$id": "1288", + "$id": "1292", "kind": "enum", "name": "CreateUploadRequestPurpose", "crossLanguageDefinitionId": "OpenAI.CreateUploadRequest.purpose.anonymous", "valueType": { - "$id": "1289", + "$id": "1293", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15654,54 +15700,54 @@ }, "values": [ { - "$id": "1290", + "$id": "1294", "kind": "enumvalue", "name": "assistants", "value": "assistants", "valueType": { - "$ref": "1289" + "$ref": "1293" }, "enumType": { - "$ref": "1288" + "$ref": "1292" }, "decorators": [] }, { - "$id": "1291", + "$id": "1295", "kind": "enumvalue", "name": "batch", "value": "batch", "valueType": { - "$ref": "1289" + "$ref": "1293" }, "enumType": { - "$ref": "1288" + "$ref": "1292" }, "decorators": [] }, { - "$id": "1292", + "$id": "1296", "kind": "enumvalue", "name": "fine-tune", "value": "fine-tune", "valueType": { - "$ref": "1289" + "$ref": "1293" }, "enumType": { - "$ref": "1288" + "$ref": "1292" }, "decorators": [] }, { - "$id": "1293", + "$id": "1297", "kind": "enumvalue", "name": "vision", "value": "vision", "valueType": { - "$ref": "1289" + "$ref": "1293" }, "enumType": { - "$ref": "1288" + "$ref": "1292" }, "decorators": [] } @@ -15713,12 +15759,12 @@ "decorators": [] }, { - "$id": "1294", + "$id": "1298", "kind": "enum", "name": "UploadStatus", "crossLanguageDefinitionId": "OpenAI.Upload.status.anonymous", "valueType": { - "$id": "1295", + "$id": "1299", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15726,54 +15772,54 @@ }, "values": [ { - "$id": "1296", + "$id": "1300", "kind": "enumvalue", "name": "pending", "value": "pending", "valueType": { - "$ref": "1295" + "$ref": "1299" }, "enumType": { - "$ref": "1294" + "$ref": "1298" }, "decorators": [] }, { - "$id": "1297", + "$id": "1301", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "1295" + "$ref": "1299" }, "enumType": { - "$ref": "1294" + "$ref": "1298" }, "decorators": [] }, { - "$id": "1298", + "$id": "1302", "kind": "enumvalue", "name": "cancelled", "value": "cancelled", "valueType": { - "$ref": "1295" + "$ref": "1299" }, "enumType": { - "$ref": "1294" + "$ref": "1298" }, "decorators": [] }, { - "$id": "1299", + "$id": "1303", "kind": "enumvalue", "name": "expired", "value": "expired", "valueType": { - "$ref": "1295" + "$ref": "1299" }, "enumType": { - "$ref": "1294" + "$ref": "1298" }, "decorators": [] } @@ -15785,12 +15831,12 @@ "decorators": [] }, { - "$id": "1300", + "$id": "1304", "kind": "enum", "name": "FineTuneChatCompletionRequestAssistantMessageWeight", "crossLanguageDefinitionId": "OpenAI.FineTuneChatCompletionRequestAssistantMessage.weight.anonymous", "valueType": { - "$id": "1301", + "$id": "1305", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15798,28 +15844,28 @@ }, "values": [ { - "$id": "1302", + "$id": "1306", "kind": "enumvalue", "name": "0", "value": "0", "valueType": { - "$ref": "1301" + "$ref": "1305" }, "enumType": { - "$ref": "1300" + "$ref": "1304" }, "decorators": [] }, { - "$id": "1303", + "$id": "1307", "kind": "enumvalue", "name": "1", "value": "1", "valueType": { - "$ref": "1301" + "$ref": "1305" }, "enumType": { - "$ref": "1300" + "$ref": "1304" }, "decorators": [] } @@ -15831,12 +15877,12 @@ "decorators": [] }, { - "$id": "1304", + "$id": "1308", "kind": "enum", "name": "MessageDeltaContentImageFileObjectImageFileDetail", "crossLanguageDefinitionId": "OpenAI.MessageDeltaContentImageFileObject.image_file.detail.anonymous", "valueType": { - "$id": "1305", + "$id": "1309", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15844,41 +15890,41 @@ }, "values": [ { - "$id": "1306", + "$id": "1310", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1305" + "$ref": "1309" }, "enumType": { - "$ref": "1304" + "$ref": "1308" }, "decorators": [] }, { - "$id": "1307", + "$id": "1311", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "1305" + "$ref": "1309" }, "enumType": { - "$ref": "1304" + "$ref": "1308" }, "decorators": [] }, { - "$id": "1308", + "$id": "1312", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "1305" + "$ref": "1309" }, "enumType": { - "$ref": "1304" + "$ref": "1308" }, "decorators": [] } @@ -15890,12 +15936,12 @@ "decorators": [] }, { - "$id": "1309", + "$id": "1313", "kind": "enum", "name": "MessageDeltaContentImageUrlObjectImageUrlDetail", "crossLanguageDefinitionId": "OpenAI.MessageDeltaContentImageUrlObject.image_url.detail.anonymous", "valueType": { - "$id": "1310", + "$id": "1314", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -15903,87 +15949,41 @@ }, "values": [ { - "$id": "1311", + "$id": "1315", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1310" + "$ref": "1314" }, "enumType": { - "$ref": "1309" + "$ref": "1313" }, "decorators": [] }, { - "$id": "1312", + "$id": "1316", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "1310" + "$ref": "1314" }, "enumType": { - "$ref": "1309" + "$ref": "1313" }, "decorators": [] }, { - "$id": "1313", + "$id": "1317", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "1310" - }, - "enumType": { - "$ref": "1309" - }, - "decorators": [] - } - ], - "namespace": "OpenAI", - "isFixed": true, - "isFlags": false, - "usage": "Output", - "decorators": [] - }, - { - "$id": "1314", - "kind": "enum", - "name": "MessageDeltaObjectDeltaRole", - "crossLanguageDefinitionId": "OpenAI.MessageDeltaObject.delta.role.anonymous", - "valueType": { - "$id": "1315", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "1316", - "kind": "enumvalue", - "name": "user", - "value": "user", - "valueType": { - "$ref": "1315" - }, - "enumType": { "$ref": "1314" }, - "decorators": [] - }, - { - "$id": "1317", - "kind": "enumvalue", - "name": "assistant", - "value": "assistant", - "valueType": { - "$ref": "1315" - }, "enumType": { - "$ref": "1314" + "$ref": "1313" }, "decorators": [] } @@ -15997,8 +15997,8 @@ { "$id": "1318", "kind": "enum", - "name": "AssistantCollectionOrder", - "crossLanguageDefinitionId": "OpenAI.AssistantCollectionOrder", + "name": "MessageDeltaObjectDeltaRole", + "crossLanguageDefinitionId": "OpenAI.MessageDeltaObject.delta.role.anonymous", "valueType": { "$id": "1319", "kind": "string", @@ -16010,8 +16010,8 @@ { "$id": "1320", "kind": "enumvalue", - "name": "Ascending", - "value": "asc", + "name": "user", + "value": "user", "valueType": { "$ref": "1319" }, @@ -16023,8 +16023,8 @@ { "$id": "1321", "kind": "enumvalue", - "name": "Descending", - "value": "desc", + "name": "assistant", + "value": "assistant", "valueType": { "$ref": "1319" }, @@ -16035,16 +16035,16 @@ } ], "namespace": "OpenAI", - "isFixed": false, + "isFixed": true, "isFlags": false, - "usage": "Input", + "usage": "Output", "decorators": [] }, { "$id": "1322", "kind": "enum", - "name": "MessageCollectionOrder", - "crossLanguageDefinitionId": "OpenAI.MessageCollectionOrder", + "name": "AssistantCollectionOrder", + "crossLanguageDefinitionId": "OpenAI.AssistantCollectionOrder", "valueType": { "$id": "1323", "kind": "string", @@ -16089,8 +16089,8 @@ { "$id": "1326", "kind": "enum", - "name": "RunCollectionOrder", - "crossLanguageDefinitionId": "OpenAI.RunCollectionOrder", + "name": "MessageCollectionOrder", + "crossLanguageDefinitionId": "OpenAI.MessageCollectionOrder", "valueType": { "$id": "1327", "kind": "string", @@ -16135,8 +16135,8 @@ { "$id": "1330", "kind": "enum", - "name": "RunStepCollectionOrder", - "crossLanguageDefinitionId": "OpenAI.RunStepCollectionOrder", + "name": "RunCollectionOrder", + "crossLanguageDefinitionId": "OpenAI.RunCollectionOrder", "valueType": { "$id": "1331", "kind": "string", @@ -16181,8 +16181,8 @@ { "$id": "1334", "kind": "enum", - "name": "ChatCompletionCollectionOrder", - "crossLanguageDefinitionId": "OpenAI.ChatCompletionCollectionOrder", + "name": "RunStepCollectionOrder", + "crossLanguageDefinitionId": "OpenAI.RunStepCollectionOrder", "valueType": { "$id": "1335", "kind": "string", @@ -16227,8 +16227,8 @@ { "$id": "1338", "kind": "enum", - "name": "ChatCompletionMessageCollectionOrder", - "crossLanguageDefinitionId": "OpenAI.ChatCompletionMessageCollectionOrder", + "name": "ChatCompletionCollectionOrder", + "crossLanguageDefinitionId": "OpenAI.ChatCompletionCollectionOrder", "valueType": { "$id": "1339", "kind": "string", @@ -16273,8 +16273,8 @@ { "$id": "1342", "kind": "enum", - "name": "ContainerCollectionOrder", - "crossLanguageDefinitionId": "OpenAI.ContainerCollectionOrder", + "name": "ChatCompletionMessageCollectionOrder", + "crossLanguageDefinitionId": "OpenAI.ChatCompletionMessageCollectionOrder", "valueType": { "$id": "1343", "kind": "string", @@ -16319,8 +16319,8 @@ { "$id": "1346", "kind": "enum", - "name": "ResponseItemCollectionOrder", - "crossLanguageDefinitionId": "OpenAI.ResponseItemCollectionOrder", + "name": "ContainerCollectionOrder", + "crossLanguageDefinitionId": "OpenAI.ContainerCollectionOrder", "valueType": { "$id": "1347", "kind": "string", @@ -16365,8 +16365,8 @@ { "$id": "1350", "kind": "enum", - "name": "DotNetGlobalToolCallApprovalPolicy", - "crossLanguageDefinitionId": "OpenAI.DotNetGlobalToolCallApprovalPolicy", + "name": "ResponseItemCollectionOrder", + "crossLanguageDefinitionId": "OpenAI.ResponseItemCollectionOrder", "valueType": { "$id": "1351", "kind": "string", @@ -16378,8 +16378,8 @@ { "$id": "1352", "kind": "enumvalue", - "name": "AlwaysRequireApproval", - "value": "always", + "name": "Ascending", + "value": "asc", "valueType": { "$ref": "1351" }, @@ -16391,8 +16391,8 @@ { "$id": "1353", "kind": "enumvalue", - "name": "NeverRequireApproval", - "value": "never", + "name": "Descending", + "value": "desc", "valueType": { "$ref": "1351" }, @@ -16402,18 +16402,17 @@ "decorators": [] } ], - "access": "public", "namespace": "OpenAI", "isFixed": false, "isFlags": false, - "usage": "Input,Output", + "usage": "Input", "decorators": [] }, { "$id": "1354", "kind": "enum", - "name": "DotNetCombinedChunkingStrategyParamType", - "crossLanguageDefinitionId": "OpenAI.DotNetCombinedChunkingStrategyParam.type.anonymous", + "name": "DotNetGlobalToolCallApprovalPolicy", + "crossLanguageDefinitionId": "OpenAI.DotNetGlobalToolCallApprovalPolicy", "valueType": { "$id": "1355", "kind": "string", @@ -16425,8 +16424,8 @@ { "$id": "1356", "kind": "enumvalue", - "name": "auto", - "value": "auto", + "name": "AlwaysRequireApproval", + "value": "always", "valueType": { "$ref": "1355" }, @@ -16438,8 +16437,8 @@ { "$id": "1357", "kind": "enumvalue", - "name": "static", - "value": "static", + "name": "NeverRequireApproval", + "value": "never", "valueType": { "$ref": "1355" }, @@ -16447,17 +16446,64 @@ "$ref": "1354" }, "decorators": [] + } + ], + "access": "public", + "namespace": "OpenAI", + "isFixed": false, + "isFlags": false, + "usage": "Input,Output", + "decorators": [] + }, + { + "$id": "1358", + "kind": "enum", + "name": "DotNetCombinedChunkingStrategyParamType", + "crossLanguageDefinitionId": "OpenAI.DotNetCombinedChunkingStrategyParam.type.anonymous", + "valueType": { + "$id": "1359", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "values": [ + { + "$id": "1360", + "kind": "enumvalue", + "name": "auto", + "value": "auto", + "valueType": { + "$ref": "1359" + }, + "enumType": { + "$ref": "1358" + }, + "decorators": [] + }, + { + "$id": "1361", + "kind": "enumvalue", + "name": "static", + "value": "static", + "valueType": { + "$ref": "1359" + }, + "enumType": { + "$ref": "1358" + }, + "decorators": [] }, { - "$id": "1358", + "$id": "1362", "kind": "enumvalue", "name": "other", "value": "other", "valueType": { - "$ref": "1355" + "$ref": "1359" }, "enumType": { - "$ref": "1354" + "$ref": "1358" }, "decorators": [] } @@ -16469,12 +16515,12 @@ "decorators": [] }, { - "$id": "1359", + "$id": "1363", "kind": "enum", "name": "PageOrderOptions", "crossLanguageDefinitionId": "OpenAI.PageOrderOptions", "valueType": { - "$id": "1360", + "$id": "1364", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16482,28 +16528,28 @@ }, "values": [ { - "$id": "1361", + "$id": "1365", "kind": "enumvalue", "name": "asc", "value": "asc", "valueType": { - "$ref": "1360" + "$ref": "1364" }, "enumType": { - "$ref": "1359" + "$ref": "1363" }, "decorators": [] }, { - "$id": "1362", + "$id": "1366", "kind": "enumvalue", "name": "desc", "value": "desc", "valueType": { - "$ref": "1360" + "$ref": "1364" }, "enumType": { - "$ref": "1359" + "$ref": "1363" }, "decorators": [] } @@ -16515,12 +16561,12 @@ "decorators": [] }, { - "$id": "1363", + "$id": "1367", "kind": "enum", "name": "VectorStoreFileCollectionOrder", "crossLanguageDefinitionId": "OpenAI.VectorStoreFileCollectionOrder", "valueType": { - "$id": "1364", + "$id": "1368", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16528,28 +16574,28 @@ }, "values": [ { - "$id": "1365", + "$id": "1369", "kind": "enumvalue", "name": "Ascending", "value": "asc", "valueType": { - "$ref": "1364" + "$ref": "1368" }, "enumType": { - "$ref": "1363" + "$ref": "1367" }, "decorators": [] }, { - "$id": "1366", + "$id": "1370", "kind": "enumvalue", "name": "Descending", "value": "desc", "valueType": { - "$ref": "1364" + "$ref": "1368" }, "enumType": { - "$ref": "1363" + "$ref": "1367" }, "decorators": [] } @@ -16561,12 +16607,12 @@ "decorators": [] }, { - "$id": "1367", + "$id": "1371", "kind": "enum", "name": "ListVectorStoreFilesFilter", "crossLanguageDefinitionId": "OpenAI.ListVectorStoreFilesFilter", "valueType": { - "$id": "1368", + "$id": "1372", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16574,54 +16620,54 @@ }, "values": [ { - "$id": "1369", + "$id": "1373", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "1368" + "$ref": "1372" }, "enumType": { - "$ref": "1367" + "$ref": "1371" }, "decorators": [] }, { - "$id": "1370", + "$id": "1374", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "1368" + "$ref": "1372" }, "enumType": { - "$ref": "1367" + "$ref": "1371" }, "decorators": [] }, { - "$id": "1371", + "$id": "1375", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "1368" + "$ref": "1372" }, "enumType": { - "$ref": "1367" + "$ref": "1371" }, "decorators": [] }, { - "$id": "1372", + "$id": "1376", "kind": "enumvalue", "name": "cancelled", "value": "cancelled", "valueType": { - "$ref": "1368" + "$ref": "1372" }, "enumType": { - "$ref": "1367" + "$ref": "1371" }, "decorators": [] } @@ -16633,12 +16679,12 @@ "decorators": [] }, { - "$id": "1373", + "$id": "1377", "kind": "enum", "name": "CreateTranscriptionRequestAccept", "crossLanguageDefinitionId": "OpenAI.createTranscription.RequestAccept.anonymous", "valueType": { - "$id": "1374", + "$id": "1378", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16646,28 +16692,28 @@ }, "values": [ { - "$id": "1375", + "$id": "1379", "kind": "enumvalue", "name": "application/json", "value": "application/json", "valueType": { - "$ref": "1374" + "$ref": "1378" }, "enumType": { - "$ref": "1373" + "$ref": "1377" }, "decorators": [] }, { - "$id": "1376", + "$id": "1380", "kind": "enumvalue", "name": "text/event-stream", "value": "text/event-stream", "valueType": { - "$ref": "1374" + "$ref": "1378" }, "enumType": { - "$ref": "1373" + "$ref": "1377" }, "decorators": [] } @@ -16679,12 +16725,12 @@ "decorators": [] }, { - "$id": "1377", + "$id": "1381", "kind": "enum", "name": "ListEvalsRequestOrder", "crossLanguageDefinitionId": "OpenAI.listEvals.RequestOrder.anonymous", "valueType": { - "$id": "1378", + "$id": "1382", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16692,28 +16738,28 @@ }, "values": [ { - "$id": "1379", + "$id": "1383", "kind": "enumvalue", "name": "asc", "value": "asc", "valueType": { - "$ref": "1378" + "$ref": "1382" }, "enumType": { - "$ref": "1377" + "$ref": "1381" }, "decorators": [] }, { - "$id": "1380", + "$id": "1384", "kind": "enumvalue", "name": "desc", "value": "desc", "valueType": { - "$ref": "1378" + "$ref": "1382" }, "enumType": { - "$ref": "1377" + "$ref": "1381" }, "decorators": [] } @@ -16725,12 +16771,12 @@ "decorators": [] }, { - "$id": "1381", + "$id": "1385", "kind": "enum", "name": "ListEvalsRequestOrderBy", "crossLanguageDefinitionId": "OpenAI.listEvals.RequestOrderBy.anonymous", "valueType": { - "$id": "1382", + "$id": "1386", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16738,28 +16784,28 @@ }, "values": [ { - "$id": "1383", + "$id": "1387", "kind": "enumvalue", "name": "created_at", "value": "created_at", "valueType": { - "$ref": "1382" + "$ref": "1386" }, "enumType": { - "$ref": "1381" + "$ref": "1385" }, "decorators": [] }, { - "$id": "1384", + "$id": "1388", "kind": "enumvalue", "name": "updated_at", "value": "updated_at", "valueType": { - "$ref": "1382" + "$ref": "1386" }, "enumType": { - "$ref": "1381" + "$ref": "1385" }, "decorators": [] } @@ -16771,12 +16817,12 @@ "decorators": [] }, { - "$id": "1385", + "$id": "1389", "kind": "enum", "name": "GetEvalRunsRequestOrder", "crossLanguageDefinitionId": "OpenAI.getEvalRuns.RequestOrder.anonymous", "valueType": { - "$id": "1386", + "$id": "1390", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16784,28 +16830,28 @@ }, "values": [ { - "$id": "1387", + "$id": "1391", "kind": "enumvalue", "name": "asc", "value": "asc", "valueType": { - "$ref": "1386" + "$ref": "1390" }, "enumType": { - "$ref": "1385" + "$ref": "1389" }, "decorators": [] }, { - "$id": "1388", + "$id": "1392", "kind": "enumvalue", "name": "desc", "value": "desc", "valueType": { - "$ref": "1386" + "$ref": "1390" }, "enumType": { - "$ref": "1385" + "$ref": "1389" }, "decorators": [] } @@ -16817,12 +16863,12 @@ "decorators": [] }, { - "$id": "1389", + "$id": "1393", "kind": "enum", "name": "GetEvalRunsRequestStatus", "crossLanguageDefinitionId": "OpenAI.getEvalRuns.RequestStatus.anonymous", "valueType": { - "$id": "1390", + "$id": "1394", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16830,67 +16876,67 @@ }, "values": [ { - "$id": "1391", + "$id": "1395", "kind": "enumvalue", "name": "queued", "value": "queued", "valueType": { - "$ref": "1390" + "$ref": "1394" }, "enumType": { - "$ref": "1389" + "$ref": "1393" }, "decorators": [] }, { - "$id": "1392", + "$id": "1396", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "1390" + "$ref": "1394" }, "enumType": { - "$ref": "1389" + "$ref": "1393" }, "decorators": [] }, { - "$id": "1393", + "$id": "1397", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "1390" + "$ref": "1394" }, "enumType": { - "$ref": "1389" + "$ref": "1393" }, "decorators": [] }, { - "$id": "1394", + "$id": "1398", "kind": "enumvalue", "name": "canceled", "value": "canceled", "valueType": { - "$ref": "1390" + "$ref": "1394" }, "enumType": { - "$ref": "1389" + "$ref": "1393" }, "decorators": [] }, { - "$id": "1395", + "$id": "1399", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "1390" + "$ref": "1394" }, "enumType": { - "$ref": "1389" + "$ref": "1393" }, "decorators": [] } @@ -16902,12 +16948,12 @@ "decorators": [] }, { - "$id": "1396", + "$id": "1400", "kind": "enum", "name": "GetEvalRunOutputItemsRequestStatus", "crossLanguageDefinitionId": "OpenAI.getEvalRunOutputItems.RequestStatus.anonymous", "valueType": { - "$id": "1397", + "$id": "1401", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16915,28 +16961,28 @@ }, "values": [ { - "$id": "1398", + "$id": "1402", "kind": "enumvalue", "name": "fail", "value": "fail", "valueType": { - "$ref": "1397" + "$ref": "1401" }, "enumType": { - "$ref": "1396" + "$ref": "1400" }, "decorators": [] }, { - "$id": "1399", + "$id": "1403", "kind": "enumvalue", "name": "pass", "value": "pass", "valueType": { - "$ref": "1397" + "$ref": "1401" }, "enumType": { - "$ref": "1396" + "$ref": "1400" }, "decorators": [] } @@ -16948,12 +16994,12 @@ "decorators": [] }, { - "$id": "1400", + "$id": "1404", "kind": "enum", "name": "GetEvalRunOutputItemsRequestOrder", "crossLanguageDefinitionId": "OpenAI.getEvalRunOutputItems.RequestOrder.anonymous", "valueType": { - "$id": "1401", + "$id": "1405", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16961,28 +17007,28 @@ }, "values": [ { - "$id": "1402", + "$id": "1406", "kind": "enumvalue", "name": "asc", "value": "asc", "valueType": { - "$ref": "1401" + "$ref": "1405" }, "enumType": { - "$ref": "1400" + "$ref": "1404" }, "decorators": [] }, { - "$id": "1403", + "$id": "1407", "kind": "enumvalue", "name": "desc", "value": "desc", "valueType": { - "$ref": "1401" + "$ref": "1405" }, "enumType": { - "$ref": "1400" + "$ref": "1404" }, "decorators": [] } @@ -16994,12 +17040,12 @@ "decorators": [] }, { - "$id": "1404", + "$id": "1408", "kind": "enum", "name": "IncludedRunStepProperty", "crossLanguageDefinitionId": "OpenAI.IncludedRunStepProperty", "valueType": { - "$id": "1405", + "$id": "1409", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17007,15 +17053,15 @@ }, "values": [ { - "$id": "1406", + "$id": "1410", "kind": "enumvalue", "name": "file_search_result_content", "value": "step_details.tool_calls[*].file_search.results[*].content", "valueType": { - "$ref": "1405" + "$ref": "1409" }, "enumType": { - "$ref": "1404" + "$ref": "1408" }, "decorators": [] } @@ -17027,12 +17073,12 @@ "decorators": [] }, { - "$id": "1407", + "$id": "1411", "kind": "enum", "name": "CreateFineTuningJobRequestHyperparametersBatchSizeChoiceEnum", "crossLanguageDefinitionId": "OpenAI.CreateFineTuningJobRequestHyperparametersBatchSizeChoiceEnum", "valueType": { - "$id": "1408", + "$id": "1412", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17040,15 +17086,15 @@ }, "values": [ { - "$id": "1409", + "$id": "1413", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1408" + "$ref": "1412" }, "enumType": { - "$ref": "1407" + "$ref": "1411" }, "decorators": [] } @@ -17061,12 +17107,12 @@ "decorators": [] }, { - "$id": "1410", + "$id": "1414", "kind": "enum", "name": "CreateFineTuningJobRequestHyperparametersLearningRateMultiplierChoiceEnum", "crossLanguageDefinitionId": "OpenAI.CreateFineTuningJobRequestHyperparametersLearningRateMultiplierChoiceEnum", "valueType": { - "$id": "1411", + "$id": "1415", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17074,15 +17120,15 @@ }, "values": [ { - "$id": "1412", + "$id": "1416", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1411" + "$ref": "1415" }, "enumType": { - "$ref": "1410" + "$ref": "1414" }, "decorators": [] } @@ -17095,12 +17141,12 @@ "decorators": [] }, { - "$id": "1413", + "$id": "1417", "kind": "enum", "name": "CreateFineTuningJobRequestHyperparametersNEpochsChoiceEnum", "crossLanguageDefinitionId": "OpenAI.CreateFineTuningJobRequestHyperparametersNEpochsChoiceEnum", "valueType": { - "$id": "1414", + "$id": "1418", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17108,15 +17154,15 @@ }, "values": [ { - "$id": "1415", + "$id": "1419", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1414" + "$ref": "1418" }, "enumType": { - "$ref": "1413" + "$ref": "1417" }, "decorators": [] } @@ -17129,12 +17175,12 @@ "decorators": [] }, { - "$id": "1416", + "$id": "1420", "kind": "enum", "name": "CreateFineTuningJobRequestHyperparametersBetaChoiceEnum", "crossLanguageDefinitionId": "OpenAI.CreateFineTuningJobRequestHyperparametersBetaChoiceEnum", "valueType": { - "$id": "1417", + "$id": "1421", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17142,15 +17188,15 @@ }, "values": [ { - "$id": "1418", + "$id": "1422", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1417" + "$ref": "1421" }, "enumType": { - "$ref": "1416" + "$ref": "1420" }, "decorators": [] } @@ -17163,12 +17209,12 @@ "decorators": [] }, { - "$id": "1419", + "$id": "1423", "kind": "enum", "name": "DotNetResponseReasoningEffortLevel", "crossLanguageDefinitionId": "OpenAI.DotNetResponseReasoningEffortLevel", "valueType": { - "$id": "1420", + "$id": "1424", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17176,41 +17222,41 @@ }, "values": [ { - "$id": "1421", + "$id": "1425", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "1420" + "$ref": "1424" }, "enumType": { - "$ref": "1419" + "$ref": "1423" }, "decorators": [] }, { - "$id": "1422", + "$id": "1426", "kind": "enumvalue", "name": "medium", "value": "medium", "valueType": { - "$ref": "1420" + "$ref": "1424" }, "enumType": { - "$ref": "1419" + "$ref": "1423" }, "decorators": [] }, { - "$id": "1423", + "$id": "1427", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "1420" + "$ref": "1424" }, "enumType": { - "$ref": "1419" + "$ref": "1423" }, "decorators": [] } @@ -17223,12 +17269,12 @@ "decorators": [] }, { - "$id": "1424", + "$id": "1428", "kind": "enum", "name": "DotNetAudioVoiceIds", "crossLanguageDefinitionId": "OpenAI.DotNetAudioVoiceIds", "valueType": { - "$id": "1425", + "$id": "1429", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17236,145 +17282,145 @@ }, "values": [ { - "$id": "1426", + "$id": "1430", "kind": "enumvalue", "name": "alloy", "value": "alloy", "valueType": { - "$ref": "1425" + "$ref": "1429" }, "enumType": { - "$ref": "1424" + "$ref": "1428" }, "decorators": [] }, { - "$id": "1427", + "$id": "1431", "kind": "enumvalue", "name": "ash", "value": "ash", "valueType": { - "$ref": "1425" + "$ref": "1429" }, "enumType": { - "$ref": "1424" + "$ref": "1428" }, "decorators": [] }, { - "$id": "1428", + "$id": "1432", "kind": "enumvalue", "name": "ballad", "value": "ballad", "valueType": { - "$ref": "1425" + "$ref": "1429" }, "enumType": { - "$ref": "1424" + "$ref": "1428" }, "decorators": [] }, { - "$id": "1429", + "$id": "1433", "kind": "enumvalue", "name": "coral", "value": "coral", "valueType": { - "$ref": "1425" + "$ref": "1429" }, "enumType": { - "$ref": "1424" + "$ref": "1428" }, "decorators": [] }, { - "$id": "1430", + "$id": "1434", "kind": "enumvalue", "name": "echo", "value": "echo", "valueType": { - "$ref": "1425" + "$ref": "1429" }, "enumType": { - "$ref": "1424" + "$ref": "1428" }, "decorators": [] }, { - "$id": "1431", + "$id": "1435", "kind": "enumvalue", "name": "fable", "value": "fable", "valueType": { - "$ref": "1425" + "$ref": "1429" }, "enumType": { - "$ref": "1424" + "$ref": "1428" }, "decorators": [] }, { - "$id": "1432", + "$id": "1436", "kind": "enumvalue", "name": "onyx", "value": "onyx", "valueType": { - "$ref": "1425" + "$ref": "1429" }, "enumType": { - "$ref": "1424" + "$ref": "1428" }, "decorators": [] }, { - "$id": "1433", + "$id": "1437", "kind": "enumvalue", "name": "nova", "value": "nova", "valueType": { - "$ref": "1425" + "$ref": "1429" }, "enumType": { - "$ref": "1424" + "$ref": "1428" }, "decorators": [] }, { - "$id": "1434", + "$id": "1438", "kind": "enumvalue", "name": "sage", "value": "sage", "valueType": { - "$ref": "1425" + "$ref": "1429" }, "enumType": { - "$ref": "1424" + "$ref": "1428" }, "decorators": [] }, { - "$id": "1435", + "$id": "1439", "kind": "enumvalue", "name": "shimmer", "value": "shimmer", "valueType": { - "$ref": "1425" + "$ref": "1429" }, "enumType": { - "$ref": "1424" + "$ref": "1428" }, "decorators": [] }, { - "$id": "1436", + "$id": "1440", "kind": "enumvalue", "name": "verse", "value": "verse", "valueType": { - "$ref": "1425" + "$ref": "1429" }, "enumType": { - "$ref": "1424" + "$ref": "1428" }, "decorators": [] } @@ -17387,12 +17433,12 @@ "decorators": [] }, { - "$id": "1437", + "$id": "1441", "kind": "enum", "name": "DotNetChatVoiceIds", "crossLanguageDefinitionId": "OpenAI.DotNetChatVoiceIds", "valueType": { - "$id": "1438", + "$id": "1442", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17400,145 +17446,145 @@ }, "values": [ { - "$id": "1439", + "$id": "1443", "kind": "enumvalue", "name": "alloy", "value": "alloy", "valueType": { - "$ref": "1438" + "$ref": "1442" }, "enumType": { - "$ref": "1437" + "$ref": "1441" }, "decorators": [] }, { - "$id": "1440", + "$id": "1444", "kind": "enumvalue", "name": "ash", "value": "ash", "valueType": { - "$ref": "1438" + "$ref": "1442" }, "enumType": { - "$ref": "1437" + "$ref": "1441" }, "decorators": [] }, { - "$id": "1441", + "$id": "1445", "kind": "enumvalue", "name": "ballad", "value": "ballad", "valueType": { - "$ref": "1438" + "$ref": "1442" }, "enumType": { - "$ref": "1437" + "$ref": "1441" }, "decorators": [] }, { - "$id": "1442", + "$id": "1446", "kind": "enumvalue", "name": "coral", "value": "coral", "valueType": { - "$ref": "1438" + "$ref": "1442" }, "enumType": { - "$ref": "1437" + "$ref": "1441" }, "decorators": [] }, { - "$id": "1443", + "$id": "1447", "kind": "enumvalue", "name": "echo", "value": "echo", "valueType": { - "$ref": "1438" + "$ref": "1442" }, "enumType": { - "$ref": "1437" + "$ref": "1441" }, "decorators": [] }, { - "$id": "1444", + "$id": "1448", "kind": "enumvalue", "name": "fable", "value": "fable", "valueType": { - "$ref": "1438" + "$ref": "1442" }, "enumType": { - "$ref": "1437" + "$ref": "1441" }, "decorators": [] }, { - "$id": "1445", + "$id": "1449", "kind": "enumvalue", "name": "onyx", "value": "onyx", "valueType": { - "$ref": "1438" + "$ref": "1442" }, "enumType": { - "$ref": "1437" + "$ref": "1441" }, "decorators": [] }, { - "$id": "1446", + "$id": "1450", "kind": "enumvalue", "name": "nova", "value": "nova", "valueType": { - "$ref": "1438" + "$ref": "1442" }, "enumType": { - "$ref": "1437" + "$ref": "1441" }, "decorators": [] }, { - "$id": "1447", + "$id": "1451", "kind": "enumvalue", "name": "sage", "value": "sage", "valueType": { - "$ref": "1438" + "$ref": "1442" }, "enumType": { - "$ref": "1437" + "$ref": "1441" }, "decorators": [] }, { - "$id": "1448", + "$id": "1452", "kind": "enumvalue", "name": "shimmer", "value": "shimmer", "valueType": { - "$ref": "1438" + "$ref": "1442" }, "enumType": { - "$ref": "1437" + "$ref": "1441" }, "decorators": [] }, { - "$id": "1449", + "$id": "1453", "kind": "enumvalue", "name": "verse", "value": "verse", "valueType": { - "$ref": "1438" + "$ref": "1442" }, "enumType": { - "$ref": "1437" + "$ref": "1441" }, "decorators": [] } @@ -17551,12 +17597,12 @@ "decorators": [] }, { - "$id": "1450", + "$id": "1454", "kind": "enum", "name": "DotNetRealtimeVoiceIds", "crossLanguageDefinitionId": "OpenAI.DotNetRealtimeVoiceIds", "valueType": { - "$id": "1451", + "$id": "1455", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17564,145 +17610,145 @@ }, "values": [ { - "$id": "1452", + "$id": "1456", "kind": "enumvalue", "name": "alloy", "value": "alloy", "valueType": { - "$ref": "1451" + "$ref": "1455" }, "enumType": { - "$ref": "1450" + "$ref": "1454" }, "decorators": [] }, { - "$id": "1453", + "$id": "1457", "kind": "enumvalue", "name": "ash", "value": "ash", "valueType": { - "$ref": "1451" + "$ref": "1455" }, "enumType": { - "$ref": "1450" + "$ref": "1454" }, "decorators": [] }, { - "$id": "1454", + "$id": "1458", "kind": "enumvalue", "name": "ballad", "value": "ballad", "valueType": { - "$ref": "1451" + "$ref": "1455" }, "enumType": { - "$ref": "1450" + "$ref": "1454" }, "decorators": [] }, { - "$id": "1455", + "$id": "1459", "kind": "enumvalue", "name": "coral", "value": "coral", "valueType": { - "$ref": "1451" + "$ref": "1455" }, "enumType": { - "$ref": "1450" + "$ref": "1454" }, "decorators": [] }, { - "$id": "1456", + "$id": "1460", "kind": "enumvalue", "name": "echo", "value": "echo", "valueType": { - "$ref": "1451" + "$ref": "1455" }, "enumType": { - "$ref": "1450" + "$ref": "1454" }, "decorators": [] }, { - "$id": "1457", + "$id": "1461", "kind": "enumvalue", "name": "fable", "value": "fable", "valueType": { - "$ref": "1451" + "$ref": "1455" }, "enumType": { - "$ref": "1450" + "$ref": "1454" }, "decorators": [] }, { - "$id": "1458", + "$id": "1462", "kind": "enumvalue", "name": "onyx", "value": "onyx", "valueType": { - "$ref": "1451" + "$ref": "1455" }, "enumType": { - "$ref": "1450" + "$ref": "1454" }, "decorators": [] }, { - "$id": "1459", + "$id": "1463", "kind": "enumvalue", "name": "nova", "value": "nova", "valueType": { - "$ref": "1451" + "$ref": "1455" }, "enumType": { - "$ref": "1450" + "$ref": "1454" }, "decorators": [] }, { - "$id": "1460", + "$id": "1464", "kind": "enumvalue", "name": "sage", "value": "sage", "valueType": { - "$ref": "1451" + "$ref": "1455" }, "enumType": { - "$ref": "1450" + "$ref": "1454" }, "decorators": [] }, { - "$id": "1461", + "$id": "1465", "kind": "enumvalue", "name": "shimmer", "value": "shimmer", "valueType": { - "$ref": "1451" + "$ref": "1455" }, "enumType": { - "$ref": "1450" + "$ref": "1454" }, "decorators": [] }, { - "$id": "1462", + "$id": "1466", "kind": "enumvalue", "name": "verse", "value": "verse", "valueType": { - "$ref": "1451" + "$ref": "1455" }, "enumType": { - "$ref": "1450" + "$ref": "1454" }, "decorators": [] } @@ -17717,13 +17763,13 @@ ], "constants": [ { - "$id": "1463", + "$id": "1467", "kind": "constant", "name": "ListAssistantsResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1464", + "$id": "1468", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17733,13 +17779,13 @@ "decorators": [] }, { - "$id": "1465", + "$id": "1469", "kind": "constant", "name": "AssistantObjectObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1466", + "$id": "1470", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17749,13 +17795,13 @@ "decorators": [] }, { - "$id": "1467", + "$id": "1471", "kind": "constant", "name": "FileSearchRankingOptionsRanker", "namespace": "", "usage": "None", "valueType": { - "$id": "1468", + "$id": "1472", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17765,13 +17811,13 @@ "decorators": [] }, { - "$id": "1469", + "$id": "1473", "kind": "constant", "name": "DeleteAssistantResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1470", + "$id": "1474", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17781,13 +17827,13 @@ "decorators": [] }, { - "$id": "1471", + "$id": "1475", "kind": "constant", "name": "VadConfigType", "namespace": "OpenAI", "usage": "Input", "valueType": { - "$id": "1472", + "$id": "1476", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17797,13 +17843,13 @@ "decorators": [] }, { - "$id": "1473", + "$id": "1477", "kind": "constant", "name": "CreateTranscriptionResponseVerboseJsonTask", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1474", + "$id": "1478", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17813,13 +17859,13 @@ "decorators": [] }, { - "$id": "1475", + "$id": "1479", "kind": "constant", "name": "CreateTranslationResponseVerboseJsonTask", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1476", + "$id": "1480", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17829,13 +17875,13 @@ "decorators": [] }, { - "$id": "1477", + "$id": "1481", "kind": "constant", "name": "CreateBatchRequestCompletion_window", "namespace": "", "usage": "Spread,Json", "valueType": { - "$id": "1478", + "$id": "1482", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17845,13 +17891,13 @@ "decorators": [] }, { - "$id": "1479", + "$id": "1483", "kind": "constant", "name": "BatchObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1480", + "$id": "1484", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17861,13 +17907,13 @@ "decorators": [] }, { - "$id": "1481", + "$id": "1485", "kind": "constant", "name": "BatchErrorsObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1482", + "$id": "1486", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17877,13 +17923,13 @@ "decorators": [] }, { - "$id": "1483", + "$id": "1487", "kind": "constant", "name": "ListBatchesResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1484", + "$id": "1488", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17893,13 +17939,13 @@ "decorators": [] }, { - "$id": "1485", + "$id": "1489", "kind": "constant", "name": "ChatCompletionListObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1486", + "$id": "1490", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17909,13 +17955,13 @@ "decorators": [] }, { - "$id": "1487", + "$id": "1491", "kind": "constant", "name": "ChatCompletionResponseMessageAnnotationType", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1488", + "$id": "1492", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17925,13 +17971,13 @@ "decorators": [] }, { - "$id": "1489", + "$id": "1493", "kind": "constant", "name": "CreateChatCompletionResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1490", + "$id": "1494", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17941,13 +17987,13 @@ "decorators": [] }, { - "$id": "1491", + "$id": "1495", "kind": "constant", "name": "CreateChatCompletionRequestWebSearchOptionsUserLocation1Type", "namespace": "OpenAI", "usage": "Input,Json", "valueType": { - "$id": "1492", + "$id": "1496", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17957,13 +18003,13 @@ "decorators": [] }, { - "$id": "1493", + "$id": "1497", "kind": "constant", "name": "ChatCompletionNamedToolChoiceType", "namespace": "OpenAI", "usage": "Input,Json", "valueType": { - "$id": "1494", + "$id": "1498", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17973,13 +18019,13 @@ "decorators": [] }, { - "$id": "1495", + "$id": "1499", "kind": "constant", "name": "CreateChatCompletionRequestToolChoice1", "namespace": "", "usage": "None", "valueType": { - "$id": "1496", + "$id": "1500", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17989,13 +18035,13 @@ "decorators": [] }, { - "$id": "1497", + "$id": "1501", "kind": "constant", "name": "FileSearchRankingOptionsRanker1", "namespace": "", "usage": "None", "valueType": { - "$id": "1498", + "$id": "1502", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18005,13 +18051,13 @@ "decorators": [] }, { - "$id": "1499", + "$id": "1503", "kind": "constant", "name": "ChatCompletionMessageToolCallChunkType", "namespace": "OpenAI", "usage": "Output", "valueType": { - "$id": "1500", + "$id": "1504", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18021,14 +18067,14 @@ "decorators": [] }, { - "$id": "1501", + "$id": "1505", "kind": "constant", "name": "CreateChatCompletionStreamResponseObject", "namespace": "OpenAI", "access": "public", "usage": "Output", "valueType": { - "$id": "1502", + "$id": "1506", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18038,13 +18084,13 @@ "decorators": [] }, { - "$id": "1503", + "$id": "1507", "kind": "constant", "name": "ChatCompletionDeletedObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1504", + "$id": "1508", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18054,13 +18100,13 @@ "decorators": [] }, { - "$id": "1505", + "$id": "1509", "kind": "constant", "name": "ChatCompletionMessageListObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1506", + "$id": "1510", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18070,13 +18116,13 @@ "decorators": [] }, { - "$id": "1507", + "$id": "1511", "kind": "constant", "name": "ContainerListResourceObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1508", + "$id": "1512", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18086,13 +18132,13 @@ "decorators": [] }, { - "$id": "1509", + "$id": "1513", "kind": "constant", "name": "ContainerResourceExpiresAfterAnchor", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1510", + "$id": "1514", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18102,13 +18148,13 @@ "decorators": [] }, { - "$id": "1511", + "$id": "1515", "kind": "constant", "name": "CreateContainerBodyExpiresAfterAnchor", "namespace": "OpenAI", "usage": "Input,Json", "valueType": { - "$id": "1512", + "$id": "1516", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18118,13 +18164,13 @@ "decorators": [] }, { - "$id": "1513", + "$id": "1517", "kind": "constant", "name": "DeleteContainerResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1514", + "$id": "1518", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18134,13 +18180,13 @@ "decorators": [] }, { - "$id": "1515", + "$id": "1519", "kind": "constant", "name": "DeleteContainerResponseDeleted", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1516", + "$id": "1520", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -18150,13 +18196,13 @@ "decorators": [] }, { - "$id": "1517", + "$id": "1521", "kind": "constant", "name": "ContainerFileListResourceObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1518", + "$id": "1522", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18166,13 +18212,13 @@ "decorators": [] }, { - "$id": "1519", + "$id": "1523", "kind": "constant", "name": "DeleteContainerFileResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1520", + "$id": "1524", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18182,13 +18228,13 @@ "decorators": [] }, { - "$id": "1521", + "$id": "1525", "kind": "constant", "name": "DeleteContainerFileResponseDeleted", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1522", + "$id": "1526", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -18198,13 +18244,13 @@ "decorators": [] }, { - "$id": "1523", + "$id": "1527", "kind": "constant", "name": "EmbeddingObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1524", + "$id": "1528", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18214,13 +18260,13 @@ "decorators": [] }, { - "$id": "1525", + "$id": "1529", "kind": "constant", "name": "CreateEmbeddingResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1526", + "$id": "1530", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18230,13 +18276,13 @@ "decorators": [] }, { - "$id": "1527", + "$id": "1531", "kind": "constant", "name": "ListFilesResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1528", + "$id": "1532", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18246,13 +18292,13 @@ "decorators": [] }, { - "$id": "1529", + "$id": "1533", "kind": "constant", "name": "OpenAIFileObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1530", + "$id": "1534", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18262,13 +18308,13 @@ "decorators": [] }, { - "$id": "1531", + "$id": "1535", "kind": "constant", "name": "DeleteFileResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1532", + "$id": "1536", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18278,13 +18324,13 @@ "decorators": [] }, { - "$id": "1533", + "$id": "1537", "kind": "constant", "name": "FineTuningCheckpointPermissionObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1534", + "$id": "1538", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18294,13 +18340,13 @@ "decorators": [] }, { - "$id": "1535", + "$id": "1539", "kind": "constant", "name": "ListFineTuningCheckpointPermissionResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1536", + "$id": "1540", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18310,13 +18356,13 @@ "decorators": [] }, { - "$id": "1537", + "$id": "1541", "kind": "constant", "name": "DeleteFineTuningCheckpointPermissionResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1538", + "$id": "1542", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18326,13 +18372,13 @@ "decorators": [] }, { - "$id": "1539", + "$id": "1543", "kind": "constant", "name": "FileSearchRankingOptionsRanker2", "namespace": "", "usage": "None", "valueType": { - "$id": "1540", + "$id": "1544", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18342,13 +18388,13 @@ "decorators": [] }, { - "$id": "1541", + "$id": "1545", "kind": "constant", "name": "FileSearchRankingOptionsRanker3", "namespace": "", "usage": "None", "valueType": { - "$id": "1542", + "$id": "1546", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18358,13 +18404,13 @@ "decorators": [] }, { - "$id": "1543", + "$id": "1547", "kind": "constant", "name": "FileSearchRankingOptionsRanker4", "namespace": "", "usage": "None", "valueType": { - "$id": "1544", + "$id": "1548", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18374,13 +18420,13 @@ "decorators": [] }, { - "$id": "1545", + "$id": "1549", "kind": "constant", "name": "FileSearchRankingOptionsRanker5", "namespace": "", "usage": "None", "valueType": { - "$id": "1546", + "$id": "1550", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18390,13 +18436,13 @@ "decorators": [] }, { - "$id": "1547", + "$id": "1551", "kind": "constant", "name": "FileSearchRankingOptionsRanker6", "namespace": "", "usage": "None", "valueType": { - "$id": "1548", + "$id": "1552", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18406,13 +18452,13 @@ "decorators": [] }, { - "$id": "1549", + "$id": "1553", "kind": "constant", "name": "FileSearchRankingOptionsRanker7", "namespace": "", "usage": "None", "valueType": { - "$id": "1550", + "$id": "1554", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18422,13 +18468,13 @@ "decorators": [] }, { - "$id": "1551", + "$id": "1555", "kind": "constant", "name": "FileSearchRankingOptionsRanker8", "namespace": "", "usage": "None", "valueType": { - "$id": "1552", + "$id": "1556", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18438,13 +18484,13 @@ "decorators": [] }, { - "$id": "1553", + "$id": "1557", "kind": "constant", "name": "FileSearchRankingOptionsRanker9", "namespace": "", "usage": "None", "valueType": { - "$id": "1554", + "$id": "1558", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18454,13 +18500,13 @@ "decorators": [] }, { - "$id": "1555", + "$id": "1559", "kind": "constant", "name": "FileSearchRankingOptionsRanker10", "namespace": "", "usage": "None", "valueType": { - "$id": "1556", + "$id": "1560", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18470,13 +18516,13 @@ "decorators": [] }, { - "$id": "1557", + "$id": "1561", "kind": "constant", "name": "FileSearchRankingOptionsRanker11", "namespace": "", "usage": "None", "valueType": { - "$id": "1558", + "$id": "1562", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18486,13 +18532,13 @@ "decorators": [] }, { - "$id": "1559", + "$id": "1563", "kind": "constant", "name": "EvalItemType", "namespace": "OpenAI", "usage": "Input,Output,Json", "valueType": { - "$id": "1560", + "$id": "1564", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18502,13 +18548,13 @@ "decorators": [] }, { - "$id": "1561", + "$id": "1565", "kind": "constant", "name": "FileSearchRankingOptionsRanker12", "namespace": "", "usage": "None", "valueType": { - "$id": "1562", + "$id": "1566", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18518,13 +18564,13 @@ "decorators": [] }, { - "$id": "1563", + "$id": "1567", "kind": "constant", "name": "FileSearchRankingOptionsRanker13", "namespace": "", "usage": "None", "valueType": { - "$id": "1564", + "$id": "1568", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18534,13 +18580,13 @@ "decorators": [] }, { - "$id": "1565", + "$id": "1569", "kind": "constant", "name": "FileSearchRankingOptionsRanker14", "namespace": "", "usage": "None", "valueType": { - "$id": "1566", + "$id": "1570", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18550,13 +18596,13 @@ "decorators": [] }, { - "$id": "1567", + "$id": "1571", "kind": "constant", "name": "FileSearchRankingOptionsRanker15", "namespace": "", "usage": "None", "valueType": { - "$id": "1568", + "$id": "1572", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18566,13 +18612,13 @@ "decorators": [] }, { - "$id": "1569", + "$id": "1573", "kind": "constant", "name": "FileSearchRankingOptionsRanker16", "namespace": "", "usage": "None", "valueType": { - "$id": "1570", + "$id": "1574", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18582,13 +18628,13 @@ "decorators": [] }, { - "$id": "1571", + "$id": "1575", "kind": "constant", "name": "FileSearchRankingOptionsRanker17", "namespace": "", "usage": "None", "valueType": { - "$id": "1572", + "$id": "1576", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18598,13 +18644,13 @@ "decorators": [] }, { - "$id": "1573", + "$id": "1577", "kind": "constant", "name": "FileSearchRankingOptionsRanker18", "namespace": "", "usage": "None", "valueType": { - "$id": "1574", + "$id": "1578", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18614,13 +18660,13 @@ "decorators": [] }, { - "$id": "1575", + "$id": "1579", "kind": "constant", "name": "FileSearchRankingOptionsRanker19", "namespace": "", "usage": "None", "valueType": { - "$id": "1576", + "$id": "1580", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18630,13 +18676,13 @@ "decorators": [] }, { - "$id": "1577", + "$id": "1581", "kind": "constant", "name": "FileSearchRankingOptionsRanker20", "namespace": "", "usage": "None", "valueType": { - "$id": "1578", + "$id": "1582", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18646,13 +18692,13 @@ "decorators": [] }, { - "$id": "1579", + "$id": "1583", "kind": "constant", "name": "FineTuningJobObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1580", + "$id": "1584", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18662,13 +18708,13 @@ "decorators": [] }, { - "$id": "1581", + "$id": "1585", "kind": "constant", "name": "ListPaginatedFineTuningJobsResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1582", + "$id": "1586", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18678,13 +18724,13 @@ "decorators": [] }, { - "$id": "1583", + "$id": "1587", "kind": "constant", "name": "FineTuningJobCheckpointObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1584", + "$id": "1588", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18694,13 +18740,13 @@ "decorators": [] }, { - "$id": "1585", + "$id": "1589", "kind": "constant", "name": "ListFineTuningJobCheckpointsResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1586", + "$id": "1590", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18710,13 +18756,13 @@ "decorators": [] }, { - "$id": "1587", + "$id": "1591", "kind": "constant", "name": "FineTuningJobEventObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1588", + "$id": "1592", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18726,13 +18772,13 @@ "decorators": [] }, { - "$id": "1589", + "$id": "1593", "kind": "constant", "name": "ListFineTuningJobEventsResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1590", + "$id": "1594", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18742,13 +18788,13 @@ "decorators": [] }, { - "$id": "1591", + "$id": "1595", "kind": "constant", "name": "EvalListObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1592", + "$id": "1596", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18758,13 +18804,13 @@ "decorators": [] }, { - "$id": "1593", + "$id": "1597", "kind": "constant", "name": "EvalObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1594", + "$id": "1598", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18774,13 +18820,13 @@ "decorators": [] }, { - "$id": "1595", + "$id": "1599", "kind": "constant", "name": "DeleteEvalResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1596", + "$id": "1600", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18790,13 +18836,13 @@ "decorators": [] }, { - "$id": "1597", + "$id": "1601", "kind": "constant", "name": "EvalRunListObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1598", + "$id": "1602", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18806,13 +18852,13 @@ "decorators": [] }, { - "$id": "1599", + "$id": "1603", "kind": "constant", "name": "EvalRunObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1600", + "$id": "1604", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18822,13 +18868,13 @@ "decorators": [] }, { - "$id": "1601", + "$id": "1605", "kind": "constant", "name": "EvalCompletionsRunDataSourceParamsInputMessages1Type", "namespace": "OpenAI", "usage": "Input,Json", "valueType": { - "$id": "1602", + "$id": "1606", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18838,13 +18884,13 @@ "decorators": [] }, { - "$id": "1603", + "$id": "1607", "kind": "constant", "name": "EvalCompletionsRunDataSourceParamsInputMessages2Type", "namespace": "OpenAI", "usage": "Input,Json", "valueType": { - "$id": "1604", + "$id": "1608", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18854,13 +18900,13 @@ "decorators": [] }, { - "$id": "1605", + "$id": "1609", "kind": "constant", "name": "EvalResponsesRunDataSourceParamsInputMessages1Type", "namespace": "OpenAI", "usage": "Input,Json", "valueType": { - "$id": "1606", + "$id": "1610", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18870,13 +18916,13 @@ "decorators": [] }, { - "$id": "1607", + "$id": "1611", "kind": "constant", "name": "EvalResponsesRunDataSourceParamsInputMessages2Type", "namespace": "OpenAI", "usage": "Input,Json", "valueType": { - "$id": "1608", + "$id": "1612", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18886,13 +18932,13 @@ "decorators": [] }, { - "$id": "1609", + "$id": "1613", "kind": "constant", "name": "ImageGenToolModel", "namespace": "OpenAI", "usage": "Input,Output,Json", "valueType": { - "$id": "1610", + "$id": "1614", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18902,13 +18948,13 @@ "decorators": [] }, { - "$id": "1611", + "$id": "1615", "kind": "constant", "name": "MCPToolRequireApproval2", "namespace": "", "usage": "None", "valueType": { - "$id": "1612", + "$id": "1616", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18918,13 +18964,13 @@ "decorators": [] }, { - "$id": "1613", + "$id": "1617", "kind": "constant", "name": "MCPToolRequireApproval3", "namespace": "", "usage": "None", "valueType": { - "$id": "1614", + "$id": "1618", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18934,13 +18980,13 @@ "decorators": [] }, { - "$id": "1615", + "$id": "1619", "kind": "constant", "name": "DeleteEvalRunResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1616", + "$id": "1620", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18950,13 +18996,13 @@ "decorators": [] }, { - "$id": "1617", + "$id": "1621", "kind": "constant", "name": "EvalRunOutputItemListObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1618", + "$id": "1622", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18966,13 +19012,13 @@ "decorators": [] }, { - "$id": "1619", + "$id": "1623", "kind": "constant", "name": "EvalRunOutputItemObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1620", + "$id": "1624", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18982,13 +19028,13 @@ "decorators": [] }, { - "$id": "1621", + "$id": "1625", "kind": "constant", "name": "LocalShellExecActionType", "namespace": "OpenAI", "usage": "Input,Output,Json", "valueType": { - "$id": "1622", + "$id": "1626", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18998,13 +19044,13 @@ "decorators": [] }, { - "$id": "1623", + "$id": "1627", "kind": "constant", "name": "ResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1624", + "$id": "1628", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19014,13 +19060,13 @@ "decorators": [] }, { - "$id": "1625", + "$id": "1629", "kind": "constant", "name": "DeleteResponseResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1626", + "$id": "1630", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19030,13 +19076,13 @@ "decorators": [] }, { - "$id": "1627", + "$id": "1631", "kind": "constant", "name": "DeleteResponseResponseDeleted", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1628", + "$id": "1632", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -19046,13 +19092,13 @@ "decorators": [] }, { - "$id": "1629", + "$id": "1633", "kind": "constant", "name": "ResponseItemListObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1630", + "$id": "1634", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19062,13 +19108,13 @@ "decorators": [] }, { - "$id": "1631", + "$id": "1635", "kind": "constant", "name": "AssistantToolsFileSearchTypeOnlyType", "namespace": "OpenAI", "usage": "Input,Output,Json", "valueType": { - "$id": "1632", + "$id": "1636", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19078,13 +19124,13 @@ "decorators": [] }, { - "$id": "1633", + "$id": "1637", "kind": "constant", "name": "MessageObjectObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1634", + "$id": "1638", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19094,13 +19140,13 @@ "decorators": [] }, { - "$id": "1635", + "$id": "1639", "kind": "constant", "name": "ListMessagesResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1636", + "$id": "1640", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19110,13 +19156,13 @@ "decorators": [] }, { - "$id": "1637", + "$id": "1641", "kind": "constant", "name": "DeleteMessageResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1638", + "$id": "1642", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19126,13 +19172,13 @@ "decorators": [] }, { - "$id": "1639", + "$id": "1643", "kind": "constant", "name": "CreateModerationRequestInput2Type", "namespace": "OpenAI", "usage": "Input,Json", "valueType": { - "$id": "1640", + "$id": "1644", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19142,13 +19188,13 @@ "decorators": [] }, { - "$id": "1641", + "$id": "1645", "kind": "constant", "name": "CreateModerationRequestInput3Type", "namespace": "OpenAI", "usage": "Input,Json", "valueType": { - "$id": "1642", + "$id": "1646", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19158,13 +19204,13 @@ "decorators": [] }, { - "$id": "1643", + "$id": "1647", "kind": "constant", "name": "RunObjectObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1644", + "$id": "1648", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19174,13 +19220,13 @@ "decorators": [] }, { - "$id": "1645", + "$id": "1649", "kind": "constant", "name": "RunObjectRequiredAction1Type", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1646", + "$id": "1650", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19190,13 +19236,13 @@ "decorators": [] }, { - "$id": "1647", + "$id": "1651", "kind": "constant", "name": "RunToolCallObjectType", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1648", + "$id": "1652", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19206,13 +19252,13 @@ "decorators": [] }, { - "$id": "1649", + "$id": "1653", "kind": "constant", "name": "ListRunsResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1650", + "$id": "1654", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19222,13 +19268,13 @@ "decorators": [] }, { - "$id": "1651", + "$id": "1655", "kind": "constant", "name": "ListRunStepsResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1652", + "$id": "1656", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19238,13 +19284,13 @@ "decorators": [] }, { - "$id": "1653", + "$id": "1657", "kind": "constant", "name": "RunStepObjectObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1654", + "$id": "1658", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19254,13 +19300,13 @@ "decorators": [] }, { - "$id": "1655", + "$id": "1659", "kind": "constant", "name": "ThreadObjectObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1656", + "$id": "1660", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19270,13 +19316,13 @@ "decorators": [] }, { - "$id": "1657", + "$id": "1661", "kind": "constant", "name": "DeleteThreadResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1658", + "$id": "1662", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19286,13 +19332,13 @@ "decorators": [] }, { - "$id": "1659", + "$id": "1663", "kind": "constant", "name": "ListVectorStoresResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1660", + "$id": "1664", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19302,13 +19348,13 @@ "decorators": [] }, { - "$id": "1661", + "$id": "1665", "kind": "constant", "name": "VectorStoreObjectObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1662", + "$id": "1666", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19318,13 +19364,13 @@ "decorators": [] }, { - "$id": "1663", + "$id": "1667", "kind": "constant", "name": "DeleteVectorStoreResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1664", + "$id": "1668", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19334,13 +19380,13 @@ "decorators": [] }, { - "$id": "1665", + "$id": "1669", "kind": "constant", "name": "VectorStoreFileBatchObjectObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1666", + "$id": "1670", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19350,13 +19396,13 @@ "decorators": [] }, { - "$id": "1667", + "$id": "1671", "kind": "constant", "name": "ListVectorStoreFilesResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1668", + "$id": "1672", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19366,13 +19412,13 @@ "decorators": [] }, { - "$id": "1669", + "$id": "1673", "kind": "constant", "name": "VectorStoreFileObjectObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1670", + "$id": "1674", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19382,13 +19428,13 @@ "decorators": [] }, { - "$id": "1671", + "$id": "1675", "kind": "constant", "name": "DeleteVectorStoreFileResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1672", + "$id": "1676", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19398,13 +19444,13 @@ "decorators": [] }, { - "$id": "1673", + "$id": "1677", "kind": "constant", "name": "VectorStoreFileContentResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1674", + "$id": "1678", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19414,13 +19460,13 @@ "decorators": [] }, { - "$id": "1675", + "$id": "1679", "kind": "constant", "name": "VectorStoreSearchResultsPageObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1676", + "$id": "1680", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19430,13 +19476,13 @@ "decorators": [] }, { - "$id": "1677", + "$id": "1681", "kind": "constant", "name": "VectorStoreSearchResultContentObjectType", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1678", + "$id": "1682", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19446,13 +19492,13 @@ "decorators": [] }, { - "$id": "1679", + "$id": "1683", "kind": "constant", "name": "CreateCompletionResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1680", + "$id": "1684", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19462,13 +19508,13 @@ "decorators": [] }, { - "$id": "1681", + "$id": "1685", "kind": "constant", "name": "ListModelsResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1682", + "$id": "1686", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19478,13 +19524,13 @@ "decorators": [] }, { - "$id": "1683", + "$id": "1687", "kind": "constant", "name": "ModelObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1684", + "$id": "1688", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19494,13 +19540,13 @@ "decorators": [] }, { - "$id": "1685", + "$id": "1689", "kind": "constant", "name": "DeleteModelResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1686", + "$id": "1690", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19510,13 +19556,13 @@ "decorators": [] }, { - "$id": "1687", + "$id": "1691", "kind": "constant", "name": "RealtimeRequestSessionMaxResponseOutputTokens1", "namespace": "", "usage": "None", "valueType": { - "$id": "1688", + "$id": "1692", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19526,13 +19572,13 @@ "decorators": [] }, { - "$id": "1689", + "$id": "1693", "kind": "constant", "name": "RealtimeRequestSessionMaxResponseOutputTokens11", "namespace": "", "usage": "None", "valueType": { - "$id": "1690", + "$id": "1694", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19542,13 +19588,13 @@ "decorators": [] }, { - "$id": "1691", + "$id": "1695", "kind": "constant", "name": "RealtimeTranscriptionSessionCreateRequestClientSecretExpiresAtAnchor", "namespace": "OpenAI", "usage": "Input,Json", "valueType": { - "$id": "1692", + "$id": "1696", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19558,13 +19604,13 @@ "decorators": [] }, { - "$id": "1693", + "$id": "1697", "kind": "constant", "name": "RealtimeResponseSessionObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1694", + "$id": "1698", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19574,13 +19620,13 @@ "decorators": [] }, { - "$id": "1695", + "$id": "1699", "kind": "constant", "name": "RealtimeRequestSessionMaxResponseOutputTokens12", "namespace": "", "usage": "None", "valueType": { - "$id": "1696", + "$id": "1700", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19590,13 +19636,13 @@ "decorators": [] }, { - "$id": "1697", + "$id": "1701", "kind": "constant", "name": "RealtimeConversationResponseItemObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1698", + "$id": "1702", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19606,13 +19652,13 @@ "decorators": [] }, { - "$id": "1699", + "$id": "1703", "kind": "constant", "name": "RealtimeResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1700", + "$id": "1704", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19622,13 +19668,13 @@ "decorators": [] }, { - "$id": "1701", + "$id": "1705", "kind": "constant", "name": "RealtimeRequestSessionMaxResponseOutputTokens13", "namespace": "", "usage": "None", "valueType": { - "$id": "1702", + "$id": "1706", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19638,13 +19684,13 @@ "decorators": [] }, { - "$id": "1703", + "$id": "1707", "kind": "constant", "name": "FileSearchRankingOptionsRanker21", "namespace": "", "usage": "None", "valueType": { - "$id": "1704", + "$id": "1708", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19654,13 +19700,13 @@ "decorators": [] }, { - "$id": "1705", + "$id": "1709", "kind": "constant", "name": "RealtimeRequestSessionMaxResponseOutputTokens14", "namespace": "", "usage": "None", "valueType": { - "$id": "1706", + "$id": "1710", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19670,13 +19716,13 @@ "decorators": [] }, { - "$id": "1707", + "$id": "1711", "kind": "constant", "name": "RealtimeSessionCreateRequestClientSecretExpiresAtAnchor", "namespace": "OpenAI", "usage": "Input,Json", "valueType": { - "$id": "1708", + "$id": "1712", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19686,13 +19732,13 @@ "decorators": [] }, { - "$id": "1709", + "$id": "1713", "kind": "constant", "name": "FileSearchRankingOptionsRanker22", "namespace": "", "usage": "None", "valueType": { - "$id": "1710", + "$id": "1714", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19702,13 +19748,13 @@ "decorators": [] }, { - "$id": "1711", + "$id": "1715", "kind": "constant", "name": "RealtimeRequestSessionMaxResponseOutputTokens15", "namespace": "", "usage": "None", "valueType": { - "$id": "1712", + "$id": "1716", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19718,13 +19764,13 @@ "decorators": [] }, { - "$id": "1713", + "$id": "1717", "kind": "constant", "name": "UploadObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1714", + "$id": "1718", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19734,13 +19780,13 @@ "decorators": [] }, { - "$id": "1715", + "$id": "1719", "kind": "constant", "name": "UploadPartObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1716", + "$id": "1720", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19750,14 +19796,14 @@ "decorators": [] }, { - "$id": "1717", + "$id": "1721", "kind": "constant", "name": "BatchRequestInputMethod", "namespace": "OpenAI", "access": "public", "usage": "Input", "valueType": { - "$id": "1718", + "$id": "1722", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19767,14 +19813,14 @@ "decorators": [] }, { - "$id": "1719", + "$id": "1723", "kind": "constant", "name": "MessageDeltaObjectObject", "namespace": "OpenAI", "access": "public", "usage": "Output", "valueType": { - "$id": "1720", + "$id": "1724", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19784,14 +19830,14 @@ "decorators": [] }, { - "$id": "1721", + "$id": "1725", "kind": "constant", "name": "RunStepDeltaObjectObject", "namespace": "OpenAI", "access": "public", "usage": "Output", "valueType": { - "$id": "1722", + "$id": "1726", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19801,44 +19847,12 @@ "decorators": [] }, { - "$id": "1723", + "$id": "1727", "kind": "constant", "name": "DotNetCombinedJsonTranscriptionResponseTask", "namespace": "OpenAI", "access": "public", "usage": "Output", - "valueType": { - "$id": "1724", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "value": "transcribe", - "decorators": [] - }, - { - "$id": "1725", - "kind": "constant", - "name": "ListAssistantsRequestAccept", - "namespace": "", - "usage": "None", - "valueType": { - "$id": "1726", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "value": "application/json", - "decorators": [] - }, - { - "$id": "1727", - "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta", - "namespace": "", - "usage": "None", "valueType": { "$id": "1728", "kind": "string", @@ -19846,13 +19860,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "transcribe", "decorators": [] }, { "$id": "1729", "kind": "constant", - "name": "ListAssistantsRequestAccept1", + "name": "ListAssistantsRequestAccept", "namespace": "", "usage": "None", "valueType": { @@ -19868,7 +19882,7 @@ { "$id": "1731", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta1", + "name": "ListAssistantsRequestOpenAiBeta", "namespace": "", "usage": "None", "valueType": { @@ -19884,7 +19898,7 @@ { "$id": "1733", "kind": "constant", - "name": "ListAssistantsRequestAccept2", + "name": "ListAssistantsRequestAccept1", "namespace": "", "usage": "None", "valueType": { @@ -19900,7 +19914,7 @@ { "$id": "1735", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta2", + "name": "ListAssistantsRequestOpenAiBeta1", "namespace": "", "usage": "None", "valueType": { @@ -19916,7 +19930,7 @@ { "$id": "1737", "kind": "constant", - "name": "createAssistantContentType", + "name": "ListAssistantsRequestAccept2", "namespace": "", "usage": "None", "valueType": { @@ -19932,7 +19946,7 @@ { "$id": "1739", "kind": "constant", - "name": "ListAssistantsRequestAccept3", + "name": "ListAssistantsRequestOpenAiBeta2", "namespace": "", "usage": "None", "valueType": { @@ -19942,13 +19956,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { "$id": "1741", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta3", + "name": "createAssistantContentType", "namespace": "", "usage": "None", "valueType": { @@ -19958,13 +19972,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { "$id": "1743", "kind": "constant", - "name": "ListAssistantsRequestAccept4", + "name": "ListAssistantsRequestAccept3", "namespace": "", "usage": "None", "valueType": { @@ -19980,7 +19994,7 @@ { "$id": "1745", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta4", + "name": "ListAssistantsRequestOpenAiBeta3", "namespace": "", "usage": "None", "valueType": { @@ -19996,7 +20010,7 @@ { "$id": "1747", "kind": "constant", - "name": "ListAssistantsRequestAccept5", + "name": "ListAssistantsRequestAccept4", "namespace": "", "usage": "None", "valueType": { @@ -20012,7 +20026,7 @@ { "$id": "1749", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta5", + "name": "ListAssistantsRequestOpenAiBeta4", "namespace": "", "usage": "None", "valueType": { @@ -20028,7 +20042,7 @@ { "$id": "1751", "kind": "constant", - "name": "ListAssistantsRequestAccept6", + "name": "ListAssistantsRequestAccept5", "namespace": "", "usage": "None", "valueType": { @@ -20044,7 +20058,7 @@ { "$id": "1753", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta6", + "name": "ListAssistantsRequestOpenAiBeta5", "namespace": "", "usage": "None", "valueType": { @@ -20060,7 +20074,7 @@ { "$id": "1755", "kind": "constant", - "name": "modifyAssistantContentType", + "name": "ListAssistantsRequestAccept6", "namespace": "", "usage": "None", "valueType": { @@ -20076,7 +20090,7 @@ { "$id": "1757", "kind": "constant", - "name": "ListAssistantsRequestAccept7", + "name": "ListAssistantsRequestOpenAiBeta6", "namespace": "", "usage": "None", "valueType": { @@ -20086,13 +20100,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { "$id": "1759", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta7", + "name": "modifyAssistantContentType", "namespace": "", "usage": "None", "valueType": { @@ -20102,13 +20116,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { "$id": "1761", "kind": "constant", - "name": "ListAssistantsRequestAccept8", + "name": "ListAssistantsRequestAccept7", "namespace": "", "usage": "None", "valueType": { @@ -20124,7 +20138,7 @@ { "$id": "1763", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta8", + "name": "ListAssistantsRequestOpenAiBeta7", "namespace": "", "usage": "None", "valueType": { @@ -20140,7 +20154,7 @@ { "$id": "1765", "kind": "constant", - "name": "ListAssistantsRequestAccept9", + "name": "ListAssistantsRequestAccept8", "namespace": "", "usage": "None", "valueType": { @@ -20156,7 +20170,7 @@ { "$id": "1767", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta9", + "name": "ListAssistantsRequestOpenAiBeta8", "namespace": "", "usage": "None", "valueType": { @@ -20172,7 +20186,7 @@ { "$id": "1769", "kind": "constant", - "name": "CreateSpeechRequestAccept", + "name": "ListAssistantsRequestAccept9", "namespace": "", "usage": "None", "valueType": { @@ -20182,13 +20196,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/octet-stream", + "value": "application/json", "decorators": [] }, { "$id": "1771", "kind": "constant", - "name": "createSpeechContentType", + "name": "ListAssistantsRequestOpenAiBeta9", "namespace": "", "usage": "None", "valueType": { @@ -20198,13 +20212,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { "$id": "1773", "kind": "constant", - "name": "CreateSpeechRequestAccept1", + "name": "CreateSpeechRequestAccept", "namespace": "", "usage": "None", "valueType": { @@ -20220,7 +20234,7 @@ { "$id": "1775", "kind": "constant", - "name": "CreateSpeechRequestAccept2", + "name": "createSpeechContentType", "namespace": "", "usage": "None", "valueType": { @@ -20230,13 +20244,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/octet-stream", + "value": "application/json", "decorators": [] }, { "$id": "1777", "kind": "constant", - "name": "CreateTranscriptionRequestContentType", + "name": "CreateSpeechRequestAccept1", "namespace": "", "usage": "None", "valueType": { @@ -20246,13 +20260,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "multipart/form-data", + "value": "application/octet-stream", "decorators": [] }, { "$id": "1779", "kind": "constant", - "name": "CreateTranscriptionRequestAccept1", + "name": "CreateSpeechRequestAccept2", "namespace": "", "usage": "None", "valueType": { @@ -20262,13 +20276,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "text/event-stream", + "value": "application/octet-stream", "decorators": [] }, { "$id": "1781", "kind": "constant", - "name": "CreateTranscriptionResponseContentType", + "name": "CreateTranscriptionRequestContentType", "namespace": "", "usage": "None", "valueType": { @@ -20278,13 +20292,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "text/plain", + "value": "multipart/form-data", "decorators": [] }, { "$id": "1783", "kind": "constant", - "name": "CreateTranscriptionRequestContentType1", + "name": "CreateTranscriptionRequestAccept1", "namespace": "", "usage": "None", "valueType": { @@ -20294,13 +20308,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "multipart/form-data", + "value": "text/event-stream", "decorators": [] }, { "$id": "1785", "kind": "constant", - "name": "ListAssistantsRequestAccept10", + "name": "CreateTranscriptionResponseContentType", "namespace": "", "usage": "None", "valueType": { @@ -20310,13 +20324,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "text/plain", "decorators": [] }, { "$id": "1787", "kind": "constant", - "name": "CreateTranscriptionRequestContentType2", + "name": "CreateTranscriptionRequestContentType1", "namespace": "", "usage": "None", "valueType": { @@ -20332,7 +20346,7 @@ { "$id": "1789", "kind": "constant", - "name": "CreateTranscriptionResponseContentType1", + "name": "ListAssistantsRequestAccept10", "namespace": "", "usage": "None", "valueType": { @@ -20342,13 +20356,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "text/plain", + "value": "application/json", "decorators": [] }, { "$id": "1791", "kind": "constant", - "name": "ListAssistantsRequestAccept11", + "name": "CreateTranscriptionRequestContentType2", "namespace": "", "usage": "None", "valueType": { @@ -20358,13 +20372,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "multipart/form-data", "decorators": [] }, { "$id": "1793", "kind": "constant", - "name": "CreateTranscriptionRequestContentType3", + "name": "CreateTranscriptionResponseContentType1", "namespace": "", "usage": "None", "valueType": { @@ -20374,13 +20388,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "multipart/form-data", + "value": "text/plain", "decorators": [] }, { "$id": "1795", "kind": "constant", - "name": "ListAssistantsRequestAccept12", + "name": "ListAssistantsRequestAccept11", "namespace": "", "usage": "None", "valueType": { @@ -20396,7 +20410,7 @@ { "$id": "1797", "kind": "constant", - "name": "createBatchContentType", + "name": "CreateTranscriptionRequestContentType3", "namespace": "", "usage": "None", "valueType": { @@ -20406,13 +20420,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "multipart/form-data", "decorators": [] }, { "$id": "1799", "kind": "constant", - "name": "ListAssistantsRequestAccept13", + "name": "ListAssistantsRequestAccept12", "namespace": "", "usage": "None", "valueType": { @@ -20428,7 +20442,7 @@ { "$id": "1801", "kind": "constant", - "name": "CreateBatchRequestCompletionWindow", + "name": "createBatchContentType", "namespace": "", "usage": "None", "valueType": { @@ -20438,13 +20452,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "24h", + "value": "application/json", "decorators": [] }, { "$id": "1803", "kind": "constant", - "name": "ListAssistantsRequestAccept14", + "name": "ListAssistantsRequestAccept13", "namespace": "", "usage": "None", "valueType": { @@ -20460,7 +20474,7 @@ { "$id": "1805", "kind": "constant", - "name": "ListAssistantsRequestAccept15", + "name": "CreateBatchRequestCompletionWindow", "namespace": "", "usage": "None", "valueType": { @@ -20470,13 +20484,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "24h", "decorators": [] }, { "$id": "1807", "kind": "constant", - "name": "ListAssistantsRequestAccept16", + "name": "ListAssistantsRequestAccept14", "namespace": "", "usage": "None", "valueType": { @@ -20492,7 +20506,7 @@ { "$id": "1809", "kind": "constant", - "name": "ListAssistantsRequestAccept17", + "name": "ListAssistantsRequestAccept15", "namespace": "", "usage": "None", "valueType": { @@ -20508,7 +20522,7 @@ { "$id": "1811", "kind": "constant", - "name": "ListAssistantsRequestAccept18", + "name": "ListAssistantsRequestAccept16", "namespace": "", "usage": "None", "valueType": { @@ -20524,7 +20538,7 @@ { "$id": "1813", "kind": "constant", - "name": "ListAssistantsRequestAccept19", + "name": "ListAssistantsRequestAccept17", "namespace": "", "usage": "None", "valueType": { @@ -20540,7 +20554,7 @@ { "$id": "1815", "kind": "constant", - "name": "listChatCompletionsContentType", + "name": "ListAssistantsRequestAccept18", "namespace": "", "usage": "None", "valueType": { @@ -20556,7 +20570,7 @@ { "$id": "1817", "kind": "constant", - "name": "ListAssistantsRequestAccept20", + "name": "ListAssistantsRequestAccept19", "namespace": "", "usage": "None", "valueType": { @@ -20572,7 +20586,7 @@ { "$id": "1819", "kind": "constant", - "name": "createChatCompletionContentType", + "name": "listChatCompletionsContentType", "namespace": "", "usage": "None", "valueType": { @@ -20588,7 +20602,7 @@ { "$id": "1821", "kind": "constant", - "name": "CreateTranscriptionRequestAccept11", + "name": "ListAssistantsRequestAccept20", "namespace": "", "usage": "None", "valueType": { @@ -20598,13 +20612,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "text/event-stream", + "value": "application/json", "decorators": [] }, { "$id": "1823", "kind": "constant", - "name": "ListAssistantsRequestAccept21", + "name": "createChatCompletionContentType", "namespace": "", "usage": "None", "valueType": { @@ -20620,7 +20634,7 @@ { "$id": "1825", "kind": "constant", - "name": "getChatCompletionContentType", + "name": "CreateTranscriptionRequestAccept11", "namespace": "", "usage": "None", "valueType": { @@ -20630,13 +20644,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "text/event-stream", "decorators": [] }, { "$id": "1827", "kind": "constant", - "name": "updateChatCompletionContentType", + "name": "ListAssistantsRequestAccept21", "namespace": "", "usage": "None", "valueType": { @@ -20652,7 +20666,7 @@ { "$id": "1829", "kind": "constant", - "name": "updateChatCompletionContentType1", + "name": "getChatCompletionContentType", "namespace": "", "usage": "None", "valueType": { @@ -20668,7 +20682,7 @@ { "$id": "1831", "kind": "constant", - "name": "deleteChatCompletionContentType", + "name": "updateChatCompletionContentType", "namespace": "", "usage": "None", "valueType": { @@ -20684,7 +20698,7 @@ { "$id": "1833", "kind": "constant", - "name": "getChatCompletionMessagesContentType", + "name": "updateChatCompletionContentType1", "namespace": "", "usage": "None", "valueType": { @@ -20700,7 +20714,7 @@ { "$id": "1835", "kind": "constant", - "name": "listContainersContentType", + "name": "deleteChatCompletionContentType", "namespace": "", "usage": "None", "valueType": { @@ -20716,7 +20730,7 @@ { "$id": "1837", "kind": "constant", - "name": "createContainerContentType", + "name": "getChatCompletionMessagesContentType", "namespace": "", "usage": "None", "valueType": { @@ -20732,7 +20746,7 @@ { "$id": "1839", "kind": "constant", - "name": "createContainerContentType1", + "name": "listContainersContentType", "namespace": "", "usage": "None", "valueType": { @@ -20748,7 +20762,7 @@ { "$id": "1841", "kind": "constant", - "name": "retrieveContainerContentType", + "name": "createContainerContentType", "namespace": "", "usage": "None", "valueType": { @@ -20764,7 +20778,7 @@ { "$id": "1843", "kind": "constant", - "name": "deleteContainerContentType", + "name": "createContainerContentType1", "namespace": "", "usage": "None", "valueType": { @@ -20780,7 +20794,7 @@ { "$id": "1845", "kind": "constant", - "name": "CreateTranscriptionRequestContentType4", + "name": "retrieveContainerContentType", "namespace": "", "usage": "None", "valueType": { @@ -20790,13 +20804,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "multipart/form-data", + "value": "application/json", "decorators": [] }, { "$id": "1847", "kind": "constant", - "name": "createContainerFileContentType", + "name": "deleteContainerContentType", "namespace": "", "usage": "None", "valueType": { @@ -20812,7 +20826,7 @@ { "$id": "1849", "kind": "constant", - "name": "CreateTranscriptionRequestContentType5", + "name": "CreateTranscriptionRequestContentType4", "namespace": "", "usage": "None", "valueType": { @@ -20828,7 +20842,7 @@ { "$id": "1851", "kind": "constant", - "name": "listContainerFilesContentType", + "name": "createContainerFileContentType", "namespace": "", "usage": "None", "valueType": { @@ -20844,7 +20858,7 @@ { "$id": "1853", "kind": "constant", - "name": "retrieveContainerFileContentType", + "name": "CreateTranscriptionRequestContentType5", "namespace": "", "usage": "None", "valueType": { @@ -20854,13 +20868,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "multipart/form-data", "decorators": [] }, { "$id": "1855", "kind": "constant", - "name": "deleteContainerFileContentType", + "name": "listContainerFilesContentType", "namespace": "", "usage": "None", "valueType": { @@ -20876,7 +20890,7 @@ { "$id": "1857", "kind": "constant", - "name": "retrieveContainerFileContentContentType", + "name": "retrieveContainerFileContentType", "namespace": "", "usage": "None", "valueType": { @@ -20886,13 +20900,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/octet-stream", + "value": "application/json", "decorators": [] }, { "$id": "1859", "kind": "constant", - "name": "ListAssistantsRequestAccept22", + "name": "deleteContainerFileContentType", "namespace": "", "usage": "None", "valueType": { @@ -20908,7 +20922,7 @@ { "$id": "1861", "kind": "constant", - "name": "createEmbeddingContentType", + "name": "retrieveContainerFileContentContentType", "namespace": "", "usage": "None", "valueType": { @@ -20918,13 +20932,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "application/octet-stream", "decorators": [] }, { "$id": "1863", "kind": "constant", - "name": "ListAssistantsRequestAccept23", + "name": "ListAssistantsRequestAccept22", "namespace": "", "usage": "None", "valueType": { @@ -20940,7 +20954,7 @@ { "$id": "1865", "kind": "constant", - "name": "ListAssistantsRequestAccept24", + "name": "createEmbeddingContentType", "namespace": "", "usage": "None", "valueType": { @@ -20956,7 +20970,7 @@ { "$id": "1867", "kind": "constant", - "name": "ListAssistantsRequestAccept25", + "name": "ListAssistantsRequestAccept23", "namespace": "", "usage": "None", "valueType": { @@ -20972,7 +20986,7 @@ { "$id": "1869", "kind": "constant", - "name": "ListAssistantsRequestAccept26", + "name": "ListAssistantsRequestAccept24", "namespace": "", "usage": "None", "valueType": { @@ -20988,7 +21002,7 @@ { "$id": "1871", "kind": "constant", - "name": "CreateTranscriptionRequestContentType6", + "name": "ListAssistantsRequestAccept25", "namespace": "", "usage": "None", "valueType": { @@ -20998,13 +21012,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "multipart/form-data", + "value": "application/json", "decorators": [] }, { "$id": "1873", "kind": "constant", - "name": "ListAssistantsRequestAccept27", + "name": "ListAssistantsRequestAccept26", "namespace": "", "usage": "None", "valueType": { @@ -21020,7 +21034,7 @@ { "$id": "1875", "kind": "constant", - "name": "CreateTranscriptionRequestContentType7", + "name": "CreateTranscriptionRequestContentType6", "namespace": "", "usage": "None", "valueType": { @@ -21036,7 +21050,7 @@ { "$id": "1877", "kind": "constant", - "name": "ListAssistantsRequestAccept28", + "name": "ListAssistantsRequestAccept27", "namespace": "", "usage": "None", "valueType": { @@ -21052,7 +21066,7 @@ { "$id": "1879", "kind": "constant", - "name": "ListAssistantsRequestAccept29", + "name": "CreateTranscriptionRequestContentType7", "namespace": "", "usage": "None", "valueType": { @@ -21062,13 +21076,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "multipart/form-data", "decorators": [] }, { "$id": "1881", "kind": "constant", - "name": "ListAssistantsRequestAccept30", + "name": "ListAssistantsRequestAccept28", "namespace": "", "usage": "None", "valueType": { @@ -21084,7 +21098,7 @@ { "$id": "1883", "kind": "constant", - "name": "ListAssistantsRequestAccept31", + "name": "ListAssistantsRequestAccept29", "namespace": "", "usage": "None", "valueType": { @@ -21100,7 +21114,7 @@ { "$id": "1885", "kind": "constant", - "name": "ListAssistantsRequestAccept32", + "name": "ListAssistantsRequestAccept30", "namespace": "", "usage": "None", "valueType": { @@ -21116,7 +21130,7 @@ { "$id": "1887", "kind": "constant", - "name": "ListAssistantsRequestAccept33", + "name": "ListAssistantsRequestAccept31", "namespace": "", "usage": "None", "valueType": { @@ -21132,7 +21146,7 @@ { "$id": "1889", "kind": "constant", - "name": "listFineTuningCheckpointPermissionsContentType", + "name": "ListAssistantsRequestAccept32", "namespace": "", "usage": "None", "valueType": { @@ -21148,7 +21162,7 @@ { "$id": "1891", "kind": "constant", - "name": "createFineTuningCheckpointPermissionContentType", + "name": "ListAssistantsRequestAccept33", "namespace": "", "usage": "None", "valueType": { @@ -21164,7 +21178,7 @@ { "$id": "1893", "kind": "constant", - "name": "createFineTuningCheckpointPermissionContentType1", + "name": "listFineTuningCheckpointPermissionsContentType", "namespace": "", "usage": "None", "valueType": { @@ -21180,7 +21194,7 @@ { "$id": "1895", "kind": "constant", - "name": "deleteFineTuningCheckpointPermissionContentType", + "name": "createFineTuningCheckpointPermissionContentType", "namespace": "", "usage": "None", "valueType": { @@ -21196,7 +21210,7 @@ { "$id": "1897", "kind": "constant", - "name": "ListAssistantsRequestAccept34", + "name": "createFineTuningCheckpointPermissionContentType1", "namespace": "", "usage": "None", "valueType": { @@ -21212,7 +21226,7 @@ { "$id": "1899", "kind": "constant", - "name": "createFineTuningJobContentType", + "name": "deleteFineTuningCheckpointPermissionContentType", "namespace": "", "usage": "None", "valueType": { @@ -21228,7 +21242,7 @@ { "$id": "1901", "kind": "constant", - "name": "ListAssistantsRequestAccept35", + "name": "ListAssistantsRequestAccept34", "namespace": "", "usage": "None", "valueType": { @@ -21244,7 +21258,7 @@ { "$id": "1903", "kind": "constant", - "name": "ListAssistantsRequestAccept36", + "name": "createFineTuningJobContentType", "namespace": "", "usage": "None", "valueType": { @@ -21260,7 +21274,7 @@ { "$id": "1905", "kind": "constant", - "name": "ListAssistantsRequestAccept37", + "name": "ListAssistantsRequestAccept35", "namespace": "", "usage": "None", "valueType": { @@ -21276,7 +21290,7 @@ { "$id": "1907", "kind": "constant", - "name": "ListAssistantsRequestAccept38", + "name": "ListAssistantsRequestAccept36", "namespace": "", "usage": "None", "valueType": { @@ -21292,7 +21306,7 @@ { "$id": "1909", "kind": "constant", - "name": "ListAssistantsRequestAccept39", + "name": "ListAssistantsRequestAccept37", "namespace": "", "usage": "None", "valueType": { @@ -21308,7 +21322,7 @@ { "$id": "1911", "kind": "constant", - "name": "ListAssistantsRequestAccept40", + "name": "ListAssistantsRequestAccept38", "namespace": "", "usage": "None", "valueType": { @@ -21324,7 +21338,7 @@ { "$id": "1913", "kind": "constant", - "name": "ListAssistantsRequestAccept41", + "name": "ListAssistantsRequestAccept39", "namespace": "", "usage": "None", "valueType": { @@ -21340,7 +21354,7 @@ { "$id": "1915", "kind": "constant", - "name": "ListAssistantsRequestAccept42", + "name": "ListAssistantsRequestAccept40", "namespace": "", "usage": "None", "valueType": { @@ -21356,7 +21370,7 @@ { "$id": "1917", "kind": "constant", - "name": "ListAssistantsRequestAccept43", + "name": "ListAssistantsRequestAccept41", "namespace": "", "usage": "None", "valueType": { @@ -21372,7 +21386,7 @@ { "$id": "1919", "kind": "constant", - "name": "ListAssistantsRequestAccept44", + "name": "ListAssistantsRequestAccept42", "namespace": "", "usage": "None", "valueType": { @@ -21388,7 +21402,7 @@ { "$id": "1921", "kind": "constant", - "name": "ListAssistantsRequestAccept45", + "name": "ListAssistantsRequestAccept43", "namespace": "", "usage": "None", "valueType": { @@ -21404,7 +21418,7 @@ { "$id": "1923", "kind": "constant", - "name": "pauseFineTuningJobContentType", + "name": "ListAssistantsRequestAccept44", "namespace": "", "usage": "None", "valueType": { @@ -21420,7 +21434,7 @@ { "$id": "1925", "kind": "constant", - "name": "resumeFineTuningJobContentType", + "name": "ListAssistantsRequestAccept45", "namespace": "", "usage": "None", "valueType": { @@ -21436,7 +21450,7 @@ { "$id": "1927", "kind": "constant", - "name": "runGraderContentType", + "name": "pauseFineTuningJobContentType", "namespace": "", "usage": "None", "valueType": { @@ -21452,7 +21466,7 @@ { "$id": "1929", "kind": "constant", - "name": "runGraderContentType1", + "name": "resumeFineTuningJobContentType", "namespace": "", "usage": "None", "valueType": { @@ -21468,7 +21482,7 @@ { "$id": "1931", "kind": "constant", - "name": "validateGraderContentType", + "name": "runGraderContentType", "namespace": "", "usage": "None", "valueType": { @@ -21484,7 +21498,7 @@ { "$id": "1933", "kind": "constant", - "name": "validateGraderContentType1", + "name": "runGraderContentType1", "namespace": "", "usage": "None", "valueType": { @@ -21500,7 +21514,7 @@ { "$id": "1935", "kind": "constant", - "name": "listEvalsContentType", + "name": "validateGraderContentType", "namespace": "", "usage": "None", "valueType": { @@ -21516,7 +21530,7 @@ { "$id": "1937", "kind": "constant", - "name": "createEvalContentType", + "name": "validateGraderContentType1", "namespace": "", "usage": "None", "valueType": { @@ -21532,7 +21546,7 @@ { "$id": "1939", "kind": "constant", - "name": "createEvalContentType1", + "name": "listEvalsContentType", "namespace": "", "usage": "None", "valueType": { @@ -21548,7 +21562,7 @@ { "$id": "1941", "kind": "constant", - "name": "getEvalContentType", + "name": "createEvalContentType", "namespace": "", "usage": "None", "valueType": { @@ -21564,7 +21578,7 @@ { "$id": "1943", "kind": "constant", - "name": "updateEvalContentType", + "name": "createEvalContentType1", "namespace": "", "usage": "None", "valueType": { @@ -21580,7 +21594,7 @@ { "$id": "1945", "kind": "constant", - "name": "updateEvalContentType1", + "name": "getEvalContentType", "namespace": "", "usage": "None", "valueType": { @@ -21596,7 +21610,7 @@ { "$id": "1947", "kind": "constant", - "name": "deleteEvalContentType", + "name": "updateEvalContentType", "namespace": "", "usage": "None", "valueType": { @@ -21612,7 +21626,7 @@ { "$id": "1949", "kind": "constant", - "name": "getEvalRunsContentType", + "name": "updateEvalContentType1", "namespace": "", "usage": "None", "valueType": { @@ -21628,7 +21642,7 @@ { "$id": "1951", "kind": "constant", - "name": "createEvalRunContentType", + "name": "deleteEvalContentType", "namespace": "", "usage": "None", "valueType": { @@ -21644,7 +21658,7 @@ { "$id": "1953", "kind": "constant", - "name": "createEvalRunContentType1", + "name": "getEvalRunsContentType", "namespace": "", "usage": "None", "valueType": { @@ -21660,7 +21674,7 @@ { "$id": "1955", "kind": "constant", - "name": "getEvalRunContentType", + "name": "createEvalRunContentType", "namespace": "", "usage": "None", "valueType": { @@ -21676,7 +21690,7 @@ { "$id": "1957", "kind": "constant", - "name": "cancelEvalRunContentType", + "name": "createEvalRunContentType1", "namespace": "", "usage": "None", "valueType": { @@ -21692,7 +21706,7 @@ { "$id": "1959", "kind": "constant", - "name": "deleteEvalRunContentType", + "name": "getEvalRunContentType", "namespace": "", "usage": "None", "valueType": { @@ -21708,7 +21722,7 @@ { "$id": "1961", "kind": "constant", - "name": "getEvalRunOutputItemsContentType", + "name": "cancelEvalRunContentType", "namespace": "", "usage": "None", "valueType": { @@ -21724,7 +21738,7 @@ { "$id": "1963", "kind": "constant", - "name": "getEvalRunOutputItemContentType", + "name": "deleteEvalRunContentType", "namespace": "", "usage": "None", "valueType": { @@ -21740,7 +21754,7 @@ { "$id": "1965", "kind": "constant", - "name": "createResponseContentType", + "name": "getEvalRunOutputItemsContentType", "namespace": "", "usage": "None", "valueType": { @@ -21756,7 +21770,7 @@ { "$id": "1967", "kind": "constant", - "name": "CreateTranscriptionRequestAccept12", + "name": "getEvalRunOutputItemContentType", "namespace": "", "usage": "None", "valueType": { @@ -21766,13 +21780,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "text/event-stream", + "value": "application/json", "decorators": [] }, { "$id": "1969", "kind": "constant", - "name": "CreateTranscriptionRequestAccept13", + "name": "createResponseContentType", "namespace": "", "usage": "None", "valueType": { @@ -21782,13 +21796,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "text/event-stream", + "value": "application/json", "decorators": [] }, { "$id": "1971", "kind": "constant", - "name": "deleteResponseContentType", + "name": "CreateTranscriptionRequestAccept12", "namespace": "", "usage": "None", "valueType": { @@ -21798,13 +21812,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "text/event-stream", "decorators": [] }, { "$id": "1973", "kind": "constant", - "name": "cancelResponseContentType", + "name": "CreateTranscriptionRequestAccept13", "namespace": "", "usage": "None", "valueType": { @@ -21814,13 +21828,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "text/event-stream", "decorators": [] }, { "$id": "1975", "kind": "constant", - "name": "listInputItemsContentType", + "name": "deleteResponseContentType", "namespace": "", "usage": "None", "valueType": { @@ -21836,7 +21850,7 @@ { "$id": "1977", "kind": "constant", - "name": "ListAssistantsRequestAccept46", + "name": "cancelResponseContentType", "namespace": "", "usage": "None", "valueType": { @@ -21852,7 +21866,7 @@ { "$id": "1979", "kind": "constant", - "name": "createImageContentType", + "name": "listInputItemsContentType", "namespace": "", "usage": "None", "valueType": { @@ -21868,7 +21882,7 @@ { "$id": "1981", "kind": "constant", - "name": "ListAssistantsRequestAccept47", + "name": "ListAssistantsRequestAccept46", "namespace": "", "usage": "None", "valueType": { @@ -21884,7 +21898,7 @@ { "$id": "1983", "kind": "constant", - "name": "ListAssistantsRequestAccept48", + "name": "createImageContentType", "namespace": "", "usage": "None", "valueType": { @@ -21900,7 +21914,7 @@ { "$id": "1985", "kind": "constant", - "name": "CreateTranscriptionRequestContentType8", + "name": "ListAssistantsRequestAccept47", "namespace": "", "usage": "None", "valueType": { @@ -21910,13 +21924,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "multipart/form-data", + "value": "application/json", "decorators": [] }, { "$id": "1987", "kind": "constant", - "name": "ListAssistantsRequestAccept49", + "name": "ListAssistantsRequestAccept48", "namespace": "", "usage": "None", "valueType": { @@ -21932,7 +21946,7 @@ { "$id": "1989", "kind": "constant", - "name": "CreateTranscriptionRequestContentType9", + "name": "CreateTranscriptionRequestContentType8", "namespace": "", "usage": "None", "valueType": { @@ -21948,7 +21962,7 @@ { "$id": "1991", "kind": "constant", - "name": "ListAssistantsRequestAccept50", + "name": "ListAssistantsRequestAccept49", "namespace": "", "usage": "None", "valueType": { @@ -21964,7 +21978,7 @@ { "$id": "1993", "kind": "constant", - "name": "CreateTranscriptionRequestContentType10", + "name": "CreateTranscriptionRequestContentType9", "namespace": "", "usage": "None", "valueType": { @@ -21980,7 +21994,7 @@ { "$id": "1995", "kind": "constant", - "name": "ListAssistantsRequestAccept51", + "name": "ListAssistantsRequestAccept50", "namespace": "", "usage": "None", "valueType": { @@ -21996,7 +22010,7 @@ { "$id": "1997", "kind": "constant", - "name": "CreateTranscriptionRequestContentType11", + "name": "CreateTranscriptionRequestContentType10", "namespace": "", "usage": "None", "valueType": { @@ -22012,7 +22026,7 @@ { "$id": "1999", "kind": "constant", - "name": "ListAssistantsRequestAccept52", + "name": "ListAssistantsRequestAccept51", "namespace": "", "usage": "None", "valueType": { @@ -22028,7 +22042,7 @@ { "$id": "2001", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta10", + "name": "CreateTranscriptionRequestContentType11", "namespace": "", "usage": "None", "valueType": { @@ -22038,13 +22052,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "multipart/form-data", "decorators": [] }, { "$id": "2003", "kind": "constant", - "name": "createMessageContentType", + "name": "ListAssistantsRequestAccept52", "namespace": "", "usage": "None", "valueType": { @@ -22060,7 +22074,7 @@ { "$id": "2005", "kind": "constant", - "name": "ListAssistantsRequestAccept53", + "name": "ListAssistantsRequestOpenAiBeta10", "namespace": "", "usage": "None", "valueType": { @@ -22070,13 +22084,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { "$id": "2007", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta11", + "name": "createMessageContentType", "namespace": "", "usage": "None", "valueType": { @@ -22086,13 +22100,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { "$id": "2009", "kind": "constant", - "name": "ListAssistantsRequestAccept54", + "name": "ListAssistantsRequestAccept53", "namespace": "", "usage": "None", "valueType": { @@ -22108,7 +22122,7 @@ { "$id": "2011", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta12", + "name": "ListAssistantsRequestOpenAiBeta11", "namespace": "", "usage": "None", "valueType": { @@ -22124,7 +22138,7 @@ { "$id": "2013", "kind": "constant", - "name": "ListAssistantsRequestAccept55", + "name": "ListAssistantsRequestAccept54", "namespace": "", "usage": "None", "valueType": { @@ -22140,7 +22154,7 @@ { "$id": "2015", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta13", + "name": "ListAssistantsRequestOpenAiBeta12", "namespace": "", "usage": "None", "valueType": { @@ -22156,7 +22170,7 @@ { "$id": "2017", "kind": "constant", - "name": "ListAssistantsRequestAccept56", + "name": "ListAssistantsRequestAccept55", "namespace": "", "usage": "None", "valueType": { @@ -22172,7 +22186,7 @@ { "$id": "2019", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta14", + "name": "ListAssistantsRequestOpenAiBeta13", "namespace": "", "usage": "None", "valueType": { @@ -22188,7 +22202,7 @@ { "$id": "2021", "kind": "constant", - "name": "ListAssistantsRequestAccept57", + "name": "ListAssistantsRequestAccept56", "namespace": "", "usage": "None", "valueType": { @@ -22204,7 +22218,7 @@ { "$id": "2023", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta15", + "name": "ListAssistantsRequestOpenAiBeta14", "namespace": "", "usage": "None", "valueType": { @@ -22220,7 +22234,7 @@ { "$id": "2025", "kind": "constant", - "name": "ListAssistantsRequestAccept58", + "name": "ListAssistantsRequestAccept57", "namespace": "", "usage": "None", "valueType": { @@ -22236,7 +22250,7 @@ { "$id": "2027", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta16", + "name": "ListAssistantsRequestOpenAiBeta15", "namespace": "", "usage": "None", "valueType": { @@ -22252,7 +22266,7 @@ { "$id": "2029", "kind": "constant", - "name": "modifyMessageContentType", + "name": "ListAssistantsRequestAccept58", "namespace": "", "usage": "None", "valueType": { @@ -22268,7 +22282,7 @@ { "$id": "2031", "kind": "constant", - "name": "ListAssistantsRequestAccept59", + "name": "ListAssistantsRequestOpenAiBeta16", "namespace": "", "usage": "None", "valueType": { @@ -22278,13 +22292,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { "$id": "2033", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta17", + "name": "modifyMessageContentType", "namespace": "", "usage": "None", "valueType": { @@ -22294,13 +22308,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { "$id": "2035", "kind": "constant", - "name": "ListAssistantsRequestAccept60", + "name": "ListAssistantsRequestAccept59", "namespace": "", "usage": "None", "valueType": { @@ -22316,7 +22330,7 @@ { "$id": "2037", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta18", + "name": "ListAssistantsRequestOpenAiBeta17", "namespace": "", "usage": "None", "valueType": { @@ -22332,7 +22346,7 @@ { "$id": "2039", "kind": "constant", - "name": "ListAssistantsRequestAccept61", + "name": "ListAssistantsRequestAccept60", "namespace": "", "usage": "None", "valueType": { @@ -22348,7 +22362,7 @@ { "$id": "2041", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta19", + "name": "ListAssistantsRequestOpenAiBeta18", "namespace": "", "usage": "None", "valueType": { @@ -22364,7 +22378,7 @@ { "$id": "2043", "kind": "constant", - "name": "ListAssistantsRequestAccept62", + "name": "ListAssistantsRequestAccept61", "namespace": "", "usage": "None", "valueType": { @@ -22380,7 +22394,7 @@ { "$id": "2045", "kind": "constant", - "name": "createModerationContentType", + "name": "ListAssistantsRequestOpenAiBeta19", "namespace": "", "usage": "None", "valueType": { @@ -22390,13 +22404,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { "$id": "2047", "kind": "constant", - "name": "ListAssistantsRequestAccept63", + "name": "ListAssistantsRequestAccept62", "namespace": "", "usage": "None", "valueType": { @@ -22412,7 +22426,7 @@ { "$id": "2049", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta20", + "name": "createModerationContentType", "namespace": "", "usage": "None", "valueType": { @@ -22422,13 +22436,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { "$id": "2051", "kind": "constant", - "name": "createThreadAndRunContentType", + "name": "ListAssistantsRequestAccept63", "namespace": "", "usage": "None", "valueType": { @@ -22444,7 +22458,7 @@ { "$id": "2053", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta21", + "name": "ListAssistantsRequestOpenAiBeta20", "namespace": "", "usage": "None", "valueType": { @@ -22460,7 +22474,7 @@ { "$id": "2055", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta22", + "name": "createThreadAndRunContentType", "namespace": "", "usage": "None", "valueType": { @@ -22470,13 +22484,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { "$id": "2057", "kind": "constant", - "name": "createRunContentType", + "name": "ListAssistantsRequestOpenAiBeta21", "namespace": "", "usage": "None", "valueType": { @@ -22486,13 +22500,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { "$id": "2059", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta23", + "name": "ListAssistantsRequestOpenAiBeta22", "namespace": "", "usage": "None", "valueType": { @@ -22508,7 +22522,7 @@ { "$id": "2061", "kind": "constant", - "name": "ListAssistantsRequestAccept64", + "name": "createRunContentType", "namespace": "", "usage": "None", "valueType": { @@ -22524,7 +22538,7 @@ { "$id": "2063", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta24", + "name": "ListAssistantsRequestOpenAiBeta23", "namespace": "", "usage": "None", "valueType": { @@ -22540,7 +22554,7 @@ { "$id": "2065", "kind": "constant", - "name": "ListAssistantsRequestAccept65", + "name": "ListAssistantsRequestAccept64", "namespace": "", "usage": "None", "valueType": { @@ -22556,7 +22570,7 @@ { "$id": "2067", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta25", + "name": "ListAssistantsRequestOpenAiBeta24", "namespace": "", "usage": "None", "valueType": { @@ -22572,7 +22586,7 @@ { "$id": "2069", "kind": "constant", - "name": "ListAssistantsRequestAccept66", + "name": "ListAssistantsRequestAccept65", "namespace": "", "usage": "None", "valueType": { @@ -22588,7 +22602,7 @@ { "$id": "2071", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta26", + "name": "ListAssistantsRequestOpenAiBeta25", "namespace": "", "usage": "None", "valueType": { @@ -22604,7 +22618,7 @@ { "$id": "2073", "kind": "constant", - "name": "ListAssistantsRequestAccept67", + "name": "ListAssistantsRequestAccept66", "namespace": "", "usage": "None", "valueType": { @@ -22620,7 +22634,7 @@ { "$id": "2075", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta27", + "name": "ListAssistantsRequestOpenAiBeta26", "namespace": "", "usage": "None", "valueType": { @@ -22636,7 +22650,7 @@ { "$id": "2077", "kind": "constant", - "name": "ListAssistantsRequestAccept68", + "name": "ListAssistantsRequestAccept67", "namespace": "", "usage": "None", "valueType": { @@ -22652,7 +22666,7 @@ { "$id": "2079", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta28", + "name": "ListAssistantsRequestOpenAiBeta27", "namespace": "", "usage": "None", "valueType": { @@ -22668,7 +22682,7 @@ { "$id": "2081", "kind": "constant", - "name": "modifyRunContentType", + "name": "ListAssistantsRequestAccept68", "namespace": "", "usage": "None", "valueType": { @@ -22684,7 +22698,7 @@ { "$id": "2083", "kind": "constant", - "name": "ListAssistantsRequestAccept69", + "name": "ListAssistantsRequestOpenAiBeta28", "namespace": "", "usage": "None", "valueType": { @@ -22694,13 +22708,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { "$id": "2085", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta29", + "name": "modifyRunContentType", "namespace": "", "usage": "None", "valueType": { @@ -22710,13 +22724,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { "$id": "2087", "kind": "constant", - "name": "ListAssistantsRequestAccept70", + "name": "ListAssistantsRequestAccept69", "namespace": "", "usage": "None", "valueType": { @@ -22732,7 +22746,7 @@ { "$id": "2089", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta30", + "name": "ListAssistantsRequestOpenAiBeta29", "namespace": "", "usage": "None", "valueType": { @@ -22748,7 +22762,7 @@ { "$id": "2091", "kind": "constant", - "name": "ListAssistantsRequestAccept71", + "name": "ListAssistantsRequestAccept70", "namespace": "", "usage": "None", "valueType": { @@ -22764,7 +22778,7 @@ { "$id": "2093", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta31", + "name": "ListAssistantsRequestOpenAiBeta30", "namespace": "", "usage": "None", "valueType": { @@ -22780,7 +22794,7 @@ { "$id": "2095", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta32", + "name": "ListAssistantsRequestAccept71", "namespace": "", "usage": "None", "valueType": { @@ -22790,13 +22804,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { "$id": "2097", "kind": "constant", - "name": "submitToolOutputsToRunContentType", + "name": "ListAssistantsRequestOpenAiBeta31", "namespace": "", "usage": "None", "valueType": { @@ -22806,13 +22820,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { "$id": "2099", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta33", + "name": "ListAssistantsRequestOpenAiBeta32", "namespace": "", "usage": "None", "valueType": { @@ -22828,7 +22842,7 @@ { "$id": "2101", "kind": "constant", - "name": "ListAssistantsRequestAccept72", + "name": "submitToolOutputsToRunContentType", "namespace": "", "usage": "None", "valueType": { @@ -22844,7 +22858,7 @@ { "$id": "2103", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta34", + "name": "ListAssistantsRequestOpenAiBeta33", "namespace": "", "usage": "None", "valueType": { @@ -22860,7 +22874,7 @@ { "$id": "2105", "kind": "constant", - "name": "ListAssistantsRequestAccept73", + "name": "ListAssistantsRequestAccept72", "namespace": "", "usage": "None", "valueType": { @@ -22876,7 +22890,7 @@ { "$id": "2107", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta35", + "name": "ListAssistantsRequestOpenAiBeta34", "namespace": "", "usage": "None", "valueType": { @@ -22892,7 +22906,7 @@ { "$id": "2109", "kind": "constant", - "name": "ListAssistantsRequestAccept74", + "name": "ListAssistantsRequestAccept73", "namespace": "", "usage": "None", "valueType": { @@ -22908,7 +22922,7 @@ { "$id": "2111", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta36", + "name": "ListAssistantsRequestOpenAiBeta35", "namespace": "", "usage": "None", "valueType": { @@ -22924,7 +22938,7 @@ { "$id": "2113", "kind": "constant", - "name": "ListAssistantsRequestAccept75", + "name": "ListAssistantsRequestAccept74", "namespace": "", "usage": "None", "valueType": { @@ -22940,7 +22954,7 @@ { "$id": "2115", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta37", + "name": "ListAssistantsRequestOpenAiBeta36", "namespace": "", "usage": "None", "valueType": { @@ -22956,7 +22970,7 @@ { "$id": "2117", "kind": "constant", - "name": "ListAssistantsRequestAccept76", + "name": "ListAssistantsRequestAccept75", "namespace": "", "usage": "None", "valueType": { @@ -22972,7 +22986,7 @@ { "$id": "2119", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta38", + "name": "ListAssistantsRequestOpenAiBeta37", "namespace": "", "usage": "None", "valueType": { @@ -22988,7 +23002,7 @@ { "$id": "2121", "kind": "constant", - "name": "createThreadContentType", + "name": "ListAssistantsRequestAccept76", "namespace": "", "usage": "None", "valueType": { @@ -23004,7 +23018,7 @@ { "$id": "2123", "kind": "constant", - "name": "ListAssistantsRequestAccept77", + "name": "ListAssistantsRequestOpenAiBeta38", "namespace": "", "usage": "None", "valueType": { @@ -23014,13 +23028,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { "$id": "2125", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta39", + "name": "createThreadContentType", "namespace": "", "usage": "None", "valueType": { @@ -23030,13 +23044,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { "$id": "2127", "kind": "constant", - "name": "ListAssistantsRequestAccept78", + "name": "ListAssistantsRequestAccept77", "namespace": "", "usage": "None", "valueType": { @@ -23052,7 +23066,7 @@ { "$id": "2129", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta40", + "name": "ListAssistantsRequestOpenAiBeta39", "namespace": "", "usage": "None", "valueType": { @@ -23068,7 +23082,7 @@ { "$id": "2131", "kind": "constant", - "name": "ListAssistantsRequestAccept79", + "name": "ListAssistantsRequestAccept78", "namespace": "", "usage": "None", "valueType": { @@ -23084,7 +23098,7 @@ { "$id": "2133", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta41", + "name": "ListAssistantsRequestOpenAiBeta40", "namespace": "", "usage": "None", "valueType": { @@ -23100,7 +23114,7 @@ { "$id": "2135", "kind": "constant", - "name": "ListAssistantsRequestAccept80", + "name": "ListAssistantsRequestAccept79", "namespace": "", "usage": "None", "valueType": { @@ -23116,7 +23130,7 @@ { "$id": "2137", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta42", + "name": "ListAssistantsRequestOpenAiBeta41", "namespace": "", "usage": "None", "valueType": { @@ -23132,7 +23146,7 @@ { "$id": "2139", "kind": "constant", - "name": "modifyThreadContentType", + "name": "ListAssistantsRequestAccept80", "namespace": "", "usage": "None", "valueType": { @@ -23148,7 +23162,7 @@ { "$id": "2141", "kind": "constant", - "name": "ListAssistantsRequestAccept81", + "name": "ListAssistantsRequestOpenAiBeta42", "namespace": "", "usage": "None", "valueType": { @@ -23158,13 +23172,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { "$id": "2143", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta43", + "name": "modifyThreadContentType", "namespace": "", "usage": "None", "valueType": { @@ -23174,13 +23188,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { "$id": "2145", "kind": "constant", - "name": "ListAssistantsRequestAccept82", + "name": "ListAssistantsRequestAccept81", "namespace": "", "usage": "None", "valueType": { @@ -23196,7 +23210,7 @@ { "$id": "2147", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta44", + "name": "ListAssistantsRequestOpenAiBeta43", "namespace": "", "usage": "None", "valueType": { @@ -23212,7 +23226,7 @@ { "$id": "2149", "kind": "constant", - "name": "ListAssistantsRequestAccept83", + "name": "ListAssistantsRequestAccept82", "namespace": "", "usage": "None", "valueType": { @@ -23228,7 +23242,7 @@ { "$id": "2151", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta45", + "name": "ListAssistantsRequestOpenAiBeta44", "namespace": "", "usage": "None", "valueType": { @@ -23244,7 +23258,7 @@ { "$id": "2153", "kind": "constant", - "name": "ListAssistantsRequestAccept84", + "name": "ListAssistantsRequestAccept83", "namespace": "", "usage": "None", "valueType": { @@ -23260,7 +23274,7 @@ { "$id": "2155", "kind": "constant", - "name": "ListAssistantsRequestAccept85", + "name": "ListAssistantsRequestOpenAiBeta45", "namespace": "", "usage": "None", "valueType": { @@ -23270,13 +23284,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { "$id": "2157", "kind": "constant", - "name": "ListAssistantsRequestAccept86", + "name": "ListAssistantsRequestAccept84", "namespace": "", "usage": "None", "valueType": { @@ -23292,7 +23306,7 @@ { "$id": "2159", "kind": "constant", - "name": "createVectorStoreContentType", + "name": "ListAssistantsRequestAccept85", "namespace": "", "usage": "None", "valueType": { @@ -23308,7 +23322,7 @@ { "$id": "2161", "kind": "constant", - "name": "ListAssistantsRequestAccept87", + "name": "ListAssistantsRequestAccept86", "namespace": "", "usage": "None", "valueType": { @@ -23324,7 +23338,7 @@ { "$id": "2163", "kind": "constant", - "name": "ListAssistantsRequestAccept88", + "name": "createVectorStoreContentType", "namespace": "", "usage": "None", "valueType": { @@ -23340,7 +23354,7 @@ { "$id": "2165", "kind": "constant", - "name": "ListAssistantsRequestAccept89", + "name": "ListAssistantsRequestAccept87", "namespace": "", "usage": "None", "valueType": { @@ -23356,7 +23370,7 @@ { "$id": "2167", "kind": "constant", - "name": "ListAssistantsRequestAccept90", + "name": "ListAssistantsRequestAccept88", "namespace": "", "usage": "None", "valueType": { @@ -23372,7 +23386,7 @@ { "$id": "2169", "kind": "constant", - "name": "modifyVectorStoreContentType", + "name": "ListAssistantsRequestAccept89", "namespace": "", "usage": "None", "valueType": { @@ -23388,7 +23402,7 @@ { "$id": "2171", "kind": "constant", - "name": "ListAssistantsRequestAccept91", + "name": "ListAssistantsRequestAccept90", "namespace": "", "usage": "None", "valueType": { @@ -23404,7 +23418,7 @@ { "$id": "2173", "kind": "constant", - "name": "ListAssistantsRequestAccept92", + "name": "modifyVectorStoreContentType", "namespace": "", "usage": "None", "valueType": { @@ -23420,7 +23434,7 @@ { "$id": "2175", "kind": "constant", - "name": "ListAssistantsRequestAccept93", + "name": "ListAssistantsRequestAccept91", "namespace": "", "usage": "None", "valueType": { @@ -23436,7 +23450,7 @@ { "$id": "2177", "kind": "constant", - "name": "ListAssistantsRequestAccept94", + "name": "ListAssistantsRequestAccept92", "namespace": "", "usage": "None", "valueType": { @@ -23452,7 +23466,7 @@ { "$id": "2179", "kind": "constant", - "name": "createVectorStoreFileBatchContentType", + "name": "ListAssistantsRequestAccept93", "namespace": "", "usage": "None", "valueType": { @@ -23468,7 +23482,7 @@ { "$id": "2181", "kind": "constant", - "name": "ListAssistantsRequestAccept95", + "name": "ListAssistantsRequestAccept94", "namespace": "", "usage": "None", "valueType": { @@ -23484,7 +23498,7 @@ { "$id": "2183", "kind": "constant", - "name": "ListAssistantsRequestAccept96", + "name": "createVectorStoreFileBatchContentType", "namespace": "", "usage": "None", "valueType": { @@ -23500,7 +23514,7 @@ { "$id": "2185", "kind": "constant", - "name": "ListAssistantsRequestAccept97", + "name": "ListAssistantsRequestAccept95", "namespace": "", "usage": "None", "valueType": { @@ -23516,7 +23530,7 @@ { "$id": "2187", "kind": "constant", - "name": "ListAssistantsRequestAccept98", + "name": "ListAssistantsRequestAccept96", "namespace": "", "usage": "None", "valueType": { @@ -23532,7 +23546,7 @@ { "$id": "2189", "kind": "constant", - "name": "ListAssistantsRequestAccept99", + "name": "ListAssistantsRequestAccept97", "namespace": "", "usage": "None", "valueType": { @@ -23548,7 +23562,7 @@ { "$id": "2191", "kind": "constant", - "name": "ListAssistantsRequestAccept100", + "name": "ListAssistantsRequestAccept98", "namespace": "", "usage": "None", "valueType": { @@ -23564,7 +23578,7 @@ { "$id": "2193", "kind": "constant", - "name": "ListAssistantsRequestAccept101", + "name": "ListAssistantsRequestAccept99", "namespace": "", "usage": "None", "valueType": { @@ -23580,7 +23594,7 @@ { "$id": "2195", "kind": "constant", - "name": "ListAssistantsRequestAccept102", + "name": "ListAssistantsRequestAccept100", "namespace": "", "usage": "None", "valueType": { @@ -23596,7 +23610,7 @@ { "$id": "2197", "kind": "constant", - "name": "ListAssistantsRequestAccept103", + "name": "ListAssistantsRequestAccept101", "namespace": "", "usage": "None", "valueType": { @@ -23612,7 +23626,7 @@ { "$id": "2199", "kind": "constant", - "name": "ListAssistantsRequestAccept104", + "name": "ListAssistantsRequestAccept102", "namespace": "", "usage": "None", "valueType": { @@ -23628,7 +23642,7 @@ { "$id": "2201", "kind": "constant", - "name": "createVectorStoreFileContentType", + "name": "ListAssistantsRequestAccept103", "namespace": "", "usage": "None", "valueType": { @@ -23644,7 +23658,7 @@ { "$id": "2203", "kind": "constant", - "name": "ListAssistantsRequestAccept105", + "name": "ListAssistantsRequestAccept104", "namespace": "", "usage": "None", "valueType": { @@ -23660,7 +23674,7 @@ { "$id": "2205", "kind": "constant", - "name": "ListAssistantsRequestAccept106", + "name": "createVectorStoreFileContentType", "namespace": "", "usage": "None", "valueType": { @@ -23676,7 +23690,7 @@ { "$id": "2207", "kind": "constant", - "name": "ListAssistantsRequestAccept107", + "name": "ListAssistantsRequestAccept105", "namespace": "", "usage": "None", "valueType": { @@ -23692,7 +23706,7 @@ { "$id": "2209", "kind": "constant", - "name": "ListAssistantsRequestAccept108", + "name": "ListAssistantsRequestAccept106", "namespace": "", "usage": "None", "valueType": { @@ -23708,7 +23722,7 @@ { "$id": "2211", "kind": "constant", - "name": "ListAssistantsRequestAccept109", + "name": "ListAssistantsRequestAccept107", "namespace": "", "usage": "None", "valueType": { @@ -23724,7 +23738,7 @@ { "$id": "2213", "kind": "constant", - "name": "updateVectorStoreFileAttributesContentType", + "name": "ListAssistantsRequestAccept108", "namespace": "", "usage": "None", "valueType": { @@ -23740,7 +23754,7 @@ { "$id": "2215", "kind": "constant", - "name": "updateVectorStoreFileAttributesContentType1", + "name": "ListAssistantsRequestAccept109", "namespace": "", "usage": "None", "valueType": { @@ -23756,7 +23770,7 @@ { "$id": "2217", "kind": "constant", - "name": "retrieveVectorStoreFileContentContentType", + "name": "updateVectorStoreFileAttributesContentType", "namespace": "", "usage": "None", "valueType": { @@ -23772,7 +23786,7 @@ { "$id": "2219", "kind": "constant", - "name": "searchVectorStoreContentType", + "name": "updateVectorStoreFileAttributesContentType1", "namespace": "", "usage": "None", "valueType": { @@ -23788,7 +23802,7 @@ { "$id": "2221", "kind": "constant", - "name": "searchVectorStoreContentType1", + "name": "retrieveVectorStoreFileContentContentType", "namespace": "", "usage": "None", "valueType": { @@ -23804,7 +23818,7 @@ { "$id": "2223", "kind": "constant", - "name": "ListAssistantsRequestAccept110", + "name": "searchVectorStoreContentType", "namespace": "", "usage": "None", "valueType": { @@ -23820,7 +23834,7 @@ { "$id": "2225", "kind": "constant", - "name": "createCompletionContentType", + "name": "searchVectorStoreContentType1", "namespace": "", "usage": "None", "valueType": { @@ -23836,7 +23850,7 @@ { "$id": "2227", "kind": "constant", - "name": "ListAssistantsRequestAccept111", + "name": "ListAssistantsRequestAccept110", "namespace": "", "usage": "None", "valueType": { @@ -23852,7 +23866,7 @@ { "$id": "2229", "kind": "constant", - "name": "ListAssistantsRequestAccept112", + "name": "createCompletionContentType", "namespace": "", "usage": "None", "valueType": { @@ -23868,7 +23882,7 @@ { "$id": "2231", "kind": "constant", - "name": "ListAssistantsRequestAccept113", + "name": "ListAssistantsRequestAccept111", "namespace": "", "usage": "None", "valueType": { @@ -23884,7 +23898,7 @@ { "$id": "2233", "kind": "constant", - "name": "ListAssistantsRequestAccept114", + "name": "ListAssistantsRequestAccept112", "namespace": "", "usage": "None", "valueType": { @@ -23900,7 +23914,7 @@ { "$id": "2235", "kind": "constant", - "name": "ListAssistantsRequestAccept115", + "name": "ListAssistantsRequestAccept113", "namespace": "", "usage": "None", "valueType": { @@ -23916,7 +23930,7 @@ { "$id": "2237", "kind": "constant", - "name": "ListAssistantsRequestAccept116", + "name": "ListAssistantsRequestAccept114", "namespace": "", "usage": "None", "valueType": { @@ -23932,7 +23946,7 @@ { "$id": "2239", "kind": "constant", - "name": "ListAssistantsRequestAccept117", + "name": "ListAssistantsRequestAccept115", "namespace": "", "usage": "None", "valueType": { @@ -23948,7 +23962,7 @@ { "$id": "2241", "kind": "constant", - "name": "StartRealtimeSessionRequestOpenAiBeta", + "name": "ListAssistantsRequestAccept116", "namespace": "", "usage": "None", "valueType": { @@ -23958,13 +23972,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "realtime=v1", + "value": "application/json", "decorators": [] }, { "$id": "2243", "kind": "constant", - "name": "startRealtimeSessionContentType", + "name": "ListAssistantsRequestAccept117", "namespace": "", "usage": "None", "valueType": { @@ -23980,7 +23994,7 @@ { "$id": "2245", "kind": "constant", - "name": "startRealtimeSessionContentType1", + "name": "StartRealtimeSessionRequestOpenAiBeta", "namespace": "", "usage": "None", "valueType": { @@ -23990,13 +24004,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "realtime=v1", "decorators": [] }, { "$id": "2247", "kind": "constant", - "name": "StartRealtimeSessionRequestOpenAiBeta1", + "name": "startRealtimeSessionContentType", "namespace": "", "usage": "None", "valueType": { @@ -24006,13 +24020,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "realtime=v1", + "value": "application/json", "decorators": [] }, { "$id": "2249", "kind": "constant", - "name": "createEphemeralTokenContentType", + "name": "startRealtimeSessionContentType1", "namespace": "", "usage": "None", "valueType": { @@ -24028,7 +24042,7 @@ { "$id": "2251", "kind": "constant", - "name": "createEphemeralTokenContentType1", + "name": "StartRealtimeSessionRequestOpenAiBeta1", "namespace": "", "usage": "None", "valueType": { @@ -24038,13 +24052,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "realtime=v1", "decorators": [] }, { "$id": "2253", "kind": "constant", - "name": "createEphemeralTranscriptionTokenContentType", + "name": "createEphemeralTokenContentType", "namespace": "", "usage": "None", "valueType": { @@ -24060,7 +24074,7 @@ { "$id": "2255", "kind": "constant", - "name": "createEphemeralTranscriptionTokenContentType1", + "name": "createEphemeralTokenContentType1", "namespace": "", "usage": "None", "valueType": { @@ -24076,7 +24090,7 @@ { "$id": "2257", "kind": "constant", - "name": "ListAssistantsRequestAccept118", + "name": "createEphemeralTranscriptionTokenContentType", "namespace": "", "usage": "None", "valueType": { @@ -24092,7 +24106,7 @@ { "$id": "2259", "kind": "constant", - "name": "createUploadContentType", + "name": "createEphemeralTranscriptionTokenContentType1", "namespace": "", "usage": "None", "valueType": { @@ -24108,7 +24122,7 @@ { "$id": "2261", "kind": "constant", - "name": "ListAssistantsRequestAccept119", + "name": "ListAssistantsRequestAccept118", "namespace": "", "usage": "None", "valueType": { @@ -24124,7 +24138,7 @@ { "$id": "2263", "kind": "constant", - "name": "ListAssistantsRequestAccept120", + "name": "createUploadContentType", "namespace": "", "usage": "None", "valueType": { @@ -24140,7 +24154,7 @@ { "$id": "2265", "kind": "constant", - "name": "CreateTranscriptionRequestContentType12", + "name": "ListAssistantsRequestAccept119", "namespace": "", "usage": "None", "valueType": { @@ -24150,13 +24164,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "multipart/form-data", + "value": "application/json", "decorators": [] }, { "$id": "2267", "kind": "constant", - "name": "ListAssistantsRequestAccept121", + "name": "ListAssistantsRequestAccept120", "namespace": "", "usage": "None", "valueType": { @@ -24172,7 +24186,7 @@ { "$id": "2269", "kind": "constant", - "name": "CreateTranscriptionRequestContentType13", + "name": "CreateTranscriptionRequestContentType12", "namespace": "", "usage": "None", "valueType": { @@ -24188,7 +24202,7 @@ { "$id": "2271", "kind": "constant", - "name": "ListAssistantsRequestAccept122", + "name": "ListAssistantsRequestAccept121", "namespace": "", "usage": "None", "valueType": { @@ -24204,7 +24218,7 @@ { "$id": "2273", "kind": "constant", - "name": "completeUploadContentType", + "name": "CreateTranscriptionRequestContentType13", "namespace": "", "usage": "None", "valueType": { @@ -24214,13 +24228,13 @@ "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "multipart/form-data", "decorators": [] }, { "$id": "2275", "kind": "constant", - "name": "ListAssistantsRequestAccept123", + "name": "ListAssistantsRequestAccept122", "namespace": "", "usage": "None", "valueType": { @@ -24236,7 +24250,7 @@ { "$id": "2277", "kind": "constant", - "name": "ListAssistantsRequestAccept124", + "name": "completeUploadContentType", "namespace": "", "usage": "None", "valueType": { @@ -24252,7 +24266,7 @@ { "$id": "2279", "kind": "constant", - "name": "ListAssistantsRequestAccept125", + "name": "ListAssistantsRequestAccept123", "namespace": "", "usage": "None", "valueType": { @@ -24264,11 +24278,43 @@ }, "value": "application/json", "decorators": [] + }, + { + "$id": "2281", + "kind": "constant", + "name": "ListAssistantsRequestAccept124", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2282", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] + }, + { + "$id": "2283", + "kind": "constant", + "name": "ListAssistantsRequestAccept125", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2284", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] } ], "models": [ { - "$id": "2281", + "$id": "2285", "kind": "model", "name": "ListAssistantsResponse", "namespace": "OpenAI", @@ -24277,12 +24323,12 @@ "decorators": [], "properties": [ { - "$id": "2282", + "$id": "2286", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1463" + "$ref": "1467" }, "optional": false, "readOnly": false, @@ -24298,16 +24344,16 @@ "isHttpMetadata": false }, { - "$id": "2283", + "$id": "2287", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "2284", + "$id": "2288", "kind": "array", "name": "ArrayAssistantObject", "valueType": { - "$id": "2285", + "$id": "2289", "kind": "model", "name": "AssistantObject", "namespace": "OpenAI", @@ -24317,13 +24363,13 @@ "decorators": [], "properties": [ { - "$id": "2286", + "$id": "2290", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "2287", + "$id": "2291", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24343,13 +24389,13 @@ "isHttpMetadata": false }, { - "$id": "2288", + "$id": "2292", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `assistant`.", "type": { - "$ref": "1465" + "$ref": "1469" }, "optional": false, "readOnly": false, @@ -24365,18 +24411,18 @@ "isHttpMetadata": false }, { - "$id": "2289", + "$id": "2293", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the assistant was created.", "type": { - "$id": "2290", + "$id": "2294", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2291", + "$id": "2295", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -24399,16 +24445,16 @@ "isHttpMetadata": false }, { - "$id": "2292", + "$id": "2296", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the assistant. The maximum length is 256 characters.", "type": { - "$id": "2293", + "$id": "2297", "kind": "nullable", "type": { - "$id": "2294", + "$id": "2298", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24430,16 +24476,16 @@ "isHttpMetadata": false }, { - "$id": "2295", + "$id": "2299", "kind": "property", "name": "description", "serializedName": "description", "doc": "The description of the assistant. The maximum length is 512 characters.", "type": { - "$id": "2296", + "$id": "2300", "kind": "nullable", "type": { - "$id": "2297", + "$id": "2301", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24461,13 +24507,13 @@ "isHttpMetadata": false }, { - "$id": "2298", + "$id": "2302", "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": "2299", + "$id": "2303", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24487,16 +24533,16 @@ "isHttpMetadata": false }, { - "$id": "2300", + "$id": "2304", "kind": "property", "name": "instructions", "serializedName": "instructions", "doc": "The system instructions that the assistant uses. The maximum length is 256,000 characters.", "type": { - "$id": "2301", + "$id": "2305", "kind": "nullable", "type": { - "$id": "2302", + "$id": "2306", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24518,17 +24564,17 @@ "isHttpMetadata": false }, { - "$id": "2303", + "$id": "2307", "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": "2304", + "$id": "2308", "kind": "array", "name": "ArrayAssistantToolDefinition", "valueType": { - "$id": "2305", + "$id": "2309", "kind": "model", "name": "AssistantToolDefinition", "namespace": "OpenAI", @@ -24536,7 +24582,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "2306", + "$id": "2310", "kind": "property", "name": "type", "serializedName": "type", @@ -24558,12 +24604,12 @@ }, "properties": [ { - "$ref": "2306" + "$ref": "2310" } ], "discriminatedSubtypes": { "code_interpreter": { - "$id": "2307", + "$id": "2311", "kind": "model", "name": "AssistantToolsCode", "namespace": "OpenAI", @@ -24572,11 +24618,11 @@ "discriminatorValue": "code_interpreter", "decorators": [], "baseModel": { - "$ref": "2305" + "$ref": "2309" }, "properties": [ { - "$id": "2308", + "$id": "2312", "kind": "property", "name": "type", "serializedName": "type", @@ -24600,7 +24646,7 @@ ] }, "file_search": { - "$id": "2309", + "$id": "2313", "kind": "model", "name": "AssistantToolsFileSearch", "namespace": "OpenAI", @@ -24609,11 +24655,11 @@ "discriminatorValue": "file_search", "decorators": [], "baseModel": { - "$ref": "2305" + "$ref": "2309" }, "properties": [ { - "$id": "2310", + "$id": "2314", "kind": "property", "name": "type", "serializedName": "type", @@ -24635,13 +24681,13 @@ "isHttpMetadata": false }, { - "$id": "2311", + "$id": "2315", "kind": "property", "name": "file_search", "serializedName": "file_search", "doc": "Overrides for the file search tool.", "type": { - "$id": "2312", + "$id": "2316", "kind": "model", "name": "AssistantToolsFileSearchFileSearch", "namespace": "OpenAI", @@ -24650,13 +24696,13 @@ "decorators": [], "properties": [ { - "$id": "2313", + "$id": "2317", "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": "2314", + "$id": "2318", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -24676,12 +24722,12 @@ "isHttpMetadata": false }, { - "$id": "2315", + "$id": "2319", "kind": "property", "name": "ranking_options", "serializedName": "ranking_options", "type": { - "$id": "2316", + "$id": "2320", "kind": "model", "name": "FileSearchRankingOptions", "namespace": "OpenAI", @@ -24691,7 +24737,7 @@ "decorators": [], "properties": [ { - "$id": "2317", + "$id": "2321", "kind": "property", "name": "ranker", "serializedName": "ranker", @@ -24712,13 +24758,13 @@ "isHttpMetadata": false }, { - "$id": "2318", + "$id": "2322", "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": "2319", + "$id": "2323", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -24770,7 +24816,7 @@ ] }, "function": { - "$id": "2320", + "$id": "2324", "kind": "model", "name": "AssistantToolsFunction", "namespace": "OpenAI", @@ -24779,11 +24825,11 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "2305" + "$ref": "2309" }, "properties": [ { - "$id": "2321", + "$id": "2325", "kind": "property", "name": "type", "serializedName": "type", @@ -24805,12 +24851,12 @@ "isHttpMetadata": false }, { - "$id": "2322", + "$id": "2326", "kind": "property", "name": "function", "serializedName": "function", "type": { - "$id": "2323", + "$id": "2327", "kind": "model", "name": "FunctionObject", "namespace": "OpenAI", @@ -24819,13 +24865,13 @@ "decorators": [], "properties": [ { - "$id": "2324", + "$id": "2328", "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": "2325", + "$id": "2329", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24845,13 +24891,13 @@ "isHttpMetadata": false }, { - "$id": "2326", + "$id": "2330", "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": "2327", + "$id": "2331", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24871,13 +24917,13 @@ "isHttpMetadata": false }, { - "$id": "2328", + "$id": "2332", "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": "2329", + "$id": "2333", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -24897,16 +24943,16 @@ "isHttpMetadata": false }, { - "$id": "2330", + "$id": "2334", "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": "2331", + "$id": "2335", "kind": "nullable", "type": { - "$id": "2332", + "$id": "2336", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -24963,16 +25009,16 @@ "isHttpMetadata": false }, { - "$id": "2333", + "$id": "2337", "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": "2334", + "$id": "2338", "kind": "nullable", "type": { - "$id": "2335", + "$id": "2339", "kind": "model", "name": "AssistantObjectToolResources1", "namespace": "OpenAI", @@ -24981,12 +25027,12 @@ "decorators": [], "properties": [ { - "$id": "2336", + "$id": "2340", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "2337", + "$id": "2341", "kind": "model", "name": "AssistantObjectToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -24995,17 +25041,17 @@ "decorators": [], "properties": [ { - "$id": "2338", + "$id": "2342", "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": "2339", + "$id": "2343", "kind": "array", "name": "Array", "valueType": { - "$id": "2340", + "$id": "2344", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25043,12 +25089,12 @@ "isHttpMetadata": false }, { - "$id": "2341", + "$id": "2345", "kind": "property", "name": "file_search", "serializedName": "file_search", "type": { - "$id": "2342", + "$id": "2346", "kind": "model", "name": "ToolResourcesFileSearchIdsOnly", "namespace": "OpenAI", @@ -25057,13 +25103,13 @@ "decorators": [], "properties": [ { - "$id": "2343", + "$id": "2347", "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": "2339" + "$ref": "2343" }, "optional": true, "readOnly": false, @@ -25111,26 +25157,26 @@ "isHttpMetadata": false }, { - "$id": "2344", + "$id": "2348", "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": "2345", + "$id": "2349", "kind": "nullable", "type": { - "$id": "2346", + "$id": "2350", "kind": "dict", "keyType": { - "$id": "2347", + "$id": "2351", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, "valueType": { - "$id": "2348", + "$id": "2352", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25154,16 +25200,16 @@ "isHttpMetadata": false }, { - "$id": "2349", + "$id": "2353", "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": "2350", + "$id": "2354", "kind": "nullable", "type": { - "$id": "2351", + "$id": "2355", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -25185,16 +25231,16 @@ "isHttpMetadata": false }, { - "$id": "2352", + "$id": "2356", "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": "2353", + "$id": "2357", "kind": "nullable", "type": { - "$id": "2354", + "$id": "2358", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -25216,23 +25262,23 @@ "isHttpMetadata": false }, { - "$id": "2355", + "$id": "2359", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "2356", + "$id": "2360", "kind": "nullable", "type": { - "$id": "2357", + "$id": "2361", "kind": "union", "name": "AssistantsApiResponseFormatOption", "variantTypes": [ { - "$ref": "1467" + "$ref": "1471" }, { - "$id": "2358", + "$id": "2362", "kind": "model", "name": "ResponseFormatText", "namespace": "OpenAI", @@ -25242,7 +25288,7 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$id": "2359", + "$id": "2363", "kind": "model", "name": "ResponseFormat", "namespace": "OpenAI", @@ -25250,7 +25296,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "2360", + "$id": "2364", "kind": "property", "name": "type", "serializedName": "type", @@ -25272,15 +25318,15 @@ }, "properties": [ { - "$ref": "2360" + "$ref": "2364" } ], "discriminatedSubtypes": { "text": { - "$ref": "2358" + "$ref": "2362" }, "json_object": { - "$id": "2361", + "$id": "2365", "kind": "model", "name": "ResponseFormatJsonObject", "namespace": "OpenAI", @@ -25290,11 +25336,11 @@ "discriminatorValue": "json_object", "decorators": [], "baseModel": { - "$ref": "2359" + "$ref": "2363" }, "properties": [ { - "$id": "2362", + "$id": "2366", "kind": "property", "name": "type", "serializedName": "type", @@ -25318,7 +25364,7 @@ ] }, "json_schema": { - "$id": "2363", + "$id": "2367", "kind": "model", "name": "ResponseFormatJsonSchema", "namespace": "OpenAI", @@ -25328,11 +25374,11 @@ "discriminatorValue": "json_schema", "decorators": [], "baseModel": { - "$ref": "2359" + "$ref": "2363" }, "properties": [ { - "$id": "2364", + "$id": "2368", "kind": "property", "name": "type", "serializedName": "type", @@ -25354,13 +25400,13 @@ "isHttpMetadata": false }, { - "$id": "2365", + "$id": "2369", "kind": "property", "name": "json_schema", "serializedName": "json_schema", "doc": "Structured Outputs configuration options, including a JSON Schema.", "type": { - "$id": "2366", + "$id": "2370", "kind": "model", "name": "ResponseFormatJsonSchemaJsonSchema", "namespace": "OpenAI", @@ -25369,13 +25415,13 @@ "decorators": [], "properties": [ { - "$id": "2367", + "$id": "2371", "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": "2368", + "$id": "2372", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25395,13 +25441,13 @@ "isHttpMetadata": false }, { - "$id": "2369", + "$id": "2373", "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": "2370", + "$id": "2374", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25421,12 +25467,12 @@ "isHttpMetadata": false }, { - "$id": "2371", + "$id": "2375", "kind": "property", "name": "schema", "serializedName": "schema", "type": { - "$id": "2372", + "$id": "2376", "kind": "model", "name": "ResponseFormatJsonSchemaSchema", "namespace": "OpenAI", @@ -25435,7 +25481,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": "2373", + "$id": "2377", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -25457,16 +25503,16 @@ "isHttpMetadata": false }, { - "$id": "2374", + "$id": "2378", "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": "2375", + "$id": "2379", "kind": "nullable", "type": { - "$id": "2376", + "$id": "2380", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -25508,13 +25554,13 @@ }, "properties": [ { - "$id": "2377", + "$id": "2381", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of response format being defined. Always `text`.", "type": { - "$id": "2378", + "$id": "2382", "kind": "enumvalue", "name": "text", "value": "text", @@ -25542,10 +25588,10 @@ ] }, { - "$ref": "2361" + "$ref": "2365" }, { - "$ref": "2363" + "$ref": "2367" } ], "namespace": "OpenAI", @@ -25585,12 +25631,12 @@ "isHttpMetadata": false }, { - "$id": "2379", + "$id": "2383", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "2380", + "$id": "2384", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25610,12 +25656,12 @@ "isHttpMetadata": false }, { - "$id": "2381", + "$id": "2385", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "2382", + "$id": "2386", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25635,12 +25681,12 @@ "isHttpMetadata": false }, { - "$id": "2383", + "$id": "2387", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "2384", + "$id": "2388", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -25662,19 +25708,16 @@ ] }, { - "$ref": "2285" - }, - { - "$ref": "2305" + "$ref": "2289" }, { - "$ref": "2307" + "$ref": "2309" }, { - "$ref": "2309" + "$ref": "2311" }, { - "$ref": "2312" + "$ref": "2313" }, { "$ref": "2316" @@ -25683,37 +25726,40 @@ "$ref": "2320" }, { - "$ref": "2323" + "$ref": "2324" + }, + { + "$ref": "2327" }, { - "$ref": "2335" + "$ref": "2339" }, { - "$ref": "2337" + "$ref": "2341" }, { - "$ref": "2342" + "$ref": "2346" }, { - "$ref": "2358" + "$ref": "2362" }, { - "$ref": "2359" + "$ref": "2363" }, { - "$ref": "2361" + "$ref": "2365" }, { - "$ref": "2363" + "$ref": "2367" }, { - "$ref": "2366" + "$ref": "2370" }, { - "$ref": "2372" + "$ref": "2376" }, { - "$id": "2385", + "$id": "2389", "kind": "model", "name": "ErrorResponse", "namespace": "OpenAI", @@ -25722,12 +25768,12 @@ "decorators": [], "properties": [ { - "$id": "2386", + "$id": "2390", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$id": "2387", + "$id": "2391", "kind": "model", "name": "Error", "namespace": "OpenAI", @@ -25736,15 +25782,15 @@ "decorators": [], "properties": [ { - "$id": "2388", + "$id": "2392", "kind": "property", "name": "code", "serializedName": "code", "type": { - "$id": "2389", + "$id": "2393", "kind": "nullable", "type": { - "$id": "2390", + "$id": "2394", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25766,12 +25812,12 @@ "isHttpMetadata": false }, { - "$id": "2391", + "$id": "2395", "kind": "property", "name": "message", "serializedName": "message", "type": { - "$id": "2392", + "$id": "2396", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25791,15 +25837,15 @@ "isHttpMetadata": false }, { - "$id": "2393", + "$id": "2397", "kind": "property", "name": "param", "serializedName": "param", "type": { - "$id": "2394", + "$id": "2398", "kind": "nullable", "type": { - "$id": "2395", + "$id": "2399", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25821,12 +25867,12 @@ "isHttpMetadata": false }, { - "$id": "2396", + "$id": "2400", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "2397", + "$id": "2401", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25863,10 +25909,10 @@ ] }, { - "$ref": "2387" + "$ref": "2391" }, { - "$id": "2398", + "$id": "2402", "kind": "model", "name": "CreateAssistantRequest", "namespace": "OpenAI", @@ -25875,7 +25921,7 @@ "decorators": [], "properties": [ { - "$id": "2399", + "$id": "2403", "kind": "property", "name": "model", "serializedName": "model", @@ -25897,16 +25943,16 @@ "isHttpMetadata": false }, { - "$id": "2400", + "$id": "2404", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the assistant. The maximum length is 256 characters.", "type": { - "$id": "2401", + "$id": "2405", "kind": "nullable", "type": { - "$id": "2402", + "$id": "2406", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25928,16 +25974,16 @@ "isHttpMetadata": false }, { - "$id": "2403", + "$id": "2407", "kind": "property", "name": "description", "serializedName": "description", "doc": "The description of the assistant. The maximum length is 512 characters.", "type": { - "$id": "2404", + "$id": "2408", "kind": "nullable", "type": { - "$id": "2405", + "$id": "2409", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25959,16 +26005,16 @@ "isHttpMetadata": false }, { - "$id": "2406", + "$id": "2410", "kind": "property", "name": "instructions", "serializedName": "instructions", "doc": "The system instructions that the assistant uses. The maximum length is 256,000 characters.", "type": { - "$id": "2407", + "$id": "2411", "kind": "nullable", "type": { - "$id": "2408", + "$id": "2412", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25990,12 +26036,12 @@ "isHttpMetadata": false }, { - "$id": "2409", + "$id": "2413", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", "type": { - "$id": "2410", + "$id": "2414", "kind": "nullable", "type": { "$ref": "53" @@ -26016,13 +26062,13 @@ "isHttpMetadata": false }, { - "$id": "2411", + "$id": "2415", "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": "2304" + "$ref": "2308" }, "optional": true, "readOnly": false, @@ -26038,16 +26084,16 @@ "isHttpMetadata": false }, { - "$id": "2412", + "$id": "2416", "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": "2413", + "$id": "2417", "kind": "nullable", "type": { - "$id": "2414", + "$id": "2418", "kind": "model", "name": "CreateAssistantRequestToolResources1", "namespace": "OpenAI", @@ -26056,12 +26102,12 @@ "decorators": [], "properties": [ { - "$id": "2415", + "$id": "2419", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "2416", + "$id": "2420", "kind": "model", "name": "CreateAssistantRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -26070,13 +26116,13 @@ "decorators": [], "properties": [ { - "$id": "2417", + "$id": "2421", "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": "2339" + "$ref": "2343" }, "optional": true, "readOnly": false, @@ -26107,12 +26153,12 @@ "isHttpMetadata": false }, { - "$id": "2418", + "$id": "2422", "kind": "property", "name": "file_search", "serializedName": "file_search", "type": { - "$id": "2419", + "$id": "2423", "kind": "model", "name": "ToolResourcesFileSearch", "namespace": "OpenAI", @@ -26121,13 +26167,13 @@ "decorators": [], "properties": [ { - "$id": "2420", + "$id": "2424", "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": "2339" + "$ref": "2343" }, "optional": true, "readOnly": false, @@ -26143,17 +26189,17 @@ "isHttpMetadata": false }, { - "$id": "2421", + "$id": "2425", "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": "2422", + "$id": "2426", "kind": "array", "name": "Array1", "valueType": { - "$id": "2423", + "$id": "2427", "kind": "model", "name": "ToolResourcesFileSearchVectorStore", "namespace": "OpenAI", @@ -26162,13 +26208,13 @@ "decorators": [], "properties": [ { - "$id": "2424", + "$id": "2428", "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": "2339" + "$ref": "2343" }, "optional": true, "readOnly": false, @@ -26184,13 +26230,13 @@ "isHttpMetadata": false }, { - "$id": "2425", + "$id": "2429", "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": "2426", + "$id": "2430", "kind": "model", "name": "ChunkingStrategyRequestParam", "namespace": "OpenAI", @@ -26199,7 +26245,7 @@ "doc": "The chunking strategy used to chunk the file(s). If not set, will use the `auto` strategy.", "decorators": [], "discriminatorProperty": { - "$id": "2427", + "$id": "2431", "kind": "property", "name": "type", "serializedName": "type", @@ -26222,12 +26268,12 @@ }, "properties": [ { - "$ref": "2427" + "$ref": "2431" } ], "discriminatedSubtypes": { "auto": { - "$id": "2428", + "$id": "2432", "kind": "model", "name": "AutoChunkingStrategyRequestParam", "namespace": "OpenAI", @@ -26237,11 +26283,11 @@ "discriminatorValue": "auto", "decorators": [], "baseModel": { - "$ref": "2426" + "$ref": "2430" }, "properties": [ { - "$id": "2429", + "$id": "2433", "kind": "property", "name": "type", "serializedName": "type", @@ -26265,7 +26311,7 @@ ] }, "static": { - "$id": "2430", + "$id": "2434", "kind": "model", "name": "StaticChunkingStrategyRequestParam", "namespace": "OpenAI", @@ -26275,11 +26321,11 @@ "discriminatorValue": "static", "decorators": [], "baseModel": { - "$ref": "2426" + "$ref": "2430" }, "properties": [ { - "$id": "2431", + "$id": "2435", "kind": "property", "name": "type", "serializedName": "type", @@ -26301,12 +26347,12 @@ "isHttpMetadata": false }, { - "$id": "2432", + "$id": "2436", "kind": "property", "name": "static", "serializedName": "static", "type": { - "$id": "2433", + "$id": "2437", "kind": "model", "name": "StaticChunkingStrategy", "namespace": "OpenAI", @@ -26315,13 +26361,13 @@ "decorators": [], "properties": [ { - "$id": "2434", + "$id": "2438", "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": "2435", + "$id": "2439", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -26341,13 +26387,13 @@ "isHttpMetadata": false }, { - "$id": "2436", + "$id": "2440", "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": "2437", + "$id": "2441", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -26399,13 +26445,13 @@ "isHttpMetadata": false }, { - "$id": "2438", + "$id": "2442", "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": "2346" + "$ref": "2350" }, "optional": true, "readOnly": false, @@ -26471,13 +26517,13 @@ "isHttpMetadata": false }, { - "$id": "2439", + "$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": { - "$ref": "2346" + "$ref": "2350" }, "optional": true, "readOnly": false, @@ -26493,16 +26539,16 @@ "isHttpMetadata": false }, { - "$id": "2440", + "$id": "2444", "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": "2441", + "$id": "2445", "kind": "nullable", "type": { - "$id": "2442", + "$id": "2446", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -26524,16 +26570,16 @@ "isHttpMetadata": false }, { - "$id": "2443", + "$id": "2447", "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": "2444", + "$id": "2448", "kind": "nullable", "type": { - "$id": "2445", + "$id": "2449", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -26555,15 +26601,15 @@ "isHttpMetadata": false }, { - "$id": "2446", + "$id": "2450", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "2447", + "$id": "2451", "kind": "nullable", "type": { - "$ref": "2357" + "$ref": "2361" }, "namespace": "OpenAI" }, @@ -26583,31 +26629,31 @@ ] }, { - "$ref": "2414" + "$ref": "2418" }, { - "$ref": "2416" + "$ref": "2420" }, { - "$ref": "2419" + "$ref": "2423" }, { - "$ref": "2423" + "$ref": "2427" }, { - "$ref": "2426" + "$ref": "2430" }, { - "$ref": "2428" + "$ref": "2432" }, { - "$ref": "2430" + "$ref": "2434" }, { - "$ref": "2433" + "$ref": "2437" }, { - "$id": "2448", + "$id": "2452", "kind": "model", "name": "ModifyAssistantRequest", "namespace": "OpenAI", @@ -26616,7 +26662,7 @@ "decorators": [], "properties": [ { - "$id": "2449", + "$id": "2453", "kind": "property", "name": "model", "serializedName": "model", @@ -26638,12 +26684,12 @@ "isHttpMetadata": false }, { - "$id": "2450", + "$id": "2454", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", "type": { - "$id": "2451", + "$id": "2455", "kind": "nullable", "type": { "$ref": "53" @@ -26664,16 +26710,16 @@ "isHttpMetadata": false }, { - "$id": "2452", + "$id": "2456", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the assistant. The maximum length is 256 characters.", "type": { - "$id": "2453", + "$id": "2457", "kind": "nullable", "type": { - "$id": "2454", + "$id": "2458", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26695,16 +26741,16 @@ "isHttpMetadata": false }, { - "$id": "2455", + "$id": "2459", "kind": "property", "name": "description", "serializedName": "description", "doc": "The description of the assistant. The maximum length is 512 characters.", "type": { - "$id": "2456", + "$id": "2460", "kind": "nullable", "type": { - "$id": "2457", + "$id": "2461", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26726,16 +26772,16 @@ "isHttpMetadata": false }, { - "$id": "2458", + "$id": "2462", "kind": "property", "name": "instructions", "serializedName": "instructions", "doc": "The system instructions that the assistant uses. The maximum length is 256,000 characters.", "type": { - "$id": "2459", + "$id": "2463", "kind": "nullable", "type": { - "$id": "2460", + "$id": "2464", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26757,13 +26803,13 @@ "isHttpMetadata": false }, { - "$id": "2461", + "$id": "2465", "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": "2304" + "$ref": "2308" }, "optional": true, "readOnly": false, @@ -26779,16 +26825,16 @@ "isHttpMetadata": false }, { - "$id": "2462", + "$id": "2466", "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": "2463", + "$id": "2467", "kind": "nullable", "type": { - "$id": "2464", + "$id": "2468", "kind": "model", "name": "ModifyAssistantRequestToolResources1", "namespace": "OpenAI", @@ -26797,12 +26843,12 @@ "decorators": [], "properties": [ { - "$id": "2465", + "$id": "2469", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "2466", + "$id": "2470", "kind": "model", "name": "ModifyAssistantRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -26811,13 +26857,13 @@ "decorators": [], "properties": [ { - "$id": "2467", + "$id": "2471", "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": "2339" + "$ref": "2343" }, "optional": true, "readOnly": false, @@ -26848,12 +26894,12 @@ "isHttpMetadata": false }, { - "$id": "2468", + "$id": "2472", "kind": "property", "name": "file_search", "serializedName": "file_search", "type": { - "$ref": "2342" + "$ref": "2346" }, "optional": true, "readOnly": false, @@ -26886,13 +26932,13 @@ "isHttpMetadata": false }, { - "$id": "2469", + "$id": "2473", "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": "2346" + "$ref": "2350" }, "optional": true, "readOnly": false, @@ -26908,16 +26954,16 @@ "isHttpMetadata": false }, { - "$id": "2470", + "$id": "2474", "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": "2471", + "$id": "2475", "kind": "nullable", "type": { - "$id": "2472", + "$id": "2476", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -26939,16 +26985,16 @@ "isHttpMetadata": false }, { - "$id": "2473", + "$id": "2477", "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": "2474", + "$id": "2478", "kind": "nullable", "type": { - "$id": "2475", + "$id": "2479", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -26970,15 +27016,15 @@ "isHttpMetadata": false }, { - "$id": "2476", + "$id": "2480", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "2477", + "$id": "2481", "kind": "nullable", "type": { - "$ref": "2357" + "$ref": "2361" }, "namespace": "OpenAI" }, @@ -26998,13 +27044,13 @@ ] }, { - "$ref": "2464" + "$ref": "2468" }, { - "$ref": "2466" + "$ref": "2470" }, { - "$id": "2478", + "$id": "2482", "kind": "model", "name": "DeleteAssistantResponse", "namespace": "OpenAI", @@ -27013,12 +27059,12 @@ "decorators": [], "properties": [ { - "$id": "2479", + "$id": "2483", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "2480", + "$id": "2484", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -27038,12 +27084,12 @@ "isHttpMetadata": false }, { - "$id": "2481", + "$id": "2485", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "2482", + "$id": "2486", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -27063,12 +27109,12 @@ "isHttpMetadata": false }, { - "$id": "2483", + "$id": "2487", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1469" + "$ref": "1473" }, "optional": false, "readOnly": false, @@ -27086,7 +27132,7 @@ ] }, { - "$id": "2484", + "$id": "2488", "kind": "model", "name": "CreateSpeechRequest", "namespace": "OpenAI", @@ -27095,7 +27141,7 @@ "decorators": [], "properties": [ { - "$id": "2485", + "$id": "2489", "kind": "property", "name": "model", "serializedName": "model", @@ -27117,13 +27163,13 @@ "isHttpMetadata": false }, { - "$id": "2486", + "$id": "2490", "kind": "property", "name": "input", "serializedName": "input", "doc": "The text to generate audio for. The maximum length is 4096 characters.", "type": { - "$id": "2487", + "$id": "2491", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -27143,13 +27189,13 @@ "isHttpMetadata": false }, { - "$id": "2488", + "$id": "2492", "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": "2489", + "$id": "2493", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -27169,7 +27215,7 @@ "isHttpMetadata": false }, { - "$id": "2490", + "$id": "2494", "kind": "property", "name": "voice", "serializedName": "voice", @@ -27191,7 +27237,7 @@ "isHttpMetadata": false }, { - "$id": "2491", + "$id": "2495", "kind": "property", "name": "response_format", "serializedName": "response_format", @@ -27213,13 +27259,13 @@ "isHttpMetadata": false }, { - "$id": "2492", + "$id": "2496", "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": "2493", + "$id": "2497", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -27241,7 +27287,7 @@ ] }, { - "$id": "2494", + "$id": "2498", "kind": "model", "name": "CreateTranscriptionRequest", "namespace": "OpenAI", @@ -27250,13 +27296,13 @@ "decorators": [], "properties": [ { - "$id": "2495", + "$id": "2499", "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": "2496", + "$id": "2500", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -27283,7 +27329,7 @@ "isHttpMetadata": false }, { - "$id": "2497", + "$id": "2501", "kind": "property", "name": "model", "serializedName": "model", @@ -27311,13 +27357,13 @@ "isHttpMetadata": false }, { - "$id": "2498", + "$id": "2502", "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": "2499", + "$id": "2503", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -27343,13 +27389,13 @@ "isHttpMetadata": false }, { - "$id": "2500", + "$id": "2504", "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": "2501", + "$id": "2505", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -27375,7 +27421,7 @@ "isHttpMetadata": false }, { - "$id": "2502", + "$id": "2506", "kind": "property", "name": "response_format", "serializedName": "response_format", @@ -27402,18 +27448,18 @@ "isHttpMetadata": false }, { - "$id": "2503", + "$id": "2507", "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": "2504", + "$id": "2508", "kind": "float32", "name": "ZeroOrOneFloat", "crossLanguageDefinitionId": "OpenAI.ZeroOrOneFloat", "baseType": { - "$id": "2505", + "$id": "2509", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -27441,13 +27487,13 @@ "isHttpMetadata": false }, { - "$id": "2506", + "$id": "2510", "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": "2507", + "$id": "2511", "kind": "array", "name": "ArrayTranscriptionInclude", "valueType": { @@ -27476,13 +27522,13 @@ "isHttpMetadata": false }, { - "$id": "2508", + "$id": "2512", "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": "2509", + "$id": "2513", "kind": "array", "name": "Array2", "valueType": { @@ -27511,16 +27557,16 @@ "isHttpMetadata": false }, { - "$id": "2510", + "$id": "2514", "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": "2511", + "$id": "2515", "kind": "nullable", "type": { - "$id": "2512", + "$id": "2516", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -27548,16 +27594,16 @@ "isHttpMetadata": false }, { - "$id": "2513", + "$id": "2517", "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": "2514", + "$id": "2518", "kind": "nullable", "type": { - "$id": "2515", + "$id": "2519", "kind": "model", "name": "VadConfig", "namespace": "OpenAI", @@ -27566,12 +27612,12 @@ "decorators": [], "properties": [ { - "$id": "2516", + "$id": "2520", "kind": "property", "name": "type", "doc": "Must be set to `server_vad` to enable manual chunking using server side VAD.", "type": { - "$ref": "1471" + "$ref": "1475" }, "optional": false, "readOnly": false, @@ -27583,12 +27629,12 @@ "isHttpMetadata": false }, { - "$id": "2517", + "$id": "2521", "kind": "property", "name": "prefix_padding_ms", "doc": "Amount of audio to include before the VAD detected speech (in\nmilliseconds).", "type": { - "$id": "2518", + "$id": "2522", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -27604,12 +27650,12 @@ "isHttpMetadata": false }, { - "$id": "2519", + "$id": "2523", "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": "2520", + "$id": "2524", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -27625,12 +27671,12 @@ "isHttpMetadata": false }, { - "$id": "2521", + "$id": "2525", "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": "2522", + "$id": "2526", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -27671,10 +27717,10 @@ ] }, { - "$ref": "2515" + "$ref": "2519" }, { - "$id": "2523", + "$id": "2527", "kind": "model", "name": "CreateTranscriptionResponseVerboseJson", "namespace": "OpenAI", @@ -27684,13 +27730,13 @@ "decorators": [], "properties": [ { - "$id": "2524", + "$id": "2528", "kind": "property", "name": "task", "serializedName": "task", "doc": "The task label.", "type": { - "$ref": "1473" + "$ref": "1477" }, "optional": false, "readOnly": false, @@ -27706,13 +27752,13 @@ "isHttpMetadata": false }, { - "$id": "2525", + "$id": "2529", "kind": "property", "name": "language", "serializedName": "language", "doc": "The language of the input audio.", "type": { - "$id": "2526", + "$id": "2530", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -27732,18 +27778,18 @@ "isHttpMetadata": false }, { - "$id": "2527", + "$id": "2531", "kind": "property", "name": "duration", "serializedName": "duration", "doc": "The duration of the input audio.", "type": { - "$id": "2528", + "$id": "2532", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "2529", + "$id": "2533", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -27766,13 +27812,13 @@ "isHttpMetadata": false }, { - "$id": "2530", + "$id": "2534", "kind": "property", "name": "text", "serializedName": "text", "doc": "The transcribed text.", "type": { - "$id": "2531", + "$id": "2535", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -27792,17 +27838,17 @@ "isHttpMetadata": false }, { - "$id": "2532", + "$id": "2536", "kind": "property", "name": "words", "serializedName": "words", "doc": "Extracted words and their corresponding timestamps.", "type": { - "$id": "2533", + "$id": "2537", "kind": "array", "name": "ArrayTranscriptionWord", "valueType": { - "$id": "2534", + "$id": "2538", "kind": "model", "name": "TranscriptionWord", "namespace": "OpenAI", @@ -27811,13 +27857,13 @@ "decorators": [], "properties": [ { - "$id": "2535", + "$id": "2539", "kind": "property", "name": "word", "serializedName": "word", "doc": "The text content of the word.", "type": { - "$id": "2536", + "$id": "2540", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -27837,18 +27883,18 @@ "isHttpMetadata": false }, { - "$id": "2537", + "$id": "2541", "kind": "property", "name": "start", "serializedName": "start", "doc": "Start time of the word in seconds.", "type": { - "$id": "2538", + "$id": "2542", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "2539", + "$id": "2543", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -27871,18 +27917,18 @@ "isHttpMetadata": false }, { - "$id": "2540", + "$id": "2544", "kind": "property", "name": "end", "serializedName": "end", "doc": "End time of the word in seconds.", "type": { - "$id": "2541", + "$id": "2545", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "2542", + "$id": "2546", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -27923,17 +27969,17 @@ "isHttpMetadata": false }, { - "$id": "2543", + "$id": "2547", "kind": "property", "name": "segments", "serializedName": "segments", "doc": "Segments of the transcribed text and their corresponding details.", "type": { - "$id": "2544", + "$id": "2548", "kind": "array", "name": "ArrayTranscriptionSegment", "valueType": { - "$id": "2545", + "$id": "2549", "kind": "model", "name": "TranscriptionSegment", "namespace": "OpenAI", @@ -27942,13 +27988,13 @@ "decorators": [], "properties": [ { - "$id": "2546", + "$id": "2550", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier of the segment.", "type": { - "$id": "2547", + "$id": "2551", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -27968,13 +28014,13 @@ "isHttpMetadata": false }, { - "$id": "2548", + "$id": "2552", "kind": "property", "name": "seek", "serializedName": "seek", "doc": "Seek offset of the segment.", "type": { - "$id": "2549", + "$id": "2553", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -27994,18 +28040,18 @@ "isHttpMetadata": false }, { - "$id": "2550", + "$id": "2554", "kind": "property", "name": "start", "serializedName": "start", "doc": "Start time of the segment in seconds.", "type": { - "$id": "2551", + "$id": "2555", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "2552", + "$id": "2556", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -28028,18 +28074,18 @@ "isHttpMetadata": false }, { - "$id": "2553", + "$id": "2557", "kind": "property", "name": "end", "serializedName": "end", "doc": "End time of the segment in seconds.", "type": { - "$id": "2554", + "$id": "2558", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "2555", + "$id": "2559", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -28062,13 +28108,13 @@ "isHttpMetadata": false }, { - "$id": "2556", + "$id": "2560", "kind": "property", "name": "text", "serializedName": "text", "doc": "Text content of the segment.", "type": { - "$id": "2557", + "$id": "2561", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28088,17 +28134,17 @@ "isHttpMetadata": false }, { - "$id": "2558", + "$id": "2562", "kind": "property", "name": "tokens", "serializedName": "tokens", "doc": "Array of token IDs for the text content.", "type": { - "$id": "2559", + "$id": "2563", "kind": "array", "name": "Array3", "valueType": { - "$id": "2560", + "$id": "2564", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -28121,13 +28167,13 @@ "isHttpMetadata": false }, { - "$id": "2561", + "$id": "2565", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Temperature parameter used for generating the segment.", "type": { - "$id": "2562", + "$id": "2566", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -28147,13 +28193,13 @@ "isHttpMetadata": false }, { - "$id": "2563", + "$id": "2567", "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": "2564", + "$id": "2568", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -28173,13 +28219,13 @@ "isHttpMetadata": false }, { - "$id": "2565", + "$id": "2569", "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": "2566", + "$id": "2570", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -28199,13 +28245,13 @@ "isHttpMetadata": false }, { - "$id": "2567", + "$id": "2571", "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": "2568", + "$id": "2572", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -28245,13 +28291,13 @@ ] }, { - "$ref": "2534" + "$ref": "2538" }, { - "$ref": "2545" + "$ref": "2549" }, { - "$id": "2569", + "$id": "2573", "kind": "model", "name": "CreateTranscriptionResponseJson", "namespace": "OpenAI", @@ -28261,13 +28307,13 @@ "decorators": [], "properties": [ { - "$id": "2570", + "$id": "2574", "kind": "property", "name": "text", "serializedName": "text", "doc": "The transcribed text.", "type": { - "$id": "2571", + "$id": "2575", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28287,17 +28333,17 @@ "isHttpMetadata": false }, { - "$id": "2572", + "$id": "2576", "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": "2573", + "$id": "2577", "kind": "array", "name": "Array4", "valueType": { - "$id": "2574", + "$id": "2578", "kind": "model", "name": "CreateTranscriptionResponseJsonLogprob", "namespace": "OpenAI", @@ -28306,13 +28352,13 @@ "decorators": [], "properties": [ { - "$id": "2575", + "$id": "2579", "kind": "property", "name": "token", "serializedName": "token", "doc": "The token in the transcription.", "type": { - "$id": "2576", + "$id": "2580", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28332,13 +28378,13 @@ "isHttpMetadata": false }, { - "$id": "2577", + "$id": "2581", "kind": "property", "name": "logprob", "serializedName": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "2578", + "$id": "2582", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -28358,17 +28404,17 @@ "isHttpMetadata": false }, { - "$id": "2579", + "$id": "2583", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "The bytes of the token.", "type": { - "$id": "2580", + "$id": "2584", "kind": "array", "name": "Array5", "valueType": { - "$id": "2581", + "$id": "2585", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -28411,10 +28457,10 @@ ] }, { - "$ref": "2574" + "$ref": "2578" }, { - "$id": "2582", + "$id": "2586", "kind": "model", "name": "CreateTranscriptionResponseStreamEvent", "namespace": "OpenAI", @@ -28422,7 +28468,7 @@ "usage": "Output", "decorators": [], "discriminatorProperty": { - "$id": "2583", + "$id": "2587", "kind": "property", "name": "type", "type": { @@ -28439,12 +28485,12 @@ }, "properties": [ { - "$ref": "2583" + "$ref": "2587" } ], "discriminatedSubtypes": { "transcript.text.delta": { - "$id": "2584", + "$id": "2588", "kind": "model", "name": "TranscriptTextDeltaEvent", "namespace": "OpenAI", @@ -28454,11 +28500,11 @@ "discriminatorValue": "transcript.text.delta", "decorators": [], "baseModel": { - "$ref": "2582" + "$ref": "2586" }, "properties": [ { - "$id": "2585", + "$id": "2589", "kind": "property", "name": "type", "doc": "The type of the event. Always `transcript.text.delta`.", @@ -28475,12 +28521,12 @@ "isHttpMetadata": false }, { - "$id": "2586", + "$id": "2590", "kind": "property", "name": "delta", "doc": "The text delta that was additionally transcribed.", "type": { - "$id": "2587", + "$id": "2591", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28496,16 +28542,16 @@ "isHttpMetadata": false }, { - "$id": "2588", + "$id": "2592", "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": "2589", + "$id": "2593", "kind": "array", "name": "Array6", "valueType": { - "$id": "2590", + "$id": "2594", "kind": "model", "name": "TranscriptTextDeltaEventLogprob", "namespace": "OpenAI", @@ -28514,12 +28560,12 @@ "decorators": [], "properties": [ { - "$id": "2591", + "$id": "2595", "kind": "property", "name": "token", "doc": "The token that was used to generate the log probability.", "type": { - "$id": "2592", + "$id": "2596", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28535,12 +28581,12 @@ "isHttpMetadata": false }, { - "$id": "2593", + "$id": "2597", "kind": "property", "name": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "2594", + "$id": "2598", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -28556,12 +28602,12 @@ "isHttpMetadata": false }, { - "$id": "2595", + "$id": "2599", "kind": "property", "name": "bytes", "doc": "The bytes that were used to generate the log probability.", "type": { - "$ref": "2559" + "$ref": "2563" }, "optional": true, "readOnly": false, @@ -28589,7 +28635,7 @@ ] }, "transcript.text.done": { - "$id": "2596", + "$id": "2600", "kind": "model", "name": "TranscriptTextDoneEvent", "namespace": "OpenAI", @@ -28599,11 +28645,11 @@ "discriminatorValue": "transcript.text.done", "decorators": [], "baseModel": { - "$ref": "2582" + "$ref": "2586" }, "properties": [ { - "$id": "2597", + "$id": "2601", "kind": "property", "name": "type", "doc": "The type of the event. Always `transcript.text.done`.", @@ -28620,12 +28666,12 @@ "isHttpMetadata": false }, { - "$id": "2598", + "$id": "2602", "kind": "property", "name": "text", "doc": "The text that was transcribed.", "type": { - "$id": "2599", + "$id": "2603", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28641,16 +28687,16 @@ "isHttpMetadata": false }, { - "$id": "2600", + "$id": "2604", "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": "2601", + "$id": "2605", "kind": "array", "name": "Array7", "valueType": { - "$id": "2602", + "$id": "2606", "kind": "model", "name": "TranscriptTextDoneEventLogprob", "namespace": "OpenAI", @@ -28659,12 +28705,12 @@ "decorators": [], "properties": [ { - "$id": "2603", + "$id": "2607", "kind": "property", "name": "token", "doc": "The token that was used to generate the log probability.", "type": { - "$id": "2604", + "$id": "2608", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28680,12 +28726,12 @@ "isHttpMetadata": false }, { - "$id": "2605", + "$id": "2609", "kind": "property", "name": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "2606", + "$id": "2610", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -28701,12 +28747,12 @@ "isHttpMetadata": false }, { - "$id": "2607", + "$id": "2611", "kind": "property", "name": "bytes", "doc": "The bytes that were used to generate the log probability.", "type": { - "$ref": "2559" + "$ref": "2563" }, "optional": true, "readOnly": false, @@ -28736,19 +28782,19 @@ } }, { - "$ref": "2584" + "$ref": "2588" }, { - "$ref": "2590" + "$ref": "2594" }, { - "$ref": "2596" + "$ref": "2600" }, { - "$ref": "2602" + "$ref": "2606" }, { - "$id": "2608", + "$id": "2612", "kind": "model", "name": "CreateTranslationRequest", "namespace": "OpenAI", @@ -28757,13 +28803,13 @@ "decorators": [], "properties": [ { - "$id": "2609", + "$id": "2613", "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": "2610", + "$id": "2614", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -28790,7 +28836,7 @@ "isHttpMetadata": false }, { - "$id": "2611", + "$id": "2615", "kind": "property", "name": "model", "serializedName": "model", @@ -28818,13 +28864,13 @@ "isHttpMetadata": false }, { - "$id": "2612", + "$id": "2616", "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": "2613", + "$id": "2617", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28850,7 +28896,7 @@ "isHttpMetadata": false }, { - "$id": "2614", + "$id": "2618", "kind": "property", "name": "response_format", "serializedName": "response_format", @@ -28878,18 +28924,18 @@ "isHttpMetadata": false }, { - "$id": "2615", + "$id": "2619", "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": "2616", + "$id": "2620", "kind": "float32", "name": "ZeroOrOneFloat", "crossLanguageDefinitionId": "OpenAI.ZeroOrOneFloat", "baseType": { - "$id": "2617", + "$id": "2621", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -28919,7 +28965,7 @@ ] }, { - "$id": "2618", + "$id": "2622", "kind": "model", "name": "CreateTranslationResponseVerboseJson", "namespace": "OpenAI", @@ -28928,13 +28974,13 @@ "decorators": [], "properties": [ { - "$id": "2619", + "$id": "2623", "kind": "property", "name": "task", "serializedName": "task", "doc": "The task label.", "type": { - "$ref": "1475" + "$ref": "1479" }, "optional": false, "readOnly": false, @@ -28950,13 +28996,13 @@ "isHttpMetadata": false }, { - "$id": "2620", + "$id": "2624", "kind": "property", "name": "language", "serializedName": "language", "doc": "The language of the output translation (always `english`).", "type": { - "$id": "2621", + "$id": "2625", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28976,18 +29022,18 @@ "isHttpMetadata": false }, { - "$id": "2622", + "$id": "2626", "kind": "property", "name": "duration", "serializedName": "duration", "doc": "The duration of the input audio.", "type": { - "$id": "2623", + "$id": "2627", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "2624", + "$id": "2628", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -29010,13 +29056,13 @@ "isHttpMetadata": false }, { - "$id": "2625", + "$id": "2629", "kind": "property", "name": "text", "serializedName": "text", "doc": "The translated text.", "type": { - "$id": "2626", + "$id": "2630", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29036,13 +29082,13 @@ "isHttpMetadata": false }, { - "$id": "2627", + "$id": "2631", "kind": "property", "name": "segments", "serializedName": "segments", "doc": "Segments of the translated text and their corresponding details.", "type": { - "$ref": "2544" + "$ref": "2548" }, "optional": true, "readOnly": true, @@ -29060,7 +29106,7 @@ ] }, { - "$id": "2628", + "$id": "2632", "kind": "model", "name": "CreateTranslationResponseJson", "namespace": "OpenAI", @@ -29069,12 +29115,12 @@ "decorators": [], "properties": [ { - "$id": "2629", + "$id": "2633", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "2630", + "$id": "2634", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29096,7 +29142,7 @@ ] }, { - "$id": "2631", + "$id": "2635", "kind": "model", "name": "CreateBatchRequest", "namespace": "", @@ -29105,13 +29151,13 @@ "decorators": [], "properties": [ { - "$id": "2632", + "$id": "2636", "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": "2633", + "$id": "2637", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29131,7 +29177,7 @@ "isHttpMetadata": false }, { - "$id": "2634", + "$id": "2638", "kind": "property", "name": "endpoint", "serializedName": "endpoint", @@ -29153,13 +29199,13 @@ "isHttpMetadata": false }, { - "$id": "2635", + "$id": "2639", "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": "1477" + "$ref": "1481" }, "optional": false, "readOnly": false, @@ -29175,13 +29221,13 @@ "isHttpMetadata": false }, { - "$id": "2636", + "$id": "2640", "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": "2346" + "$ref": "2350" }, "optional": true, "readOnly": false, @@ -29199,7 +29245,7 @@ ] }, { - "$id": "2637", + "$id": "2641", "kind": "model", "name": "Batch", "namespace": "OpenAI", @@ -29208,12 +29254,12 @@ "decorators": [], "properties": [ { - "$id": "2638", + "$id": "2642", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "2639", + "$id": "2643", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29233,13 +29279,13 @@ "isHttpMetadata": false }, { - "$id": "2640", + "$id": "2644", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `batch`.", "type": { - "$ref": "1479" + "$ref": "1483" }, "optional": false, "readOnly": false, @@ -29255,13 +29301,13 @@ "isHttpMetadata": false }, { - "$id": "2641", + "$id": "2645", "kind": "property", "name": "endpoint", "serializedName": "endpoint", "doc": "The OpenAI API endpoint used by the batch.", "type": { - "$id": "2642", + "$id": "2646", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29281,12 +29327,12 @@ "isHttpMetadata": false }, { - "$id": "2643", + "$id": "2647", "kind": "property", "name": "errors", "serializedName": "errors", "type": { - "$id": "2644", + "$id": "2648", "kind": "model", "name": "BatchErrors", "namespace": "OpenAI", @@ -29295,13 +29341,13 @@ "decorators": [], "properties": [ { - "$id": "2645", + "$id": "2649", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `list`.", "type": { - "$ref": "1481" + "$ref": "1485" }, "optional": true, "readOnly": false, @@ -29317,16 +29363,16 @@ "isHttpMetadata": false }, { - "$id": "2646", + "$id": "2650", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "2647", + "$id": "2651", "kind": "array", "name": "Array8", "valueType": { - "$id": "2648", + "$id": "2652", "kind": "model", "name": "BatchErrorsDatum", "namespace": "OpenAI", @@ -29335,13 +29381,13 @@ "decorators": [], "properties": [ { - "$id": "2649", + "$id": "2653", "kind": "property", "name": "code", "serializedName": "code", "doc": "An error code identifying the error type.", "type": { - "$id": "2650", + "$id": "2654", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29361,13 +29407,13 @@ "isHttpMetadata": false }, { - "$id": "2651", + "$id": "2655", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable message providing more details about the error.", "type": { - "$id": "2652", + "$id": "2656", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29387,16 +29433,16 @@ "isHttpMetadata": false }, { - "$id": "2653", + "$id": "2657", "kind": "property", "name": "param", "serializedName": "param", "doc": "The name of the parameter that caused the error, if applicable.", "type": { - "$id": "2654", + "$id": "2658", "kind": "nullable", "type": { - "$id": "2655", + "$id": "2659", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29418,16 +29464,16 @@ "isHttpMetadata": false }, { - "$id": "2656", + "$id": "2660", "kind": "property", "name": "line", "serializedName": "line", "doc": "The line number of the input file where the error occurred, if applicable.", "type": { - "$id": "2657", + "$id": "2661", "kind": "nullable", "type": { - "$id": "2658", + "$id": "2662", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -29482,13 +29528,13 @@ "isHttpMetadata": false }, { - "$id": "2659", + "$id": "2663", "kind": "property", "name": "input_file_id", "serializedName": "input_file_id", "doc": "The ID of the input file for the batch.", "type": { - "$id": "2660", + "$id": "2664", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29508,13 +29554,13 @@ "isHttpMetadata": false }, { - "$id": "2661", + "$id": "2665", "kind": "property", "name": "completion_window", "serializedName": "completion_window", "doc": "The time frame within which the batch should be processed.", "type": { - "$id": "2662", + "$id": "2666", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29534,7 +29580,7 @@ "isHttpMetadata": false }, { - "$id": "2663", + "$id": "2667", "kind": "property", "name": "status", "serializedName": "status", @@ -29556,13 +29602,13 @@ "isHttpMetadata": false }, { - "$id": "2664", + "$id": "2668", "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": "2665", + "$id": "2669", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29582,13 +29628,13 @@ "isHttpMetadata": false }, { - "$id": "2666", + "$id": "2670", "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": "2667", + "$id": "2671", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29608,18 +29654,18 @@ "isHttpMetadata": false }, { - "$id": "2668", + "$id": "2672", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the batch was created.", "type": { - "$id": "2669", + "$id": "2673", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2670", + "$id": "2674", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -29642,18 +29688,18 @@ "isHttpMetadata": false }, { - "$id": "2671", + "$id": "2675", "kind": "property", "name": "in_progress_at", "serializedName": "in_progress_at", "doc": "The Unix timestamp (in seconds) for when the batch started processing.", "type": { - "$id": "2672", + "$id": "2676", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2673", + "$id": "2677", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -29676,18 +29722,18 @@ "isHttpMetadata": false }, { - "$id": "2674", + "$id": "2678", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the batch will expire.", "type": { - "$id": "2675", + "$id": "2679", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2676", + "$id": "2680", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -29710,18 +29756,18 @@ "isHttpMetadata": false }, { - "$id": "2677", + "$id": "2681", "kind": "property", "name": "finalizing_at", "serializedName": "finalizing_at", "doc": "The Unix timestamp (in seconds) for when the batch started finalizing.", "type": { - "$id": "2678", + "$id": "2682", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2679", + "$id": "2683", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -29744,18 +29790,18 @@ "isHttpMetadata": false }, { - "$id": "2680", + "$id": "2684", "kind": "property", "name": "completed_at", "serializedName": "completed_at", "doc": "The Unix timestamp (in seconds) for when the batch was completed.", "type": { - "$id": "2681", + "$id": "2685", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2682", + "$id": "2686", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -29778,18 +29824,18 @@ "isHttpMetadata": false }, { - "$id": "2683", + "$id": "2687", "kind": "property", "name": "failed_at", "serializedName": "failed_at", "doc": "The Unix timestamp (in seconds) for when the batch failed.", "type": { - "$id": "2684", + "$id": "2688", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2685", + "$id": "2689", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -29812,18 +29858,18 @@ "isHttpMetadata": false }, { - "$id": "2686", + "$id": "2690", "kind": "property", "name": "expired_at", "serializedName": "expired_at", "doc": "The Unix timestamp (in seconds) for when the batch expired.", "type": { - "$id": "2687", + "$id": "2691", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2688", + "$id": "2692", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -29846,18 +29892,18 @@ "isHttpMetadata": false }, { - "$id": "2689", + "$id": "2693", "kind": "property", "name": "cancelling_at", "serializedName": "cancelling_at", "doc": "The Unix timestamp (in seconds) for when the batch started cancelling.", "type": { - "$id": "2690", + "$id": "2694", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2691", + "$id": "2695", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -29880,18 +29926,18 @@ "isHttpMetadata": false }, { - "$id": "2692", + "$id": "2696", "kind": "property", "name": "cancelled_at", "serializedName": "cancelled_at", "doc": "The Unix timestamp (in seconds) for when the batch was cancelled.", "type": { - "$id": "2693", + "$id": "2697", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2694", + "$id": "2698", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -29914,13 +29960,13 @@ "isHttpMetadata": false }, { - "$id": "2695", + "$id": "2699", "kind": "property", "name": "request_counts", "serializedName": "request_counts", "doc": "The request counts for different statuses within the batch.", "type": { - "$id": "2696", + "$id": "2700", "kind": "model", "name": "BatchRequestCounts", "namespace": "OpenAI", @@ -29929,13 +29975,13 @@ "decorators": [], "properties": [ { - "$id": "2697", + "$id": "2701", "kind": "property", "name": "total", "serializedName": "total", "doc": "Total number of requests in the batch.", "type": { - "$id": "2698", + "$id": "2702", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -29955,13 +30001,13 @@ "isHttpMetadata": false }, { - "$id": "2699", + "$id": "2703", "kind": "property", "name": "completed", "serializedName": "completed", "doc": "Number of requests that have been completed successfully.", "type": { - "$id": "2700", + "$id": "2704", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -29981,13 +30027,13 @@ "isHttpMetadata": false }, { - "$id": "2701", + "$id": "2705", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "Number of requests that have failed.", "type": { - "$id": "2702", + "$id": "2706", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -30022,13 +30068,13 @@ "isHttpMetadata": false }, { - "$id": "2703", + "$id": "2707", "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": "2345" + "$ref": "2349" }, "optional": false, "readOnly": false, @@ -30046,16 +30092,16 @@ ] }, { - "$ref": "2644" + "$ref": "2648" }, { - "$ref": "2648" + "$ref": "2652" }, { - "$ref": "2696" + "$ref": "2700" }, { - "$id": "2704", + "$id": "2708", "kind": "model", "name": "ListBatchesResponse", "namespace": "OpenAI", @@ -30064,16 +30110,16 @@ "decorators": [], "properties": [ { - "$id": "2705", + "$id": "2709", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "2706", + "$id": "2710", "kind": "array", "name": "ArrayBatch", "valueType": { - "$ref": "2637" + "$ref": "2641" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -30092,12 +30138,12 @@ "isHttpMetadata": false }, { - "$id": "2707", + "$id": "2711", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "2708", + "$id": "2712", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30117,12 +30163,12 @@ "isHttpMetadata": false }, { - "$id": "2709", + "$id": "2713", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "2710", + "$id": "2714", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30142,12 +30188,12 @@ "isHttpMetadata": false }, { - "$id": "2711", + "$id": "2715", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "2712", + "$id": "2716", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -30167,12 +30213,12 @@ "isHttpMetadata": false }, { - "$id": "2713", + "$id": "2717", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1483" + "$ref": "1487" }, "optional": false, "readOnly": false, @@ -30190,7 +30236,7 @@ ] }, { - "$id": "2714", + "$id": "2718", "kind": "model", "name": "ChatCompletionList", "namespace": "OpenAI", @@ -30200,13 +30246,13 @@ "decorators": [], "properties": [ { - "$id": "2715", + "$id": "2719", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of this object. It is always set to \"list\".", "type": { - "$ref": "1485" + "$ref": "1489" }, "optional": false, "readOnly": false, @@ -30222,17 +30268,17 @@ "isHttpMetadata": false }, { - "$id": "2716", + "$id": "2720", "kind": "property", "name": "data", "serializedName": "data", "doc": "An array of chat completion objects.", "type": { - "$id": "2717", + "$id": "2721", "kind": "array", "name": "ArrayCreateChatCompletionResponse", "valueType": { - "$id": "2718", + "$id": "2722", "kind": "model", "name": "CreateChatCompletionResponse", "namespace": "OpenAI", @@ -30242,13 +30288,13 @@ "decorators": [], "properties": [ { - "$id": "2719", + "$id": "2723", "kind": "property", "name": "id", "serializedName": "id", "doc": "A unique identifier for the chat completion.", "type": { - "$id": "2720", + "$id": "2724", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30268,17 +30314,17 @@ "isHttpMetadata": false }, { - "$id": "2721", + "$id": "2725", "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": "2722", + "$id": "2726", "kind": "array", "name": "Array9", "valueType": { - "$id": "2723", + "$id": "2727", "kind": "model", "name": "CreateChatCompletionResponseChoice", "namespace": "OpenAI", @@ -30287,7 +30333,7 @@ "decorators": [], "properties": [ { - "$id": "2724", + "$id": "2728", "kind": "property", "name": "finish_reason", "serializedName": "finish_reason", @@ -30309,13 +30355,13 @@ "isHttpMetadata": false }, { - "$id": "2725", + "$id": "2729", "kind": "property", "name": "index", "serializedName": "index", "doc": "The index of the choice in the list of choices.", "type": { - "$id": "2726", + "$id": "2730", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -30335,12 +30381,12 @@ "isHttpMetadata": false }, { - "$id": "2727", + "$id": "2731", "kind": "property", "name": "message", "serializedName": "message", "type": { - "$id": "2728", + "$id": "2732", "kind": "model", "name": "ChatCompletionResponseMessage", "namespace": "OpenAI", @@ -30350,16 +30396,16 @@ "decorators": [], "properties": [ { - "$id": "2729", + "$id": "2733", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the message.", "type": { - "$id": "2730", + "$id": "2734", "kind": "nullable", "type": { - "$id": "2731", + "$id": "2735", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30381,16 +30427,16 @@ "isHttpMetadata": false }, { - "$id": "2732", + "$id": "2736", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "The refusal message generated by the model.", "type": { - "$id": "2733", + "$id": "2737", "kind": "nullable", "type": { - "$id": "2734", + "$id": "2738", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30412,16 +30458,16 @@ "isHttpMetadata": false }, { - "$id": "2735", + "$id": "2739", "kind": "property", "name": "tool_calls", "serializedName": "tool_calls", "type": { - "$id": "2736", + "$id": "2740", "kind": "array", "name": "ChatCompletionMessageToolCalls", "valueType": { - "$id": "2737", + "$id": "2741", "kind": "model", "name": "ChatCompletionMessageToolCall", "namespace": "OpenAI", @@ -30430,13 +30476,13 @@ "decorators": [], "properties": [ { - "$id": "2738", + "$id": "2742", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the tool call.", "type": { - "$id": "2739", + "$id": "2743", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30456,13 +30502,13 @@ "isHttpMetadata": false }, { - "$id": "2740", + "$id": "2744", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the tool. Currently, only `function` is supported.", "type": { - "$id": "2741", + "$id": "2745", "kind": "enumvalue", "name": "function", "value": "function", @@ -30488,13 +30534,13 @@ "isHttpMetadata": false }, { - "$id": "2742", + "$id": "2746", "kind": "property", "name": "function", "serializedName": "function", "doc": "The function that the model called.", "type": { - "$id": "2743", + "$id": "2747", "kind": "model", "name": "ChatCompletionMessageToolCallFunction", "namespace": "OpenAI", @@ -30503,13 +30549,13 @@ "decorators": [], "properties": [ { - "$id": "2744", + "$id": "2748", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "2745", + "$id": "2749", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30529,13 +30575,13 @@ "isHttpMetadata": false }, { - "$id": "2746", + "$id": "2750", "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": "2747", + "$id": "2751", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30588,17 +30634,17 @@ "isHttpMetadata": false }, { - "$id": "2748", + "$id": "2752", "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": "2749", + "$id": "2753", "kind": "array", "name": "Array10", "valueType": { - "$id": "2750", + "$id": "2754", "kind": "model", "name": "ChatCompletionResponseMessageAnnotation", "namespace": "OpenAI", @@ -30607,13 +30653,13 @@ "decorators": [], "properties": [ { - "$id": "2751", + "$id": "2755", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the URL citation. Always `url_citation`.", "type": { - "$ref": "1487" + "$ref": "1491" }, "optional": false, "readOnly": false, @@ -30629,13 +30675,13 @@ "isHttpMetadata": false }, { - "$id": "2752", + "$id": "2756", "kind": "property", "name": "url_citation", "serializedName": "url_citation", "doc": "A URL citation when using web search.", "type": { - "$id": "2753", + "$id": "2757", "kind": "model", "name": "ChatCompletionResponseMessageAnnotationUrlCitation", "namespace": "OpenAI", @@ -30644,13 +30690,13 @@ "decorators": [], "properties": [ { - "$id": "2754", + "$id": "2758", "kind": "property", "name": "end_index", "serializedName": "end_index", "doc": "The index of the last character of the URL citation in the message.", "type": { - "$id": "2755", + "$id": "2759", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -30670,13 +30716,13 @@ "isHttpMetadata": false }, { - "$id": "2756", + "$id": "2760", "kind": "property", "name": "start_index", "serializedName": "start_index", "doc": "The index of the first character of the URL citation in the message.", "type": { - "$id": "2757", + "$id": "2761", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -30696,13 +30742,13 @@ "isHttpMetadata": false }, { - "$id": "2758", + "$id": "2762", "kind": "property", "name": "url", "serializedName": "url", "doc": "The URL of the web resource.", "type": { - "$id": "2759", + "$id": "2763", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -30722,13 +30768,13 @@ "isHttpMetadata": false }, { - "$id": "2760", + "$id": "2764", "kind": "property", "name": "title", "serializedName": "title", "doc": "The title of the web resource.", "type": { - "$id": "2761", + "$id": "2765", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30781,13 +30827,13 @@ "isHttpMetadata": false }, { - "$id": "2762", + "$id": "2766", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the author of this message.", "type": { - "$id": "2763", + "$id": "2767", "kind": "enumvalue", "name": "assistant", "value": "assistant", @@ -30813,13 +30859,13 @@ "isHttpMetadata": false }, { - "$id": "2764", + "$id": "2768", "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": "2765", + "$id": "2769", "kind": "model", "name": "ChatCompletionResponseMessageFunctionCall", "namespace": "OpenAI", @@ -30828,12 +30874,12 @@ "decorators": [], "properties": [ { - "$id": "2766", + "$id": "2770", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "2767", + "$id": "2771", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30853,12 +30899,12 @@ "isHttpMetadata": false }, { - "$id": "2768", + "$id": "2772", "kind": "property", "name": "arguments", "serializedName": "arguments", "type": { - "$id": "2769", + "$id": "2773", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30893,16 +30939,16 @@ "isHttpMetadata": false }, { - "$id": "2770", + "$id": "2774", "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": "2771", + "$id": "2775", "kind": "nullable", "type": { - "$id": "2772", + "$id": "2776", "kind": "model", "name": "ChatCompletionResponseMessageAudio1", "namespace": "OpenAI", @@ -30911,13 +30957,13 @@ "decorators": [], "properties": [ { - "$id": "2773", + "$id": "2777", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for this audio response.", "type": { - "$id": "2774", + "$id": "2778", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30937,18 +30983,18 @@ "isHttpMetadata": false }, { - "$id": "2775", + "$id": "2779", "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": "2776", + "$id": "2780", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2777", + "$id": "2781", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -30971,13 +31017,13 @@ "isHttpMetadata": false }, { - "$id": "2778", + "$id": "2782", "kind": "property", "name": "data", "serializedName": "data", "doc": "Base64 encoded audio bytes generated by the model, in the format\nspecified in the request.", "type": { - "$id": "2779", + "$id": "2783", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -30998,13 +31044,13 @@ "isHttpMetadata": false }, { - "$id": "2780", + "$id": "2784", "kind": "property", "name": "transcript", "serializedName": "transcript", "doc": "Transcript of the audio generated by the model.", "type": { - "$id": "2781", + "$id": "2785", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -31056,16 +31102,16 @@ "isHttpMetadata": false }, { - "$id": "2782", + "$id": "2786", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "doc": "Log probability information for the choice.", "type": { - "$id": "2783", + "$id": "2787", "kind": "nullable", "type": { - "$id": "2784", + "$id": "2788", "kind": "model", "name": "CreateChatCompletionResponseChoiceLogprobs1", "namespace": "OpenAI", @@ -31074,20 +31120,20 @@ "decorators": [], "properties": [ { - "$id": "2785", + "$id": "2789", "kind": "property", "name": "content", "serializedName": "content", "doc": "A list of message content tokens with log probability information.", "type": { - "$id": "2786", + "$id": "2790", "kind": "nullable", "type": { - "$id": "2787", + "$id": "2791", "kind": "array", "name": "ArrayChatCompletionTokenLogprob", "valueType": { - "$id": "2788", + "$id": "2792", "kind": "model", "name": "ChatCompletionTokenLogprob", "namespace": "OpenAI", @@ -31096,13 +31142,13 @@ "decorators": [], "properties": [ { - "$id": "2789", + "$id": "2793", "kind": "property", "name": "token", "serializedName": "token", "doc": "The token.", "type": { - "$id": "2790", + "$id": "2794", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -31122,13 +31168,13 @@ "isHttpMetadata": false }, { - "$id": "2791", + "$id": "2795", "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": "2792", + "$id": "2796", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -31148,16 +31194,16 @@ "isHttpMetadata": false }, { - "$id": "2793", + "$id": "2797", "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": "2794", + "$id": "2798", "kind": "nullable", "type": { - "$ref": "2559" + "$ref": "2563" }, "namespace": "OpenAI" }, @@ -31175,17 +31221,17 @@ "isHttpMetadata": false }, { - "$id": "2795", + "$id": "2799", "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": "2796", + "$id": "2800", "kind": "array", "name": "Array11", "valueType": { - "$id": "2797", + "$id": "2801", "kind": "model", "name": "ChatCompletionTokenLogprobTopLogprob", "namespace": "OpenAI", @@ -31194,13 +31240,13 @@ "decorators": [], "properties": [ { - "$id": "2798", + "$id": "2802", "kind": "property", "name": "token", "serializedName": "token", "doc": "The token.", "type": { - "$id": "2799", + "$id": "2803", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -31220,13 +31266,13 @@ "isHttpMetadata": false }, { - "$id": "2800", + "$id": "2804", "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": "2801", + "$id": "2805", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -31246,16 +31292,16 @@ "isHttpMetadata": false }, { - "$id": "2802", + "$id": "2806", "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": "2803", + "$id": "2807", "kind": "nullable", "type": { - "$ref": "2559" + "$ref": "2563" }, "namespace": "OpenAI" }, @@ -31311,16 +31357,16 @@ "isHttpMetadata": false }, { - "$id": "2804", + "$id": "2808", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "A list of message refusal tokens with log probability information.", "type": { - "$id": "2805", + "$id": "2809", "kind": "nullable", "type": { - "$ref": "2787" + "$ref": "2791" }, "namespace": "OpenAI" }, @@ -31373,18 +31419,18 @@ "isHttpMetadata": false }, { - "$id": "2806", + "$id": "2810", "kind": "property", "name": "created", "serializedName": "created", "doc": "The Unix timestamp (in seconds) of when the chat completion was created.", "type": { - "$id": "2807", + "$id": "2811", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2808", + "$id": "2812", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31407,13 +31453,13 @@ "isHttpMetadata": false }, { - "$id": "2809", + "$id": "2813", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model used for the chat completion.", "type": { - "$id": "2810", + "$id": "2814", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -31433,7 +31479,7 @@ "isHttpMetadata": false }, { - "$id": "2811", + "$id": "2815", "kind": "property", "name": "service_tier", "serializedName": "service_tier", @@ -31454,13 +31500,13 @@ "isHttpMetadata": false }, { - "$id": "2812", + "$id": "2816", "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": "2813", + "$id": "2817", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -31480,13 +31526,13 @@ "isHttpMetadata": false }, { - "$id": "2814", + "$id": "2818", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `chat.completion`.", "type": { - "$ref": "1489" + "$ref": "1493" }, "optional": false, "readOnly": false, @@ -31502,12 +31548,12 @@ "isHttpMetadata": false }, { - "$id": "2815", + "$id": "2819", "kind": "property", "name": "usage", "serializedName": "usage", "type": { - "$id": "2816", + "$id": "2820", "kind": "model", "name": "CompletionUsage", "namespace": "OpenAI", @@ -31517,13 +31563,13 @@ "decorators": [], "properties": [ { - "$id": "2817", + "$id": "2821", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "Number of tokens in the generated completion.", "type": { - "$id": "2818", + "$id": "2822", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31543,13 +31589,13 @@ "isHttpMetadata": false }, { - "$id": "2819", + "$id": "2823", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "Number of tokens in the prompt.", "type": { - "$id": "2820", + "$id": "2824", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31569,13 +31615,13 @@ "isHttpMetadata": false }, { - "$id": "2821", + "$id": "2825", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "Total number of tokens used in the request (prompt + completion).", "type": { - "$id": "2822", + "$id": "2826", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31595,13 +31641,13 @@ "isHttpMetadata": false }, { - "$id": "2823", + "$id": "2827", "kind": "property", "name": "completion_tokens_details", "serializedName": "completion_tokens_details", "doc": "Breakdown of tokens used in a completion.", "type": { - "$id": "2824", + "$id": "2828", "kind": "model", "name": "CompletionUsageCompletionTokensDetails", "namespace": "OpenAI", @@ -31610,13 +31656,13 @@ "decorators": [], "properties": [ { - "$id": "2825", + "$id": "2829", "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": "2826", + "$id": "2830", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31636,13 +31682,13 @@ "isHttpMetadata": false }, { - "$id": "2827", + "$id": "2831", "kind": "property", "name": "audio_tokens", "serializedName": "audio_tokens", "doc": "Audio input tokens generated by the model.", "type": { - "$id": "2828", + "$id": "2832", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31662,13 +31708,13 @@ "isHttpMetadata": false }, { - "$id": "2829", + "$id": "2833", "kind": "property", "name": "reasoning_tokens", "serializedName": "reasoning_tokens", "doc": "Tokens generated by the model for reasoning.", "type": { - "$id": "2830", + "$id": "2834", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31688,13 +31734,13 @@ "isHttpMetadata": false }, { - "$id": "2831", + "$id": "2835", "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": "2832", + "$id": "2836", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31729,13 +31775,13 @@ "isHttpMetadata": false }, { - "$id": "2833", + "$id": "2837", "kind": "property", "name": "prompt_tokens_details", "serializedName": "prompt_tokens_details", "doc": "Breakdown of tokens used in the prompt.", "type": { - "$id": "2834", + "$id": "2838", "kind": "model", "name": "CompletionUsagePromptTokensDetails", "namespace": "OpenAI", @@ -31744,13 +31790,13 @@ "decorators": [], "properties": [ { - "$id": "2835", + "$id": "2839", "kind": "property", "name": "audio_tokens", "serializedName": "audio_tokens", "doc": "Audio input tokens present in the prompt.", "type": { - "$id": "2836", + "$id": "2840", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31770,13 +31816,13 @@ "isHttpMetadata": false }, { - "$id": "2837", + "$id": "2841", "kind": "property", "name": "cached_tokens", "serializedName": "cached_tokens", "doc": "Cached tokens present in the prompt.", "type": { - "$id": "2838", + "$id": "2842", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31844,13 +31890,13 @@ "isHttpMetadata": false }, { - "$id": "2839", + "$id": "2843", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The identifier of the first chat completion in the data array.", "type": { - "$id": "2840", + "$id": "2844", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -31870,13 +31916,13 @@ "isHttpMetadata": false }, { - "$id": "2841", + "$id": "2845", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The identifier of the last chat completion in the data array.", "type": { - "$id": "2842", + "$id": "2846", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -31896,13 +31942,13 @@ "isHttpMetadata": false }, { - "$id": "2843", + "$id": "2847", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates whether there are more Chat Completions available.", "type": { - "$id": "2844", + "$id": "2848", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -31924,52 +31970,52 @@ ] }, { - "$ref": "2718" + "$ref": "2722" }, { - "$ref": "2723" + "$ref": "2727" }, { - "$ref": "2728" + "$ref": "2732" }, { - "$ref": "2737" + "$ref": "2741" }, { - "$ref": "2743" + "$ref": "2747" }, { - "$ref": "2750" + "$ref": "2754" }, { - "$ref": "2753" + "$ref": "2757" }, { - "$ref": "2765" + "$ref": "2769" }, { - "$ref": "2772" + "$ref": "2776" }, { - "$ref": "2784" + "$ref": "2788" }, { - "$ref": "2788" + "$ref": "2792" }, { - "$ref": "2797" + "$ref": "2801" }, { - "$ref": "2816" + "$ref": "2820" }, { - "$ref": "2824" + "$ref": "2828" }, { - "$ref": "2834" + "$ref": "2838" }, { - "$id": "2845", + "$id": "2849", "kind": "model", "name": "CreateChatCompletionRequest", "namespace": "OpenAI", @@ -31978,13 +32024,13 @@ "decorators": [], "properties": [ { - "$id": "2846", + "$id": "2850", "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": "2346" + "$ref": "2350" }, "optional": true, "readOnly": false, @@ -32000,16 +32046,16 @@ "isHttpMetadata": false }, { - "$id": "2847", + "$id": "2851", "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": "2848", + "$id": "2852", "kind": "nullable", "type": { - "$id": "2849", + "$id": "2853", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -32031,16 +32077,16 @@ "isHttpMetadata": false }, { - "$id": "2850", + "$id": "2854", "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": "2851", + "$id": "2855", "kind": "nullable", "type": { - "$id": "2852", + "$id": "2856", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -32062,13 +32108,13 @@ "isHttpMetadata": false }, { - "$id": "2853", + "$id": "2857", "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": "2854", + "$id": "2858", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32088,7 +32134,7 @@ "isHttpMetadata": false }, { - "$id": "2855", + "$id": "2859", "kind": "property", "name": "service_tier", "serializedName": "service_tier", @@ -32109,17 +32155,17 @@ "isHttpMetadata": false }, { - "$id": "2856", + "$id": "2860", "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": "2857", + "$id": "2861", "kind": "array", "name": "ArrayChatCompletionRequestMessage", "valueType": { - "$id": "2858", + "$id": "2862", "kind": "model", "name": "ChatCompletionRequestMessage", "namespace": "OpenAI", @@ -32127,7 +32173,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "2859", + "$id": "2863", "kind": "property", "name": "role", "serializedName": "role", @@ -32150,35 +32196,35 @@ }, "properties": [ { - "$ref": "2859" + "$ref": "2863" }, { - "$id": "2860", + "$id": "2864", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message. Valid content part types vary per message role.", "type": { - "$id": "2861", + "$id": "2865", "kind": "nullable", "type": { - "$id": "2862", + "$id": "2866", "kind": "union", "name": "ChatCompletionRequestMessageContent", "variantTypes": [ { - "$id": "2863", + "$id": "2867", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "2864", + "$id": "2868", "kind": "array", "name": "ArrayChatCompletionRequestMessageContentPart", "valueType": { - "$id": "2865", + "$id": "2869", "kind": "model", "name": "ChatCompletionRequestMessageContentPart", "namespace": "OpenAI", @@ -32186,7 +32232,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "2866", + "$id": "2870", "kind": "property", "name": "type", "serializedName": "type", @@ -32208,12 +32254,12 @@ }, "properties": [ { - "$ref": "2866" + "$ref": "2870" } ], "discriminatedSubtypes": { "text": { - "$id": "2867", + "$id": "2871", "kind": "model", "name": "ChatCompletionRequestMessageContentPartText", "namespace": "OpenAI", @@ -32223,11 +32269,11 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "2865" + "$ref": "2869" }, "properties": [ { - "$id": "2868", + "$id": "2872", "kind": "property", "name": "type", "serializedName": "type", @@ -32249,13 +32295,13 @@ "isHttpMetadata": false }, { - "$id": "2869", + "$id": "2873", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content.", "type": { - "$id": "2870", + "$id": "2874", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32277,7 +32323,7 @@ ] }, "image_url": { - "$id": "2871", + "$id": "2875", "kind": "model", "name": "ChatCompletionRequestMessageContentPartImage", "namespace": "OpenAI", @@ -32287,11 +32333,11 @@ "discriminatorValue": "image_url", "decorators": [], "baseModel": { - "$ref": "2865" + "$ref": "2869" }, "properties": [ { - "$id": "2872", + "$id": "2876", "kind": "property", "name": "type", "serializedName": "type", @@ -32313,12 +32359,12 @@ "isHttpMetadata": false }, { - "$id": "2873", + "$id": "2877", "kind": "property", "name": "image_url", "serializedName": "image_url", "type": { - "$id": "2874", + "$id": "2878", "kind": "model", "name": "ChatCompletionRequestMessageContentPartImageImageUrl", "namespace": "OpenAI", @@ -32327,13 +32373,13 @@ "decorators": [], "properties": [ { - "$id": "2875", + "$id": "2879", "kind": "property", "name": "url", "serializedName": "url", "doc": "Either a URL of the image or the base64 encoded image data.", "type": { - "$id": "2876", + "$id": "2880", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -32353,7 +32399,7 @@ "isHttpMetadata": false }, { - "$id": "2877", + "$id": "2881", "kind": "property", "name": "detail", "serializedName": "detail", @@ -32392,7 +32438,7 @@ ] }, "refusal": { - "$id": "2878", + "$id": "2882", "kind": "model", "name": "ChatCompletionRequestMessageContentPartRefusal", "namespace": "OpenAI", @@ -32401,11 +32447,11 @@ "discriminatorValue": "refusal", "decorators": [], "baseModel": { - "$ref": "2865" + "$ref": "2869" }, "properties": [ { - "$id": "2879", + "$id": "2883", "kind": "property", "name": "type", "serializedName": "type", @@ -32427,13 +32473,13 @@ "isHttpMetadata": false }, { - "$id": "2880", + "$id": "2884", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "The refusal message generated by the model.", "type": { - "$id": "2881", + "$id": "2885", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32455,7 +32501,7 @@ ] }, "file": { - "$id": "2882", + "$id": "2886", "kind": "model", "name": "ChatCompletionRequestMessageContentPartFile", "namespace": "OpenAI", @@ -32465,11 +32511,11 @@ "discriminatorValue": "file", "decorators": [], "baseModel": { - "$ref": "2865" + "$ref": "2869" }, "properties": [ { - "$id": "2883", + "$id": "2887", "kind": "property", "name": "type", "serializedName": "type", @@ -32491,12 +32537,12 @@ "isHttpMetadata": false }, { - "$id": "2884", + "$id": "2888", "kind": "property", "name": "file", "serializedName": "file", "type": { - "$id": "2885", + "$id": "2889", "kind": "model", "name": "ChatCompletionRequestMessageContentPartFileFile", "namespace": "OpenAI", @@ -32505,13 +32551,13 @@ "decorators": [], "properties": [ { - "$id": "2886", + "$id": "2890", "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": "2887", + "$id": "2891", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32531,13 +32577,13 @@ "isHttpMetadata": false }, { - "$id": "2888", + "$id": "2892", "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": "2889", + "$id": "2893", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32557,13 +32603,13 @@ "isHttpMetadata": false }, { - "$id": "2890", + "$id": "2894", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of an uploaded file to use as input.", "type": { - "$id": "2891", + "$id": "2895", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32600,7 +32646,7 @@ ] }, "input_audio": { - "$id": "2892", + "$id": "2896", "kind": "model", "name": "ChatCompletionRequestMessageContentPartAudio", "namespace": "OpenAI", @@ -32610,11 +32656,11 @@ "discriminatorValue": "input_audio", "decorators": [], "baseModel": { - "$ref": "2865" + "$ref": "2869" }, "properties": [ { - "$id": "2893", + "$id": "2897", "kind": "property", "name": "type", "serializedName": "type", @@ -32636,12 +32682,12 @@ "isHttpMetadata": false }, { - "$id": "2894", + "$id": "2898", "kind": "property", "name": "input_audio", "serializedName": "input_audio", "type": { - "$id": "2895", + "$id": "2899", "kind": "model", "name": "ChatCompletionRequestMessageContentPartAudioInputAudio", "namespace": "OpenAI", @@ -32650,13 +32696,13 @@ "decorators": [], "properties": [ { - "$id": "2896", + "$id": "2900", "kind": "property", "name": "data", "serializedName": "data", "doc": "Base64 encoded audio data.", "type": { - "$id": "2897", + "$id": "2901", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -32677,7 +32723,7 @@ "isHttpMetadata": false }, { - "$id": "2898", + "$id": "2902", "kind": "property", "name": "format", "serializedName": "format", @@ -32742,7 +32788,7 @@ ], "discriminatedSubtypes": { "system": { - "$id": "2899", + "$id": "2903", "kind": "model", "name": "ChatCompletionRequestSystemMessage", "namespace": "OpenAI", @@ -32752,38 +32798,38 @@ "discriminatorValue": "system", "decorators": [], "baseModel": { - "$ref": "2858" + "$ref": "2862" }, "properties": [ { - "$id": "2900", + "$id": "2904", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the system message.", "type": { - "$id": "2901", + "$id": "2905", "kind": "union", "name": "ChatCompletionRequestSystemMessageContent", "variantTypes": [ { - "$id": "2902", + "$id": "2906", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "2903", + "$id": "2907", "kind": "array", "name": "ArrayChatCompletionRequestSystemMessageContentPart", "valueType": { - "$id": "2904", + "$id": "2908", "kind": "union", "name": "ChatCompletionRequestSystemMessageContentPart", "variantTypes": [ { - "$ref": "2867" + "$ref": "2871" } ], "namespace": "OpenAI", @@ -32810,13 +32856,13 @@ "isHttpMetadata": false }, { - "$id": "2905", + "$id": "2909", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the messages author, in this case `system`.", "type": { - "$id": "2906", + "$id": "2910", "kind": "enumvalue", "name": "system", "value": "system", @@ -32842,13 +32888,13 @@ "isHttpMetadata": false }, { - "$id": "2907", + "$id": "2911", "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": "2908", + "$id": "2912", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32870,7 +32916,7 @@ ] }, "developer": { - "$id": "2909", + "$id": "2913", "kind": "model", "name": "ChatCompletionRequestDeveloperMessage", "namespace": "OpenAI", @@ -32880,33 +32926,33 @@ "discriminatorValue": "developer", "decorators": [], "baseModel": { - "$ref": "2858" + "$ref": "2862" }, "properties": [ { - "$id": "2910", + "$id": "2914", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the developer message.", "type": { - "$id": "2911", + "$id": "2915", "kind": "union", "name": "ChatCompletionRequestDeveloperMessageContent", "variantTypes": [ { - "$id": "2912", + "$id": "2916", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "2913", + "$id": "2917", "kind": "array", "name": "ArrayChatCompletionRequestMessageContentPartText", "valueType": { - "$ref": "2867" + "$ref": "2871" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -32929,13 +32975,13 @@ "isHttpMetadata": false }, { - "$id": "2914", + "$id": "2918", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the messages author, in this case `developer`.", "type": { - "$id": "2915", + "$id": "2919", "kind": "enumvalue", "name": "developer", "value": "developer", @@ -32961,13 +33007,13 @@ "isHttpMetadata": false }, { - "$id": "2916", + "$id": "2920", "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": "2917", + "$id": "2921", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32989,7 +33035,7 @@ ] }, "user": { - "$id": "2918", + "$id": "2922", "kind": "model", "name": "ChatCompletionRequestUserMessage", "namespace": "OpenAI", @@ -32999,47 +33045,47 @@ "discriminatorValue": "user", "decorators": [], "baseModel": { - "$ref": "2858" + "$ref": "2862" }, "properties": [ { - "$id": "2919", + "$id": "2923", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the user message.", "type": { - "$id": "2920", + "$id": "2924", "kind": "union", "name": "ChatCompletionRequestUserMessageContent", "variantTypes": [ { - "$id": "2921", + "$id": "2925", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "2922", + "$id": "2926", "kind": "array", "name": "ArrayChatCompletionRequestUserMessageContentPart", "valueType": { - "$id": "2923", + "$id": "2927", "kind": "union", "name": "ChatCompletionRequestUserMessageContentPart", "variantTypes": [ { - "$ref": "2867" + "$ref": "2871" }, { - "$ref": "2871" + "$ref": "2875" }, { - "$ref": "2892" + "$ref": "2896" }, { - "$ref": "2882" + "$ref": "2886" } ], "namespace": "OpenAI", @@ -33066,13 +33112,13 @@ "isHttpMetadata": false }, { - "$id": "2924", + "$id": "2928", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the messages author, in this case `user`.", "type": { - "$id": "2925", + "$id": "2929", "kind": "enumvalue", "name": "user", "value": "user", @@ -33098,13 +33144,13 @@ "isHttpMetadata": false }, { - "$id": "2926", + "$id": "2930", "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": "2927", + "$id": "2931", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33126,7 +33172,7 @@ ] }, "assistant": { - "$id": "2928", + "$id": "2932", "kind": "model", "name": "ChatCompletionRequestAssistantMessage", "namespace": "OpenAI", @@ -33136,44 +33182,44 @@ "discriminatorValue": "assistant", "decorators": [], "baseModel": { - "$ref": "2858" + "$ref": "2862" }, "properties": [ { - "$id": "2929", + "$id": "2933", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the assistant message. Required unless `tool_calls` or `function_call` is specified.", "type": { - "$id": "2930", + "$id": "2934", "kind": "nullable", "type": { - "$id": "2931", + "$id": "2935", "kind": "union", "name": "ChatCompletionRequestAssistantMessageContent", "variantTypes": [ { - "$id": "2932", + "$id": "2936", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "2933", + "$id": "2937", "kind": "array", "name": "ArrayChatCompletionRequestAssistantMessageContentPart", "valueType": { - "$id": "2934", + "$id": "2938", "kind": "union", "name": "ChatCompletionRequestAssistantMessageContentPart", "variantTypes": [ { - "$ref": "2867" + "$ref": "2871" }, { - "$ref": "2878" + "$ref": "2882" } ], "namespace": "OpenAI", @@ -33202,16 +33248,16 @@ "isHttpMetadata": false }, { - "$id": "2935", + "$id": "2939", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "The refusal message by the assistant.", "type": { - "$id": "2936", + "$id": "2940", "kind": "nullable", "type": { - "$id": "2937", + "$id": "2941", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33233,13 +33279,13 @@ "isHttpMetadata": false }, { - "$id": "2938", + "$id": "2942", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the messages author, in this case `assistant`.", "type": { - "$id": "2939", + "$id": "2943", "kind": "enumvalue", "name": "assistant", "value": "assistant", @@ -33265,13 +33311,13 @@ "isHttpMetadata": false }, { - "$id": "2940", + "$id": "2944", "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": "2941", + "$id": "2945", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33291,16 +33337,16 @@ "isHttpMetadata": false }, { - "$id": "2942", + "$id": "2946", "kind": "property", "name": "audio", "serializedName": "audio", "doc": "Data about a previous audio response from the model.\n[Learn more](/docs/guides/audio).", "type": { - "$id": "2943", + "$id": "2947", "kind": "nullable", "type": { - "$id": "2944", + "$id": "2948", "kind": "model", "name": "ChatCompletionRequestAssistantMessageAudio1", "namespace": "OpenAI", @@ -33309,13 +33355,13 @@ "decorators": [], "properties": [ { - "$id": "2945", + "$id": "2949", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for a previous audio response from the model.", "type": { - "$id": "2946", + "$id": "2950", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33352,12 +33398,12 @@ "isHttpMetadata": false }, { - "$id": "2947", + "$id": "2951", "kind": "property", "name": "tool_calls", "serializedName": "tool_calls", "type": { - "$ref": "2736" + "$ref": "2740" }, "optional": true, "readOnly": false, @@ -33373,16 +33419,16 @@ "isHttpMetadata": false }, { - "$id": "2948", + "$id": "2952", "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": "2949", + "$id": "2953", "kind": "nullable", "type": { - "$id": "2950", + "$id": "2954", "kind": "model", "name": "ChatCompletionRequestAssistantMessageFunctionCall1", "namespace": "OpenAI", @@ -33391,12 +33437,12 @@ "decorators": [], "properties": [ { - "$id": "2951", + "$id": "2955", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "2952", + "$id": "2956", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33416,12 +33462,12 @@ "isHttpMetadata": false }, { - "$id": "2953", + "$id": "2957", "kind": "property", "name": "arguments", "serializedName": "arguments", "type": { - "$id": "2954", + "$id": "2958", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33460,7 +33506,7 @@ ] }, "tool": { - "$id": "2955", + "$id": "2959", "kind": "model", "name": "ChatCompletionRequestToolMessage", "namespace": "OpenAI", @@ -33469,17 +33515,17 @@ "discriminatorValue": "tool", "decorators": [], "baseModel": { - "$ref": "2858" + "$ref": "2862" }, "properties": [ { - "$id": "2956", + "$id": "2960", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the messages author, in this case `tool`.", "type": { - "$id": "2957", + "$id": "2961", "kind": "enumvalue", "name": "tool", "value": "tool", @@ -33505,34 +33551,34 @@ "isHttpMetadata": false }, { - "$id": "2958", + "$id": "2962", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the tool message.", "type": { - "$id": "2959", + "$id": "2963", "kind": "union", "name": "ChatCompletionRequestToolMessageContent", "variantTypes": [ { - "$id": "2960", + "$id": "2964", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "2961", + "$id": "2965", "kind": "array", "name": "ArrayChatCompletionRequestToolMessageContentPart", "valueType": { - "$id": "2962", + "$id": "2966", "kind": "union", "name": "ChatCompletionRequestToolMessageContentPart", "variantTypes": [ { - "$ref": "2867" + "$ref": "2871" } ], "namespace": "OpenAI", @@ -33559,13 +33605,13 @@ "isHttpMetadata": false }, { - "$id": "2963", + "$id": "2967", "kind": "property", "name": "tool_call_id", "serializedName": "tool_call_id", "doc": "Tool call that this message is responding to.", "type": { - "$id": "2964", + "$id": "2968", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33587,7 +33633,7 @@ ] }, "function": { - "$id": "2965", + "$id": "2969", "kind": "model", "name": "ChatCompletionRequestFunctionMessage", "namespace": "OpenAI", @@ -33597,17 +33643,17 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "2858" + "$ref": "2862" }, "properties": [ { - "$id": "2966", + "$id": "2970", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the messages author, in this case `function`.", "type": { - "$id": "2967", + "$id": "2971", "kind": "enumvalue", "name": "function", "value": "function", @@ -33633,16 +33679,16 @@ "isHttpMetadata": false }, { - "$id": "2968", + "$id": "2972", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the function message.", "type": { - "$id": "2969", + "$id": "2973", "kind": "nullable", "type": { - "$id": "2970", + "$id": "2974", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33664,13 +33710,13 @@ "isHttpMetadata": false }, { - "$id": "2971", + "$id": "2975", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "2972", + "$id": "2976", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33710,7 +33756,7 @@ "isHttpMetadata": false }, { - "$id": "2973", + "$id": "2977", "kind": "property", "name": "model", "serializedName": "model", @@ -33732,15 +33778,15 @@ "isHttpMetadata": false }, { - "$id": "2974", + "$id": "2978", "kind": "property", "name": "modalities", "serializedName": "modalities", "type": { - "$id": "2975", + "$id": "2979", "kind": "nullable", "type": { - "$id": "2976", + "$id": "2980", "kind": "array", "name": "ResponseModalities", "valueType": { @@ -33765,12 +33811,12 @@ "isHttpMetadata": false }, { - "$id": "2977", + "$id": "2981", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", "type": { - "$id": "2978", + "$id": "2982", "kind": "nullable", "type": { "$ref": "53" @@ -33791,16 +33837,16 @@ "isHttpMetadata": false }, { - "$id": "2979", + "$id": "2983", "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": "2980", + "$id": "2984", "kind": "nullable", "type": { - "$id": "2981", + "$id": "2985", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -33822,16 +33868,16 @@ "isHttpMetadata": false }, { - "$id": "2982", + "$id": "2986", "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": "2983", + "$id": "2987", "kind": "nullable", "type": { - "$id": "2984", + "$id": "2988", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -33853,16 +33899,16 @@ "isHttpMetadata": false }, { - "$id": "2985", + "$id": "2989", "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": "2986", + "$id": "2990", "kind": "nullable", "type": { - "$id": "2987", + "$id": "2991", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -33884,13 +33930,13 @@ "isHttpMetadata": false }, { - "$id": "2988", + "$id": "2992", "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": "2989", + "$id": "2993", "kind": "model", "name": "CreateChatCompletionRequestWebSearchOptions", "namespace": "OpenAI", @@ -33899,16 +33945,16 @@ "decorators": [], "properties": [ { - "$id": "2990", + "$id": "2994", "kind": "property", "name": "user_location", "serializedName": "user_location", "doc": "Approximate location parameters for the search.", "type": { - "$id": "2991", + "$id": "2995", "kind": "nullable", "type": { - "$id": "2992", + "$id": "2996", "kind": "model", "name": "CreateChatCompletionRequestWebSearchOptionsUserLocation1", "namespace": "OpenAI", @@ -33917,13 +33963,13 @@ "decorators": [], "properties": [ { - "$id": "2993", + "$id": "2997", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of location approximation. Always `approximate`.", "type": { - "$ref": "1491" + "$ref": "1495" }, "optional": false, "readOnly": false, @@ -33939,12 +33985,12 @@ "isHttpMetadata": false }, { - "$id": "2994", + "$id": "2998", "kind": "property", "name": "approximate", "serializedName": "approximate", "type": { - "$id": "2995", + "$id": "2999", "kind": "model", "name": "WebSearchLocation", "namespace": "OpenAI", @@ -33954,13 +34000,13 @@ "decorators": [], "properties": [ { - "$id": "2996", + "$id": "3000", "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": "2997", + "$id": "3001", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33980,13 +34026,13 @@ "isHttpMetadata": false }, { - "$id": "2998", + "$id": "3002", "kind": "property", "name": "region", "serializedName": "region", "doc": "Free text input for the region of the user, e.g. `California`.", "type": { - "$id": "2999", + "$id": "3003", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34006,13 +34052,13 @@ "isHttpMetadata": false }, { - "$id": "3000", + "$id": "3004", "kind": "property", "name": "city", "serializedName": "city", "doc": "Free text input for the city of the user, e.g. `San Francisco`.", "type": { - "$id": "3001", + "$id": "3005", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34032,13 +34078,13 @@ "isHttpMetadata": false }, { - "$id": "3002", + "$id": "3006", "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": "3003", + "$id": "3007", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34090,7 +34136,7 @@ "isHttpMetadata": false }, { - "$id": "3004", + "$id": "3008", "kind": "property", "name": "search_context_size", "serializedName": "search_context_size", @@ -34126,16 +34172,16 @@ "isHttpMetadata": false }, { - "$id": "3005", + "$id": "3009", "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": "3006", + "$id": "3010", "kind": "nullable", "type": { - "$id": "3007", + "$id": "3011", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -34157,13 +34203,13 @@ "isHttpMetadata": false }, { - "$id": "3008", + "$id": "3012", "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": "2359" + "$ref": "2363" }, "optional": true, "readOnly": false, @@ -34179,16 +34225,16 @@ "isHttpMetadata": false }, { - "$id": "3009", + "$id": "3013", "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": "3010", + "$id": "3014", "kind": "nullable", "type": { - "$id": "3011", + "$id": "3015", "kind": "model", "name": "CreateChatCompletionRequestAudio1", "namespace": "OpenAI", @@ -34197,7 +34243,7 @@ "decorators": [], "properties": [ { - "$id": "3012", + "$id": "3016", "kind": "property", "name": "voice", "serializedName": "voice", @@ -34219,7 +34265,7 @@ "isHttpMetadata": false }, { - "$id": "3013", + "$id": "3017", "kind": "property", "name": "format", "serializedName": "format", @@ -34258,16 +34304,16 @@ "isHttpMetadata": false }, { - "$id": "3014", + "$id": "3018", "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": "3015", + "$id": "3019", "kind": "nullable", "type": { - "$id": "3016", + "$id": "3020", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -34289,16 +34335,16 @@ "isHttpMetadata": false }, { - "$id": "3017", + "$id": "3021", "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": "3018", + "$id": "3022", "kind": "nullable", "type": { - "$id": "3019", + "$id": "3023", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -34320,27 +34366,27 @@ "isHttpMetadata": false }, { - "$id": "3020", + "$id": "3024", "kind": "property", "name": "stop", "serializedName": "stop", "type": { - "$id": "3021", + "$id": "3025", "kind": "nullable", "type": { - "$id": "3022", + "$id": "3026", "kind": "union", "name": "StopConfiguration", "variantTypes": [ { - "$id": "3023", + "$id": "3027", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$ref": "2339" + "$ref": "2343" } ], "namespace": "OpenAI", @@ -34362,26 +34408,26 @@ "isHttpMetadata": false }, { - "$id": "3024", + "$id": "3028", "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": "3025", + "$id": "3029", "kind": "nullable", "type": { - "$id": "3026", + "$id": "3030", "kind": "dict", "keyType": { - "$id": "3027", + "$id": "3031", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, "valueType": { - "$id": "3028", + "$id": "3032", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -34405,16 +34451,16 @@ "isHttpMetadata": false }, { - "$id": "3029", + "$id": "3033", "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": "3030", + "$id": "3034", "kind": "nullable", "type": { - "$id": "3031", + "$id": "3035", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -34436,16 +34482,16 @@ "isHttpMetadata": false }, { - "$id": "3032", + "$id": "3036", "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": "3033", + "$id": "3037", "kind": "nullable", "type": { - "$id": "3034", + "$id": "3038", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -34467,16 +34513,16 @@ "isHttpMetadata": false }, { - "$id": "3035", + "$id": "3039", "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": "3036", + "$id": "3040", "kind": "nullable", "type": { - "$id": "3037", + "$id": "3041", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -34498,16 +34544,16 @@ "isHttpMetadata": false }, { - "$id": "3038", + "$id": "3042", "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": "3039", + "$id": "3043", "kind": "nullable", "type": { - "$id": "3040", + "$id": "3044", "kind": "model", "name": "ChatOutputPrediction", "namespace": "OpenAI", @@ -34516,7 +34562,7 @@ "doc": "Base representation of predicted output from a model.", "decorators": [], "discriminatorProperty": { - "$id": "3041", + "$id": "3045", "kind": "property", "name": "type", "serializedName": "type", @@ -34538,12 +34584,12 @@ }, "properties": [ { - "$ref": "3041" + "$ref": "3045" } ], "discriminatedSubtypes": { "content": { - "$id": "3042", + "$id": "3046", "kind": "model", "name": "ChatOutputPredictionContent", "namespace": "OpenAI", @@ -34553,11 +34599,11 @@ "discriminatorValue": "content", "decorators": [], "baseModel": { - "$ref": "3040" + "$ref": "3044" }, "properties": [ { - "$id": "3043", + "$id": "3047", "kind": "property", "name": "type", "serializedName": "type", @@ -34579,25 +34625,25 @@ "isHttpMetadata": false }, { - "$id": "3044", + "$id": "3048", "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": "3045", + "$id": "3049", "kind": "union", "name": "ChatOutputPredictionContentContent", "variantTypes": [ { - "$id": "3046", + "$id": "3050", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$ref": "2913" + "$ref": "2917" } ], "namespace": "OpenAI", @@ -34636,16 +34682,16 @@ "isHttpMetadata": false }, { - "$id": "3047", + "$id": "3051", "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": "3048", + "$id": "3052", "kind": "nullable", "type": { - "$id": "3049", + "$id": "3053", "kind": "int64", "name": "int64", "crossLanguageDefinitionId": "TypeSpec.int64", @@ -34667,15 +34713,15 @@ "isHttpMetadata": false }, { - "$id": "3050", + "$id": "3054", "kind": "property", "name": "stream_options", "serializedName": "stream_options", "type": { - "$id": "3051", + "$id": "3055", "kind": "nullable", "type": { - "$id": "3052", + "$id": "3056", "kind": "model", "name": "ChatCompletionStreamOptions", "namespace": "OpenAI", @@ -34685,13 +34731,13 @@ "decorators": [], "properties": [ { - "$id": "3053", + "$id": "3057", "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": "3054", + "$id": "3058", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -34728,17 +34774,17 @@ "isHttpMetadata": false }, { - "$id": "3055", + "$id": "3059", "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": "3056", + "$id": "3060", "kind": "array", "name": "ArrayChatCompletionTool", "valueType": { - "$id": "3057", + "$id": "3061", "kind": "model", "name": "ChatCompletionTool", "namespace": "OpenAI", @@ -34747,13 +34793,13 @@ "decorators": [], "properties": [ { - "$id": "3058", + "$id": "3062", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the tool. Currently, only `function` is supported.", "type": { - "$id": "3059", + "$id": "3063", "kind": "enumvalue", "name": "function", "value": "function", @@ -34779,12 +34825,12 @@ "isHttpMetadata": false }, { - "$id": "3060", + "$id": "3064", "kind": "property", "name": "function", "serializedName": "function", "type": { - "$ref": "2323" + "$ref": "2327" }, "optional": false, "readOnly": false, @@ -34818,12 +34864,12 @@ "isHttpMetadata": false }, { - "$id": "3061", + "$id": "3065", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "3062", + "$id": "3066", "kind": "union", "name": "ChatCompletionToolChoiceOption", "variantTypes": [ @@ -34831,7 +34877,7 @@ "$ref": "255" }, { - "$id": "3063", + "$id": "3067", "kind": "model", "name": "ChatCompletionNamedToolChoice", "namespace": "OpenAI", @@ -34841,13 +34887,13 @@ "decorators": [], "properties": [ { - "$id": "3064", + "$id": "3068", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the tool. Currently, only `function` is supported.", "type": { - "$ref": "1493" + "$ref": "1497" }, "optional": false, "readOnly": false, @@ -34863,12 +34909,12 @@ "isHttpMetadata": false }, { - "$id": "3065", + "$id": "3069", "kind": "property", "name": "function", "serializedName": "function", "type": { - "$id": "3066", + "$id": "3070", "kind": "model", "name": "ChatCompletionNamedToolChoiceFunction", "namespace": "OpenAI", @@ -34877,13 +34923,13 @@ "decorators": [], "properties": [ { - "$id": "3067", + "$id": "3071", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "3068", + "$id": "3072", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34937,17 +34983,17 @@ "isHttpMetadata": false }, { - "$id": "3069", + "$id": "3073", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "type": { - "$id": "3070", + "$id": "3074", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "3071", + "$id": "3075", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -34969,24 +35015,24 @@ "isHttpMetadata": false }, { - "$id": "3072", + "$id": "3076", "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": "3073", + "$id": "3077", "kind": "union", "name": "CreateChatCompletionRequestFunctionCall", "variantTypes": [ { - "$ref": "1495" + "$ref": "1499" }, { - "$ref": "1497" + "$ref": "1501" }, { - "$id": "3074", + "$id": "3078", "kind": "model", "name": "ChatCompletionFunctionCallOption", "namespace": "OpenAI", @@ -34996,13 +35042,13 @@ "decorators": [], "properties": [ { - "$id": "3075", + "$id": "3079", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "3076", + "$id": "3080", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35041,17 +35087,17 @@ "isHttpMetadata": false }, { - "$id": "3077", + "$id": "3081", "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": "3078", + "$id": "3082", "kind": "array", "name": "ArrayChatCompletionFunctions", "valueType": { - "$id": "3079", + "$id": "3083", "kind": "model", "name": "ChatCompletionFunctions", "namespace": "OpenAI", @@ -35061,13 +35107,13 @@ "decorators": [], "properties": [ { - "$id": "3080", + "$id": "3084", "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": "3081", + "$id": "3085", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35087,13 +35133,13 @@ "isHttpMetadata": false }, { - "$id": "3082", + "$id": "3086", "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": "3083", + "$id": "3087", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35113,13 +35159,13 @@ "isHttpMetadata": false }, { - "$id": "3084", + "$id": "3088", "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": "3085", + "$id": "3089", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -35159,19 +35205,16 @@ ] }, { - "$ref": "2858" - }, - { - "$ref": "2865" + "$ref": "2862" }, { - "$ref": "2867" + "$ref": "2869" }, { "$ref": "2871" }, { - "$ref": "2874" + "$ref": "2875" }, { "$ref": "2878" @@ -35180,76 +35223,79 @@ "$ref": "2882" }, { - "$ref": "2885" + "$ref": "2886" }, { - "$ref": "2892" + "$ref": "2889" }, { - "$ref": "2895" + "$ref": "2896" }, { "$ref": "2899" }, { - "$ref": "2909" + "$ref": "2903" + }, + { + "$ref": "2913" }, { - "$ref": "2918" + "$ref": "2922" }, { - "$ref": "2928" + "$ref": "2932" }, { - "$ref": "2944" + "$ref": "2948" }, { - "$ref": "2950" + "$ref": "2954" }, { - "$ref": "2955" + "$ref": "2959" }, { - "$ref": "2965" + "$ref": "2969" }, { - "$ref": "2989" + "$ref": "2993" }, { - "$ref": "2992" + "$ref": "2996" }, { - "$ref": "2995" + "$ref": "2999" }, { - "$ref": "3011" + "$ref": "3015" }, { - "$ref": "3040" + "$ref": "3044" }, { - "$ref": "3042" + "$ref": "3046" }, { - "$ref": "3052" + "$ref": "3056" }, { - "$ref": "3057" + "$ref": "3061" }, { - "$ref": "3063" + "$ref": "3067" }, { - "$ref": "3066" + "$ref": "3070" }, { - "$ref": "3074" + "$ref": "3078" }, { - "$ref": "3079" + "$ref": "3083" }, { - "$id": "3086", + "$id": "3090", "kind": "model", "name": "CreateChatCompletionStreamResponse", "namespace": "OpenAI", @@ -35260,12 +35306,12 @@ "decorators": [], "properties": [ { - "$id": "3087", + "$id": "3091", "kind": "property", "name": "id", "doc": "A unique identifier for the chat completion. Each chunk has the same ID.", "type": { - "$id": "3088", + "$id": "3092", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35281,16 +35327,16 @@ "isHttpMetadata": false }, { - "$id": "3089", + "$id": "3093", "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": "3090", + "$id": "3094", "kind": "array", "name": "Array12", "valueType": { - "$id": "3091", + "$id": "3095", "kind": "model", "name": "CreateChatCompletionStreamResponseChoice", "namespace": "OpenAI", @@ -35299,11 +35345,11 @@ "decorators": [], "properties": [ { - "$id": "3092", + "$id": "3096", "kind": "property", "name": "delta", "type": { - "$id": "3093", + "$id": "3097", "kind": "model", "name": "ChatCompletionStreamResponseDelta", "namespace": "OpenAI", @@ -35313,12 +35359,12 @@ "decorators": [], "properties": [ { - "$id": "3094", + "$id": "3098", "kind": "property", "name": "audio", "doc": "Response audio associated with the streaming chat delta payload.", "type": { - "$id": "3095", + "$id": "3099", "kind": "model", "name": "ChatCompletionMessageAudioChunk", "namespace": "OpenAI", @@ -35327,11 +35373,11 @@ "decorators": [], "properties": [ { - "$id": "3096", + "$id": "3100", "kind": "property", "name": "id", "type": { - "$id": "3097", + "$id": "3101", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35347,11 +35393,11 @@ "isHttpMetadata": false }, { - "$id": "3098", + "$id": "3102", "kind": "property", "name": "transcript", "type": { - "$id": "3099", + "$id": "3103", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35367,11 +35413,11 @@ "isHttpMetadata": false }, { - "$id": "3100", + "$id": "3104", "kind": "property", "name": "data", "type": { - "$id": "3101", + "$id": "3105", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -35388,16 +35434,16 @@ "isHttpMetadata": false }, { - "$id": "3102", + "$id": "3106", "kind": "property", "name": "expires_at", "type": { - "$id": "3103", + "$id": "3107", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3104", + "$id": "3108", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -35427,15 +35473,15 @@ "isHttpMetadata": false }, { - "$id": "3105", + "$id": "3109", "kind": "property", "name": "content", "doc": "The contents of the chunk message.", "type": { - "$id": "3106", + "$id": "3110", "kind": "nullable", "type": { - "$id": "3107", + "$id": "3111", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35453,12 +35499,12 @@ "isHttpMetadata": false }, { - "$id": "3108", + "$id": "3112", "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": "3109", + "$id": "3113", "kind": "model", "name": "ChatCompletionStreamResponseDeltaFunctionCall", "namespace": "OpenAI", @@ -35467,11 +35513,11 @@ "decorators": [], "properties": [ { - "$id": "3110", + "$id": "3114", "kind": "property", "name": "name", "type": { - "$id": "3111", + "$id": "3115", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35487,11 +35533,11 @@ "isHttpMetadata": false }, { - "$id": "3112", + "$id": "3116", "kind": "property", "name": "arguments", "type": { - "$id": "3113", + "$id": "3117", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35518,15 +35564,15 @@ "isHttpMetadata": false }, { - "$id": "3114", + "$id": "3118", "kind": "property", "name": "tool_calls", "type": { - "$id": "3115", + "$id": "3119", "kind": "array", "name": "ArrayChatCompletionMessageToolCallChunk", "valueType": { - "$id": "3116", + "$id": "3120", "kind": "model", "name": "ChatCompletionMessageToolCallChunk", "namespace": "OpenAI", @@ -35535,11 +35581,11 @@ "decorators": [], "properties": [ { - "$id": "3117", + "$id": "3121", "kind": "property", "name": "index", "type": { - "$id": "3118", + "$id": "3122", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -35555,12 +35601,12 @@ "isHttpMetadata": false }, { - "$id": "3119", + "$id": "3123", "kind": "property", "name": "id", "doc": "The ID of the tool call.", "type": { - "$id": "3120", + "$id": "3124", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35576,12 +35622,12 @@ "isHttpMetadata": false }, { - "$id": "3121", + "$id": "3125", "kind": "property", "name": "type", "doc": "The type of the tool. Currently, only `function` is supported.", "type": { - "$ref": "1499" + "$ref": "1503" }, "optional": true, "readOnly": false, @@ -35593,11 +35639,11 @@ "isHttpMetadata": false }, { - "$id": "3122", + "$id": "3126", "kind": "property", "name": "function", "type": { - "$id": "3123", + "$id": "3127", "kind": "model", "name": "ChatCompletionMessageToolCallChunkFunction", "namespace": "OpenAI", @@ -35606,12 +35652,12 @@ "decorators": [], "properties": [ { - "$id": "3124", + "$id": "3128", "kind": "property", "name": "name", "doc": "The name of the function to call.", "type": { - "$id": "3125", + "$id": "3129", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35627,12 +35673,12 @@ "isHttpMetadata": false }, { - "$id": "3126", + "$id": "3130", "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": "3127", + "$id": "3131", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35673,7 +35719,7 @@ "isHttpMetadata": false }, { - "$id": "3128", + "$id": "3132", "kind": "property", "name": "role", "doc": "The role of the author of this message.", @@ -35690,15 +35736,15 @@ "isHttpMetadata": false }, { - "$id": "3129", + "$id": "3133", "kind": "property", "name": "refusal", "doc": "The refusal message generated by the model.", "type": { - "$id": "3130", + "$id": "3134", "kind": "nullable", "type": { - "$id": "3131", + "$id": "3135", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35727,15 +35773,15 @@ "isHttpMetadata": false }, { - "$id": "3132", + "$id": "3136", "kind": "property", "name": "logprobs", "doc": "Log probability information for the choice.", "type": { - "$id": "3133", + "$id": "3137", "kind": "nullable", "type": { - "$id": "3134", + "$id": "3138", "kind": "model", "name": "CreateChatCompletionStreamResponseChoiceLogprobs1", "namespace": "OpenAI", @@ -35744,15 +35790,15 @@ "decorators": [], "properties": [ { - "$id": "3135", + "$id": "3139", "kind": "property", "name": "content", "doc": "A list of message content tokens with log probability information.", "type": { - "$id": "3136", + "$id": "3140", "kind": "nullable", "type": { - "$ref": "2787" + "$ref": "2791" }, "namespace": "OpenAI" }, @@ -35766,15 +35812,15 @@ "isHttpMetadata": false }, { - "$id": "3137", + "$id": "3141", "kind": "property", "name": "refusal", "doc": "A list of message refusal tokens with log probability information.", "type": { - "$id": "3138", + "$id": "3142", "kind": "nullable", "type": { - "$ref": "2787" + "$ref": "2791" }, "namespace": "OpenAI" }, @@ -35801,12 +35847,12 @@ "isHttpMetadata": false }, { - "$id": "3139", + "$id": "3143", "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": "3140", + "$id": "3144", "kind": "nullable", "type": { "$ref": "260" @@ -35823,12 +35869,12 @@ "isHttpMetadata": false }, { - "$id": "3141", + "$id": "3145", "kind": "property", "name": "index", "doc": "The index of the choice in the list of choices.", "type": { - "$id": "3142", + "$id": "3146", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -35858,17 +35904,17 @@ "isHttpMetadata": false }, { - "$id": "3143", + "$id": "3147", "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": "3144", + "$id": "3148", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3145", + "$id": "3149", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -35887,12 +35933,12 @@ "isHttpMetadata": false }, { - "$id": "3146", + "$id": "3150", "kind": "property", "name": "model", "doc": "The model to generate the completion.", "type": { - "$id": "3147", + "$id": "3151", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35908,7 +35954,7 @@ "isHttpMetadata": false }, { - "$id": "3148", + "$id": "3152", "kind": "property", "name": "service_tier", "type": { @@ -35924,12 +35970,12 @@ "isHttpMetadata": false }, { - "$id": "3149", + "$id": "3153", "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": "3150", + "$id": "3154", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35945,12 +35991,12 @@ "isHttpMetadata": false }, { - "$id": "3151", + "$id": "3155", "kind": "property", "name": "object", "doc": "The object type, which is always `chat.completion.chunk`.", "type": { - "$ref": "1501" + "$ref": "1505" }, "optional": false, "readOnly": false, @@ -35962,15 +36008,15 @@ "isHttpMetadata": false }, { - "$id": "3152", + "$id": "3156", "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": "3153", + "$id": "3157", "kind": "nullable", "type": { - "$ref": "2816" + "$ref": "2820" }, "namespace": "OpenAI" }, @@ -35986,28 +36032,28 @@ ] }, { - "$ref": "3091" + "$ref": "3095" }, { - "$ref": "3093" + "$ref": "3097" }, { - "$ref": "3095" + "$ref": "3099" }, { - "$ref": "3109" + "$ref": "3113" }, { - "$ref": "3116" + "$ref": "3120" }, { - "$ref": "3123" + "$ref": "3127" }, { - "$ref": "3134" + "$ref": "3138" }, { - "$id": "3154", + "$id": "3158", "kind": "model", "name": "UpdateChatCompletionRequest", "namespace": "", @@ -36016,13 +36062,13 @@ "decorators": [], "properties": [ { - "$id": "3155", + "$id": "3159", "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": "2346" + "$ref": "2350" }, "optional": false, "readOnly": false, @@ -36040,7 +36086,7 @@ ] }, { - "$id": "3156", + "$id": "3160", "kind": "model", "name": "ChatCompletionDeleted", "namespace": "OpenAI", @@ -36049,13 +36095,13 @@ "decorators": [], "properties": [ { - "$id": "3157", + "$id": "3161", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of object being deleted.", "type": { - "$ref": "1503" + "$ref": "1507" }, "optional": false, "readOnly": false, @@ -36071,13 +36117,13 @@ "isHttpMetadata": false }, { - "$id": "3158", + "$id": "3162", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the chat completion that was deleted.", "type": { - "$id": "3159", + "$id": "3163", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36097,13 +36143,13 @@ "isHttpMetadata": false }, { - "$id": "3160", + "$id": "3164", "kind": "property", "name": "deleted", "serializedName": "deleted", "doc": "Whether the chat completion was deleted.", "type": { - "$id": "3161", + "$id": "3165", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -36125,7 +36171,7 @@ ] }, { - "$id": "3162", + "$id": "3166", "kind": "model", "name": "ChatCompletionMessageList", "namespace": "OpenAI", @@ -36135,13 +36181,13 @@ "decorators": [], "properties": [ { - "$id": "3163", + "$id": "3167", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of this object. It is always set to \"list\".", "type": { - "$ref": "1505" + "$ref": "1509" }, "optional": false, "readOnly": false, @@ -36157,17 +36203,17 @@ "isHttpMetadata": false }, { - "$id": "3164", + "$id": "3168", "kind": "property", "name": "data", "serializedName": "data", "doc": "An array of chat completion message objects.", "type": { - "$id": "3165", + "$id": "3169", "kind": "array", "name": "Array13", "valueType": { - "$id": "3166", + "$id": "3170", "kind": "model", "name": "ChatCompletionMessageListDatum", "namespace": "OpenAI", @@ -36176,13 +36222,13 @@ "decorators": [], "properties": [ { - "$id": "3167", + "$id": "3171", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the message.", "type": { - "$ref": "2730" + "$ref": "2734" }, "optional": false, "readOnly": false, @@ -36198,13 +36244,13 @@ "isHttpMetadata": false }, { - "$id": "3168", + "$id": "3172", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "The refusal message generated by the model.", "type": { - "$ref": "2733" + "$ref": "2737" }, "optional": false, "readOnly": false, @@ -36220,12 +36266,12 @@ "isHttpMetadata": false }, { - "$id": "3169", + "$id": "3173", "kind": "property", "name": "tool_calls", "serializedName": "tool_calls", "type": { - "$ref": "2736" + "$ref": "2740" }, "optional": true, "readOnly": true, @@ -36241,13 +36287,13 @@ "isHttpMetadata": false }, { - "$id": "3170", + "$id": "3174", "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": "2749" + "$ref": "2753" }, "optional": true, "readOnly": true, @@ -36263,13 +36309,13 @@ "isHttpMetadata": false }, { - "$id": "3171", + "$id": "3175", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the author of this message.", "type": { - "$id": "3172", + "$id": "3176", "kind": "enumvalue", "name": "assistant", "value": "assistant", @@ -36295,13 +36341,13 @@ "isHttpMetadata": false }, { - "$id": "3173", + "$id": "3177", "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": "2765" + "$ref": "2769" }, "optional": true, "readOnly": false, @@ -36317,13 +36363,13 @@ "isHttpMetadata": false }, { - "$id": "3174", + "$id": "3178", "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": "2771" + "$ref": "2775" }, "optional": true, "readOnly": false, @@ -36339,13 +36385,13 @@ "isHttpMetadata": false }, { - "$id": "3175", + "$id": "3179", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier of the chat message.", "type": { - "$id": "3176", + "$id": "3180", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36383,13 +36429,13 @@ "isHttpMetadata": false }, { - "$id": "3177", + "$id": "3181", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The identifier of the first chat message in the data array.", "type": { - "$id": "3178", + "$id": "3182", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36409,13 +36455,13 @@ "isHttpMetadata": false }, { - "$id": "3179", + "$id": "3183", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The identifier of the last chat message in the data array.", "type": { - "$id": "3180", + "$id": "3184", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36435,13 +36481,13 @@ "isHttpMetadata": false }, { - "$id": "3181", + "$id": "3185", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates whether there are more chat messages available.", "type": { - "$id": "3182", + "$id": "3186", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -36463,10 +36509,10 @@ ] }, { - "$ref": "3166" + "$ref": "3170" }, { - "$id": "3183", + "$id": "3187", "kind": "model", "name": "ContainerListResource", "namespace": "OpenAI", @@ -36475,13 +36521,13 @@ "decorators": [], "properties": [ { - "$id": "3184", + "$id": "3188", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of object returned, must be 'list'.", "type": { - "$ref": "1507" + "$ref": "1511" }, "optional": false, "readOnly": false, @@ -36497,17 +36543,17 @@ "isHttpMetadata": false }, { - "$id": "3185", + "$id": "3189", "kind": "property", "name": "data", "serializedName": "data", "doc": "A list of containers.", "type": { - "$id": "3186", + "$id": "3190", "kind": "array", "name": "ArrayContainerResource", "valueType": { - "$id": "3187", + "$id": "3191", "kind": "model", "name": "ContainerResource", "namespace": "OpenAI", @@ -36516,13 +36562,13 @@ "decorators": [], "properties": [ { - "$id": "3188", + "$id": "3192", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for the container.", "type": { - "$id": "3189", + "$id": "3193", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36542,13 +36588,13 @@ "isHttpMetadata": false }, { - "$id": "3190", + "$id": "3194", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of this object.", "type": { - "$id": "3191", + "$id": "3195", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36568,13 +36614,13 @@ "isHttpMetadata": false }, { - "$id": "3192", + "$id": "3196", "kind": "property", "name": "name", "serializedName": "name", "doc": "Name of the container.", "type": { - "$id": "3193", + "$id": "3197", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36594,18 +36640,18 @@ "isHttpMetadata": false }, { - "$id": "3194", + "$id": "3198", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) when the container was created.", "type": { - "$id": "3195", + "$id": "3199", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3196", + "$id": "3200", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -36628,13 +36674,13 @@ "isHttpMetadata": false }, { - "$id": "3197", + "$id": "3201", "kind": "property", "name": "status", "serializedName": "status", "doc": "Status of the container (e.g., active, deleted).", "type": { - "$id": "3198", + "$id": "3202", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36654,13 +36700,13 @@ "isHttpMetadata": false }, { - "$id": "3199", + "$id": "3203", "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": "3200", + "$id": "3204", "kind": "model", "name": "ContainerResourceExpiresAfter", "namespace": "OpenAI", @@ -36669,13 +36715,13 @@ "decorators": [], "properties": [ { - "$id": "3201", + "$id": "3205", "kind": "property", "name": "anchor", "serializedName": "anchor", "doc": "The reference point for the expiration.", "type": { - "$ref": "1509" + "$ref": "1513" }, "optional": true, "readOnly": false, @@ -36691,13 +36737,13 @@ "isHttpMetadata": false }, { - "$id": "3202", + "$id": "3206", "kind": "property", "name": "minutes", "serializedName": "minutes", "doc": "The number of minutes after the anchor before the container expires.", "type": { - "$id": "3203", + "$id": "3207", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -36750,13 +36796,13 @@ "isHttpMetadata": false }, { - "$id": "3204", + "$id": "3208", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The ID of the first container in the list.", "type": { - "$id": "3205", + "$id": "3209", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36776,13 +36822,13 @@ "isHttpMetadata": false }, { - "$id": "3206", + "$id": "3210", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The ID of the last container in the list.", "type": { - "$id": "3207", + "$id": "3211", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36802,13 +36848,13 @@ "isHttpMetadata": false }, { - "$id": "3208", + "$id": "3212", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Whether there are more containers available.", "type": { - "$id": "3209", + "$id": "3213", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -36830,13 +36876,13 @@ ] }, { - "$ref": "3187" + "$ref": "3191" }, { - "$ref": "3200" + "$ref": "3204" }, { - "$id": "3210", + "$id": "3214", "kind": "model", "name": "CreateContainerBody", "namespace": "OpenAI", @@ -36845,13 +36891,13 @@ "decorators": [], "properties": [ { - "$id": "3211", + "$id": "3215", "kind": "property", "name": "name", "serializedName": "name", "doc": "Name of the container to create.", "type": { - "$id": "3212", + "$id": "3216", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36871,13 +36917,13 @@ "isHttpMetadata": false }, { - "$id": "3213", + "$id": "3217", "kind": "property", "name": "file_ids", "serializedName": "file_ids", "doc": "IDs of files to copy to the container.", "type": { - "$ref": "2339" + "$ref": "2343" }, "optional": true, "readOnly": false, @@ -36893,13 +36939,13 @@ "isHttpMetadata": false }, { - "$id": "3214", + "$id": "3218", "kind": "property", "name": "expires_after", "serializedName": "expires_after", "doc": "Container expiration time in seconds relative to the 'anchor' time.", "type": { - "$id": "3215", + "$id": "3219", "kind": "model", "name": "CreateContainerBodyExpiresAfter", "namespace": "OpenAI", @@ -36908,13 +36954,13 @@ "decorators": [], "properties": [ { - "$id": "3216", + "$id": "3220", "kind": "property", "name": "anchor", "serializedName": "anchor", "doc": "Time anchor for the expiration time. Currently only 'last_active_at' is supported.", "type": { - "$ref": "1511" + "$ref": "1515" }, "optional": false, "readOnly": false, @@ -36930,12 +36976,12 @@ "isHttpMetadata": false }, { - "$id": "3217", + "$id": "3221", "kind": "property", "name": "minutes", "serializedName": "minutes", "type": { - "$id": "3218", + "$id": "3222", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -36972,10 +37018,10 @@ ] }, { - "$ref": "3215" + "$ref": "3219" }, { - "$id": "3219", + "$id": "3223", "kind": "model", "name": "DeleteContainerResponse", "namespace": "OpenAI", @@ -36984,12 +37030,12 @@ "decorators": [], "properties": [ { - "$id": "3220", + "$id": "3224", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "3221", + "$id": "3225", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37009,12 +37055,12 @@ "isHttpMetadata": false }, { - "$id": "3222", + "$id": "3226", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1513" + "$ref": "1517" }, "optional": false, "readOnly": false, @@ -37030,12 +37076,12 @@ "isHttpMetadata": false }, { - "$id": "3223", + "$id": "3227", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$ref": "1515" + "$ref": "1519" }, "optional": false, "readOnly": false, @@ -37053,7 +37099,7 @@ ] }, { - "$id": "3224", + "$id": "3228", "kind": "model", "name": "CreateContainerFileBody", "namespace": "OpenAI", @@ -37062,13 +37108,13 @@ "decorators": [], "properties": [ { - "$id": "3225", + "$id": "3229", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "Name of the file to create.", "type": { - "$id": "3226", + "$id": "3230", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37094,13 +37140,13 @@ "isHttpMetadata": false }, { - "$id": "3227", + "$id": "3231", "kind": "property", "name": "file", "serializedName": "file", "doc": "The File object (not file name) to be uploaded.", "type": { - "$id": "3228", + "$id": "3232", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -37129,7 +37175,7 @@ ] }, { - "$id": "3229", + "$id": "3233", "kind": "model", "name": "ContainerFileResource", "namespace": "OpenAI", @@ -37138,13 +37184,13 @@ "decorators": [], "properties": [ { - "$id": "3230", + "$id": "3234", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for the file.", "type": { - "$id": "3231", + "$id": "3235", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37164,13 +37210,13 @@ "isHttpMetadata": false }, { - "$id": "3232", + "$id": "3236", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of this object (`container.file`).", "type": { - "$id": "3233", + "$id": "3237", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37190,13 +37236,13 @@ "isHttpMetadata": false }, { - "$id": "3234", + "$id": "3238", "kind": "property", "name": "container_id", "serializedName": "container_id", "doc": "The container this file belongs to.", "type": { - "$id": "3235", + "$id": "3239", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37216,18 +37262,18 @@ "isHttpMetadata": false }, { - "$id": "3236", + "$id": "3240", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) when the file was created.", "type": { - "$id": "3237", + "$id": "3241", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3238", + "$id": "3242", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -37250,13 +37296,13 @@ "isHttpMetadata": false }, { - "$id": "3239", + "$id": "3243", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "Size of the file in bytes.", "type": { - "$id": "3240", + "$id": "3244", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -37276,13 +37322,13 @@ "isHttpMetadata": false }, { - "$id": "3241", + "$id": "3245", "kind": "property", "name": "path", "serializedName": "path", "doc": "Path of the file in the container.", "type": { - "$id": "3242", + "$id": "3246", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37302,13 +37348,13 @@ "isHttpMetadata": false }, { - "$id": "3243", + "$id": "3247", "kind": "property", "name": "source", "serializedName": "source", "doc": "Source of the file (e.g., `user`, `assistant`).", "type": { - "$id": "3244", + "$id": "3248", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37330,7 +37376,7 @@ ] }, { - "$id": "3245", + "$id": "3249", "kind": "model", "name": "ContainerFileListResource", "namespace": "OpenAI", @@ -37339,13 +37385,13 @@ "decorators": [], "properties": [ { - "$id": "3246", + "$id": "3250", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of object returned, must be 'list'.", "type": { - "$ref": "1517" + "$ref": "1521" }, "optional": false, "readOnly": false, @@ -37361,17 +37407,17 @@ "isHttpMetadata": false }, { - "$id": "3247", + "$id": "3251", "kind": "property", "name": "data", "serializedName": "data", "doc": "A list of container files.", "type": { - "$id": "3248", + "$id": "3252", "kind": "array", "name": "ArrayContainerFileResource", "valueType": { - "$ref": "3229" + "$ref": "3233" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -37390,13 +37436,13 @@ "isHttpMetadata": false }, { - "$id": "3249", + "$id": "3253", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The ID of the first file in the list.", "type": { - "$id": "3250", + "$id": "3254", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37416,13 +37462,13 @@ "isHttpMetadata": false }, { - "$id": "3251", + "$id": "3255", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The ID of the last file in the list.", "type": { - "$id": "3252", + "$id": "3256", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37442,13 +37488,13 @@ "isHttpMetadata": false }, { - "$id": "3253", + "$id": "3257", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Whether there are more files available.", "type": { - "$id": "3254", + "$id": "3258", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -37470,7 +37516,7 @@ ] }, { - "$id": "3255", + "$id": "3259", "kind": "model", "name": "DeleteContainerFileResponse", "namespace": "OpenAI", @@ -37479,12 +37525,12 @@ "decorators": [], "properties": [ { - "$id": "3256", + "$id": "3260", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "3257", + "$id": "3261", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37504,12 +37550,12 @@ "isHttpMetadata": false }, { - "$id": "3258", + "$id": "3262", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1519" + "$ref": "1523" }, "optional": false, "readOnly": false, @@ -37525,12 +37571,12 @@ "isHttpMetadata": false }, { - "$id": "3259", + "$id": "3263", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$ref": "1521" + "$ref": "1525" }, "optional": false, "readOnly": false, @@ -37548,7 +37594,7 @@ ] }, { - "$id": "3260", + "$id": "3264", "kind": "model", "name": "CreateEmbeddingRequest", "namespace": "OpenAI", @@ -37557,35 +37603,35 @@ "decorators": [], "properties": [ { - "$id": "3261", + "$id": "3265", "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": "3262", + "$id": "3266", "kind": "union", "name": "CreateEmbeddingRequestInput", "variantTypes": [ { - "$id": "3263", + "$id": "3267", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$ref": "2339" + "$ref": "2343" }, { - "$ref": "2559" + "$ref": "2563" }, { - "$id": "3264", + "$id": "3268", "kind": "array", "name": "ArrayArray", "valueType": { - "$ref": "2559" + "$ref": "2563" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -37608,7 +37654,7 @@ "isHttpMetadata": false }, { - "$id": "3265", + "$id": "3269", "kind": "property", "name": "model", "serializedName": "model", @@ -37630,7 +37676,7 @@ "isHttpMetadata": false }, { - "$id": "3266", + "$id": "3270", "kind": "property", "name": "encoding_format", "serializedName": "encoding_format", @@ -37652,13 +37698,13 @@ "isHttpMetadata": false }, { - "$id": "3267", + "$id": "3271", "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": "3268", + "$id": "3272", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -37678,13 +37724,13 @@ "isHttpMetadata": false }, { - "$id": "3269", + "$id": "3273", "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": "3270", + "$id": "3274", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37706,7 +37752,7 @@ ] }, { - "$id": "3271", + "$id": "3275", "kind": "model", "name": "CreateEmbeddingResponse", "namespace": "OpenAI", @@ -37715,17 +37761,17 @@ "decorators": [], "properties": [ { - "$id": "3272", + "$id": "3276", "kind": "property", "name": "data", "serializedName": "data", "doc": "The list of embeddings generated by the model.", "type": { - "$id": "3273", + "$id": "3277", "kind": "array", "name": "ArrayEmbedding", "valueType": { - "$id": "3274", + "$id": "3278", "kind": "model", "name": "Embedding", "namespace": "OpenAI", @@ -37735,13 +37781,13 @@ "decorators": [], "properties": [ { - "$id": "3275", + "$id": "3279", "kind": "property", "name": "index", "serializedName": "index", "doc": "The index of the embedding in the list of embeddings.", "type": { - "$id": "3276", + "$id": "3280", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -37761,22 +37807,22 @@ "isHttpMetadata": false }, { - "$id": "3277", + "$id": "3281", "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": "3278", + "$id": "3282", "kind": "union", "name": "EmbeddingEmbedding", "variantTypes": [ { - "$id": "3279", + "$id": "3283", "kind": "array", "name": "Array14", "valueType": { - "$id": "3280", + "$id": "3284", "kind": "float", "name": "float", "crossLanguageDefinitionId": "TypeSpec.float", @@ -37786,7 +37832,7 @@ "decorators": [] }, { - "$id": "3281", + "$id": "3285", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37810,13 +37856,13 @@ "isHttpMetadata": false }, { - "$id": "3282", + "$id": "3286", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"embedding\".", "type": { - "$ref": "1523" + "$ref": "1527" }, "optional": false, "readOnly": false, @@ -37850,13 +37896,13 @@ "isHttpMetadata": false }, { - "$id": "3283", + "$id": "3287", "kind": "property", "name": "model", "serializedName": "model", "doc": "The name of the model used to generate the embedding.", "type": { - "$id": "3284", + "$id": "3288", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37876,13 +37922,13 @@ "isHttpMetadata": false }, { - "$id": "3285", + "$id": "3289", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"list\".", "type": { - "$ref": "1525" + "$ref": "1529" }, "optional": false, "readOnly": false, @@ -37898,13 +37944,13 @@ "isHttpMetadata": false }, { - "$id": "3286", + "$id": "3290", "kind": "property", "name": "usage", "serializedName": "usage", "doc": "The usage information for the request.", "type": { - "$id": "3287", + "$id": "3291", "kind": "model", "name": "CreateEmbeddingResponseUsage", "namespace": "OpenAI", @@ -37913,13 +37959,13 @@ "decorators": [], "properties": [ { - "$id": "3288", + "$id": "3292", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "The number of tokens used by the prompt.", "type": { - "$id": "3289", + "$id": "3293", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -37939,13 +37985,13 @@ "isHttpMetadata": false }, { - "$id": "3290", + "$id": "3294", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens used by the request.", "type": { - "$id": "3291", + "$id": "3295", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -37982,13 +38028,13 @@ ] }, { - "$ref": "3274" + "$ref": "3278" }, { - "$ref": "3287" + "$ref": "3291" }, { - "$id": "3292", + "$id": "3296", "kind": "model", "name": "ListFilesResponse", "namespace": "OpenAI", @@ -37997,12 +38043,12 @@ "decorators": [], "properties": [ { - "$id": "3293", + "$id": "3297", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1527" + "$ref": "1531" }, "optional": false, "readOnly": false, @@ -38018,16 +38064,16 @@ "isHttpMetadata": false }, { - "$id": "3294", + "$id": "3298", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3295", + "$id": "3299", "kind": "array", "name": "ArrayOpenAiFile", "valueType": { - "$id": "3296", + "$id": "3300", "kind": "model", "name": "OpenAIFile", "namespace": "OpenAI", @@ -38037,13 +38083,13 @@ "decorators": [], "properties": [ { - "$id": "3297", + "$id": "3301", "kind": "property", "name": "id", "serializedName": "id", "doc": "The file identifier, which can be referenced in the API endpoints.", "type": { - "$id": "3298", + "$id": "3302", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38063,16 +38109,16 @@ "isHttpMetadata": false }, { - "$id": "3299", + "$id": "3303", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "The size of the file, in bytes.", "type": { - "$id": "3300", + "$id": "3304", "kind": "nullable", "type": { - "$id": "3301", + "$id": "3305", "kind": "int64", "name": "int64", "crossLanguageDefinitionId": "TypeSpec.int64", @@ -38094,18 +38140,18 @@ "isHttpMetadata": false }, { - "$id": "3302", + "$id": "3306", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the file was created.", "type": { - "$id": "3303", + "$id": "3307", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3304", + "$id": "3308", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -38128,18 +38174,18 @@ "isHttpMetadata": false }, { - "$id": "3305", + "$id": "3309", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the file will expire.", "type": { - "$id": "3306", + "$id": "3310", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3307", + "$id": "3311", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -38162,13 +38208,13 @@ "isHttpMetadata": false }, { - "$id": "3308", + "$id": "3312", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file.", "type": { - "$id": "3309", + "$id": "3313", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38188,13 +38234,13 @@ "isHttpMetadata": false }, { - "$id": "3310", + "$id": "3314", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `file`.", "type": { - "$ref": "1529" + "$ref": "1533" }, "optional": false, "readOnly": false, @@ -38210,7 +38256,7 @@ "isHttpMetadata": false }, { - "$id": "3311", + "$id": "3315", "kind": "property", "name": "purpose", "serializedName": "purpose", @@ -38232,7 +38278,7 @@ "isHttpMetadata": false }, { - "$id": "3312", + "$id": "3316", "kind": "property", "name": "status", "serializedName": "status", @@ -38254,13 +38300,13 @@ "isHttpMetadata": false }, { - "$id": "3313", + "$id": "3317", "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": "3314", + "$id": "3318", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38298,12 +38344,12 @@ "isHttpMetadata": false }, { - "$id": "3315", + "$id": "3319", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "3316", + "$id": "3320", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38323,12 +38369,12 @@ "isHttpMetadata": false }, { - "$id": "3317", + "$id": "3321", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "3318", + "$id": "3322", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38348,12 +38394,12 @@ "isHttpMetadata": false }, { - "$id": "3319", + "$id": "3323", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3320", + "$id": "3324", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -38375,10 +38421,10 @@ ] }, { - "$ref": "3296" + "$ref": "3300" }, { - "$id": "3321", + "$id": "3325", "kind": "model", "name": "CreateFileRequest", "namespace": "OpenAI", @@ -38387,13 +38433,13 @@ "decorators": [], "properties": [ { - "$id": "3322", + "$id": "3326", "kind": "property", "name": "file", "serializedName": "file", "doc": "The File object (not file name) to be uploaded.", "type": { - "$id": "3323", + "$id": "3327", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -38420,7 +38466,7 @@ "isHttpMetadata": false }, { - "$id": "3324", + "$id": "3328", "kind": "property", "name": "purpose", "serializedName": "purpose", @@ -38450,7 +38496,7 @@ ] }, { - "$id": "3325", + "$id": "3329", "kind": "model", "name": "DeleteFileResponse", "namespace": "OpenAI", @@ -38459,12 +38505,12 @@ "decorators": [], "properties": [ { - "$id": "3326", + "$id": "3330", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "3327", + "$id": "3331", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38484,12 +38530,12 @@ "isHttpMetadata": false }, { - "$id": "3328", + "$id": "3332", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1531" + "$ref": "1535" }, "optional": false, "readOnly": false, @@ -38505,12 +38551,12 @@ "isHttpMetadata": false }, { - "$id": "3329", + "$id": "3333", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "3330", + "$id": "3334", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -38532,7 +38578,7 @@ ] }, { - "$id": "3331", + "$id": "3335", "kind": "model", "name": "ListFineTuningCheckpointPermissionResponse", "namespace": "OpenAI", @@ -38541,16 +38587,16 @@ "decorators": [], "properties": [ { - "$id": "3332", + "$id": "3336", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3333", + "$id": "3337", "kind": "array", "name": "ArrayFineTuningCheckpointPermission", "valueType": { - "$id": "3334", + "$id": "3338", "kind": "model", "name": "FineTuningCheckpointPermission", "namespace": "OpenAI", @@ -38560,13 +38606,13 @@ "decorators": [], "properties": [ { - "$id": "3335", + "$id": "3339", "kind": "property", "name": "id", "serializedName": "id", "doc": "The permission identifier, which can be referenced in the API endpoints.", "type": { - "$id": "3336", + "$id": "3340", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38586,18 +38632,18 @@ "isHttpMetadata": false }, { - "$id": "3337", + "$id": "3341", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the permission was created.", "type": { - "$id": "3338", + "$id": "3342", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3339", + "$id": "3343", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -38620,13 +38666,13 @@ "isHttpMetadata": false }, { - "$id": "3340", + "$id": "3344", "kind": "property", "name": "project_id", "serializedName": "project_id", "doc": "The project identifier that the permission is for.", "type": { - "$id": "3341", + "$id": "3345", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38646,13 +38692,13 @@ "isHttpMetadata": false }, { - "$id": "3342", + "$id": "3346", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"checkpoint.permission\".", "type": { - "$ref": "1533" + "$ref": "1537" }, "optional": false, "readOnly": false, @@ -38686,12 +38732,12 @@ "isHttpMetadata": false }, { - "$id": "3343", + "$id": "3347", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1535" + "$ref": "1539" }, "optional": false, "readOnly": false, @@ -38707,15 +38753,15 @@ "isHttpMetadata": false }, { - "$id": "3344", + "$id": "3348", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "3345", + "$id": "3349", "kind": "nullable", "type": { - "$id": "3346", + "$id": "3350", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38737,15 +38783,15 @@ "isHttpMetadata": false }, { - "$id": "3347", + "$id": "3351", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "3348", + "$id": "3352", "kind": "nullable", "type": { - "$id": "3349", + "$id": "3353", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38767,12 +38813,12 @@ "isHttpMetadata": false }, { - "$id": "3350", + "$id": "3354", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3351", + "$id": "3355", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -38794,10 +38840,10 @@ ] }, { - "$ref": "3334" + "$ref": "3338" }, { - "$id": "3352", + "$id": "3356", "kind": "model", "name": "CreateFineTuningCheckpointPermissionRequest", "namespace": "OpenAI", @@ -38806,13 +38852,13 @@ "decorators": [], "properties": [ { - "$id": "3353", + "$id": "3357", "kind": "property", "name": "project_ids", "serializedName": "project_ids", "doc": "The project identifiers to grant access to.", "type": { - "$ref": "2339" + "$ref": "2343" }, "optional": false, "readOnly": false, @@ -38830,7 +38876,7 @@ ] }, { - "$id": "3354", + "$id": "3358", "kind": "model", "name": "DeleteFineTuningCheckpointPermissionResponse", "namespace": "OpenAI", @@ -38839,13 +38885,13 @@ "decorators": [], "properties": [ { - "$id": "3355", + "$id": "3359", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the fine-tuned model checkpoint permission that was deleted.", "type": { - "$id": "3356", + "$id": "3360", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38865,13 +38911,13 @@ "isHttpMetadata": false }, { - "$id": "3357", + "$id": "3361", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"checkpoint.permission\".", "type": { - "$ref": "1537" + "$ref": "1541" }, "optional": false, "readOnly": false, @@ -38887,13 +38933,13 @@ "isHttpMetadata": false }, { - "$id": "3358", + "$id": "3362", "kind": "property", "name": "deleted", "serializedName": "deleted", "doc": "Whether the fine-tuned model checkpoint permission was successfully deleted.", "type": { - "$id": "3359", + "$id": "3363", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -38915,7 +38961,7 @@ ] }, { - "$id": "3360", + "$id": "3364", "kind": "model", "name": "CreateFineTuningJobRequest", "namespace": "OpenAI", @@ -38924,7 +38970,7 @@ "decorators": [], "properties": [ { - "$id": "3361", + "$id": "3365", "kind": "property", "name": "model", "serializedName": "model", @@ -38946,13 +38992,13 @@ "isHttpMetadata": false }, { - "$id": "3362", + "$id": "3366", "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": "3363", + "$id": "3367", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38972,13 +39018,13 @@ "isHttpMetadata": false }, { - "$id": "3364", + "$id": "3368", "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": "3365", + "$id": "3369", "kind": "model", "name": "CreateFineTuningJobRequestHyperparameters", "namespace": "OpenAI", @@ -38987,21 +39033,21 @@ "decorators": [], "properties": [ { - "$id": "3366", + "$id": "3370", "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": "3367", + "$id": "3371", "kind": "union", "name": "CreateFineTuningJobRequestHyperparametersBatchSize", "variantTypes": [ { - "$ref": "1539" + "$ref": "1543" }, { - "$id": "3368", + "$id": "3372", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39025,21 +39071,21 @@ "isHttpMetadata": false }, { - "$id": "3369", + "$id": "3373", "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": "3370", + "$id": "3374", "kind": "union", "name": "CreateFineTuningJobRequestHyperparametersLearningRateMultiplier", "variantTypes": [ { - "$ref": "1541" + "$ref": "1545" }, { - "$id": "3371", + "$id": "3375", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -39063,21 +39109,21 @@ "isHttpMetadata": false }, { - "$id": "3372", + "$id": "3376", "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": "3373", + "$id": "3377", "kind": "union", "name": "CreateFineTuningJobRequestHyperparametersNEpochs", "variantTypes": [ { - "$ref": "1543" + "$ref": "1547" }, { - "$id": "3374", + "$id": "3378", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39116,16 +39162,16 @@ "isHttpMetadata": false }, { - "$id": "3375", + "$id": "3379", "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": "3376", + "$id": "3380", "kind": "nullable", "type": { - "$id": "3377", + "$id": "3381", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39147,16 +39193,16 @@ "isHttpMetadata": false }, { - "$id": "3378", + "$id": "3382", "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": "3379", + "$id": "3383", "kind": "nullable", "type": { - "$id": "3380", + "$id": "3384", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39178,20 +39224,20 @@ "isHttpMetadata": false }, { - "$id": "3381", + "$id": "3385", "kind": "property", "name": "integrations", "serializedName": "integrations", "doc": "A list of integrations to enable for your fine-tuning job.", "type": { - "$id": "3382", + "$id": "3386", "kind": "nullable", "type": { - "$id": "3383", + "$id": "3387", "kind": "array", "name": "ArrayCreateFineTuningJobRequestIntegration", "valueType": { - "$id": "3384", + "$id": "3388", "kind": "model", "name": "CreateFineTuningJobRequestIntegration", "namespace": "OpenAI", @@ -39199,7 +39245,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "3385", + "$id": "3389", "kind": "property", "name": "type", "serializedName": "type", @@ -39221,12 +39267,12 @@ }, "properties": [ { - "$ref": "3385" + "$ref": "3389" } ], "discriminatedSubtypes": { "wandb": { - "$id": "3386", + "$id": "3390", "kind": "model", "name": "CreateFineTuningJobRequestWandbIntegration", "namespace": "OpenAI", @@ -39235,11 +39281,11 @@ "discriminatorValue": "wandb", "decorators": [], "baseModel": { - "$ref": "3384" + "$ref": "3388" }, "properties": [ { - "$id": "3387", + "$id": "3391", "kind": "property", "name": "type", "serializedName": "type", @@ -39260,12 +39306,12 @@ "isHttpMetadata": false }, { - "$id": "3388", + "$id": "3392", "kind": "property", "name": "wandb", "serializedName": "wandb", "type": { - "$id": "3389", + "$id": "3393", "kind": "model", "name": "CreateFineTuningJobRequestWandbIntegrationWandb", "namespace": "OpenAI", @@ -39274,12 +39320,12 @@ "decorators": [], "properties": [ { - "$id": "3390", + "$id": "3394", "kind": "property", "name": "project", "serializedName": "project", "type": { - "$id": "3391", + "$id": "3395", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39299,15 +39345,15 @@ "isHttpMetadata": false }, { - "$id": "3392", + "$id": "3396", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "3393", + "$id": "3397", "kind": "nullable", "type": { - "$id": "3394", + "$id": "3398", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39329,15 +39375,15 @@ "isHttpMetadata": false }, { - "$id": "3395", + "$id": "3399", "kind": "property", "name": "entity", "serializedName": "entity", "type": { - "$id": "3396", + "$id": "3400", "kind": "nullable", "type": { - "$id": "3397", + "$id": "3401", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39359,12 +39405,12 @@ "isHttpMetadata": false }, { - "$id": "3398", + "$id": "3402", "kind": "property", "name": "tags", "serializedName": "tags", "type": { - "$ref": "2339" + "$ref": "2343" }, "optional": true, "readOnly": false, @@ -39417,16 +39463,16 @@ "isHttpMetadata": false }, { - "$id": "3399", + "$id": "3403", "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": "3400", + "$id": "3404", "kind": "nullable", "type": { - "$id": "3401", + "$id": "3405", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39448,12 +39494,12 @@ "isHttpMetadata": false }, { - "$id": "3402", + "$id": "3406", "kind": "property", "name": "method", "serializedName": "method", "type": { - "$id": "3403", + "$id": "3407", "kind": "model", "name": "FineTuneMethod", "namespace": "OpenAI", @@ -39463,7 +39509,7 @@ "decorators": [], "properties": [ { - "$id": "3404", + "$id": "3408", "kind": "property", "name": "type", "serializedName": "type", @@ -39485,12 +39531,12 @@ "isHttpMetadata": false }, { - "$id": "3405", + "$id": "3409", "kind": "property", "name": "supervised", "serializedName": "supervised", "type": { - "$id": "3406", + "$id": "3410", "kind": "model", "name": "FineTuneSupervisedMethod", "namespace": "OpenAI", @@ -39500,12 +39546,12 @@ "decorators": [], "properties": [ { - "$id": "3407", + "$id": "3411", "kind": "property", "name": "hyperparameters", "serializedName": "hyperparameters", "type": { - "$id": "3408", + "$id": "3412", "kind": "model", "name": "FineTuneSupervisedHyperparameters", "namespace": "OpenAI", @@ -39515,21 +39561,21 @@ "decorators": [], "properties": [ { - "$id": "3409", + "$id": "3413", "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": "3410", + "$id": "3414", "kind": "union", "name": "FineTuneSupervisedHyperparametersBatchSize", "variantTypes": [ { - "$ref": "1545" + "$ref": "1549" }, { - "$id": "3411", + "$id": "3415", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39553,21 +39599,21 @@ "isHttpMetadata": false }, { - "$id": "3412", + "$id": "3416", "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": "3413", + "$id": "3417", "kind": "union", "name": "FineTuneSupervisedHyperparametersLearningRateMultiplier", "variantTypes": [ { - "$ref": "1547" + "$ref": "1551" }, { - "$id": "3414", + "$id": "3418", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -39591,21 +39637,21 @@ "isHttpMetadata": false }, { - "$id": "3415", + "$id": "3419", "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": "3416", + "$id": "3420", "kind": "union", "name": "FineTuneSupervisedHyperparametersNEpochs", "variantTypes": [ { - "$ref": "1549" + "$ref": "1553" }, { - "$id": "3417", + "$id": "3421", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39659,12 +39705,12 @@ "isHttpMetadata": false }, { - "$id": "3418", + "$id": "3422", "kind": "property", "name": "dpo", "serializedName": "dpo", "type": { - "$id": "3419", + "$id": "3423", "kind": "model", "name": "FineTuneDPOMethod", "namespace": "OpenAI", @@ -39674,12 +39720,12 @@ "decorators": [], "properties": [ { - "$id": "3420", + "$id": "3424", "kind": "property", "name": "hyperparameters", "serializedName": "hyperparameters", "type": { - "$id": "3421", + "$id": "3425", "kind": "model", "name": "FineTuneDPOHyperparameters", "namespace": "OpenAI", @@ -39689,21 +39735,21 @@ "decorators": [], "properties": [ { - "$id": "3422", + "$id": "3426", "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": "3423", + "$id": "3427", "kind": "union", "name": "FineTuneDPOHyperparametersBeta", "variantTypes": [ { - "$ref": "1551" + "$ref": "1555" }, { - "$id": "3424", + "$id": "3428", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -39727,21 +39773,21 @@ "isHttpMetadata": false }, { - "$id": "3425", + "$id": "3429", "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": "3426", + "$id": "3430", "kind": "union", "name": "FineTuneDPOHyperparametersBatchSize", "variantTypes": [ { - "$ref": "1553" + "$ref": "1557" }, { - "$id": "3427", + "$id": "3431", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39765,21 +39811,21 @@ "isHttpMetadata": false }, { - "$id": "3428", + "$id": "3432", "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": "3429", + "$id": "3433", "kind": "union", "name": "FineTuneDPOHyperparametersLearningRateMultiplier", "variantTypes": [ { - "$ref": "1555" + "$ref": "1559" }, { - "$id": "3430", + "$id": "3434", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -39803,21 +39849,21 @@ "isHttpMetadata": false }, { - "$id": "3431", + "$id": "3435", "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": "3432", + "$id": "3436", "kind": "union", "name": "FineTuneDPOHyperparametersNEpochs", "variantTypes": [ { - "$ref": "1557" + "$ref": "1561" }, { - "$id": "3433", + "$id": "3437", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39871,12 +39917,12 @@ "isHttpMetadata": false }, { - "$id": "3434", + "$id": "3438", "kind": "property", "name": "reinforcement", "serializedName": "reinforcement", "type": { - "$id": "3435", + "$id": "3439", "kind": "model", "name": "FineTuneReinforcementMethod", "namespace": "OpenAI", @@ -39886,18 +39932,18 @@ "decorators": [], "properties": [ { - "$id": "3436", + "$id": "3440", "kind": "property", "name": "grader", "serializedName": "grader", "doc": "The grader used for the fine-tuning job.", "type": { - "$id": "3437", + "$id": "3441", "kind": "union", "name": "FineTuneReinforcementMethodGrader", "variantTypes": [ { - "$id": "3438", + "$id": "3442", "kind": "model", "name": "GraderStringCheck", "namespace": "OpenAI", @@ -39907,7 +39953,7 @@ "discriminatorValue": "string_check", "decorators": [], "baseModel": { - "$id": "3439", + "$id": "3443", "kind": "model", "name": "Grader", "namespace": "OpenAI", @@ -39915,7 +39961,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3440", + "$id": "3444", "kind": "property", "name": "type", "serializedName": "type", @@ -39937,15 +39983,15 @@ }, "properties": [ { - "$ref": "3440" + "$ref": "3444" } ], "discriminatedSubtypes": { "string_check": { - "$ref": "3438" + "$ref": "3442" }, "text_similarity": { - "$id": "3441", + "$id": "3445", "kind": "model", "name": "GraderTextSimilarity", "namespace": "OpenAI", @@ -39955,11 +40001,11 @@ "discriminatorValue": "text_similarity", "decorators": [], "baseModel": { - "$ref": "3439" + "$ref": "3443" }, "properties": [ { - "$id": "3442", + "$id": "3446", "kind": "property", "name": "type", "serializedName": "type", @@ -39981,13 +40027,13 @@ "isHttpMetadata": false }, { - "$id": "3443", + "$id": "3447", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3444", + "$id": "3448", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40007,13 +40053,13 @@ "isHttpMetadata": false }, { - "$id": "3445", + "$id": "3449", "kind": "property", "name": "input", "serializedName": "input", "doc": "The text being graded.", "type": { - "$id": "3446", + "$id": "3450", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40033,13 +40079,13 @@ "isHttpMetadata": false }, { - "$id": "3447", + "$id": "3451", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The text being graded against.", "type": { - "$id": "3448", + "$id": "3452", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40059,7 +40105,7 @@ "isHttpMetadata": false }, { - "$id": "3449", + "$id": "3453", "kind": "property", "name": "evaluation_metric", "serializedName": "evaluation_metric", @@ -40083,7 +40129,7 @@ ] }, "python": { - "$id": "3450", + "$id": "3454", "kind": "model", "name": "GraderPython", "namespace": "OpenAI", @@ -40093,11 +40139,11 @@ "discriminatorValue": "python", "decorators": [], "baseModel": { - "$ref": "3439" + "$ref": "3443" }, "properties": [ { - "$id": "3451", + "$id": "3455", "kind": "property", "name": "type", "serializedName": "type", @@ -40119,13 +40165,13 @@ "isHttpMetadata": false }, { - "$id": "3452", + "$id": "3456", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3453", + "$id": "3457", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40145,13 +40191,13 @@ "isHttpMetadata": false }, { - "$id": "3454", + "$id": "3458", "kind": "property", "name": "source", "serializedName": "source", "doc": "The source code of the python script.", "type": { - "$id": "3455", + "$id": "3459", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40171,13 +40217,13 @@ "isHttpMetadata": false }, { - "$id": "3456", + "$id": "3460", "kind": "property", "name": "image_tag", "serializedName": "image_tag", "doc": "The image tag to use for the python script.", "type": { - "$id": "3457", + "$id": "3461", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40199,7 +40245,7 @@ ] }, "score_model": { - "$id": "3458", + "$id": "3462", "kind": "model", "name": "GraderScoreModel", "namespace": "OpenAI", @@ -40209,11 +40255,11 @@ "discriminatorValue": "score_model", "decorators": [], "baseModel": { - "$ref": "3439" + "$ref": "3443" }, "properties": [ { - "$id": "3459", + "$id": "3463", "kind": "property", "name": "type", "serializedName": "type", @@ -40235,13 +40281,13 @@ "isHttpMetadata": false }, { - "$id": "3460", + "$id": "3464", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3461", + "$id": "3465", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40261,13 +40307,13 @@ "isHttpMetadata": false }, { - "$id": "3462", + "$id": "3466", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation.", "type": { - "$id": "3463", + "$id": "3467", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40287,13 +40333,13 @@ "isHttpMetadata": false }, { - "$id": "3464", + "$id": "3468", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "doc": "The sampling parameters for the model.", "type": { - "$id": "3465", + "$id": "3469", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -40313,17 +40359,17 @@ "isHttpMetadata": false }, { - "$id": "3466", + "$id": "3470", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$id": "3467", + "$id": "3471", "kind": "array", "name": "ArrayEvalItem", "valueType": { - "$id": "3468", + "$id": "3472", "kind": "model", "name": "EvalItem", "namespace": "OpenAI", @@ -40333,7 +40379,7 @@ "decorators": [], "properties": [ { - "$id": "3469", + "$id": "3473", "kind": "property", "name": "role", "serializedName": "role", @@ -40355,25 +40401,25 @@ "isHttpMetadata": false }, { - "$id": "3470", + "$id": "3474", "kind": "property", "name": "content", "serializedName": "content", "doc": "Text inputs to the model - can contain template strings.", "type": { - "$id": "3471", + "$id": "3475", "kind": "union", "name": "EvalItemContent1", "variantTypes": [ { - "$id": "3472", + "$id": "3476", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "3473", + "$id": "3477", "kind": "model", "name": "EvalItemContent", "namespace": "OpenAI", @@ -40381,7 +40427,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3474", + "$id": "3478", "kind": "property", "name": "type", "serializedName": "type", @@ -40403,12 +40449,12 @@ }, "properties": [ { - "$ref": "3474" + "$ref": "3478" } ], "discriminatedSubtypes": { "input_text": { - "$id": "3475", + "$id": "3479", "kind": "model", "name": "EvalItemContentInputText", "namespace": "OpenAI", @@ -40417,11 +40463,11 @@ "discriminatorValue": "input_text", "decorators": [], "baseModel": { - "$ref": "3473" + "$ref": "3477" }, "properties": [ { - "$id": "3476", + "$id": "3480", "kind": "property", "name": "type", "serializedName": "type", @@ -40442,12 +40488,12 @@ "isHttpMetadata": false }, { - "$id": "3477", + "$id": "3481", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "3478", + "$id": "3482", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40469,7 +40515,7 @@ ] }, "output_text": { - "$id": "3479", + "$id": "3483", "kind": "model", "name": "EvalItemContentOutputText", "namespace": "OpenAI", @@ -40478,11 +40524,11 @@ "discriminatorValue": "output_text", "decorators": [], "baseModel": { - "$ref": "3473" + "$ref": "3477" }, "properties": [ { - "$id": "3480", + "$id": "3484", "kind": "property", "name": "type", "serializedName": "type", @@ -40503,12 +40549,12 @@ "isHttpMetadata": false }, { - "$id": "3481", + "$id": "3485", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "3482", + "$id": "3486", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40549,13 +40595,13 @@ "isHttpMetadata": false }, { - "$id": "3483", + "$id": "3487", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the message input. Always `message`.", "type": { - "$ref": "1559" + "$ref": "1563" }, "optional": true, "readOnly": false, @@ -40589,13 +40635,13 @@ "isHttpMetadata": false }, { - "$id": "3484", + "$id": "3488", "kind": "property", "name": "range", "serializedName": "range", "doc": "The range of the score. Defaults to `[0, 1]`.", "type": { - "$ref": "2580" + "$ref": "2584" }, "optional": true, "readOnly": false, @@ -40613,7 +40659,7 @@ ] }, "multi": { - "$id": "3485", + "$id": "3489", "kind": "model", "name": "GraderMulti", "namespace": "OpenAI", @@ -40623,11 +40669,11 @@ "discriminatorValue": "multi", "decorators": [], "baseModel": { - "$ref": "3439" + "$ref": "3443" }, "properties": [ { - "$id": "3486", + "$id": "3490", "kind": "property", "name": "type", "serializedName": "type", @@ -40649,13 +40695,13 @@ "isHttpMetadata": false }, { - "$id": "3487", + "$id": "3491", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3488", + "$id": "3492", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40675,29 +40721,29 @@ "isHttpMetadata": false }, { - "$id": "3489", + "$id": "3493", "kind": "property", "name": "graders", "serializedName": "graders", "type": { - "$id": "3490", + "$id": "3494", "kind": "union", "name": "GraderMultiGraders", "variantTypes": [ { - "$ref": "3438" + "$ref": "3442" }, { - "$ref": "3441" + "$ref": "3445" }, { - "$ref": "3450" + "$ref": "3454" }, { - "$ref": "3458" + "$ref": "3462" }, { - "$id": "3491", + "$id": "3495", "kind": "model", "name": "GraderLabelModel", "namespace": "OpenAI", @@ -40707,11 +40753,11 @@ "discriminatorValue": "label_model", "decorators": [], "baseModel": { - "$ref": "3439" + "$ref": "3443" }, "properties": [ { - "$id": "3492", + "$id": "3496", "kind": "property", "name": "type", "serializedName": "type", @@ -40733,13 +40779,13 @@ "isHttpMetadata": false }, { - "$id": "3493", + "$id": "3497", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3494", + "$id": "3498", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40759,13 +40805,13 @@ "isHttpMetadata": false }, { - "$id": "3495", + "$id": "3499", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation. Must support structured outputs.", "type": { - "$id": "3496", + "$id": "3500", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40785,12 +40831,12 @@ "isHttpMetadata": false }, { - "$id": "3497", + "$id": "3501", "kind": "property", "name": "input", "serializedName": "input", "type": { - "$ref": "3467" + "$ref": "3471" }, "optional": false, "readOnly": false, @@ -40806,13 +40852,13 @@ "isHttpMetadata": false }, { - "$id": "3498", + "$id": "3502", "kind": "property", "name": "labels", "serializedName": "labels", "doc": "The labels to assign to each item in the evaluation.", "type": { - "$ref": "2339" + "$ref": "2343" }, "optional": false, "readOnly": false, @@ -40828,13 +40874,13 @@ "isHttpMetadata": false }, { - "$id": "3499", + "$id": "3503", "kind": "property", "name": "passing_labels", "serializedName": "passing_labels", "doc": "The labels that indicate a passing result. Must be a subset of labels.", "type": { - "$ref": "2339" + "$ref": "2343" }, "optional": false, "readOnly": false, @@ -40869,13 +40915,13 @@ "isHttpMetadata": false }, { - "$id": "3500", + "$id": "3504", "kind": "property", "name": "calculate_output", "serializedName": "calculate_output", "doc": "A formula to calculate the output based on grader results.", "type": { - "$id": "3501", + "$id": "3505", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40897,19 +40943,19 @@ ] }, "label_model": { - "$ref": "3491" + "$ref": "3495" } } }, "properties": [ { - "$id": "3502", + "$id": "3506", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `string_check`.", "type": { - "$id": "3503", + "$id": "3507", "kind": "enumvalue", "name": "string_check", "value": "string_check", @@ -40935,13 +40981,13 @@ "isHttpMetadata": false }, { - "$id": "3504", + "$id": "3508", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3505", + "$id": "3509", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40961,13 +41007,13 @@ "isHttpMetadata": false }, { - "$id": "3506", + "$id": "3510", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$id": "3507", + "$id": "3511", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40987,13 +41033,13 @@ "isHttpMetadata": false }, { - "$id": "3508", + "$id": "3512", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The reference text. This may include template strings.", "type": { - "$id": "3509", + "$id": "3513", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41013,7 +41059,7 @@ "isHttpMetadata": false }, { - "$id": "3510", + "$id": "3514", "kind": "property", "name": "operation", "serializedName": "operation", @@ -41037,16 +41083,16 @@ ] }, { - "$ref": "3441" + "$ref": "3445" }, { - "$ref": "3450" + "$ref": "3454" }, { - "$ref": "3458" + "$ref": "3462" }, { - "$ref": "3485" + "$ref": "3489" } ], "namespace": "OpenAI", @@ -41066,12 +41112,12 @@ "isHttpMetadata": false }, { - "$id": "3511", + "$id": "3515", "kind": "property", "name": "hyperparameters", "serializedName": "hyperparameters", "type": { - "$id": "3512", + "$id": "3516", "kind": "model", "name": "FineTuneReinforcementHyperparameters", "namespace": "OpenAI", @@ -41081,21 +41127,21 @@ "decorators": [], "properties": [ { - "$id": "3513", + "$id": "3517", "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": "3514", + "$id": "3518", "kind": "union", "name": "FineTuneReinforcementHyperparametersBatchSize", "variantTypes": [ { - "$ref": "1561" + "$ref": "1565" }, { - "$id": "3515", + "$id": "3519", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -41119,21 +41165,21 @@ "isHttpMetadata": false }, { - "$id": "3516", + "$id": "3520", "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": "3517", + "$id": "3521", "kind": "union", "name": "FineTuneReinforcementHyperparametersLearningRateMultiplier", "variantTypes": [ { - "$ref": "1563" + "$ref": "1567" }, { - "$id": "3518", + "$id": "3522", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -41157,21 +41203,21 @@ "isHttpMetadata": false }, { - "$id": "3519", + "$id": "3523", "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": "3520", + "$id": "3524", "kind": "union", "name": "FineTuneReinforcementHyperparametersNEpochs", "variantTypes": [ { - "$ref": "1565" + "$ref": "1569" }, { - "$id": "3521", + "$id": "3525", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -41195,7 +41241,7 @@ "isHttpMetadata": false }, { - "$id": "3522", + "$id": "3526", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", @@ -41217,21 +41263,21 @@ "isHttpMetadata": false }, { - "$id": "3523", + "$id": "3527", "kind": "property", "name": "compute_multiplier", "serializedName": "compute_multiplier", "doc": "Multiplier on amount of compute used for exploring search space during training.", "type": { - "$id": "3524", + "$id": "3528", "kind": "union", "name": "FineTuneReinforcementHyperparametersComputeMultiplier", "variantTypes": [ { - "$ref": "1567" + "$ref": "1571" }, { - "$id": "3525", + "$id": "3529", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -41255,21 +41301,21 @@ "isHttpMetadata": false }, { - "$id": "3526", + "$id": "3530", "kind": "property", "name": "eval_interval", "serializedName": "eval_interval", "doc": "The number of training steps between evaluation runs.", "type": { - "$id": "3527", + "$id": "3531", "kind": "union", "name": "FineTuneReinforcementHyperparametersEvalInterval", "variantTypes": [ { - "$ref": "1569" + "$ref": "1573" }, { - "$id": "3528", + "$id": "3532", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -41293,21 +41339,21 @@ "isHttpMetadata": false }, { - "$id": "3529", + "$id": "3533", "kind": "property", "name": "eval_samples", "serializedName": "eval_samples", "doc": "Number of evaluation samples to generate per training step.", "type": { - "$id": "3530", + "$id": "3534", "kind": "union", "name": "FineTuneReinforcementHyperparametersEvalSamples", "variantTypes": [ { - "$ref": "1571" + "$ref": "1575" }, { - "$id": "3531", + "$id": "3535", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -41376,13 +41422,13 @@ "isHttpMetadata": false }, { - "$id": "3532", + "$id": "3536", "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": "2346" + "$ref": "2350" }, "optional": true, "readOnly": false, @@ -41400,73 +41446,73 @@ ] }, { - "$ref": "3365" + "$ref": "3369" }, { - "$ref": "3384" + "$ref": "3388" }, { - "$ref": "3386" + "$ref": "3390" }, { - "$ref": "3389" + "$ref": "3393" }, { - "$ref": "3403" + "$ref": "3407" }, { - "$ref": "3406" + "$ref": "3410" }, { - "$ref": "3408" + "$ref": "3412" }, { - "$ref": "3419" + "$ref": "3423" }, { - "$ref": "3421" + "$ref": "3425" }, { - "$ref": "3435" + "$ref": "3439" }, { - "$ref": "3438" + "$ref": "3442" }, { - "$ref": "3439" + "$ref": "3443" }, { - "$ref": "3441" + "$ref": "3445" }, { - "$ref": "3450" + "$ref": "3454" }, { - "$ref": "3458" + "$ref": "3462" }, { - "$ref": "3468" + "$ref": "3472" }, { - "$ref": "3473" + "$ref": "3477" }, { - "$ref": "3475" + "$ref": "3479" }, { - "$ref": "3479" + "$ref": "3483" }, { - "$ref": "3485" + "$ref": "3489" }, { - "$ref": "3491" + "$ref": "3495" }, { - "$ref": "3512" + "$ref": "3516" }, { - "$id": "3533", + "$id": "3537", "kind": "model", "name": "FineTuningJob", "namespace": "OpenAI", @@ -41476,16 +41522,16 @@ "decorators": [], "properties": [ { - "$id": "3534", + "$id": "3538", "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": "3535", + "$id": "3539", "kind": "nullable", "type": { - "$id": "3536", + "$id": "3540", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41507,13 +41553,13 @@ "isHttpMetadata": false }, { - "$id": "3537", + "$id": "3541", "kind": "property", "name": "id", "serializedName": "id", "doc": "The object identifier, which can be referenced in the API endpoints.", "type": { - "$id": "3538", + "$id": "3542", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41533,18 +41579,18 @@ "isHttpMetadata": false }, { - "$id": "3539", + "$id": "3543", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the fine-tuning job was created.", "type": { - "$id": "3540", + "$id": "3544", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3541", + "$id": "3545", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -41567,16 +41613,16 @@ "isHttpMetadata": false }, { - "$id": "3542", + "$id": "3546", "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": "3543", + "$id": "3547", "kind": "nullable", "type": { - "$id": "3544", + "$id": "3548", "kind": "model", "name": "FineTuningJobError1", "namespace": "OpenAI", @@ -41585,13 +41631,13 @@ "decorators": [], "properties": [ { - "$id": "3545", + "$id": "3549", "kind": "property", "name": "code", "serializedName": "code", "doc": "A machine-readable error code.", "type": { - "$id": "3546", + "$id": "3550", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41611,13 +41657,13 @@ "isHttpMetadata": false }, { - "$id": "3547", + "$id": "3551", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable error message.", "type": { - "$id": "3548", + "$id": "3552", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41637,16 +41683,16 @@ "isHttpMetadata": false }, { - "$id": "3549", + "$id": "3553", "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": "3550", + "$id": "3554", "kind": "nullable", "type": { - "$id": "3551", + "$id": "3555", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41685,16 +41731,16 @@ "isHttpMetadata": false }, { - "$id": "3552", + "$id": "3556", "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": "3553", + "$id": "3557", "kind": "nullable", "type": { - "$id": "3554", + "$id": "3558", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41716,21 +41762,21 @@ "isHttpMetadata": false }, { - "$id": "3555", + "$id": "3559", "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": "3556", + "$id": "3560", "kind": "nullable", "type": { - "$id": "3557", + "$id": "3561", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3558", + "$id": "3562", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -41755,13 +41801,13 @@ "isHttpMetadata": false }, { - "$id": "3559", + "$id": "3563", "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": "3560", + "$id": "3564", "kind": "model", "name": "FineTuningJobHyperparameters", "namespace": "OpenAI", @@ -41770,24 +41816,24 @@ "decorators": [], "properties": [ { - "$id": "3561", + "$id": "3565", "kind": "property", "name": "batch_size", "serializedName": "batch_size", "doc": "Number of examples in each batch. A larger batch size means that model parameters\nare updated less frequently, but with lower variance.", "type": { - "$id": "3562", + "$id": "3566", "kind": "nullable", "type": { - "$id": "3563", + "$id": "3567", "kind": "union", "name": "FineTuningJobHyperparametersBatchSize", "variantTypes": [ { - "$ref": "1573" + "$ref": "1577" }, { - "$id": "3564", + "$id": "3568", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -41813,21 +41859,21 @@ "isHttpMetadata": false }, { - "$id": "3565", + "$id": "3569", "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": "3566", + "$id": "3570", "kind": "union", "name": "FineTuningJobHyperparametersLearningRateMultiplier", "variantTypes": [ { - "$ref": "1575" + "$ref": "1579" }, { - "$id": "3567", + "$id": "3571", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -41851,21 +41897,21 @@ "isHttpMetadata": false }, { - "$id": "3568", + "$id": "3572", "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": "3569", + "$id": "3573", "kind": "union", "name": "FineTuningJobHyperparametersNEpochs", "variantTypes": [ { - "$ref": "1577" + "$ref": "1581" }, { - "$id": "3570", + "$id": "3574", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -41904,13 +41950,13 @@ "isHttpMetadata": false }, { - "$id": "3571", + "$id": "3575", "kind": "property", "name": "model", "serializedName": "model", "doc": "The base model that is being fine-tuned.", "type": { - "$id": "3572", + "$id": "3576", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41930,13 +41976,13 @@ "isHttpMetadata": false }, { - "$id": "3573", + "$id": "3577", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"fine_tuning.job\".", "type": { - "$ref": "1579" + "$ref": "1583" }, "optional": false, "readOnly": false, @@ -41952,13 +41998,13 @@ "isHttpMetadata": false }, { - "$id": "3574", + "$id": "3578", "kind": "property", "name": "organization_id", "serializedName": "organization_id", "doc": "The organization that owns the fine-tuning job.", "type": { - "$id": "3575", + "$id": "3579", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41978,13 +42024,13 @@ "isHttpMetadata": false }, { - "$id": "3576", + "$id": "3580", "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": "2339" + "$ref": "2343" }, "optional": false, "readOnly": false, @@ -42000,7 +42046,7 @@ "isHttpMetadata": false }, { - "$id": "3577", + "$id": "3581", "kind": "property", "name": "status", "serializedName": "status", @@ -42022,16 +42068,16 @@ "isHttpMetadata": false }, { - "$id": "3578", + "$id": "3582", "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": "3579", + "$id": "3583", "kind": "nullable", "type": { - "$id": "3580", + "$id": "3584", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -42053,13 +42099,13 @@ "isHttpMetadata": false }, { - "$id": "3581", + "$id": "3585", "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": "3582", + "$id": "3586", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42079,16 +42125,16 @@ "isHttpMetadata": false }, { - "$id": "3583", + "$id": "3587", "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": "3584", + "$id": "3588", "kind": "nullable", "type": { - "$id": "3585", + "$id": "3589", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42110,20 +42156,20 @@ "isHttpMetadata": false }, { - "$id": "3586", + "$id": "3590", "kind": "property", "name": "integrations", "serializedName": "integrations", "doc": "A list of integrations to enable for this fine-tuning job.", "type": { - "$id": "3587", + "$id": "3591", "kind": "nullable", "type": { - "$id": "3588", + "$id": "3592", "kind": "array", "name": "ArrayFineTuningIntegration", "valueType": { - "$id": "3589", + "$id": "3593", "kind": "model", "name": "FineTuningIntegration", "namespace": "OpenAI", @@ -42131,7 +42177,7 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3590", + "$id": "3594", "kind": "property", "name": "type", "serializedName": "type", @@ -42153,12 +42199,12 @@ }, "properties": [ { - "$ref": "3590" + "$ref": "3594" } ], "discriminatedSubtypes": { "wandb": { - "$id": "3591", + "$id": "3595", "kind": "model", "name": "FineTuningIntegrationWandb", "namespace": "OpenAI", @@ -42167,11 +42213,11 @@ "discriminatorValue": "wandb", "decorators": [], "baseModel": { - "$ref": "3589" + "$ref": "3593" }, "properties": [ { - "$id": "3592", + "$id": "3596", "kind": "property", "name": "type", "serializedName": "type", @@ -42193,13 +42239,13 @@ "isHttpMetadata": false }, { - "$id": "3593", + "$id": "3597", "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": "3594", + "$id": "3598", "kind": "model", "name": "FineTuningIntegrationWandbWandb", "namespace": "OpenAI", @@ -42208,13 +42254,13 @@ "decorators": [], "properties": [ { - "$id": "3595", + "$id": "3599", "kind": "property", "name": "project", "serializedName": "project", "doc": "The name of the project that the new run will be created under.", "type": { - "$id": "3596", + "$id": "3600", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42234,16 +42280,16 @@ "isHttpMetadata": false }, { - "$id": "3597", + "$id": "3601", "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": "3598", + "$id": "3602", "kind": "nullable", "type": { - "$id": "3599", + "$id": "3603", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42265,16 +42311,16 @@ "isHttpMetadata": false }, { - "$id": "3600", + "$id": "3604", "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": "3601", + "$id": "3605", "kind": "nullable", "type": { - "$id": "3602", + "$id": "3606", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42296,13 +42342,13 @@ "isHttpMetadata": false }, { - "$id": "3603", + "$id": "3607", "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": "2339" + "$ref": "2343" }, "optional": true, "readOnly": false, @@ -42355,13 +42401,13 @@ "isHttpMetadata": false }, { - "$id": "3604", + "$id": "3608", "kind": "property", "name": "seed", "serializedName": "seed", "doc": "The seed used for the fine-tuning job.", "type": { - "$id": "3605", + "$id": "3609", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -42381,21 +42427,21 @@ "isHttpMetadata": false }, { - "$id": "3606", + "$id": "3610", "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": "3607", + "$id": "3611", "kind": "nullable", "type": { - "$id": "3608", + "$id": "3612", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3609", + "$id": "3613", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -42420,12 +42466,12 @@ "isHttpMetadata": false }, { - "$id": "3610", + "$id": "3614", "kind": "property", "name": "method", "serializedName": "method", "type": { - "$ref": "3403" + "$ref": "3407" }, "optional": true, "readOnly": false, @@ -42441,13 +42487,13 @@ "isHttpMetadata": false }, { - "$id": "3611", + "$id": "3615", "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": "2345" + "$ref": "2349" }, "optional": false, "readOnly": false, @@ -42465,22 +42511,22 @@ ] }, { - "$ref": "3544" + "$ref": "3548" }, { - "$ref": "3560" + "$ref": "3564" }, { - "$ref": "3589" + "$ref": "3593" }, { - "$ref": "3591" + "$ref": "3595" }, { - "$ref": "3594" + "$ref": "3598" }, { - "$id": "3612", + "$id": "3616", "kind": "model", "name": "ListPaginatedFineTuningJobsResponse", "namespace": "OpenAI", @@ -42489,16 +42535,16 @@ "decorators": [], "properties": [ { - "$id": "3613", + "$id": "3617", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3614", + "$id": "3618", "kind": "array", "name": "ArrayFineTuningJob", "valueType": { - "$ref": "3533" + "$ref": "3537" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -42517,12 +42563,12 @@ "isHttpMetadata": false }, { - "$id": "3615", + "$id": "3619", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3616", + "$id": "3620", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -42542,12 +42588,12 @@ "isHttpMetadata": false }, { - "$id": "3617", + "$id": "3621", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1581" + "$ref": "1585" }, "optional": false, "readOnly": false, @@ -42565,7 +42611,7 @@ ] }, { - "$id": "3618", + "$id": "3622", "kind": "model", "name": "ListFineTuningJobCheckpointsResponse", "namespace": "OpenAI", @@ -42574,16 +42620,16 @@ "decorators": [], "properties": [ { - "$id": "3619", + "$id": "3623", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3620", + "$id": "3624", "kind": "array", "name": "ArrayFineTuningJobCheckpoint", "valueType": { - "$id": "3621", + "$id": "3625", "kind": "model", "name": "FineTuningJobCheckpoint", "namespace": "OpenAI", @@ -42593,13 +42639,13 @@ "decorators": [], "properties": [ { - "$id": "3622", + "$id": "3626", "kind": "property", "name": "id", "serializedName": "id", "doc": "The checkpoint identifier, which can be referenced in the API endpoints.", "type": { - "$id": "3623", + "$id": "3627", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42619,18 +42665,18 @@ "isHttpMetadata": false }, { - "$id": "3624", + "$id": "3628", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the checkpoint was created.", "type": { - "$id": "3625", + "$id": "3629", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3626", + "$id": "3630", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -42653,13 +42699,13 @@ "isHttpMetadata": false }, { - "$id": "3627", + "$id": "3631", "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": "3628", + "$id": "3632", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42679,13 +42725,13 @@ "isHttpMetadata": false }, { - "$id": "3629", + "$id": "3633", "kind": "property", "name": "step_number", "serializedName": "step_number", "doc": "The step number that the checkpoint was created at.", "type": { - "$id": "3630", + "$id": "3634", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -42705,13 +42751,13 @@ "isHttpMetadata": false }, { - "$id": "3631", + "$id": "3635", "kind": "property", "name": "metrics", "serializedName": "metrics", "doc": "Metrics at the step number during the fine-tuning job.", "type": { - "$id": "3632", + "$id": "3636", "kind": "model", "name": "FineTuningJobCheckpointMetrics", "namespace": "OpenAI", @@ -42720,12 +42766,12 @@ "decorators": [], "properties": [ { - "$id": "3633", + "$id": "3637", "kind": "property", "name": "step", "serializedName": "step", "type": { - "$id": "3634", + "$id": "3638", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -42745,12 +42791,12 @@ "isHttpMetadata": false }, { - "$id": "3635", + "$id": "3639", "kind": "property", "name": "train_loss", "serializedName": "train_loss", "type": { - "$id": "3636", + "$id": "3640", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -42770,12 +42816,12 @@ "isHttpMetadata": false }, { - "$id": "3637", + "$id": "3641", "kind": "property", "name": "train_mean_token_accuracy", "serializedName": "train_mean_token_accuracy", "type": { - "$id": "3638", + "$id": "3642", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -42795,12 +42841,12 @@ "isHttpMetadata": false }, { - "$id": "3639", + "$id": "3643", "kind": "property", "name": "valid_loss", "serializedName": "valid_loss", "type": { - "$id": "3640", + "$id": "3644", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -42820,12 +42866,12 @@ "isHttpMetadata": false }, { - "$id": "3641", + "$id": "3645", "kind": "property", "name": "valid_mean_token_accuracy", "serializedName": "valid_mean_token_accuracy", "type": { - "$id": "3642", + "$id": "3646", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -42845,12 +42891,12 @@ "isHttpMetadata": false }, { - "$id": "3643", + "$id": "3647", "kind": "property", "name": "full_valid_loss", "serializedName": "full_valid_loss", "type": { - "$id": "3644", + "$id": "3648", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -42870,12 +42916,12 @@ "isHttpMetadata": false }, { - "$id": "3645", + "$id": "3649", "kind": "property", "name": "full_valid_mean_token_accuracy", "serializedName": "full_valid_mean_token_accuracy", "type": { - "$id": "3646", + "$id": "3650", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -42910,13 +42956,13 @@ "isHttpMetadata": false }, { - "$id": "3647", + "$id": "3651", "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": "3648", + "$id": "3652", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42936,13 +42982,13 @@ "isHttpMetadata": false }, { - "$id": "3649", + "$id": "3653", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"fine_tuning.job.checkpoint\".", "type": { - "$ref": "1583" + "$ref": "1587" }, "optional": false, "readOnly": false, @@ -42976,12 +43022,12 @@ "isHttpMetadata": false }, { - "$id": "3650", + "$id": "3654", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1585" + "$ref": "1589" }, "optional": false, "readOnly": false, @@ -42997,15 +43043,15 @@ "isHttpMetadata": false }, { - "$id": "3651", + "$id": "3655", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "3652", + "$id": "3656", "kind": "nullable", "type": { - "$id": "3653", + "$id": "3657", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43027,15 +43073,15 @@ "isHttpMetadata": false }, { - "$id": "3654", + "$id": "3658", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "3655", + "$id": "3659", "kind": "nullable", "type": { - "$id": "3656", + "$id": "3660", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43057,12 +43103,12 @@ "isHttpMetadata": false }, { - "$id": "3657", + "$id": "3661", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3658", + "$id": "3662", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -43084,13 +43130,13 @@ ] }, { - "$ref": "3621" + "$ref": "3625" }, { - "$ref": "3632" + "$ref": "3636" }, { - "$id": "3659", + "$id": "3663", "kind": "model", "name": "ListFineTuningJobEventsResponse", "namespace": "OpenAI", @@ -43099,16 +43145,16 @@ "decorators": [], "properties": [ { - "$id": "3660", + "$id": "3664", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3661", + "$id": "3665", "kind": "array", "name": "ArrayFineTuningJobEvent", "valueType": { - "$id": "3662", + "$id": "3666", "kind": "model", "name": "FineTuningJobEvent", "namespace": "OpenAI", @@ -43118,13 +43164,13 @@ "decorators": [], "properties": [ { - "$id": "3663", + "$id": "3667", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"fine_tuning.job.event\".", "type": { - "$ref": "1587" + "$ref": "1591" }, "optional": false, "readOnly": false, @@ -43140,13 +43186,13 @@ "isHttpMetadata": false }, { - "$id": "3664", + "$id": "3668", "kind": "property", "name": "id", "serializedName": "id", "doc": "The object identifier.", "type": { - "$id": "3665", + "$id": "3669", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43166,18 +43212,18 @@ "isHttpMetadata": false }, { - "$id": "3666", + "$id": "3670", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the fine-tuning job was created.", "type": { - "$id": "3667", + "$id": "3671", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3668", + "$id": "3672", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43200,7 +43246,7 @@ "isHttpMetadata": false }, { - "$id": "3669", + "$id": "3673", "kind": "property", "name": "level", "serializedName": "level", @@ -43222,13 +43268,13 @@ "isHttpMetadata": false }, { - "$id": "3670", + "$id": "3674", "kind": "property", "name": "message", "serializedName": "message", "doc": "The message of the event.", "type": { - "$id": "3671", + "$id": "3675", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43248,7 +43294,7 @@ "isHttpMetadata": false }, { - "$id": "3672", + "$id": "3676", "kind": "property", "name": "type", "serializedName": "type", @@ -43270,13 +43316,13 @@ "isHttpMetadata": false }, { - "$id": "3673", + "$id": "3677", "kind": "property", "name": "data", "serializedName": "data", "doc": "The data associated with the event.", "type": { - "$id": "3674", + "$id": "3678", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -43314,12 +43360,12 @@ "isHttpMetadata": false }, { - "$id": "3675", + "$id": "3679", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1589" + "$ref": "1593" }, "optional": false, "readOnly": false, @@ -43335,12 +43381,12 @@ "isHttpMetadata": false }, { - "$id": "3676", + "$id": "3680", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3677", + "$id": "3681", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -43362,10 +43408,10 @@ ] }, { - "$ref": "3662" + "$ref": "3666" }, { - "$id": "3678", + "$id": "3682", "kind": "model", "name": "RunGraderRequest", "namespace": "OpenAI", @@ -43374,30 +43420,30 @@ "decorators": [], "properties": [ { - "$id": "3679", + "$id": "3683", "kind": "property", "name": "grader", "serializedName": "grader", "doc": "The grader used for the fine-tuning job.", "type": { - "$id": "3680", + "$id": "3684", "kind": "union", "name": "RunGraderRequestGrader", "variantTypes": [ { - "$ref": "3438" + "$ref": "3442" }, { - "$ref": "3441" + "$ref": "3445" }, { - "$ref": "3450" + "$ref": "3454" }, { - "$ref": "3458" + "$ref": "3462" }, { - "$ref": "3485" + "$ref": "3489" } ], "namespace": "OpenAI", @@ -43417,13 +43463,13 @@ "isHttpMetadata": false }, { - "$id": "3681", + "$id": "3685", "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": "3682", + "$id": "3686", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -43443,13 +43489,13 @@ "isHttpMetadata": false }, { - "$id": "3683", + "$id": "3687", "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": "3684", + "$id": "3688", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43471,7 +43517,7 @@ ] }, { - "$id": "3685", + "$id": "3689", "kind": "model", "name": "RunGraderResponse", "namespace": "OpenAI", @@ -43480,11 +43526,11 @@ "decorators": [], "properties": [ { - "$id": "3686", + "$id": "3690", "kind": "property", "name": "reward", "type": { - "$id": "3687", + "$id": "3691", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -43500,11 +43546,11 @@ "isHttpMetadata": false }, { - "$id": "3688", + "$id": "3692", "kind": "property", "name": "metadata", "type": { - "$id": "3689", + "$id": "3693", "kind": "model", "name": "RunGraderResponseMetadata", "namespace": "OpenAI", @@ -43513,11 +43559,11 @@ "decorators": [], "properties": [ { - "$id": "3690", + "$id": "3694", "kind": "property", "name": "name", "type": { - "$id": "3691", + "$id": "3695", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43533,11 +43579,11 @@ "isHttpMetadata": false }, { - "$id": "3692", + "$id": "3696", "kind": "property", "name": "type", "type": { - "$id": "3693", + "$id": "3697", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43553,11 +43599,11 @@ "isHttpMetadata": false }, { - "$id": "3694", + "$id": "3698", "kind": "property", "name": "errors", "type": { - "$id": "3695", + "$id": "3699", "kind": "model", "name": "RunGraderResponseMetadataErrors", "namespace": "OpenAI", @@ -43566,11 +43612,11 @@ "decorators": [], "properties": [ { - "$id": "3696", + "$id": "3700", "kind": "property", "name": "formula_parse_error", "type": { - "$id": "3697", + "$id": "3701", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -43586,11 +43632,11 @@ "isHttpMetadata": false }, { - "$id": "3698", + "$id": "3702", "kind": "property", "name": "sample_parse_error", "type": { - "$id": "3699", + "$id": "3703", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -43606,11 +43652,11 @@ "isHttpMetadata": false }, { - "$id": "3700", + "$id": "3704", "kind": "property", "name": "truncated_observation_error", "type": { - "$id": "3701", + "$id": "3705", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -43626,11 +43672,11 @@ "isHttpMetadata": false }, { - "$id": "3702", + "$id": "3706", "kind": "property", "name": "unresponsive_reward_error", "type": { - "$id": "3703", + "$id": "3707", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -43646,11 +43692,11 @@ "isHttpMetadata": false }, { - "$id": "3704", + "$id": "3708", "kind": "property", "name": "invalid_variable_error", "type": { - "$id": "3705", + "$id": "3709", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -43666,11 +43712,11 @@ "isHttpMetadata": false }, { - "$id": "3706", + "$id": "3710", "kind": "property", "name": "other_error", "type": { - "$id": "3707", + "$id": "3711", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -43686,11 +43732,11 @@ "isHttpMetadata": false }, { - "$id": "3708", + "$id": "3712", "kind": "property", "name": "python_grader_server_error", "type": { - "$id": "3709", + "$id": "3713", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -43706,14 +43752,14 @@ "isHttpMetadata": false }, { - "$id": "3710", + "$id": "3714", "kind": "property", "name": "python_grader_server_error_type", "type": { - "$id": "3711", + "$id": "3715", "kind": "nullable", "type": { - "$id": "3712", + "$id": "3716", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43731,11 +43777,11 @@ "isHttpMetadata": false }, { - "$id": "3713", + "$id": "3717", "kind": "property", "name": "python_grader_runtime_error", "type": { - "$id": "3714", + "$id": "3718", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -43751,14 +43797,14 @@ "isHttpMetadata": false }, { - "$id": "3715", + "$id": "3719", "kind": "property", "name": "python_grader_runtime_error_details", "type": { - "$id": "3716", + "$id": "3720", "kind": "nullable", "type": { - "$id": "3717", + "$id": "3721", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43776,11 +43822,11 @@ "isHttpMetadata": false }, { - "$id": "3718", + "$id": "3722", "kind": "property", "name": "model_grader_server_error", "type": { - "$id": "3719", + "$id": "3723", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -43796,11 +43842,11 @@ "isHttpMetadata": false }, { - "$id": "3720", + "$id": "3724", "kind": "property", "name": "model_grader_refusal_error", "type": { - "$id": "3721", + "$id": "3725", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -43816,11 +43862,11 @@ "isHttpMetadata": false }, { - "$id": "3722", + "$id": "3726", "kind": "property", "name": "model_grader_parse_error", "type": { - "$id": "3723", + "$id": "3727", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -43836,14 +43882,14 @@ "isHttpMetadata": false }, { - "$id": "3724", + "$id": "3728", "kind": "property", "name": "model_grader_server_error_details", "type": { - "$id": "3725", + "$id": "3729", "kind": "nullable", "type": { - "$id": "3726", + "$id": "3730", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43872,11 +43918,11 @@ "isHttpMetadata": false }, { - "$id": "3727", + "$id": "3731", "kind": "property", "name": "execution_time", "type": { - "$id": "3728", + "$id": "3732", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -43892,11 +43938,11 @@ "isHttpMetadata": false }, { - "$id": "3729", + "$id": "3733", "kind": "property", "name": "scores", "type": { - "$id": "3730", + "$id": "3734", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -43912,14 +43958,14 @@ "isHttpMetadata": false }, { - "$id": "3731", + "$id": "3735", "kind": "property", "name": "token_usage", "type": { - "$id": "3732", + "$id": "3736", "kind": "nullable", "type": { - "$id": "3733", + "$id": "3737", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43937,14 +43983,14 @@ "isHttpMetadata": false }, { - "$id": "3734", + "$id": "3738", "kind": "property", "name": "sampled_model_name", "type": { - "$id": "3735", + "$id": "3739", "kind": "nullable", "type": { - "$id": "3736", + "$id": "3740", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43973,11 +44019,11 @@ "isHttpMetadata": false }, { - "$id": "3737", + "$id": "3741", "kind": "property", "name": "sub_rewards", "type": { - "$id": "3738", + "$id": "3742", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -43993,11 +44039,11 @@ "isHttpMetadata": false }, { - "$id": "3739", + "$id": "3743", "kind": "property", "name": "model_grader_token_usage_per_model", "type": { - "$id": "3740", + "$id": "3744", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -44015,13 +44061,13 @@ ] }, { - "$ref": "3689" + "$ref": "3693" }, { - "$ref": "3695" + "$ref": "3699" }, { - "$id": "3741", + "$id": "3745", "kind": "model", "name": "ValidateGraderRequest", "namespace": "OpenAI", @@ -44030,30 +44076,30 @@ "decorators": [], "properties": [ { - "$id": "3742", + "$id": "3746", "kind": "property", "name": "grader", "serializedName": "grader", "doc": "The grader used for the fine-tuning job.", "type": { - "$id": "3743", + "$id": "3747", "kind": "union", "name": "ValidateGraderRequestGrader", "variantTypes": [ { - "$ref": "3438" + "$ref": "3442" }, { - "$ref": "3441" + "$ref": "3445" }, { - "$ref": "3450" + "$ref": "3454" }, { - "$ref": "3458" + "$ref": "3462" }, { - "$ref": "3485" + "$ref": "3489" } ], "namespace": "OpenAI", @@ -44075,7 +44121,7 @@ ] }, { - "$id": "3744", + "$id": "3748", "kind": "model", "name": "ValidateGraderResponse", "namespace": "OpenAI", @@ -44084,29 +44130,29 @@ "decorators": [], "properties": [ { - "$id": "3745", + "$id": "3749", "kind": "property", "name": "grader", "doc": "The grader used for the fine-tuning job.", "type": { - "$id": "3746", + "$id": "3750", "kind": "union", "name": "ValidateGraderResponseGrader", "variantTypes": [ { - "$ref": "3438" + "$ref": "3442" }, { - "$ref": "3441" + "$ref": "3445" }, { - "$ref": "3450" + "$ref": "3454" }, { - "$ref": "3458" + "$ref": "3462" }, { - "$ref": "3485" + "$ref": "3489" } ], "namespace": "OpenAI", @@ -44124,7 +44170,7 @@ ] }, { - "$id": "3747", + "$id": "3751", "kind": "model", "name": "EvalList", "namespace": "OpenAI", @@ -44134,13 +44180,13 @@ "decorators": [], "properties": [ { - "$id": "3748", + "$id": "3752", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of this object. It is always set to \"list\".", "type": { - "$ref": "1591" + "$ref": "1595" }, "optional": false, "readOnly": false, @@ -44156,17 +44202,17 @@ "isHttpMetadata": false }, { - "$id": "3749", + "$id": "3753", "kind": "property", "name": "data", "serializedName": "data", "doc": "An array of eval objects.", "type": { - "$id": "3750", + "$id": "3754", "kind": "array", "name": "ArrayEval", "valueType": { - "$id": "3751", + "$id": "3755", "kind": "model", "name": "Eval", "namespace": "OpenAI", @@ -44176,13 +44222,13 @@ "decorators": [], "properties": [ { - "$id": "3752", + "$id": "3756", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type.", "type": { - "$ref": "1593" + "$ref": "1597" }, "optional": false, "readOnly": false, @@ -44198,13 +44244,13 @@ "isHttpMetadata": false }, { - "$id": "3753", + "$id": "3757", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for the evaluation.", "type": { - "$id": "3754", + "$id": "3758", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44224,13 +44270,13 @@ "isHttpMetadata": false }, { - "$id": "3755", + "$id": "3759", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the evaluation.", "type": { - "$id": "3756", + "$id": "3760", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44250,13 +44296,13 @@ "isHttpMetadata": false }, { - "$id": "3757", + "$id": "3761", "kind": "property", "name": "data_source_config", "serializedName": "data_source_config", "doc": "Configuration of data sources used in runs of the evaluation.", "type": { - "$id": "3758", + "$id": "3762", "kind": "model", "name": "EvalDataSourceConfigResource", "namespace": "OpenAI", @@ -44264,7 +44310,7 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3759", + "$id": "3763", "kind": "property", "name": "type", "serializedName": "type", @@ -44286,12 +44332,12 @@ }, "properties": [ { - "$ref": "3759" + "$ref": "3763" } ], "discriminatedSubtypes": { "custom": { - "$id": "3760", + "$id": "3764", "kind": "model", "name": "EvalCustomDataSourceConfigResource", "namespace": "OpenAI", @@ -44301,11 +44347,11 @@ "discriminatorValue": "custom", "decorators": [], "baseModel": { - "$ref": "3758" + "$ref": "3762" }, "properties": [ { - "$id": "3761", + "$id": "3765", "kind": "property", "name": "type", "serializedName": "type", @@ -44327,23 +44373,23 @@ "isHttpMetadata": false }, { - "$id": "3762", + "$id": "3766", "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": "3763", + "$id": "3767", "kind": "dict", "keyType": { - "$id": "3764", + "$id": "3768", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, "valueType": { - "$id": "3765", + "$id": "3769", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -44367,7 +44413,7 @@ ] }, "stored_completions": { - "$id": "3766", + "$id": "3770", "kind": "model", "name": "EvalStoredCompletionsDataSourceConfigResource", "namespace": "OpenAI", @@ -44378,11 +44424,11 @@ "discriminatorValue": "stored_completions", "decorators": [], "baseModel": { - "$ref": "3758" + "$ref": "3762" }, "properties": [ { - "$id": "3767", + "$id": "3771", "kind": "property", "name": "type", "serializedName": "type", @@ -44404,13 +44450,13 @@ "isHttpMetadata": false }, { - "$id": "3768", + "$id": "3772", "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": "2345" + "$ref": "2349" }, "optional": false, "readOnly": false, @@ -44426,13 +44472,13 @@ "isHttpMetadata": false }, { - "$id": "3769", + "$id": "3773", "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": "3763" + "$ref": "3767" }, "optional": false, "readOnly": false, @@ -44450,7 +44496,7 @@ ] }, "logs": { - "$id": "3770", + "$id": "3774", "kind": "model", "name": "EvalLogsDataSourceConfigResource", "namespace": "OpenAI", @@ -44460,11 +44506,11 @@ "discriminatorValue": "logs", "decorators": [], "baseModel": { - "$ref": "3758" + "$ref": "3762" }, "properties": [ { - "$id": "3771", + "$id": "3775", "kind": "property", "name": "type", "serializedName": "type", @@ -44486,13 +44532,13 @@ "isHttpMetadata": false }, { - "$id": "3772", + "$id": "3776", "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": "2345" + "$ref": "2349" }, "optional": false, "readOnly": false, @@ -44508,13 +44554,13 @@ "isHttpMetadata": false }, { - "$id": "3773", + "$id": "3777", "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": "3763" + "$ref": "3767" }, "optional": false, "readOnly": false, @@ -44547,20 +44593,20 @@ "isHttpMetadata": false }, { - "$id": "3774", + "$id": "3778", "kind": "property", "name": "testing_criteria", "serializedName": "testing_criteria", "doc": "A list of testing criteria.", "type": { - "$id": "3775", + "$id": "3779", "kind": "nullable", "type": { - "$id": "3776", + "$id": "3780", "kind": "array", "name": "ArrayEvalGraderResource", "valueType": { - "$id": "3777", + "$id": "3781", "kind": "model", "name": "EvalGraderResource", "namespace": "OpenAI", @@ -44568,7 +44614,7 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3778", + "$id": "3782", "kind": "property", "name": "type", "serializedName": "type", @@ -44590,12 +44636,12 @@ }, "properties": [ { - "$ref": "3778" + "$ref": "3782" } ], "discriminatedSubtypes": { "label_model": { - "$id": "3779", + "$id": "3783", "kind": "model", "name": "EvalGraderLabelModelResource", "namespace": "OpenAI", @@ -44604,11 +44650,11 @@ "discriminatorValue": "label_model", "decorators": [], "baseModel": { - "$ref": "3777" + "$ref": "3781" }, "properties": [ { - "$id": "3780", + "$id": "3784", "kind": "property", "name": "type", "serializedName": "type", @@ -44630,13 +44676,13 @@ "isHttpMetadata": false }, { - "$id": "3781", + "$id": "3785", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3782", + "$id": "3786", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44656,13 +44702,13 @@ "isHttpMetadata": false }, { - "$id": "3783", + "$id": "3787", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation. Must support structured outputs.", "type": { - "$id": "3784", + "$id": "3788", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44682,12 +44728,12 @@ "isHttpMetadata": false }, { - "$id": "3785", + "$id": "3789", "kind": "property", "name": "input", "serializedName": "input", "type": { - "$ref": "3467" + "$ref": "3471" }, "optional": false, "readOnly": false, @@ -44703,13 +44749,13 @@ "isHttpMetadata": false }, { - "$id": "3786", + "$id": "3790", "kind": "property", "name": "labels", "serializedName": "labels", "doc": "The labels to assign to each item in the evaluation.", "type": { - "$ref": "2339" + "$ref": "2343" }, "optional": false, "readOnly": false, @@ -44725,13 +44771,13 @@ "isHttpMetadata": false }, { - "$id": "3787", + "$id": "3791", "kind": "property", "name": "passing_labels", "serializedName": "passing_labels", "doc": "The labels that indicate a passing result. Must be a subset of labels.", "type": { - "$ref": "2339" + "$ref": "2343" }, "optional": false, "readOnly": false, @@ -44749,7 +44795,7 @@ ] }, "text_similarity": { - "$id": "3788", + "$id": "3792", "kind": "model", "name": "EvalGraderTextSimilarityResource", "namespace": "OpenAI", @@ -44758,11 +44804,11 @@ "discriminatorValue": "text_similarity", "decorators": [], "baseModel": { - "$ref": "3777" + "$ref": "3781" }, "properties": [ { - "$id": "3789", + "$id": "3793", "kind": "property", "name": "type", "serializedName": "type", @@ -44784,13 +44830,13 @@ "isHttpMetadata": false }, { - "$id": "3790", + "$id": "3794", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3791", + "$id": "3795", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44810,13 +44856,13 @@ "isHttpMetadata": false }, { - "$id": "3792", + "$id": "3796", "kind": "property", "name": "input", "serializedName": "input", "doc": "The text being graded.", "type": { - "$id": "3793", + "$id": "3797", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44836,13 +44882,13 @@ "isHttpMetadata": false }, { - "$id": "3794", + "$id": "3798", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The text being graded against.", "type": { - "$id": "3795", + "$id": "3799", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44862,7 +44908,7 @@ "isHttpMetadata": false }, { - "$id": "3796", + "$id": "3800", "kind": "property", "name": "evaluation_metric", "serializedName": "evaluation_metric", @@ -44884,13 +44930,13 @@ "isHttpMetadata": false }, { - "$id": "3797", + "$id": "3801", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "3798", + "$id": "3802", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -44912,7 +44958,7 @@ ] }, "python": { - "$id": "3799", + "$id": "3803", "kind": "model", "name": "EvalGraderPythonResource", "namespace": "OpenAI", @@ -44921,11 +44967,11 @@ "discriminatorValue": "python", "decorators": [], "baseModel": { - "$ref": "3777" + "$ref": "3781" }, "properties": [ { - "$id": "3800", + "$id": "3804", "kind": "property", "name": "type", "serializedName": "type", @@ -44947,13 +44993,13 @@ "isHttpMetadata": false }, { - "$id": "3801", + "$id": "3805", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3802", + "$id": "3806", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44973,13 +45019,13 @@ "isHttpMetadata": false }, { - "$id": "3803", + "$id": "3807", "kind": "property", "name": "source", "serializedName": "source", "doc": "The source code of the python script.", "type": { - "$id": "3804", + "$id": "3808", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44999,13 +45045,13 @@ "isHttpMetadata": false }, { - "$id": "3805", + "$id": "3809", "kind": "property", "name": "image_tag", "serializedName": "image_tag", "doc": "The image tag to use for the python script.", "type": { - "$id": "3806", + "$id": "3810", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45025,13 +45071,13 @@ "isHttpMetadata": false }, { - "$id": "3807", + "$id": "3811", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "3808", + "$id": "3812", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -45053,7 +45099,7 @@ ] }, "score_model": { - "$id": "3809", + "$id": "3813", "kind": "model", "name": "EvalGraderScoreModelResource", "namespace": "OpenAI", @@ -45062,11 +45108,11 @@ "discriminatorValue": "score_model", "decorators": [], "baseModel": { - "$ref": "3777" + "$ref": "3781" }, "properties": [ { - "$id": "3810", + "$id": "3814", "kind": "property", "name": "type", "serializedName": "type", @@ -45088,13 +45134,13 @@ "isHttpMetadata": false }, { - "$id": "3811", + "$id": "3815", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3812", + "$id": "3816", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45114,13 +45160,13 @@ "isHttpMetadata": false }, { - "$id": "3813", + "$id": "3817", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation.", "type": { - "$id": "3814", + "$id": "3818", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45140,13 +45186,13 @@ "isHttpMetadata": false }, { - "$id": "3815", + "$id": "3819", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "doc": "The sampling parameters for the model.", "type": { - "$id": "3816", + "$id": "3820", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -45166,13 +45212,13 @@ "isHttpMetadata": false }, { - "$id": "3817", + "$id": "3821", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$ref": "3467" + "$ref": "3471" }, "optional": false, "readOnly": false, @@ -45188,13 +45234,13 @@ "isHttpMetadata": false }, { - "$id": "3818", + "$id": "3822", "kind": "property", "name": "range", "serializedName": "range", "doc": "The range of the score. Defaults to `[0, 1]`.", "type": { - "$ref": "2580" + "$ref": "2584" }, "optional": true, "readOnly": false, @@ -45210,13 +45256,13 @@ "isHttpMetadata": false }, { - "$id": "3819", + "$id": "3823", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "3820", + "$id": "3824", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -45258,18 +45304,18 @@ "isHttpMetadata": false }, { - "$id": "3821", + "$id": "3825", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the eval was created.", "type": { - "$id": "3822", + "$id": "3826", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3823", + "$id": "3827", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -45292,13 +45338,13 @@ "isHttpMetadata": false }, { - "$id": "3824", + "$id": "3828", "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": "2345" + "$ref": "2349" }, "optional": false, "readOnly": false, @@ -45332,13 +45378,13 @@ "isHttpMetadata": false }, { - "$id": "3825", + "$id": "3829", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The identifier of the first eval in the data array.", "type": { - "$id": "3826", + "$id": "3830", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45358,13 +45404,13 @@ "isHttpMetadata": false }, { - "$id": "3827", + "$id": "3831", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The identifier of the last eval in the data array.", "type": { - "$id": "3828", + "$id": "3832", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45384,13 +45430,13 @@ "isHttpMetadata": false }, { - "$id": "3829", + "$id": "3833", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates whether there are more evals available.", "type": { - "$id": "3830", + "$id": "3834", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45412,37 +45458,37 @@ ] }, { - "$ref": "3751" + "$ref": "3755" }, { - "$ref": "3758" + "$ref": "3762" }, { - "$ref": "3760" + "$ref": "3764" }, { - "$ref": "3766" + "$ref": "3770" }, { - "$ref": "3770" + "$ref": "3774" }, { - "$ref": "3777" + "$ref": "3781" }, { - "$ref": "3779" + "$ref": "3783" }, { - "$ref": "3788" + "$ref": "3792" }, { - "$ref": "3799" + "$ref": "3803" }, { - "$ref": "3809" + "$ref": "3813" }, { - "$id": "3831", + "$id": "3835", "kind": "model", "name": "CreateEvalRequest", "namespace": "OpenAI", @@ -45451,13 +45497,13 @@ "decorators": [], "properties": [ { - "$id": "3832", + "$id": "3836", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the evaluation.", "type": { - "$id": "3833", + "$id": "3837", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45477,13 +45523,13 @@ "isHttpMetadata": false }, { - "$id": "3834", + "$id": "3838", "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": "2346" + "$ref": "2350" }, "optional": true, "readOnly": false, @@ -45499,13 +45545,13 @@ "isHttpMetadata": false }, { - "$id": "3835", + "$id": "3839", "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": "3836", + "$id": "3840", "kind": "model", "name": "EvalDataSourceConfigParams", "namespace": "OpenAI", @@ -45513,7 +45559,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "3837", + "$id": "3841", "kind": "property", "name": "type", "serializedName": "type", @@ -45535,12 +45581,12 @@ }, "properties": [ { - "$ref": "3837" + "$ref": "3841" } ], "discriminatedSubtypes": { "custom": { - "$id": "3838", + "$id": "3842", "kind": "model", "name": "EvalCustomDataSourceConfigParams", "namespace": "OpenAI", @@ -45550,11 +45596,11 @@ "discriminatorValue": "custom", "decorators": [], "baseModel": { - "$ref": "3836" + "$ref": "3840" }, "properties": [ { - "$id": "3839", + "$id": "3843", "kind": "property", "name": "type", "serializedName": "type", @@ -45576,13 +45622,13 @@ "isHttpMetadata": false }, { - "$id": "3840", + "$id": "3844", "kind": "property", "name": "item_schema", "serializedName": "item_schema", "doc": "The json schema for each row in the data source.", "type": { - "$ref": "3763" + "$ref": "3767" }, "optional": false, "readOnly": false, @@ -45598,13 +45644,13 @@ "isHttpMetadata": false }, { - "$id": "3841", + "$id": "3845", "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": "3842", + "$id": "3846", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45626,7 +45672,7 @@ ] }, "logs": { - "$id": "3843", + "$id": "3847", "kind": "model", "name": "EvalLogsDataSourceConfigParams", "namespace": "OpenAI", @@ -45636,11 +45682,11 @@ "discriminatorValue": "logs", "decorators": [], "baseModel": { - "$ref": "3836" + "$ref": "3840" }, "properties": [ { - "$id": "3844", + "$id": "3848", "kind": "property", "name": "type", "serializedName": "type", @@ -45662,13 +45708,13 @@ "isHttpMetadata": false }, { - "$id": "3845", + "$id": "3849", "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": "2346" + "$ref": "2350" }, "optional": true, "readOnly": false, @@ -45686,7 +45732,7 @@ ] }, "stored_completions": { - "$id": "3846", + "$id": "3850", "kind": "model", "name": "EvalStoredCompletionsDataSourceConfigParams", "namespace": "OpenAI", @@ -45697,11 +45743,11 @@ "discriminatorValue": "stored_completions", "decorators": [], "baseModel": { - "$ref": "3836" + "$ref": "3840" }, "properties": [ { - "$id": "3847", + "$id": "3851", "kind": "property", "name": "type", "serializedName": "type", @@ -45723,13 +45769,13 @@ "isHttpMetadata": false }, { - "$id": "3848", + "$id": "3852", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Metadata filters for the stored completions data source.", "type": { - "$ref": "3763" + "$ref": "3767" }, "optional": true, "readOnly": false, @@ -45762,17 +45808,17 @@ "isHttpMetadata": false }, { - "$id": "3849", + "$id": "3853", "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": "3850", + "$id": "3854", "kind": "array", "name": "ArrayEvalGraderParams", "valueType": { - "$id": "3851", + "$id": "3855", "kind": "model", "name": "EvalGraderParams", "namespace": "OpenAI", @@ -45780,7 +45826,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "3852", + "$id": "3856", "kind": "property", "name": "type", "serializedName": "type", @@ -45802,12 +45848,12 @@ }, "properties": [ { - "$ref": "3852" + "$ref": "3856" } ], "discriminatedSubtypes": { "label_model": { - "$id": "3853", + "$id": "3857", "kind": "model", "name": "EvalGraderLabelModelParams", "namespace": "OpenAI", @@ -45817,11 +45863,11 @@ "discriminatorValue": "label_model", "decorators": [], "baseModel": { - "$ref": "3851" + "$ref": "3855" }, "properties": [ { - "$id": "3854", + "$id": "3858", "kind": "property", "name": "type", "serializedName": "type", @@ -45843,13 +45889,13 @@ "isHttpMetadata": false }, { - "$id": "3855", + "$id": "3859", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3856", + "$id": "3860", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45869,13 +45915,13 @@ "isHttpMetadata": false }, { - "$id": "3857", + "$id": "3861", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation. Must support structured outputs.", "type": { - "$id": "3858", + "$id": "3862", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45895,22 +45941,22 @@ "isHttpMetadata": false }, { - "$id": "3859", + "$id": "3863", "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": "3860", + "$id": "3864", "kind": "array", "name": "ArrayCreateEvalItem", "valueType": { - "$id": "3861", + "$id": "3865", "kind": "union", "name": "CreateEvalItem", "variantTypes": [ { - "$id": "3862", + "$id": "3866", "kind": "model", "name": "EvalGraderLabelModelParamsInput", "namespace": "OpenAI", @@ -45919,13 +45965,13 @@ "decorators": [], "properties": [ { - "$id": "3863", + "$id": "3867", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message (e.g. \"system\", \"assistant\", \"user\").", "type": { - "$id": "3864", + "$id": "3868", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45945,13 +45991,13 @@ "isHttpMetadata": false }, { - "$id": "3865", + "$id": "3869", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message.", "type": { - "$id": "3866", + "$id": "3870", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45973,7 +46019,7 @@ ] }, { - "$ref": "3468" + "$ref": "3472" } ], "namespace": "OpenAI", @@ -45996,13 +46042,13 @@ "isHttpMetadata": false }, { - "$id": "3867", + "$id": "3871", "kind": "property", "name": "labels", "serializedName": "labels", "doc": "The labels to classify to each item in the evaluation.", "type": { - "$ref": "2339" + "$ref": "2343" }, "optional": false, "readOnly": false, @@ -46018,13 +46064,13 @@ "isHttpMetadata": false }, { - "$id": "3868", + "$id": "3872", "kind": "property", "name": "passing_labels", "serializedName": "passing_labels", "doc": "The labels that indicate a passing result. Must be a subset of labels.", "type": { - "$ref": "2339" + "$ref": "2343" }, "optional": false, "readOnly": false, @@ -46042,7 +46088,7 @@ ] }, "string_check": { - "$id": "3869", + "$id": "3873", "kind": "model", "name": "EvalGraderStringCheckParams", "namespace": "OpenAI", @@ -46051,17 +46097,17 @@ "discriminatorValue": "string_check", "decorators": [], "baseModel": { - "$ref": "3851" + "$ref": "3855" }, "properties": [ { - "$id": "3870", + "$id": "3874", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `string_check`.", "type": { - "$ref": "3503" + "$ref": "3507" }, "optional": false, "readOnly": false, @@ -46077,13 +46123,13 @@ "isHttpMetadata": false }, { - "$id": "3871", + "$id": "3875", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3872", + "$id": "3876", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46103,13 +46149,13 @@ "isHttpMetadata": false }, { - "$id": "3873", + "$id": "3877", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$id": "3874", + "$id": "3878", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46129,13 +46175,13 @@ "isHttpMetadata": false }, { - "$id": "3875", + "$id": "3879", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The reference text. This may include template strings.", "type": { - "$id": "3876", + "$id": "3880", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46155,7 +46201,7 @@ "isHttpMetadata": false }, { - "$id": "3877", + "$id": "3881", "kind": "property", "name": "operation", "serializedName": "operation", @@ -46179,7 +46225,7 @@ ] }, "text_similarity": { - "$id": "3878", + "$id": "3882", "kind": "model", "name": "EvalGraderTextSimilarityParams", "namespace": "OpenAI", @@ -46188,11 +46234,11 @@ "discriminatorValue": "text_similarity", "decorators": [], "baseModel": { - "$ref": "3851" + "$ref": "3855" }, "properties": [ { - "$id": "3879", + "$id": "3883", "kind": "property", "name": "type", "serializedName": "type", @@ -46214,13 +46260,13 @@ "isHttpMetadata": false }, { - "$id": "3880", + "$id": "3884", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3881", + "$id": "3885", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46240,13 +46286,13 @@ "isHttpMetadata": false }, { - "$id": "3882", + "$id": "3886", "kind": "property", "name": "input", "serializedName": "input", "doc": "The text being graded.", "type": { - "$id": "3883", + "$id": "3887", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46266,13 +46312,13 @@ "isHttpMetadata": false }, { - "$id": "3884", + "$id": "3888", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The text being graded against.", "type": { - "$id": "3885", + "$id": "3889", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46292,7 +46338,7 @@ "isHttpMetadata": false }, { - "$id": "3886", + "$id": "3890", "kind": "property", "name": "evaluation_metric", "serializedName": "evaluation_metric", @@ -46314,13 +46360,13 @@ "isHttpMetadata": false }, { - "$id": "3887", + "$id": "3891", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "3888", + "$id": "3892", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -46342,7 +46388,7 @@ ] }, "python": { - "$id": "3889", + "$id": "3893", "kind": "model", "name": "EvalGraderPythonParams", "namespace": "OpenAI", @@ -46351,11 +46397,11 @@ "discriminatorValue": "python", "decorators": [], "baseModel": { - "$ref": "3851" + "$ref": "3855" }, "properties": [ { - "$id": "3890", + "$id": "3894", "kind": "property", "name": "type", "serializedName": "type", @@ -46377,13 +46423,13 @@ "isHttpMetadata": false }, { - "$id": "3891", + "$id": "3895", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3892", + "$id": "3896", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46403,13 +46449,13 @@ "isHttpMetadata": false }, { - "$id": "3893", + "$id": "3897", "kind": "property", "name": "source", "serializedName": "source", "doc": "The source code of the python script.", "type": { - "$id": "3894", + "$id": "3898", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46429,13 +46475,13 @@ "isHttpMetadata": false }, { - "$id": "3895", + "$id": "3899", "kind": "property", "name": "image_tag", "serializedName": "image_tag", "doc": "The image tag to use for the python script.", "type": { - "$id": "3896", + "$id": "3900", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46455,13 +46501,13 @@ "isHttpMetadata": false }, { - "$id": "3897", + "$id": "3901", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "3898", + "$id": "3902", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -46483,7 +46529,7 @@ ] }, "score_model": { - "$id": "3899", + "$id": "3903", "kind": "model", "name": "EvalGraderScoreModelParams", "namespace": "OpenAI", @@ -46492,11 +46538,11 @@ "discriminatorValue": "score_model", "decorators": [], "baseModel": { - "$ref": "3851" + "$ref": "3855" }, "properties": [ { - "$id": "3900", + "$id": "3904", "kind": "property", "name": "type", "serializedName": "type", @@ -46518,13 +46564,13 @@ "isHttpMetadata": false }, { - "$id": "3901", + "$id": "3905", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3902", + "$id": "3906", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46544,13 +46590,13 @@ "isHttpMetadata": false }, { - "$id": "3903", + "$id": "3907", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation.", "type": { - "$id": "3904", + "$id": "3908", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46570,13 +46616,13 @@ "isHttpMetadata": false }, { - "$id": "3905", + "$id": "3909", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "doc": "The sampling parameters for the model.", "type": { - "$id": "3906", + "$id": "3910", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -46596,13 +46642,13 @@ "isHttpMetadata": false }, { - "$id": "3907", + "$id": "3911", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$ref": "3467" + "$ref": "3471" }, "optional": false, "readOnly": false, @@ -46618,13 +46664,13 @@ "isHttpMetadata": false }, { - "$id": "3908", + "$id": "3912", "kind": "property", "name": "range", "serializedName": "range", "doc": "The range of the score. Defaults to `[0, 1]`.", "type": { - "$ref": "2580" + "$ref": "2584" }, "optional": true, "readOnly": false, @@ -46640,13 +46686,13 @@ "isHttpMetadata": false }, { - "$id": "3909", + "$id": "3913", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "3910", + "$id": "3914", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -46688,40 +46734,40 @@ ] }, { - "$ref": "3836" + "$ref": "3840" }, { - "$ref": "3838" + "$ref": "3842" }, { - "$ref": "3843" + "$ref": "3847" }, { - "$ref": "3846" + "$ref": "3850" }, { - "$ref": "3851" + "$ref": "3855" }, { - "$ref": "3853" + "$ref": "3857" }, { - "$ref": "3862" + "$ref": "3866" }, { - "$ref": "3869" + "$ref": "3873" }, { - "$ref": "3878" + "$ref": "3882" }, { - "$ref": "3889" + "$ref": "3893" }, { - "$ref": "3899" + "$ref": "3903" }, { - "$id": "3911", + "$id": "3915", "kind": "model", "name": "UpdateEvalRequest", "namespace": "OpenAI", @@ -46730,12 +46776,12 @@ "decorators": [], "properties": [ { - "$id": "3912", + "$id": "3916", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "3913", + "$id": "3917", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46755,12 +46801,12 @@ "isHttpMetadata": false }, { - "$id": "3914", + "$id": "3918", "kind": "property", "name": "metadata", "serializedName": "metadata", "type": { - "$id": "3915", + "$id": "3919", "kind": "model", "name": "MetadataPropertyForRequest", "namespace": "OpenAI", @@ -46770,13 +46816,13 @@ "decorators": [], "properties": [ { - "$id": "3916", + "$id": "3920", "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": "2346" + "$ref": "2350" }, "optional": true, "readOnly": false, @@ -46809,10 +46855,10 @@ ] }, { - "$ref": "3915" + "$ref": "3919" }, { - "$id": "3917", + "$id": "3921", "kind": "model", "name": "DeleteEvalResponse", "namespace": "OpenAI", @@ -46821,12 +46867,12 @@ "decorators": [], "properties": [ { - "$id": "3918", + "$id": "3922", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1595" + "$ref": "1599" }, "optional": false, "readOnly": false, @@ -46842,12 +46888,12 @@ "isHttpMetadata": false }, { - "$id": "3919", + "$id": "3923", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "3920", + "$id": "3924", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -46867,12 +46913,12 @@ "isHttpMetadata": false }, { - "$id": "3921", + "$id": "3925", "kind": "property", "name": "eval_id", "serializedName": "eval_id", "type": { - "$id": "3922", + "$id": "3926", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46894,7 +46940,7 @@ ] }, { - "$id": "3923", + "$id": "3927", "kind": "model", "name": "EvalRunList", "namespace": "OpenAI", @@ -46904,13 +46950,13 @@ "decorators": [], "properties": [ { - "$id": "3924", + "$id": "3928", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of this object. It is always set to \"list\".", "type": { - "$ref": "1597" + "$ref": "1601" }, "optional": false, "readOnly": false, @@ -46926,17 +46972,17 @@ "isHttpMetadata": false }, { - "$id": "3925", + "$id": "3929", "kind": "property", "name": "data", "serializedName": "data", "doc": "An array of eval run objects.", "type": { - "$id": "3926", + "$id": "3930", "kind": "array", "name": "ArrayEvalRun", "valueType": { - "$id": "3927", + "$id": "3931", "kind": "model", "name": "EvalRun", "namespace": "OpenAI", @@ -46946,13 +46992,13 @@ "decorators": [], "properties": [ { - "$id": "3928", + "$id": "3932", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of the object. Always \"eval.run\".", "type": { - "$ref": "1599" + "$ref": "1603" }, "optional": false, "readOnly": false, @@ -46968,13 +47014,13 @@ "isHttpMetadata": false }, { - "$id": "3929", + "$id": "3933", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for the evaluation run.", "type": { - "$id": "3930", + "$id": "3934", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46994,13 +47040,13 @@ "isHttpMetadata": false }, { - "$id": "3931", + "$id": "3935", "kind": "property", "name": "eval_id", "serializedName": "eval_id", "doc": "The identifier of the associated evaluation.", "type": { - "$id": "3932", + "$id": "3936", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47020,13 +47066,13 @@ "isHttpMetadata": false }, { - "$id": "3933", + "$id": "3937", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the evaluation run.", "type": { - "$id": "3934", + "$id": "3938", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47046,13 +47092,13 @@ "isHttpMetadata": false }, { - "$id": "3935", + "$id": "3939", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model that is evaluated, if applicable.", "type": { - "$id": "3936", + "$id": "3940", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47072,13 +47118,13 @@ "isHttpMetadata": false }, { - "$id": "3937", + "$id": "3941", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the evaluation run.", "type": { - "$id": "3938", + "$id": "3942", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47098,18 +47144,18 @@ "isHttpMetadata": false }, { - "$id": "3939", + "$id": "3943", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) when the evaluation run was created.", "type": { - "$id": "3940", + "$id": "3944", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3941", + "$id": "3945", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -47132,13 +47178,13 @@ "isHttpMetadata": false }, { - "$id": "3942", + "$id": "3946", "kind": "property", "name": "report_url", "serializedName": "report_url", "doc": "The URL to the rendered evaluation run report on the UI dashboard.", "type": { - "$id": "3943", + "$id": "3947", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47158,13 +47204,13 @@ "isHttpMetadata": false }, { - "$id": "3944", + "$id": "3948", "kind": "property", "name": "result_counts", "serializedName": "result_counts", "doc": "Counters summarizing the outcomes of the evaluation run.", "type": { - "$id": "3945", + "$id": "3949", "kind": "model", "name": "EvalRunResultCounts", "namespace": "OpenAI", @@ -47173,13 +47219,13 @@ "decorators": [], "properties": [ { - "$id": "3946", + "$id": "3950", "kind": "property", "name": "total", "serializedName": "total", "doc": "Total number of executed output items.", "type": { - "$id": "3947", + "$id": "3951", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -47199,13 +47245,13 @@ "isHttpMetadata": false }, { - "$id": "3948", + "$id": "3952", "kind": "property", "name": "errored", "serializedName": "errored", "doc": "Number of output items that resulted in an error.", "type": { - "$id": "3949", + "$id": "3953", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -47225,13 +47271,13 @@ "isHttpMetadata": false }, { - "$id": "3950", + "$id": "3954", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "Number of output items that failed to pass the evaluation.", "type": { - "$id": "3951", + "$id": "3955", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -47251,13 +47297,13 @@ "isHttpMetadata": false }, { - "$id": "3952", + "$id": "3956", "kind": "property", "name": "passed", "serializedName": "passed", "doc": "Number of output items that passed the evaluation.", "type": { - "$id": "3953", + "$id": "3957", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -47292,17 +47338,17 @@ "isHttpMetadata": false }, { - "$id": "3954", + "$id": "3958", "kind": "property", "name": "per_model_usage", "serializedName": "per_model_usage", "doc": "Usage statistics for each model during the evaluation run.", "type": { - "$id": "3955", + "$id": "3959", "kind": "array", "name": "Array15", "valueType": { - "$id": "3956", + "$id": "3960", "kind": "model", "name": "EvalRunPerModelUsage", "namespace": "OpenAI", @@ -47311,13 +47357,13 @@ "decorators": [], "properties": [ { - "$id": "3957", + "$id": "3961", "kind": "property", "name": "model_name", "serializedName": "model_name", "doc": "The name of the model.", "type": { - "$id": "3958", + "$id": "3962", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47337,13 +47383,13 @@ "isHttpMetadata": false }, { - "$id": "3959", + "$id": "3963", "kind": "property", "name": "invocation_count", "serializedName": "invocation_count", "doc": "The number of invocations.", "type": { - "$id": "3960", + "$id": "3964", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -47363,13 +47409,13 @@ "isHttpMetadata": false }, { - "$id": "3961", + "$id": "3965", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "The number of prompt tokens used.", "type": { - "$id": "3962", + "$id": "3966", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -47389,13 +47435,13 @@ "isHttpMetadata": false }, { - "$id": "3963", + "$id": "3967", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "The number of completion tokens generated.", "type": { - "$id": "3964", + "$id": "3968", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -47415,13 +47461,13 @@ "isHttpMetadata": false }, { - "$id": "3965", + "$id": "3969", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens used.", "type": { - "$id": "3966", + "$id": "3970", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -47441,13 +47487,13 @@ "isHttpMetadata": false }, { - "$id": "3967", + "$id": "3971", "kind": "property", "name": "cached_tokens", "serializedName": "cached_tokens", "doc": "The number of tokens retrieved from cache.", "type": { - "$id": "3968", + "$id": "3972", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -47485,17 +47531,17 @@ "isHttpMetadata": false }, { - "$id": "3969", + "$id": "3973", "kind": "property", "name": "per_testing_criteria_results", "serializedName": "per_testing_criteria_results", "doc": "Results per testing criteria applied during the evaluation run.", "type": { - "$id": "3970", + "$id": "3974", "kind": "array", "name": "Array16", "valueType": { - "$id": "3971", + "$id": "3975", "kind": "model", "name": "EvalRunPerTestingCriteriaResult", "namespace": "OpenAI", @@ -47504,13 +47550,13 @@ "decorators": [], "properties": [ { - "$id": "3972", + "$id": "3976", "kind": "property", "name": "testing_criteria", "serializedName": "testing_criteria", "doc": "A description of the testing criteria.", "type": { - "$id": "3973", + "$id": "3977", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47530,13 +47576,13 @@ "isHttpMetadata": false }, { - "$id": "3974", + "$id": "3978", "kind": "property", "name": "passed", "serializedName": "passed", "doc": "Number of tests passed for this criteria.", "type": { - "$id": "3975", + "$id": "3979", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -47556,13 +47602,13 @@ "isHttpMetadata": false }, { - "$id": "3976", + "$id": "3980", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "Number of tests failed for this criteria.", "type": { - "$id": "3977", + "$id": "3981", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -47600,13 +47646,13 @@ "isHttpMetadata": false }, { - "$id": "3978", + "$id": "3982", "kind": "property", "name": "data_source", "serializedName": "data_source", "doc": "Information about the run's data source.", "type": { - "$id": "3979", + "$id": "3983", "kind": "model", "name": "EvalRunDataSourceResource", "namespace": "OpenAI", @@ -47615,7 +47661,7 @@ "decorators": [], "properties": [ { - "$id": "3980", + "$id": "3984", "kind": "property", "name": "type", "serializedName": "type", @@ -47651,13 +47697,13 @@ "isHttpMetadata": false }, { - "$id": "3981", + "$id": "3985", "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": "2345" + "$ref": "2349" }, "optional": false, "readOnly": false, @@ -47673,12 +47719,12 @@ "isHttpMetadata": false }, { - "$id": "3982", + "$id": "3986", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$id": "3983", + "$id": "3987", "kind": "model", "name": "EvalApiError", "namespace": "OpenAI", @@ -47688,13 +47734,13 @@ "decorators": [], "properties": [ { - "$id": "3984", + "$id": "3988", "kind": "property", "name": "code", "serializedName": "code", "doc": "The error code.", "type": { - "$id": "3985", + "$id": "3989", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47714,13 +47760,13 @@ "isHttpMetadata": false }, { - "$id": "3986", + "$id": "3990", "kind": "property", "name": "message", "serializedName": "message", "doc": "The error message.", "type": { - "$id": "3987", + "$id": "3991", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47773,13 +47819,13 @@ "isHttpMetadata": false }, { - "$id": "3988", + "$id": "3992", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The identifier of the first eval run in the data array.", "type": { - "$id": "3989", + "$id": "3993", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47799,13 +47845,13 @@ "isHttpMetadata": false }, { - "$id": "3990", + "$id": "3994", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The identifier of the last eval run in the data array.", "type": { - "$id": "3991", + "$id": "3995", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47825,13 +47871,13 @@ "isHttpMetadata": false }, { - "$id": "3992", + "$id": "3996", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates whether there are more evals available.", "type": { - "$id": "3993", + "$id": "3997", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -47853,25 +47899,25 @@ ] }, { - "$ref": "3927" + "$ref": "3931" }, { - "$ref": "3945" + "$ref": "3949" }, { - "$ref": "3956" + "$ref": "3960" }, { - "$ref": "3971" + "$ref": "3975" }, { - "$ref": "3979" + "$ref": "3983" }, { - "$ref": "3983" + "$ref": "3987" }, { - "$id": "3994", + "$id": "3998", "kind": "model", "name": "CreateEvalRunRequest", "namespace": "OpenAI", @@ -47880,13 +47926,13 @@ "decorators": [], "properties": [ { - "$id": "3995", + "$id": "3999", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the run.", "type": { - "$id": "3996", + "$id": "4000", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47906,13 +47952,13 @@ "isHttpMetadata": false }, { - "$id": "3997", + "$id": "4001", "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": "2346" + "$ref": "2350" }, "optional": true, "readOnly": false, @@ -47928,13 +47974,13 @@ "isHttpMetadata": false }, { - "$id": "3998", + "$id": "4002", "kind": "property", "name": "data_source", "serializedName": "data_source", "doc": "Details about the run's data source.", "type": { - "$id": "3999", + "$id": "4003", "kind": "model", "name": "EvalRunDataSourceParams", "namespace": "OpenAI", @@ -47942,7 +47988,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "4000", + "$id": "4004", "kind": "property", "name": "type", "serializedName": "type", @@ -47964,12 +48010,12 @@ }, "properties": [ { - "$ref": "4000" + "$ref": "4004" } ], "discriminatedSubtypes": { "jsonl": { - "$id": "4001", + "$id": "4005", "kind": "model", "name": "EvalJsonlRunDataSourceParams", "namespace": "OpenAI", @@ -47979,11 +48025,11 @@ "discriminatorValue": "jsonl", "decorators": [], "baseModel": { - "$ref": "3999" + "$ref": "4003" }, "properties": [ { - "$id": "4002", + "$id": "4006", "kind": "property", "name": "type", "serializedName": "type", @@ -48005,18 +48051,18 @@ "isHttpMetadata": false }, { - "$id": "4003", + "$id": "4007", "kind": "property", "name": "source", "serializedName": "source", "doc": "Determines what populates the `item` namespace in the data source.", "type": { - "$id": "4004", + "$id": "4008", "kind": "union", "name": "EvalJsonlRunDataSourceParamsSource", "variantTypes": [ { - "$id": "4005", + "$id": "4009", "kind": "model", "name": "EvalRunFileContentDataContentSource", "namespace": "OpenAI", @@ -48025,7 +48071,7 @@ "discriminatorValue": "file_content", "decorators": [], "baseModel": { - "$id": "4006", + "$id": "4010", "kind": "model", "name": "EvalRunDataContentSource", "namespace": "OpenAI", @@ -48033,7 +48079,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "4007", + "$id": "4011", "kind": "property", "name": "type", "serializedName": "type", @@ -48055,15 +48101,15 @@ }, "properties": [ { - "$ref": "4007" + "$ref": "4011" } ], "discriminatedSubtypes": { "file_content": { - "$ref": "4005" + "$ref": "4009" }, "file_id": { - "$id": "4008", + "$id": "4012", "kind": "model", "name": "EvalRunFileIdDataContentSource", "namespace": "OpenAI", @@ -48072,11 +48118,11 @@ "discriminatorValue": "file_id", "decorators": [], "baseModel": { - "$ref": "4006" + "$ref": "4010" }, "properties": [ { - "$id": "4009", + "$id": "4013", "kind": "property", "name": "type", "serializedName": "type", @@ -48098,13 +48144,13 @@ "isHttpMetadata": false }, { - "$id": "4010", + "$id": "4014", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier of the file.", "type": { - "$id": "4011", + "$id": "4015", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48126,7 +48172,7 @@ ] }, "stored_completions": { - "$id": "4012", + "$id": "4016", "kind": "model", "name": "EvalRunStoredCompletionsDataContentSource", "namespace": "OpenAI", @@ -48136,11 +48182,11 @@ "discriminatorValue": "stored_completions", "decorators": [], "baseModel": { - "$ref": "4006" + "$ref": "4010" }, "properties": [ { - "$id": "4013", + "$id": "4017", "kind": "property", "name": "type", "serializedName": "type", @@ -48162,13 +48208,13 @@ "isHttpMetadata": false }, { - "$id": "4014", + "$id": "4018", "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": "2345" + "$ref": "2349" }, "optional": false, "readOnly": false, @@ -48184,16 +48230,16 @@ "isHttpMetadata": false }, { - "$id": "4015", + "$id": "4019", "kind": "property", "name": "model", "serializedName": "model", "doc": "An optional model to filter by (e.g., 'gpt-4o').", "type": { - "$id": "4016", + "$id": "4020", "kind": "nullable", "type": { - "$id": "4017", + "$id": "4021", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48215,16 +48261,16 @@ "isHttpMetadata": false }, { - "$id": "4018", + "$id": "4022", "kind": "property", "name": "created_after", "serializedName": "created_after", "doc": "An optional Unix timestamp to filter items created after this time.", "type": { - "$id": "4019", + "$id": "4023", "kind": "nullable", "type": { - "$id": "4020", + "$id": "4024", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -48246,16 +48292,16 @@ "isHttpMetadata": false }, { - "$id": "4021", + "$id": "4025", "kind": "property", "name": "created_before", "serializedName": "created_before", "doc": "An optional Unix timestamp to filter items created before this time.", "type": { - "$id": "4022", + "$id": "4026", "kind": "nullable", "type": { - "$id": "4023", + "$id": "4027", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -48277,16 +48323,16 @@ "isHttpMetadata": false }, { - "$id": "4024", + "$id": "4028", "kind": "property", "name": "limit", "serializedName": "limit", "doc": "An optional maximum number of items to return.", "type": { - "$id": "4025", + "$id": "4029", "kind": "nullable", "type": { - "$id": "4026", + "$id": "4030", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -48310,7 +48356,7 @@ ] }, "responses": { - "$id": "4027", + "$id": "4031", "kind": "model", "name": "EvalRunResponsesDataContentSource", "namespace": "OpenAI", @@ -48320,11 +48366,11 @@ "discriminatorValue": "responses", "decorators": [], "baseModel": { - "$ref": "4006" + "$ref": "4010" }, "properties": [ { - "$id": "4028", + "$id": "4032", "kind": "property", "name": "type", "serializedName": "type", @@ -48346,13 +48392,13 @@ "isHttpMetadata": false }, { - "$id": "4029", + "$id": "4033", "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": "2346" + "$ref": "2350" }, "optional": true, "readOnly": false, @@ -48368,16 +48414,16 @@ "isHttpMetadata": false }, { - "$id": "4030", + "$id": "4034", "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": "4031", + "$id": "4035", "kind": "nullable", "type": { - "$id": "4032", + "$id": "4036", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48399,16 +48445,16 @@ "isHttpMetadata": false }, { - "$id": "4033", + "$id": "4037", "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": "4034", + "$id": "4038", "kind": "nullable", "type": { - "$id": "4035", + "$id": "4039", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48430,16 +48476,16 @@ "isHttpMetadata": false }, { - "$id": "4036", + "$id": "4040", "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": "4037", + "$id": "4041", "kind": "nullable", "type": { - "$id": "4038", + "$id": "4042", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -48461,16 +48507,16 @@ "isHttpMetadata": false }, { - "$id": "4039", + "$id": "4043", "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": "4040", + "$id": "4044", "kind": "nullable", "type": { - "$id": "4041", + "$id": "4045", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -48492,13 +48538,13 @@ "isHttpMetadata": false }, { - "$id": "4042", + "$id": "4046", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", "doc": "Optional reasoning effort parameter. This is a query parameter used to select responses.", "type": { - "$id": "4043", + "$id": "4047", "kind": "nullable", "type": { "$ref": "53" @@ -48519,16 +48565,16 @@ "isHttpMetadata": false }, { - "$id": "4044", + "$id": "4048", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Sampling temperature. This is a query parameter used to select responses.", "type": { - "$id": "4045", + "$id": "4049", "kind": "nullable", "type": { - "$id": "4046", + "$id": "4050", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -48550,16 +48596,16 @@ "isHttpMetadata": false }, { - "$id": "4047", + "$id": "4051", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "Nucleus sampling parameter. This is a query parameter used to select responses.", "type": { - "$id": "4048", + "$id": "4052", "kind": "nullable", "type": { - "$id": "4049", + "$id": "4053", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -48581,16 +48627,16 @@ "isHttpMetadata": false }, { - "$id": "4050", + "$id": "4054", "kind": "property", "name": "users", "serializedName": "users", "doc": "List of user identifiers. This is a query parameter used to select responses.", "type": { - "$id": "4051", + "$id": "4055", "kind": "nullable", "type": { - "$ref": "2339" + "$ref": "2343" }, "namespace": "OpenAI" }, @@ -48608,16 +48654,16 @@ "isHttpMetadata": false }, { - "$id": "4052", + "$id": "4056", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "List of tool names. This is a query parameter used to select responses.", "type": { - "$id": "4053", + "$id": "4057", "kind": "nullable", "type": { - "$ref": "2339" + "$ref": "2343" }, "namespace": "OpenAI" }, @@ -48640,13 +48686,13 @@ }, "properties": [ { - "$id": "4054", + "$id": "4058", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of jsonl source. Always `file_content`.", "type": { - "$id": "4055", + "$id": "4059", "kind": "enumvalue", "name": "file_content", "value": "file_content", @@ -48672,17 +48718,17 @@ "isHttpMetadata": false }, { - "$id": "4056", + "$id": "4060", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the jsonl file.", "type": { - "$id": "4057", + "$id": "4061", "kind": "array", "name": "Array17", "valueType": { - "$id": "4058", + "$id": "4062", "kind": "model", "name": "EvalRunFileContentDataContentSourceContent", "namespace": "OpenAI", @@ -48691,12 +48737,12 @@ "decorators": [], "properties": [ { - "$id": "4059", + "$id": "4063", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$ref": "3763" + "$ref": "3767" }, "optional": false, "readOnly": false, @@ -48712,12 +48758,12 @@ "isHttpMetadata": false }, { - "$id": "4060", + "$id": "4064", "kind": "property", "name": "sample", "serializedName": "sample", "type": { - "$ref": "3763" + "$ref": "3767" }, "optional": true, "readOnly": false, @@ -48753,7 +48799,7 @@ ] }, { - "$ref": "4008" + "$ref": "4012" } ], "namespace": "OpenAI", @@ -48775,7 +48821,7 @@ ] }, "completions": { - "$id": "4061", + "$id": "4065", "kind": "model", "name": "EvalCompletionsRunDataSourceParams", "namespace": "OpenAI", @@ -48785,11 +48831,11 @@ "discriminatorValue": "completions", "decorators": [], "baseModel": { - "$ref": "3999" + "$ref": "4003" }, "properties": [ { - "$id": "4062", + "$id": "4066", "kind": "property", "name": "type", "serializedName": "type", @@ -48811,18 +48857,18 @@ "isHttpMetadata": false }, { - "$id": "4063", + "$id": "4067", "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": "4064", + "$id": "4068", "kind": "union", "name": "EvalCompletionsRunDataSourceParamsInputMessages", "variantTypes": [ { - "$id": "4065", + "$id": "4069", "kind": "model", "name": "EvalCompletionsRunDataSourceParamsInputMessages1", "namespace": "OpenAI", @@ -48831,13 +48877,13 @@ "decorators": [], "properties": [ { - "$id": "4066", + "$id": "4070", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of input messages. Always `template`.", "type": { - "$ref": "1601" + "$ref": "1605" }, "optional": false, "readOnly": false, @@ -48853,29 +48899,29 @@ "isHttpMetadata": false }, { - "$id": "4067", + "$id": "4071", "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": "4068", + "$id": "4072", "kind": "array", "name": "Array18", "valueType": { - "$id": "4069", + "$id": "4073", "kind": "union", "name": "EvalCompletionsRunDataSourceParamsInputMessagesTemplate", "variantTypes": [ { - "$id": "4070", + "$id": "4074", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", "decorators": [] }, { - "$ref": "3468" + "$ref": "3472" } ], "namespace": "OpenAI", @@ -48900,7 +48946,7 @@ ] }, { - "$id": "4071", + "$id": "4075", "kind": "model", "name": "EvalCompletionsRunDataSourceParamsInputMessages2", "namespace": "OpenAI", @@ -48909,13 +48955,13 @@ "decorators": [], "properties": [ { - "$id": "4072", + "$id": "4076", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of input messages. Always `item_reference`.", "type": { - "$ref": "1603" + "$ref": "1607" }, "optional": false, "readOnly": false, @@ -48931,13 +48977,13 @@ "isHttpMetadata": false }, { - "$id": "4073", + "$id": "4077", "kind": "property", "name": "item_reference", "serializedName": "item_reference", "doc": "A reference to a variable in the `item` namespace. Ie, \"item.input_trajectory\"", "type": { - "$id": "4074", + "$id": "4078", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48976,12 +49022,12 @@ "isHttpMetadata": false }, { - "$id": "4075", + "$id": "4079", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "type": { - "$id": "4076", + "$id": "4080", "kind": "model", "name": "EvalCompletionsRunDataSourceParamsSamplingParams", "namespace": "OpenAI", @@ -48990,13 +49036,13 @@ "decorators": [], "properties": [ { - "$id": "4077", + "$id": "4081", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "A higher temperature increases randomness in the outputs.", "type": { - "$id": "4078", + "$id": "4082", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -49016,13 +49062,13 @@ "isHttpMetadata": false }, { - "$id": "4079", + "$id": "4083", "kind": "property", "name": "max_completion_tokens", "serializedName": "max_completion_tokens", "doc": "The maximum number of tokens in the generated output.", "type": { - "$id": "4080", + "$id": "4084", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49042,13 +49088,13 @@ "isHttpMetadata": false }, { - "$id": "4081", + "$id": "4085", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "An alternative to temperature for nucleus sampling; 1.0 includes all tokens.", "type": { - "$id": "4082", + "$id": "4086", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -49068,13 +49114,13 @@ "isHttpMetadata": false }, { - "$id": "4083", + "$id": "4087", "kind": "property", "name": "seed", "serializedName": "seed", "doc": "A seed value to initialize the randomness, during sampling.", "type": { - "$id": "4084", + "$id": "4088", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49094,13 +49140,13 @@ "isHttpMetadata": false }, { - "$id": "4085", + "$id": "4089", "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": "4086", + "$id": "4090", "kind": "model", "name": "ResponseTextFormatConfiguration", "namespace": "OpenAI", @@ -49108,7 +49154,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "4087", + "$id": "4091", "kind": "property", "name": "type", "serializedName": "type", @@ -49130,12 +49176,12 @@ }, "properties": [ { - "$ref": "4087" + "$ref": "4091" } ], "discriminatedSubtypes": { "text": { - "$id": "4088", + "$id": "4092", "kind": "model", "name": "ResponseTextFormatConfigurationText", "namespace": "OpenAI", @@ -49144,11 +49190,11 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "4086" + "$ref": "4090" }, "properties": [ { - "$id": "4089", + "$id": "4093", "kind": "property", "name": "type", "serializedName": "type", @@ -49171,7 +49217,7 @@ ] }, "json_object": { - "$id": "4090", + "$id": "4094", "kind": "model", "name": "ResponseTextFormatConfigurationJsonObject", "namespace": "OpenAI", @@ -49180,11 +49226,11 @@ "discriminatorValue": "json_object", "decorators": [], "baseModel": { - "$ref": "4086" + "$ref": "4090" }, "properties": [ { - "$id": "4091", + "$id": "4095", "kind": "property", "name": "type", "serializedName": "type", @@ -49207,7 +49253,7 @@ ] }, "json_schema": { - "$id": "4092", + "$id": "4096", "kind": "model", "name": "ResponseTextFormatConfigurationJsonSchema", "namespace": "OpenAI", @@ -49217,11 +49263,11 @@ "discriminatorValue": "json_schema", "decorators": [], "baseModel": { - "$ref": "4086" + "$ref": "4090" }, "properties": [ { - "$id": "4093", + "$id": "4097", "kind": "property", "name": "type", "serializedName": "type", @@ -49243,13 +49289,13 @@ "isHttpMetadata": false }, { - "$id": "4094", + "$id": "4098", "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": "4095", + "$id": "4099", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49269,13 +49315,13 @@ "isHttpMetadata": false }, { - "$id": "4096", + "$id": "4100", "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": "4097", + "$id": "4101", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49295,12 +49341,12 @@ "isHttpMetadata": false }, { - "$id": "4098", + "$id": "4102", "kind": "property", "name": "schema", "serializedName": "schema", "type": { - "$ref": "2372" + "$ref": "2376" }, "optional": false, "readOnly": false, @@ -49316,16 +49362,16 @@ "isHttpMetadata": false }, { - "$id": "4099", + "$id": "4103", "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": "4100", + "$id": "4104", "kind": "nullable", "type": { - "$id": "4101", + "$id": "4105", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -49364,13 +49410,13 @@ "isHttpMetadata": false }, { - "$id": "4102", + "$id": "4106", "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": "3056" + "$ref": "3060" }, "optional": true, "readOnly": false, @@ -49401,13 +49447,13 @@ "isHttpMetadata": false }, { - "$id": "4103", + "$id": "4107", "kind": "property", "name": "model", "serializedName": "model", "doc": "The name of the model to use for generating completions (e.g. \"o3-mini\").", "type": { - "$id": "4104", + "$id": "4108", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49427,24 +49473,24 @@ "isHttpMetadata": false }, { - "$id": "4105", + "$id": "4109", "kind": "property", "name": "source", "serializedName": "source", "doc": "Determines what populates the `item` namespace in this run's data source.", "type": { - "$id": "4106", + "$id": "4110", "kind": "union", "name": "EvalCompletionsRunDataSourceParamsSource", "variantTypes": [ { - "$ref": "4005" + "$ref": "4009" }, { - "$ref": "4008" + "$ref": "4012" }, { - "$ref": "4012" + "$ref": "4016" } ], "namespace": "OpenAI", @@ -49466,7 +49512,7 @@ ] }, "responses": { - "$id": "4107", + "$id": "4111", "kind": "model", "name": "EvalResponsesRunDataSourceParams", "namespace": "OpenAI", @@ -49476,11 +49522,11 @@ "discriminatorValue": "responses", "decorators": [], "baseModel": { - "$ref": "3999" + "$ref": "4003" }, "properties": [ { - "$id": "4108", + "$id": "4112", "kind": "property", "name": "type", "serializedName": "type", @@ -49502,18 +49548,18 @@ "isHttpMetadata": false }, { - "$id": "4109", + "$id": "4113", "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": "4110", + "$id": "4114", "kind": "union", "name": "EvalResponsesRunDataSourceParamsInputMessages", "variantTypes": [ { - "$id": "4111", + "$id": "4115", "kind": "model", "name": "EvalResponsesRunDataSourceParamsInputMessages1", "namespace": "OpenAI", @@ -49522,13 +49568,13 @@ "decorators": [], "properties": [ { - "$id": "4112", + "$id": "4116", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of input messages. Always `template`.", "type": { - "$ref": "1605" + "$ref": "1609" }, "optional": false, "readOnly": false, @@ -49544,22 +49590,22 @@ "isHttpMetadata": false }, { - "$id": "4113", + "$id": "4117", "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": "4114", + "$id": "4118", "kind": "array", "name": "Array19", "valueType": { - "$id": "4115", + "$id": "4119", "kind": "union", "name": "EvalResponsesRunDataSourceParamsInputMessagesTemplate", "variantTypes": [ { - "$id": "4116", + "$id": "4120", "kind": "model", "name": "EvalResponsesRunDataSourceParamsInputMessagesTemplate1", "namespace": "OpenAI", @@ -49568,13 +49614,13 @@ "decorators": [], "properties": [ { - "$id": "4117", + "$id": "4121", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message (e.g. \"system\", \"assistant\", \"user\").", "type": { - "$id": "4118", + "$id": "4122", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49594,13 +49640,13 @@ "isHttpMetadata": false }, { - "$id": "4119", + "$id": "4123", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message.", "type": { - "$id": "4120", + "$id": "4124", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49622,7 +49668,7 @@ ] }, { - "$ref": "3468" + "$ref": "3472" } ], "namespace": "OpenAI", @@ -49647,7 +49693,7 @@ ] }, { - "$id": "4121", + "$id": "4125", "kind": "model", "name": "EvalResponsesRunDataSourceParamsInputMessages2", "namespace": "OpenAI", @@ -49656,13 +49702,13 @@ "decorators": [], "properties": [ { - "$id": "4122", + "$id": "4126", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of input messages. Always `item_reference`.", "type": { - "$ref": "1607" + "$ref": "1611" }, "optional": false, "readOnly": false, @@ -49678,13 +49724,13 @@ "isHttpMetadata": false }, { - "$id": "4123", + "$id": "4127", "kind": "property", "name": "item_reference", "serializedName": "item_reference", "doc": "A reference to a variable in the `item` namespace. Ie, \"item.name\"", "type": { - "$id": "4124", + "$id": "4128", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49723,12 +49769,12 @@ "isHttpMetadata": false }, { - "$id": "4125", + "$id": "4129", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "type": { - "$id": "4126", + "$id": "4130", "kind": "model", "name": "EvalResponsesRunDataSourceParamsSamplingParams", "namespace": "OpenAI", @@ -49737,13 +49783,13 @@ "decorators": [], "properties": [ { - "$id": "4127", + "$id": "4131", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "A higher temperature increases randomness in the outputs.", "type": { - "$id": "4128", + "$id": "4132", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -49763,13 +49809,13 @@ "isHttpMetadata": false }, { - "$id": "4129", + "$id": "4133", "kind": "property", "name": "max_completion_tokens", "serializedName": "max_completion_tokens", "doc": "The maximum number of tokens in the generated output.", "type": { - "$id": "4130", + "$id": "4134", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49789,13 +49835,13 @@ "isHttpMetadata": false }, { - "$id": "4131", + "$id": "4135", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "An alternative to temperature for nucleus sampling; 1.0 includes all tokens.", "type": { - "$id": "4132", + "$id": "4136", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -49815,13 +49861,13 @@ "isHttpMetadata": false }, { - "$id": "4133", + "$id": "4137", "kind": "property", "name": "seed", "serializedName": "seed", "doc": "A seed value to initialize the randomness, during sampling.", "type": { - "$id": "4134", + "$id": "4138", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49841,17 +49887,17 @@ "isHttpMetadata": false }, { - "$id": "4135", + "$id": "4139", "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": "4136", + "$id": "4140", "kind": "array", "name": "ArrayTool", "valueType": { - "$id": "4137", + "$id": "4141", "kind": "model", "name": "Tool", "namespace": "OpenAI", @@ -49859,7 +49905,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "4138", + "$id": "4142", "kind": "property", "name": "type", "serializedName": "type", @@ -49881,12 +49927,12 @@ }, "properties": [ { - "$ref": "4138" + "$ref": "4142" } ], "discriminatedSubtypes": { "function": { - "$id": "4139", + "$id": "4143", "kind": "model", "name": "FunctionTool", "namespace": "OpenAI", @@ -49896,11 +49942,11 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "4137" + "$ref": "4141" }, "properties": [ { - "$id": "4140", + "$id": "4144", "kind": "property", "name": "type", "serializedName": "type", @@ -49922,13 +49968,13 @@ "isHttpMetadata": false }, { - "$id": "4141", + "$id": "4145", "kind": "property", "name": "FunctionName", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "4142", + "$id": "4146", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49948,16 +49994,16 @@ "isHttpMetadata": false }, { - "$id": "4143", + "$id": "4147", "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": "4144", + "$id": "4148", "kind": "nullable", "type": { - "$id": "4145", + "$id": "4149", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49979,16 +50025,16 @@ "isHttpMetadata": false }, { - "$id": "4146", + "$id": "4150", "kind": "property", "name": "FunctionParameters", "serializedName": "parameters", "doc": "A JSON schema object describing the parameters of the function.", "type": { - "$id": "4147", + "$id": "4151", "kind": "nullable", "type": { - "$id": "4148", + "$id": "4152", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -50010,16 +50056,16 @@ "isHttpMetadata": false }, { - "$id": "4149", + "$id": "4153", "kind": "property", "name": "StrictModeEnabled", "serializedName": "strict", "doc": "Whether to enforce strict parameter validation. Default `true`.", "type": { - "$id": "4150", + "$id": "4154", "kind": "nullable", "type": { - "$id": "4151", + "$id": "4155", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -50043,7 +50089,7 @@ ] }, "file_search": { - "$id": "4152", + "$id": "4156", "kind": "model", "name": "FileSearchTool", "namespace": "OpenAI", @@ -50053,11 +50099,11 @@ "discriminatorValue": "file_search", "decorators": [], "baseModel": { - "$ref": "4137" + "$ref": "4141" }, "properties": [ { - "$id": "4153", + "$id": "4157", "kind": "property", "name": "type", "serializedName": "type", @@ -50079,13 +50125,13 @@ "isHttpMetadata": false }, { - "$id": "4154", + "$id": "4158", "kind": "property", "name": "vector_store_ids", "serializedName": "vector_store_ids", "doc": "The IDs of the vector stores to search.", "type": { - "$ref": "2339" + "$ref": "2343" }, "optional": false, "readOnly": false, @@ -50101,13 +50147,13 @@ "isHttpMetadata": false }, { - "$id": "4155", + "$id": "4159", "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": "4156", + "$id": "4160", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -50127,13 +50173,13 @@ "isHttpMetadata": false }, { - "$id": "4157", + "$id": "4161", "kind": "property", "name": "ranking_options", "serializedName": "ranking_options", "doc": "Ranking options for search.", "type": { - "$id": "4158", + "$id": "4162", "kind": "model", "name": "RankingOptions", "namespace": "OpenAI", @@ -50142,7 +50188,7 @@ "decorators": [], "properties": [ { - "$id": "4159", + "$id": "4163", "kind": "property", "name": "ranker", "serializedName": "ranker", @@ -50164,13 +50210,13 @@ "isHttpMetadata": false }, { - "$id": "4160", + "$id": "4164", "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": "4161", + "$id": "4165", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -50205,21 +50251,21 @@ "isHttpMetadata": false }, { - "$id": "4162", + "$id": "4166", "kind": "property", "name": "filters", "serializedName": "filters", "doc": "A filter to apply.", "type": { - "$id": "4163", + "$id": "4167", "kind": "nullable", "type": { - "$id": "4164", + "$id": "4168", "kind": "union", "name": "Filters", "variantTypes": [ { - "$id": "4165", + "$id": "4169", "kind": "model", "name": "ComparisonFilter", "namespace": "OpenAI", @@ -50227,7 +50273,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "4166", + "$id": "4170", "kind": "property", "name": "type", "serializedName": "type", @@ -50249,15 +50295,15 @@ }, "properties": [ { - "$ref": "4166" + "$ref": "4170" }, { - "$id": "4167", + "$id": "4171", "kind": "property", "name": "key", "serializedName": "key", "type": { - "$id": "4168", + "$id": "4172", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50277,31 +50323,31 @@ "isHttpMetadata": false }, { - "$id": "4169", + "$id": "4173", "kind": "property", "name": "value", "serializedName": "value", "type": { - "$id": "4170", + "$id": "4174", "kind": "union", "name": "ComparisonFilterValue", "variantTypes": [ { - "$id": "4171", + "$id": "4175", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "4172", + "$id": "4176", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", "decorators": [] }, { - "$id": "4173", + "$id": "4177", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -50327,7 +50373,7 @@ ], "discriminatedSubtypes": { "eq": { - "$id": "4174", + "$id": "4178", "kind": "model", "name": "ComparisonFilterEquals", "namespace": "OpenAI", @@ -50336,11 +50382,11 @@ "discriminatorValue": "eq", "decorators": [], "baseModel": { - "$ref": "4165" + "$ref": "4169" }, "properties": [ { - "$id": "4175", + "$id": "4179", "kind": "property", "name": "type", "serializedName": "type", @@ -50363,7 +50409,7 @@ ] }, "ne": { - "$id": "4176", + "$id": "4180", "kind": "model", "name": "ComparisonFilterNotEquals", "namespace": "OpenAI", @@ -50372,11 +50418,11 @@ "discriminatorValue": "ne", "decorators": [], "baseModel": { - "$ref": "4165" + "$ref": "4169" }, "properties": [ { - "$id": "4177", + "$id": "4181", "kind": "property", "name": "type", "serializedName": "type", @@ -50399,7 +50445,7 @@ ] }, "gt": { - "$id": "4178", + "$id": "4182", "kind": "model", "name": "ComparisonFilterGreaterThan", "namespace": "OpenAI", @@ -50408,11 +50454,11 @@ "discriminatorValue": "gt", "decorators": [], "baseModel": { - "$ref": "4165" + "$ref": "4169" }, "properties": [ { - "$id": "4179", + "$id": "4183", "kind": "property", "name": "type", "serializedName": "type", @@ -50435,7 +50481,7 @@ ] }, "gte": { - "$id": "4180", + "$id": "4184", "kind": "model", "name": "ComparisonFilterGreaterThanOrEquals", "namespace": "OpenAI", @@ -50444,11 +50490,11 @@ "discriminatorValue": "gte", "decorators": [], "baseModel": { - "$ref": "4165" + "$ref": "4169" }, "properties": [ { - "$id": "4181", + "$id": "4185", "kind": "property", "name": "type", "serializedName": "type", @@ -50471,7 +50517,7 @@ ] }, "lt": { - "$id": "4182", + "$id": "4186", "kind": "model", "name": "ComparisonFilterLessThan", "namespace": "OpenAI", @@ -50480,11 +50526,11 @@ "discriminatorValue": "lt", "decorators": [], "baseModel": { - "$ref": "4165" + "$ref": "4169" }, "properties": [ { - "$id": "4183", + "$id": "4187", "kind": "property", "name": "type", "serializedName": "type", @@ -50507,7 +50553,7 @@ ] }, "lte": { - "$id": "4184", + "$id": "4188", "kind": "model", "name": "ComparisonFilterLessThanOrEquals", "namespace": "OpenAI", @@ -50516,11 +50562,11 @@ "discriminatorValue": "lte", "decorators": [], "baseModel": { - "$ref": "4165" + "$ref": "4169" }, "properties": [ { - "$id": "4185", + "$id": "4189", "kind": "property", "name": "type", "serializedName": "type", @@ -50545,7 +50591,7 @@ } }, { - "$id": "4186", + "$id": "4190", "kind": "model", "name": "CompoundFilter", "namespace": "OpenAI", @@ -50553,7 +50599,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "4187", + "$id": "4191", "kind": "property", "name": "type", "serializedName": "type", @@ -50575,27 +50621,27 @@ }, "properties": [ { - "$ref": "4187" + "$ref": "4191" }, { - "$id": "4188", + "$id": "4192", "kind": "property", "name": "filters", "serializedName": "filters", "type": { - "$id": "4189", + "$id": "4193", "kind": "array", "name": "Array20", "valueType": { - "$id": "4190", + "$id": "4194", "kind": "union", "name": "CompoundFilterFilter", "variantTypes": [ { - "$ref": "4165" + "$ref": "4169" }, { - "$ref": "4186" + "$ref": "4190" } ], "namespace": "OpenAI", @@ -50620,7 +50666,7 @@ ], "discriminatedSubtypes": { "and": { - "$id": "4191", + "$id": "4195", "kind": "model", "name": "CompoundFilterAnd", "namespace": "OpenAI", @@ -50629,11 +50675,11 @@ "discriminatorValue": "and", "decorators": [], "baseModel": { - "$ref": "4186" + "$ref": "4190" }, "properties": [ { - "$id": "4192", + "$id": "4196", "kind": "property", "name": "type", "serializedName": "type", @@ -50656,7 +50702,7 @@ ] }, "or": { - "$id": "4193", + "$id": "4197", "kind": "model", "name": "CompoundFilterOr", "namespace": "OpenAI", @@ -50665,11 +50711,11 @@ "discriminatorValue": "or", "decorators": [], "baseModel": { - "$ref": "4186" + "$ref": "4190" }, "properties": [ { - "$id": "4194", + "$id": "4198", "kind": "property", "name": "type", "serializedName": "type", @@ -50715,7 +50761,7 @@ ] }, "computer_use_preview": { - "$id": "4195", + "$id": "4199", "kind": "model", "name": "ComputerUsePreviewTool", "namespace": "OpenAI", @@ -50725,11 +50771,11 @@ "discriminatorValue": "computer_use_preview", "decorators": [], "baseModel": { - "$ref": "4137" + "$ref": "4141" }, "properties": [ { - "$id": "4196", + "$id": "4200", "kind": "property", "name": "type", "serializedName": "type", @@ -50751,7 +50797,7 @@ "isHttpMetadata": false }, { - "$id": "4197", + "$id": "4201", "kind": "property", "name": "environment", "serializedName": "environment", @@ -50773,13 +50819,13 @@ "isHttpMetadata": false }, { - "$id": "4198", + "$id": "4202", "kind": "property", "name": "display_width", "serializedName": "display_width", "doc": "The width of the computer display.", "type": { - "$id": "4199", + "$id": "4203", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -50799,13 +50845,13 @@ "isHttpMetadata": false }, { - "$id": "4200", + "$id": "4204", "kind": "property", "name": "display_height", "serializedName": "display_height", "doc": "The height of the computer display.", "type": { - "$id": "4201", + "$id": "4205", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -50827,7 +50873,7 @@ ] }, "web_search_preview": { - "$id": "4202", + "$id": "4206", "kind": "model", "name": "WebSearchPreviewTool", "namespace": "OpenAI", @@ -50837,11 +50883,11 @@ "discriminatorValue": "web_search_preview", "decorators": [], "baseModel": { - "$ref": "4137" + "$ref": "4141" }, "properties": [ { - "$id": "4203", + "$id": "4207", "kind": "property", "name": "type", "serializedName": "type", @@ -50863,16 +50909,16 @@ "isHttpMetadata": false }, { - "$id": "4204", + "$id": "4208", "kind": "property", "name": "user_location", "serializedName": "user_location", "doc": "The user's location.", "type": { - "$id": "4205", + "$id": "4209", "kind": "nullable", "type": { - "$id": "4206", + "$id": "4210", "kind": "model", "name": "Location", "namespace": "OpenAI", @@ -50880,7 +50926,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "4207", + "$id": "4211", "kind": "property", "name": "type", "serializedName": "type", @@ -50902,12 +50948,12 @@ }, "properties": [ { - "$ref": "4207" + "$ref": "4211" } ], "discriminatedSubtypes": { "approximate": { - "$id": "4208", + "$id": "4212", "kind": "model", "name": "ApproximateLocation", "namespace": "OpenAI", @@ -50916,11 +50962,11 @@ "discriminatorValue": "approximate", "decorators": [], "baseModel": { - "$ref": "4206" + "$ref": "4210" }, "properties": [ { - "$id": "4209", + "$id": "4213", "kind": "property", "name": "type", "serializedName": "type", @@ -50941,15 +50987,15 @@ "isHttpMetadata": false }, { - "$id": "4210", + "$id": "4214", "kind": "property", "name": "country", "serializedName": "country", "type": { - "$id": "4211", + "$id": "4215", "kind": "nullable", "type": { - "$id": "4212", + "$id": "4216", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50971,15 +51017,15 @@ "isHttpMetadata": false }, { - "$id": "4213", + "$id": "4217", "kind": "property", "name": "region", "serializedName": "region", "type": { - "$id": "4214", + "$id": "4218", "kind": "nullable", "type": { - "$id": "4215", + "$id": "4219", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51001,15 +51047,15 @@ "isHttpMetadata": false }, { - "$id": "4216", + "$id": "4220", "kind": "property", "name": "city", "serializedName": "city", "type": { - "$id": "4217", + "$id": "4221", "kind": "nullable", "type": { - "$id": "4218", + "$id": "4222", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51031,15 +51077,15 @@ "isHttpMetadata": false }, { - "$id": "4219", + "$id": "4223", "kind": "property", "name": "timezone", "serializedName": "timezone", "type": { - "$id": "4220", + "$id": "4224", "kind": "nullable", "type": { - "$id": "4221", + "$id": "4225", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51080,7 +51126,7 @@ "isHttpMetadata": false }, { - "$id": "4222", + "$id": "4226", "kind": "property", "name": "search_context_size", "serializedName": "search_context_size", @@ -51104,7 +51150,7 @@ ] }, "code_interpreter": { - "$id": "4223", + "$id": "4227", "kind": "model", "name": "CodeInterpreterTool", "namespace": "OpenAI", @@ -51114,11 +51160,11 @@ "discriminatorValue": "code_interpreter", "decorators": [], "baseModel": { - "$ref": "4137" + "$ref": "4141" }, "properties": [ { - "$id": "4224", + "$id": "4228", "kind": "property", "name": "type", "serializedName": "type", @@ -51140,25 +51186,25 @@ "isHttpMetadata": false }, { - "$id": "4225", + "$id": "4229", "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": "4226", + "$id": "4230", "kind": "union", "name": "CodeInterpreterToolContainer", "variantTypes": [ { - "$id": "4227", + "$id": "4231", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "4228", + "$id": "4232", "kind": "model", "name": "CodeInterpreterToolAuto", "namespace": "OpenAI", @@ -51168,7 +51214,7 @@ "discriminatorValue": "auto", "decorators": [], "baseModel": { - "$id": "4229", + "$id": "4233", "kind": "model", "name": "CodeInterpreterContainerConfiguration", "namespace": "OpenAI", @@ -51176,7 +51222,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "4230", + "$id": "4234", "kind": "property", "name": "type", "serializedName": "type", @@ -51199,24 +51245,24 @@ }, "properties": [ { - "$ref": "4230" + "$ref": "4234" } ], "discriminatedSubtypes": { "auto": { - "$ref": "4228" + "$ref": "4232" } } }, "properties": [ { - "$id": "4231", + "$id": "4235", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `auto`.", "type": { - "$id": "4232", + "$id": "4236", "kind": "enumvalue", "name": "auto", "value": "auto", @@ -51242,13 +51288,13 @@ "isHttpMetadata": false }, { - "$id": "4233", + "$id": "4237", "kind": "property", "name": "file_ids", "serializedName": "file_ids", "doc": "An optional list of uploaded files to make available to your code.", "type": { - "$ref": "2339" + "$ref": "2343" }, "optional": true, "readOnly": false, @@ -51285,7 +51331,7 @@ ] }, "image_generation": { - "$id": "4234", + "$id": "4238", "kind": "model", "name": "ImageGenTool", "namespace": "OpenAI", @@ -51295,11 +51341,11 @@ "discriminatorValue": "image_generation", "decorators": [], "baseModel": { - "$ref": "4137" + "$ref": "4141" }, "properties": [ { - "$id": "4235", + "$id": "4239", "kind": "property", "name": "type", "serializedName": "type", @@ -51321,13 +51367,13 @@ "isHttpMetadata": false }, { - "$id": "4236", + "$id": "4240", "kind": "property", "name": "model", "serializedName": "model", "doc": "The image generation model to use. Default: `gpt-image-1`.", "type": { - "$ref": "1609" + "$ref": "1613" }, "optional": true, "readOnly": false, @@ -51343,7 +51389,7 @@ "isHttpMetadata": false }, { - "$id": "4237", + "$id": "4241", "kind": "property", "name": "quality", "serializedName": "quality", @@ -51365,7 +51411,7 @@ "isHttpMetadata": false }, { - "$id": "4238", + "$id": "4242", "kind": "property", "name": "size", "serializedName": "size", @@ -51387,7 +51433,7 @@ "isHttpMetadata": false }, { - "$id": "4239", + "$id": "4243", "kind": "property", "name": "output_format", "serializedName": "output_format", @@ -51409,13 +51455,13 @@ "isHttpMetadata": false }, { - "$id": "4240", + "$id": "4244", "kind": "property", "name": "output_compression", "serializedName": "output_compression", "doc": "Compression level for the output image. Default: 100.", "type": { - "$id": "4241", + "$id": "4245", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -51435,7 +51481,7 @@ "isHttpMetadata": false }, { - "$id": "4242", + "$id": "4246", "kind": "property", "name": "moderation", "serializedName": "moderation", @@ -51457,7 +51503,7 @@ "isHttpMetadata": false }, { - "$id": "4243", + "$id": "4247", "kind": "property", "name": "background", "serializedName": "background", @@ -51479,13 +51525,35 @@ "isHttpMetadata": false }, { - "$id": "4244", + "$id": "4248", + "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": "467" + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ImageGenTool.input_fidelity", + "serializationOptions": { + "json": { + "name": "input_fidelity" + } + }, + "isHttpMetadata": false + }, + { + "$id": "4249", "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": "4245", + "$id": "4250", "kind": "model", "name": "ImageGenToolInputImageMask", "namespace": "OpenAI", @@ -51494,13 +51562,13 @@ "decorators": [], "properties": [ { - "$id": "4246", + "$id": "4251", "kind": "property", "name": "image_url", "serializedName": "image_url", "doc": "Base64-encoded mask image.", "type": { - "$id": "4247", + "$id": "4252", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51520,13 +51588,13 @@ "isHttpMetadata": false }, { - "$id": "4248", + "$id": "4253", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "File ID for the mask image.", "type": { - "$id": "4249", + "$id": "4254", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51561,13 +51629,13 @@ "isHttpMetadata": false }, { - "$id": "4250", + "$id": "4255", "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": "4251", + "$id": "4256", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -51589,7 +51657,7 @@ ] }, "local_shell": { - "$id": "4252", + "$id": "4257", "kind": "model", "name": "LocalShellTool", "namespace": "OpenAI", @@ -51599,11 +51667,11 @@ "discriminatorValue": "local_shell", "decorators": [], "baseModel": { - "$ref": "4137" + "$ref": "4141" }, "properties": [ { - "$id": "4253", + "$id": "4258", "kind": "property", "name": "type", "serializedName": "type", @@ -51627,7 +51695,7 @@ ] }, "mcp": { - "$id": "4254", + "$id": "4259", "kind": "model", "name": "MCPTool", "namespace": "OpenAI", @@ -51637,11 +51705,11 @@ "discriminatorValue": "mcp", "decorators": [], "baseModel": { - "$ref": "4137" + "$ref": "4141" }, "properties": [ { - "$id": "4255", + "$id": "4260", "kind": "property", "name": "type", "serializedName": "type", @@ -51663,13 +51731,13 @@ "isHttpMetadata": false }, { - "$id": "4256", + "$id": "4261", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "A label for this MCP server, used to identify it in tool calls.", "type": { - "$id": "4257", + "$id": "4262", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51689,13 +51757,13 @@ "isHttpMetadata": false }, { - "$id": "4258", + "$id": "4263", "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": "4259", + "$id": "4264", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -51715,13 +51783,13 @@ "isHttpMetadata": false }, { - "$id": "4260", + "$id": "4265", "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": "467" + "$ref": "471" }, "optional": true, "readOnly": false, @@ -51737,13 +51805,13 @@ "isHttpMetadata": false }, { - "$id": "4261", + "$id": "4266", "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": "4262", + "$id": "4267", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51763,13 +51831,13 @@ "isHttpMetadata": false }, { - "$id": "4263", + "$id": "4268", "kind": "property", "name": "server_description", "serializedName": "server_description", "doc": "Optional description of the MCP server, used to provide more context.", "type": { - "$id": "4264", + "$id": "4269", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51789,16 +51857,16 @@ "isHttpMetadata": false }, { - "$id": "4265", + "$id": "4270", "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": "4266", + "$id": "4271", "kind": "nullable", "type": { - "$ref": "2346" + "$ref": "2350" }, "namespace": "OpenAI" }, @@ -51816,16 +51884,16 @@ "isHttpMetadata": false }, { - "$id": "4267", + "$id": "4272", "kind": "property", "name": "allowed_tools", "serializedName": "allowed_tools", "doc": "List of allowed tool names or a filter object.", "type": { - "$id": "4268", + "$id": "4273", "kind": "nullable", "type": { - "$id": "4269", + "$id": "4274", "kind": "model", "name": "MCPToolFilter", "namespace": "OpenAI", @@ -51836,14 +51904,14 @@ "decorators": [], "properties": [ { - "$id": "4270", + "$id": "4275", "kind": "property", "name": "tool_names", "serializedName": "tool_names", "summary": "MCP allowed tools", "doc": "List of allowed tool names.", "type": { - "$ref": "2339" + "$ref": "2343" }, "optional": true, "readOnly": false, @@ -51859,13 +51927,13 @@ "isHttpMetadata": false }, { - "$id": "4271", + "$id": "4276", "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": "4272", + "$id": "4277", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -51902,21 +51970,21 @@ "isHttpMetadata": false }, { - "$id": "4273", + "$id": "4278", "kind": "property", "name": "require_approval", "serializedName": "require_approval", "doc": "Specify which of the MCP server's tools require approval.", "type": { - "$id": "4274", + "$id": "4279", "kind": "nullable", "type": { - "$id": "4275", + "$id": "4280", "kind": "union", "name": "MCPToolRequireApproval", "variantTypes": [ { - "$id": "4276", + "$id": "4281", "kind": "model", "name": "MCPToolRequireApproval1", "namespace": "OpenAI", @@ -51925,12 +51993,12 @@ "decorators": [], "properties": [ { - "$id": "4277", + "$id": "4282", "kind": "property", "name": "always", "serializedName": "always", "type": { - "$ref": "4269" + "$ref": "4274" }, "optional": true, "readOnly": false, @@ -51946,12 +52014,12 @@ "isHttpMetadata": false }, { - "$id": "4278", + "$id": "4283", "kind": "property", "name": "never", "serializedName": "never", "type": { - "$ref": "4269" + "$ref": "4274" }, "optional": true, "readOnly": false, @@ -51969,10 +52037,10 @@ ] }, { - "$ref": "1611" + "$ref": "1615" }, { - "$ref": "1613" + "$ref": "1617" } ], "namespace": "OpenAI", @@ -52014,13 +52082,13 @@ "isHttpMetadata": false }, { - "$id": "4279", + "$id": "4284", "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": "4280", + "$id": "4285", "kind": "model", "name": "EvalResponsesRunDataSourceParamsSamplingParamsText", "namespace": "OpenAI", @@ -52029,12 +52097,12 @@ "decorators": [], "properties": [ { - "$id": "4281", + "$id": "4286", "kind": "property", "name": "format", "serializedName": "format", "type": { - "$ref": "4086" + "$ref": "4090" }, "optional": true, "readOnly": false, @@ -52080,13 +52148,13 @@ "isHttpMetadata": false }, { - "$id": "4282", + "$id": "4287", "kind": "property", "name": "model", "serializedName": "model", "doc": "The name of the model to use for generating completions (e.g. \"o3-mini\").", "type": { - "$id": "4283", + "$id": "4288", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52106,24 +52174,24 @@ "isHttpMetadata": false }, { - "$id": "4284", + "$id": "4289", "kind": "property", "name": "source", "serializedName": "source", "doc": "Determines what populates the `item` namespace in this run's data source.", "type": { - "$id": "4285", + "$id": "4290", "kind": "union", "name": "EvalResponsesRunDataSourceParamsSource", "variantTypes": [ { - "$ref": "4005" + "$ref": "4009" }, { - "$ref": "4008" + "$ref": "4012" }, { - "$ref": "4027" + "$ref": "4031" } ], "namespace": "OpenAI", @@ -52162,46 +52230,40 @@ ] }, { - "$ref": "3999" - }, - { - "$ref": "4001" + "$ref": "4003" }, { "$ref": "4005" }, { - "$ref": "4058" + "$ref": "4009" }, { - "$ref": "4006" + "$ref": "4062" }, { - "$ref": "4008" + "$ref": "4010" }, { "$ref": "4012" }, { - "$ref": "4027" + "$ref": "4016" }, { - "$ref": "4061" + "$ref": "4031" }, { "$ref": "4065" }, { - "$ref": "4071" - }, - { - "$ref": "4076" + "$ref": "4069" }, { - "$ref": "4086" + "$ref": "4075" }, { - "$ref": "4088" + "$ref": "4080" }, { "$ref": "4090" @@ -52210,40 +52272,40 @@ "$ref": "4092" }, { - "$ref": "4107" + "$ref": "4094" }, { - "$ref": "4111" + "$ref": "4096" }, { - "$ref": "4116" + "$ref": "4111" }, { - "$ref": "4121" + "$ref": "4115" }, { - "$ref": "4126" + "$ref": "4120" }, { - "$ref": "4137" + "$ref": "4125" }, { - "$ref": "4139" + "$ref": "4130" }, { - "$ref": "4152" + "$ref": "4141" }, { - "$ref": "4158" + "$ref": "4143" }, { - "$ref": "4165" + "$ref": "4156" }, { - "$ref": "4174" + "$ref": "4162" }, { - "$ref": "4176" + "$ref": "4169" }, { "$ref": "4178" @@ -52261,55 +52323,61 @@ "$ref": "4186" }, { - "$ref": "4191" + "$ref": "4188" }, { - "$ref": "4193" + "$ref": "4190" }, { "$ref": "4195" }, { - "$ref": "4202" + "$ref": "4197" + }, + { + "$ref": "4199" }, { "$ref": "4206" }, { - "$ref": "4208" + "$ref": "4210" }, { - "$ref": "4223" + "$ref": "4212" }, { - "$ref": "4228" + "$ref": "4227" }, { - "$ref": "4229" + "$ref": "4232" }, { - "$ref": "4234" + "$ref": "4233" }, { - "$ref": "4245" + "$ref": "4238" }, { - "$ref": "4252" + "$ref": "4250" }, { - "$ref": "4254" + "$ref": "4257" }, { - "$ref": "4269" + "$ref": "4259" }, { - "$ref": "4276" + "$ref": "4274" }, { - "$ref": "4280" + "$ref": "4281" }, { - "$id": "4286", + "$ref": "4285" + }, + { + "$id": "4291", "kind": "model", "name": "DeleteEvalRunResponse", "namespace": "OpenAI", @@ -52318,12 +52386,12 @@ "decorators": [], "properties": [ { - "$id": "4287", + "$id": "4292", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1615" + "$ref": "1619" }, "optional": false, "readOnly": false, @@ -52339,12 +52407,12 @@ "isHttpMetadata": false }, { - "$id": "4288", + "$id": "4293", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "4289", + "$id": "4294", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -52364,12 +52432,12 @@ "isHttpMetadata": false }, { - "$id": "4290", + "$id": "4295", "kind": "property", "name": "eval_run_id", "serializedName": "eval_run_id", "type": { - "$id": "4291", + "$id": "4296", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52391,7 +52459,7 @@ ] }, { - "$id": "4292", + "$id": "4297", "kind": "model", "name": "EvalRunOutputItemList", "namespace": "OpenAI", @@ -52401,13 +52469,13 @@ "decorators": [], "properties": [ { - "$id": "4293", + "$id": "4298", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of this object. It is always set to \"list\".", "type": { - "$ref": "1617" + "$ref": "1621" }, "optional": false, "readOnly": false, @@ -52423,17 +52491,17 @@ "isHttpMetadata": false }, { - "$id": "4294", + "$id": "4299", "kind": "property", "name": "data", "serializedName": "data", "doc": "An array of eval run output item objects.", "type": { - "$id": "4295", + "$id": "4300", "kind": "array", "name": "ArrayEvalRunOutputItem", "valueType": { - "$id": "4296", + "$id": "4301", "kind": "model", "name": "EvalRunOutputItem", "namespace": "OpenAI", @@ -52443,13 +52511,13 @@ "decorators": [], "properties": [ { - "$id": "4297", + "$id": "4302", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of the object. Always \"eval.run.output_item\".", "type": { - "$ref": "1619" + "$ref": "1623" }, "optional": false, "readOnly": false, @@ -52465,13 +52533,13 @@ "isHttpMetadata": false }, { - "$id": "4298", + "$id": "4303", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for the evaluation run output item.", "type": { - "$id": "4299", + "$id": "4304", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52491,13 +52559,13 @@ "isHttpMetadata": false }, { - "$id": "4300", + "$id": "4305", "kind": "property", "name": "run_id", "serializedName": "run_id", "doc": "The identifier of the evaluation run associated with this output item.", "type": { - "$id": "4301", + "$id": "4306", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52517,13 +52585,13 @@ "isHttpMetadata": false }, { - "$id": "4302", + "$id": "4307", "kind": "property", "name": "eval_id", "serializedName": "eval_id", "doc": "The identifier of the evaluation group.", "type": { - "$id": "4303", + "$id": "4308", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52543,18 +52611,18 @@ "isHttpMetadata": false }, { - "$id": "4304", + "$id": "4309", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) when the evaluation run was created.", "type": { - "$id": "4305", + "$id": "4310", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "4306", + "$id": "4311", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -52577,13 +52645,13 @@ "isHttpMetadata": false }, { - "$id": "4307", + "$id": "4312", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the evaluation run.", "type": { - "$id": "4308", + "$id": "4313", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52603,13 +52671,13 @@ "isHttpMetadata": false }, { - "$id": "4309", + "$id": "4314", "kind": "property", "name": "datasource_item_id", "serializedName": "datasource_item_id", "doc": "The identifier for the data source item.", "type": { - "$id": "4310", + "$id": "4315", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -52629,13 +52697,13 @@ "isHttpMetadata": false }, { - "$id": "4311", + "$id": "4316", "kind": "property", "name": "datasource_item", "serializedName": "datasource_item", "doc": "Details of the input data source item.", "type": { - "$ref": "3763" + "$ref": "3767" }, "optional": false, "readOnly": false, @@ -52651,17 +52719,17 @@ "isHttpMetadata": false }, { - "$id": "4312", + "$id": "4317", "kind": "property", "name": "results", "serializedName": "results", "doc": "A list of results from the evaluation run.", "type": { - "$id": "4313", + "$id": "4318", "kind": "array", "name": "ArrayRecord", "valueType": { - "$ref": "3763" + "$ref": "3767" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -52680,13 +52748,13 @@ "isHttpMetadata": false }, { - "$id": "4314", + "$id": "4319", "kind": "property", "name": "sample", "serializedName": "sample", "doc": "A sample containing the input and output of the evaluation run.", "type": { - "$id": "4315", + "$id": "4320", "kind": "model", "name": "EvalRunOutputItemSample", "namespace": "OpenAI", @@ -52695,17 +52763,17 @@ "decorators": [], "properties": [ { - "$id": "4316", + "$id": "4321", "kind": "property", "name": "input", "serializedName": "input", "doc": "An array of input messages.", "type": { - "$id": "4317", + "$id": "4322", "kind": "array", "name": "Array21", "valueType": { - "$id": "4318", + "$id": "4323", "kind": "model", "name": "EvalRunOutputItemSampleInput", "namespace": "OpenAI", @@ -52714,13 +52782,13 @@ "decorators": [], "properties": [ { - "$id": "4319", + "$id": "4324", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message sender (e.g., system, user, developer).", "type": { - "$id": "4320", + "$id": "4325", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52740,13 +52808,13 @@ "isHttpMetadata": false }, { - "$id": "4321", + "$id": "4326", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message.", "type": { - "$id": "4322", + "$id": "4327", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52784,17 +52852,17 @@ "isHttpMetadata": false }, { - "$id": "4323", + "$id": "4328", "kind": "property", "name": "output", "serializedName": "output", "doc": "An array of output messages.", "type": { - "$id": "4324", + "$id": "4329", "kind": "array", "name": "Array22", "valueType": { - "$id": "4325", + "$id": "4330", "kind": "model", "name": "EvalRunOutputItemSampleOutput", "namespace": "OpenAI", @@ -52803,13 +52871,13 @@ "decorators": [], "properties": [ { - "$id": "4326", + "$id": "4331", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message (e.g. \"system\", \"assistant\", \"user\").", "type": { - "$id": "4327", + "$id": "4332", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52829,13 +52897,13 @@ "isHttpMetadata": false }, { - "$id": "4328", + "$id": "4333", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message.", "type": { - "$id": "4329", + "$id": "4334", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52873,13 +52941,13 @@ "isHttpMetadata": false }, { - "$id": "4330", + "$id": "4335", "kind": "property", "name": "finish_reason", "serializedName": "finish_reason", "doc": "The reason why the sample generation was finished.", "type": { - "$id": "4331", + "$id": "4336", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52899,13 +52967,13 @@ "isHttpMetadata": false }, { - "$id": "4332", + "$id": "4337", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model used for generating the sample.", "type": { - "$id": "4333", + "$id": "4338", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52925,13 +52993,13 @@ "isHttpMetadata": false }, { - "$id": "4334", + "$id": "4339", "kind": "property", "name": "usage", "serializedName": "usage", "doc": "Token usage details for the sample.", "type": { - "$id": "4335", + "$id": "4340", "kind": "model", "name": "EvalRunOutputItemSampleUsage", "namespace": "OpenAI", @@ -52940,13 +53008,13 @@ "decorators": [], "properties": [ { - "$id": "4336", + "$id": "4341", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens used.", "type": { - "$id": "4337", + "$id": "4342", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -52966,13 +53034,13 @@ "isHttpMetadata": false }, { - "$id": "4338", + "$id": "4343", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "The number of completion tokens generated.", "type": { - "$id": "4339", + "$id": "4344", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -52992,13 +53060,13 @@ "isHttpMetadata": false }, { - "$id": "4340", + "$id": "4345", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "The number of prompt tokens used.", "type": { - "$id": "4341", + "$id": "4346", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -53018,13 +53086,13 @@ "isHttpMetadata": false }, { - "$id": "4342", + "$id": "4347", "kind": "property", "name": "cached_tokens", "serializedName": "cached_tokens", "doc": "The number of tokens retrieved from cache.", "type": { - "$id": "4343", + "$id": "4348", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -53059,12 +53127,12 @@ "isHttpMetadata": false }, { - "$id": "4344", + "$id": "4349", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$ref": "3983" + "$ref": "3987" }, "optional": false, "readOnly": false, @@ -53080,13 +53148,13 @@ "isHttpMetadata": false }, { - "$id": "4345", + "$id": "4350", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "The sampling temperature used.", "type": { - "$id": "4346", + "$id": "4351", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -53106,13 +53174,13 @@ "isHttpMetadata": false }, { - "$id": "4347", + "$id": "4352", "kind": "property", "name": "max_completion_tokens", "serializedName": "max_completion_tokens", "doc": "The maximum number of tokens allowed for completion.", "type": { - "$id": "4348", + "$id": "4353", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -53132,13 +53200,13 @@ "isHttpMetadata": false }, { - "$id": "4349", + "$id": "4354", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "The top_p value used for sampling.", "type": { - "$id": "4350", + "$id": "4355", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -53158,13 +53226,13 @@ "isHttpMetadata": false }, { - "$id": "4351", + "$id": "4356", "kind": "property", "name": "seed", "serializedName": "seed", "doc": "The seed used for generating the sample.", "type": { - "$id": "4352", + "$id": "4357", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -53217,13 +53285,13 @@ "isHttpMetadata": false }, { - "$id": "4353", + "$id": "4358", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The identifier of the first eval run output item in the data array.", "type": { - "$id": "4354", + "$id": "4359", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53243,13 +53311,13 @@ "isHttpMetadata": false }, { - "$id": "4355", + "$id": "4360", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The identifier of the last eval run output item in the data array.", "type": { - "$id": "4356", + "$id": "4361", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53269,13 +53337,13 @@ "isHttpMetadata": false }, { - "$id": "4357", + "$id": "4362", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates whether there are more eval run output items available.", "type": { - "$id": "4358", + "$id": "4363", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -53297,22 +53365,22 @@ ] }, { - "$ref": "4296" + "$ref": "4301" }, { - "$ref": "4315" + "$ref": "4320" }, { - "$ref": "4318" + "$ref": "4323" }, { - "$ref": "4325" + "$ref": "4330" }, { - "$ref": "4335" + "$ref": "4340" }, { - "$id": "4359", + "$id": "4364", "kind": "model", "name": "CreateResponse", "namespace": "OpenAI", @@ -53321,13 +53389,13 @@ "decorators": [], "properties": [ { - "$id": "4360", + "$id": "4365", "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": "2346" + "$ref": "2350" }, "optional": true, "readOnly": false, @@ -53343,13 +53411,13 @@ "isHttpMetadata": false }, { - "$id": "4361", + "$id": "4366", "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": "2848" + "$ref": "2852" }, "optional": true, "readOnly": false, @@ -53365,13 +53433,13 @@ "isHttpMetadata": false }, { - "$id": "4362", + "$id": "4367", "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": "2851" + "$ref": "2855" }, "optional": true, "readOnly": false, @@ -53387,13 +53455,13 @@ "isHttpMetadata": false }, { - "$id": "4363", + "$id": "4368", "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": "4364", + "$id": "4369", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53413,12 +53481,12 @@ "isHttpMetadata": false }, { - "$id": "4365", + "$id": "4370", "kind": "property", "name": "service_tier", "serializedName": "service_tier", "type": { - "$ref": "477" + "$ref": "481" }, "optional": true, "readOnly": false, @@ -53434,16 +53502,16 @@ "isHttpMetadata": false }, { - "$id": "4366", + "$id": "4371", "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": "4367", + "$id": "4372", "kind": "nullable", "type": { - "$id": "4368", + "$id": "4373", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53465,13 +53533,13 @@ "isHttpMetadata": false }, { - "$id": "4369", + "$id": "4374", "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": "483" + "$ref": "487" }, "optional": true, "readOnly": false, @@ -53487,15 +53555,15 @@ "isHttpMetadata": false }, { - "$id": "4370", + "$id": "4375", "kind": "property", "name": "reasoning", "serializedName": "reasoning", "type": { - "$id": "4371", + "$id": "4376", "kind": "nullable", "type": { - "$id": "4372", + "$id": "4377", "kind": "model", "name": "Reasoning", "namespace": "OpenAI", @@ -53505,12 +53573,12 @@ "decorators": [], "properties": [ { - "$id": "4373", + "$id": "4378", "kind": "property", "name": "effort", "serializedName": "effort", "type": { - "$id": "4374", + "$id": "4379", "kind": "nullable", "type": { "$ref": "53" @@ -53531,16 +53599,16 @@ "isHttpMetadata": false }, { - "$id": "4375", + "$id": "4380", "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": "4376", + "$id": "4381", "kind": "nullable", "type": { - "$ref": "546" + "$ref": "550" }, "namespace": "OpenAI" }, @@ -53558,16 +53626,16 @@ "isHttpMetadata": false }, { - "$id": "4377", + "$id": "4382", "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": "4378", + "$id": "4383", "kind": "nullable", "type": { - "$ref": "551" + "$ref": "555" }, "namespace": "OpenAI" }, @@ -53602,16 +53670,16 @@ "isHttpMetadata": false }, { - "$id": "4379", + "$id": "4384", "kind": "property", "name": "background", "serializedName": "background", "doc": "Whether to run the model response in the background.\n[Learn more](/docs/guides/background).", "type": { - "$id": "4380", + "$id": "4385", "kind": "nullable", "type": { - "$id": "4381", + "$id": "4386", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -53633,16 +53701,16 @@ "isHttpMetadata": false }, { - "$id": "4382", + "$id": "4387", "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": "4383", + "$id": "4388", "kind": "nullable", "type": { - "$id": "4384", + "$id": "4389", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -53664,16 +53732,16 @@ "isHttpMetadata": false }, { - "$id": "4385", + "$id": "4390", "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": "4386", + "$id": "4391", "kind": "nullable", "type": { - "$id": "4387", + "$id": "4392", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53695,13 +53763,13 @@ "isHttpMetadata": false }, { - "$id": "4388", + "$id": "4393", "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": "4389", + "$id": "4394", "kind": "model", "name": "CreateResponseText", "namespace": "OpenAI", @@ -53710,12 +53778,12 @@ "decorators": [], "properties": [ { - "$id": "4390", + "$id": "4395", "kind": "property", "name": "format", "serializedName": "format", "type": { - "$ref": "4086" + "$ref": "4090" }, "optional": true, "readOnly": false, @@ -53746,13 +53814,13 @@ "isHttpMetadata": false }, { - "$id": "4391", + "$id": "4396", "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": "4136" + "$ref": "4140" }, "optional": true, "readOnly": false, @@ -53768,21 +53836,21 @@ "isHttpMetadata": false }, { - "$id": "4392", + "$id": "4397", "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": "4393", + "$id": "4398", "kind": "union", "name": "CreateResponseToolChoice", "variantTypes": [ { - "$ref": "556" + "$ref": "560" }, { - "$id": "4394", + "$id": "4399", "kind": "model", "name": "ToolChoiceObject", "namespace": "OpenAI", @@ -53790,12 +53858,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "4395", + "$id": "4400", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "561" + "$ref": "565" }, "optional": false, "readOnly": false, @@ -53812,12 +53880,12 @@ }, "properties": [ { - "$ref": "4395" + "$ref": "4400" } ], "discriminatedSubtypes": { "file_search": { - "$id": "4396", + "$id": "4401", "kind": "model", "name": "ToolChoiceObjectFileSearch", "namespace": "OpenAI", @@ -53826,16 +53894,16 @@ "discriminatorValue": "file_search", "decorators": [], "baseModel": { - "$ref": "4394" + "$ref": "4399" }, "properties": [ { - "$id": "4397", + "$id": "4402", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "563" + "$ref": "567" }, "optional": false, "readOnly": false, @@ -53853,7 +53921,7 @@ ] }, "computer_use_preview": { - "$id": "4398", + "$id": "4403", "kind": "model", "name": "ToolChoiceObjectComputer", "namespace": "OpenAI", @@ -53862,16 +53930,16 @@ "discriminatorValue": "computer_use_preview", "decorators": [], "baseModel": { - "$ref": "4394" + "$ref": "4399" }, "properties": [ { - "$id": "4399", + "$id": "4404", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "565" + "$ref": "569" }, "optional": false, "readOnly": false, @@ -53889,7 +53957,7 @@ ] }, "web_search_preview": { - "$id": "4400", + "$id": "4405", "kind": "model", "name": "ToolChoiceObjectWebSearch", "namespace": "OpenAI", @@ -53898,16 +53966,16 @@ "discriminatorValue": "web_search_preview", "decorators": [], "baseModel": { - "$ref": "4394" + "$ref": "4399" }, "properties": [ { - "$id": "4401", + "$id": "4406", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "566" + "$ref": "570" }, "optional": false, "readOnly": false, @@ -53925,7 +53993,7 @@ ] }, "image_generation": { - "$id": "4402", + "$id": "4407", "kind": "model", "name": "ToolChoiceObjectImageGen", "namespace": "OpenAI", @@ -53934,16 +54002,16 @@ "discriminatorValue": "image_generation", "decorators": [], "baseModel": { - "$ref": "4394" + "$ref": "4399" }, "properties": [ { - "$id": "4403", + "$id": "4408", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "567" + "$ref": "571" }, "optional": false, "readOnly": false, @@ -53961,7 +54029,7 @@ ] }, "code_interpreter": { - "$id": "4404", + "$id": "4409", "kind": "model", "name": "ToolChoiceObjectCodeInterpreter", "namespace": "OpenAI", @@ -53970,16 +54038,16 @@ "discriminatorValue": "code_interpreter", "decorators": [], "baseModel": { - "$ref": "4394" + "$ref": "4399" }, "properties": [ { - "$id": "4405", + "$id": "4410", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "568" + "$ref": "572" }, "optional": false, "readOnly": false, @@ -53997,7 +54065,7 @@ ] }, "mcp": { - "$id": "4406", + "$id": "4411", "kind": "model", "name": "ToolChoiceObjectMCP", "namespace": "OpenAI", @@ -54006,16 +54074,16 @@ "discriminatorValue": "mcp", "decorators": [], "baseModel": { - "$ref": "4394" + "$ref": "4399" }, "properties": [ { - "$id": "4407", + "$id": "4412", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "569" + "$ref": "573" }, "optional": false, "readOnly": false, @@ -54033,7 +54101,7 @@ ] }, "function": { - "$id": "4408", + "$id": "4413", "kind": "model", "name": "ToolChoiceObjectFunction", "namespace": "OpenAI", @@ -54043,17 +54111,17 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "4394" + "$ref": "4399" }, "properties": [ { - "$id": "4409", + "$id": "4414", "kind": "property", "name": "type", "serializedName": "type", "doc": "For function calling, the type is always `function`.", "type": { - "$ref": "564" + "$ref": "568" }, "optional": false, "readOnly": false, @@ -54069,13 +54137,13 @@ "isHttpMetadata": false }, { - "$id": "4410", + "$id": "4415", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "4411", + "$id": "4416", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54116,16 +54184,16 @@ "isHttpMetadata": false }, { - "$id": "4412", + "$id": "4417", "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": "4413", + "$id": "4418", "kind": "nullable", "type": { - "$ref": "570" + "$ref": "574" }, "namespace": "OpenAI" }, @@ -54143,34 +54211,34 @@ "isHttpMetadata": false }, { - "$id": "4414", + "$id": "4419", "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": "4415", + "$id": "4420", "kind": "union", "name": "CreateResponseInput", "variantTypes": [ { - "$id": "4416", + "$id": "4421", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "4417", + "$id": "4422", "kind": "array", "name": "Array23", "valueType": { - "$id": "4418", + "$id": "4423", "kind": "union", "name": "CreateResponseInput1", "variantTypes": [ { - "$id": "4419", + "$id": "4424", "kind": "model", "name": "ImplicitUserMessage", "namespace": "OpenAI", @@ -54179,28 +54247,28 @@ "decorators": [], "properties": [ { - "$id": "4420", + "$id": "4425", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "4421", + "$id": "4426", "kind": "union", "name": "ImplicitUserMessageContent", "variantTypes": [ { - "$id": "4422", + "$id": "4427", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "4423", + "$id": "4428", "kind": "array", "name": "ArrayItemContent", "valueType": { - "$id": "4424", + "$id": "4429", "kind": "model", "name": "ItemContent", "namespace": "OpenAI", @@ -54208,12 +54276,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "4425", + "$id": "4430", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "574" + "$ref": "578" }, "optional": false, "readOnly": false, @@ -54230,12 +54298,12 @@ }, "properties": [ { - "$ref": "4425" + "$ref": "4430" } ], "discriminatedSubtypes": { "input_audio": { - "$id": "4426", + "$id": "4431", "kind": "model", "name": "ItemContentInputAudio", "namespace": "OpenAI", @@ -54245,17 +54313,17 @@ "discriminatorValue": "input_audio", "decorators": [], "baseModel": { - "$ref": "4424" + "$ref": "4429" }, "properties": [ { - "$id": "4427", + "$id": "4432", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the input item. Always `input_audio`.", "type": { - "$ref": "577" + "$ref": "581" }, "optional": false, "readOnly": false, @@ -54271,13 +54339,13 @@ "isHttpMetadata": false }, { - "$id": "4428", + "$id": "4433", "kind": "property", "name": "data", "serializedName": "data", "doc": "Base64-encoded audio data.", "type": { - "$id": "4429", + "$id": "4434", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54297,13 +54365,13 @@ "isHttpMetadata": false }, { - "$id": "4430", + "$id": "4435", "kind": "property", "name": "format", "serializedName": "format", "doc": "The format of the audio data. Currently supported formats are `mp3` and\n`wav`.", "type": { - "$ref": "583" + "$ref": "587" }, "optional": false, "readOnly": false, @@ -54321,7 +54389,7 @@ ] }, "output_audio": { - "$id": "4431", + "$id": "4436", "kind": "model", "name": "ItemContentOutputAudio", "namespace": "OpenAI", @@ -54331,17 +54399,17 @@ "discriminatorValue": "output_audio", "decorators": [], "baseModel": { - "$ref": "4424" + "$ref": "4429" }, "properties": [ { - "$id": "4432", + "$id": "4437", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the output audio. Always `output_audio`.", "type": { - "$ref": "581" + "$ref": "585" }, "optional": false, "readOnly": false, @@ -54357,13 +54425,13 @@ "isHttpMetadata": false }, { - "$id": "4433", + "$id": "4438", "kind": "property", "name": "data", "serializedName": "data", "doc": "Base64-encoded audio data from the model.", "type": { - "$id": "4434", + "$id": "4439", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54383,13 +54451,13 @@ "isHttpMetadata": false }, { - "$id": "4435", + "$id": "4440", "kind": "property", "name": "transcript", "serializedName": "transcript", "doc": "The transcript of the audio data from the model.", "type": { - "$id": "4436", + "$id": "4441", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54411,7 +54479,7 @@ ] }, "refusal": { - "$id": "4437", + "$id": "4442", "kind": "model", "name": "ItemContentRefusal", "namespace": "OpenAI", @@ -54421,17 +54489,17 @@ "discriminatorValue": "refusal", "decorators": [], "baseModel": { - "$ref": "4424" + "$ref": "4429" }, "properties": [ { - "$id": "4438", + "$id": "4443", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the refusal. Always `refusal`.", "type": { - "$ref": "582" + "$ref": "586" }, "optional": false, "readOnly": false, @@ -54447,13 +54515,13 @@ "isHttpMetadata": false }, { - "$id": "4439", + "$id": "4444", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "The refusal explanationfrom the model.", "type": { - "$id": "4440", + "$id": "4445", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54475,7 +54543,7 @@ ] }, "input_text": { - "$id": "4441", + "$id": "4446", "kind": "model", "name": "ItemContentInputText", "namespace": "OpenAI", @@ -54485,17 +54553,17 @@ "discriminatorValue": "input_text", "decorators": [], "baseModel": { - "$ref": "4424" + "$ref": "4429" }, "properties": [ { - "$id": "4442", + "$id": "4447", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the input item. Always `input_text`.", "type": { - "$ref": "576" + "$ref": "580" }, "optional": false, "readOnly": false, @@ -54511,13 +54579,13 @@ "isHttpMetadata": false }, { - "$id": "4443", + "$id": "4448", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text input to the model.", "type": { - "$id": "4444", + "$id": "4449", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54539,7 +54607,7 @@ ] }, "input_image": { - "$id": "4445", + "$id": "4450", "kind": "model", "name": "ItemContentInputImage", "namespace": "OpenAI", @@ -54549,17 +54617,17 @@ "discriminatorValue": "input_image", "decorators": [], "baseModel": { - "$ref": "4424" + "$ref": "4429" }, "properties": [ { - "$id": "4446", + "$id": "4451", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the input item. Always `input_image`.", "type": { - "$ref": "578" + "$ref": "582" }, "optional": false, "readOnly": false, @@ -54575,16 +54643,16 @@ "isHttpMetadata": false }, { - "$id": "4447", + "$id": "4452", "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": "4448", + "$id": "4453", "kind": "nullable", "type": { - "$id": "4449", + "$id": "4454", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54606,16 +54674,16 @@ "isHttpMetadata": false }, { - "$id": "4450", + "$id": "4455", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to be sent to the model.", "type": { - "$id": "4451", + "$id": "4456", "kind": "nullable", "type": { - "$id": "4452", + "$id": "4457", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54637,13 +54705,13 @@ "isHttpMetadata": false }, { - "$id": "4453", + "$id": "4458", "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": "587" + "$ref": "591" }, "optional": true, "readOnly": false, @@ -54661,7 +54729,7 @@ ] }, "input_file": { - "$id": "4454", + "$id": "4459", "kind": "model", "name": "ItemContentInputFile", "namespace": "OpenAI", @@ -54671,17 +54739,17 @@ "discriminatorValue": "input_file", "decorators": [], "baseModel": { - "$ref": "4424" + "$ref": "4429" }, "properties": [ { - "$id": "4455", + "$id": "4460", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the input item. Always `input_file`.", "type": { - "$ref": "579" + "$ref": "583" }, "optional": false, "readOnly": false, @@ -54697,16 +54765,16 @@ "isHttpMetadata": false }, { - "$id": "4456", + "$id": "4461", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to be sent to the model.", "type": { - "$id": "4457", + "$id": "4462", "kind": "nullable", "type": { - "$id": "4458", + "$id": "4463", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54728,13 +54796,13 @@ "isHttpMetadata": false }, { - "$id": "4459", + "$id": "4464", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file to be sent to the model.", "type": { - "$id": "4460", + "$id": "4465", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54754,13 +54822,13 @@ "isHttpMetadata": false }, { - "$id": "4461", + "$id": "4466", "kind": "property", "name": "file_data", "serializedName": "file_data", "doc": "The content of the file to be sent to the model.", "type": { - "$id": "4462", + "$id": "4467", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54782,7 +54850,7 @@ ] }, "output_text": { - "$id": "4463", + "$id": "4468", "kind": "model", "name": "ItemContentOutputText", "namespace": "OpenAI", @@ -54792,17 +54860,17 @@ "discriminatorValue": "output_text", "decorators": [], "baseModel": { - "$ref": "4424" + "$ref": "4429" }, "properties": [ { - "$id": "4464", + "$id": "4469", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the output text. Always `output_text`.", "type": { - "$ref": "580" + "$ref": "584" }, "optional": false, "readOnly": false, @@ -54818,13 +54886,13 @@ "isHttpMetadata": false }, { - "$id": "4465", + "$id": "4470", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text output from the model.", "type": { - "$id": "4466", + "$id": "4471", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54844,17 +54912,17 @@ "isHttpMetadata": false }, { - "$id": "4467", + "$id": "4472", "kind": "property", "name": "annotations", "serializedName": "annotations", "doc": "The annotations of the text output.", "type": { - "$id": "4468", + "$id": "4473", "kind": "array", "name": "ArrayAnnotation", "valueType": { - "$id": "4469", + "$id": "4474", "kind": "model", "name": "Annotation", "namespace": "OpenAI", @@ -54862,12 +54930,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "4470", + "$id": "4475", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "592" + "$ref": "596" }, "optional": false, "readOnly": false, @@ -54884,12 +54952,12 @@ }, "properties": [ { - "$ref": "4470" + "$ref": "4475" } ], "discriminatedSubtypes": { "file_citation": { - "$id": "4471", + "$id": "4476", "kind": "model", "name": "AnnotationFileCitation", "namespace": "OpenAI", @@ -54899,17 +54967,17 @@ "discriminatorValue": "file_citation", "decorators": [], "baseModel": { - "$ref": "4469" + "$ref": "4474" }, "properties": [ { - "$id": "4472", + "$id": "4477", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the file citation. Always `file_citation`.", "type": { - "$ref": "594" + "$ref": "598" }, "optional": false, "readOnly": false, @@ -54925,13 +54993,13 @@ "isHttpMetadata": false }, { - "$id": "4473", + "$id": "4478", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file.", "type": { - "$id": "4474", + "$id": "4479", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54951,13 +55019,13 @@ "isHttpMetadata": false }, { - "$id": "4475", + "$id": "4480", "kind": "property", "name": "index", "serializedName": "index", "doc": "The index of the file in the list of files.", "type": { - "$id": "4476", + "$id": "4481", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -54979,7 +55047,7 @@ ] }, "url_citation": { - "$id": "4477", + "$id": "4482", "kind": "model", "name": "AnnotationUrlCitation", "namespace": "OpenAI", @@ -54989,17 +55057,17 @@ "discriminatorValue": "url_citation", "decorators": [], "baseModel": { - "$ref": "4469" + "$ref": "4474" }, "properties": [ { - "$id": "4478", + "$id": "4483", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the URL citation. Always `url_citation`.", "type": { - "$ref": "595" + "$ref": "599" }, "optional": false, "readOnly": false, @@ -55015,13 +55083,13 @@ "isHttpMetadata": false }, { - "$id": "4479", + "$id": "4484", "kind": "property", "name": "url", "serializedName": "url", "doc": "The URL of the web resource.", "type": { - "$id": "4480", + "$id": "4485", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -55041,13 +55109,13 @@ "isHttpMetadata": false }, { - "$id": "4481", + "$id": "4486", "kind": "property", "name": "start_index", "serializedName": "start_index", "doc": "The index of the first character of the URL citation in the message.", "type": { - "$id": "4482", + "$id": "4487", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -55067,13 +55135,13 @@ "isHttpMetadata": false }, { - "$id": "4483", + "$id": "4488", "kind": "property", "name": "end_index", "serializedName": "end_index", "doc": "The index of the last character of the URL citation in the message.", "type": { - "$id": "4484", + "$id": "4489", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -55093,13 +55161,13 @@ "isHttpMetadata": false }, { - "$id": "4485", + "$id": "4490", "kind": "property", "name": "title", "serializedName": "title", "doc": "The title of the web resource.", "type": { - "$id": "4486", + "$id": "4491", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55121,7 +55189,7 @@ ] }, "file_path": { - "$id": "4487", + "$id": "4492", "kind": "model", "name": "AnnotationFilePath", "namespace": "OpenAI", @@ -55131,17 +55199,17 @@ "discriminatorValue": "file_path", "decorators": [], "baseModel": { - "$ref": "4469" + "$ref": "4474" }, "properties": [ { - "$id": "4488", + "$id": "4493", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the file path. Always `file_path`.", "type": { - "$ref": "596" + "$ref": "600" }, "optional": false, "readOnly": false, @@ -55157,13 +55225,13 @@ "isHttpMetadata": false }, { - "$id": "4489", + "$id": "4494", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file.", "type": { - "$id": "4490", + "$id": "4495", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55183,13 +55251,13 @@ "isHttpMetadata": false }, { - "$id": "4491", + "$id": "4496", "kind": "property", "name": "index", "serializedName": "index", "doc": "The index of the file in the list of files.", "type": { - "$id": "4492", + "$id": "4497", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -55229,16 +55297,16 @@ "isHttpMetadata": false }, { - "$id": "4493", + "$id": "4498", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "type": { - "$id": "4494", + "$id": "4499", "kind": "array", "name": "ArrayLogProb", "valueType": { - "$id": "4495", + "$id": "4500", "kind": "model", "name": "LogProb", "namespace": "OpenAI", @@ -55248,12 +55316,12 @@ "decorators": [], "properties": [ { - "$id": "4496", + "$id": "4501", "kind": "property", "name": "token", "serializedName": "token", "type": { - "$id": "4497", + "$id": "4502", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55273,12 +55341,12 @@ "isHttpMetadata": false }, { - "$id": "4498", + "$id": "4503", "kind": "property", "name": "logprob", "serializedName": "logprob", "type": { - "$id": "4499", + "$id": "4504", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -55298,12 +55366,12 @@ "isHttpMetadata": false }, { - "$id": "4500", + "$id": "4505", "kind": "property", "name": "bytes", "serializedName": "bytes", "type": { - "$ref": "2559" + "$ref": "2563" }, "optional": false, "readOnly": false, @@ -55319,16 +55387,16 @@ "isHttpMetadata": false }, { - "$id": "4501", + "$id": "4506", "kind": "property", "name": "top_logprobs", "serializedName": "top_logprobs", "type": { - "$id": "4502", + "$id": "4507", "kind": "array", "name": "ArrayTopLogProb", "valueType": { - "$id": "4503", + "$id": "4508", "kind": "model", "name": "TopLogProb", "namespace": "OpenAI", @@ -55338,12 +55406,12 @@ "decorators": [], "properties": [ { - "$id": "4504", + "$id": "4509", "kind": "property", "name": "token", "serializedName": "token", "type": { - "$id": "4505", + "$id": "4510", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55363,12 +55431,12 @@ "isHttpMetadata": false }, { - "$id": "4506", + "$id": "4511", "kind": "property", "name": "logprob", "serializedName": "logprob", "type": { - "$id": "4507", + "$id": "4512", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -55388,12 +55456,12 @@ "isHttpMetadata": false }, { - "$id": "4508", + "$id": "4513", "kind": "property", "name": "bytes", "serializedName": "bytes", "type": { - "$ref": "2559" + "$ref": "2563" }, "optional": false, "readOnly": false, @@ -55471,7 +55539,7 @@ ] }, { - "$id": "4509", + "$id": "4514", "kind": "model", "name": "ItemParam", "namespace": "OpenAI", @@ -55480,12 +55548,12 @@ "doc": "Content item used to generate a response.", "decorators": [], "discriminatorProperty": { - "$id": "4510", + "$id": "4515", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "598" + "$ref": "602" }, "optional": false, "readOnly": false, @@ -55502,12 +55570,12 @@ }, "properties": [ { - "$ref": "4510" + "$ref": "4515" } ], "discriminatedSubtypes": { "file_search_call": { - "$id": "4511", + "$id": "4516", "kind": "model", "name": "FileSearchToolCallItemParam", "namespace": "OpenAI", @@ -55517,16 +55585,16 @@ "discriminatorValue": "file_search_call", "decorators": [], "baseModel": { - "$ref": "4509" + "$ref": "4514" }, "properties": [ { - "$id": "4512", + "$id": "4517", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "601" + "$ref": "605" }, "optional": false, "readOnly": false, @@ -55542,13 +55610,13 @@ "isHttpMetadata": false }, { - "$id": "4513", + "$id": "4518", "kind": "property", "name": "queries", "serializedName": "queries", "doc": "The queries used to search for files.", "type": { - "$ref": "2339" + "$ref": "2343" }, "optional": false, "readOnly": false, @@ -55564,20 +55632,20 @@ "isHttpMetadata": false }, { - "$id": "4514", + "$id": "4519", "kind": "property", "name": "results", "serializedName": "results", "doc": "The results of the file search tool call.", "type": { - "$id": "4515", + "$id": "4520", "kind": "nullable", "type": { - "$id": "4516", + "$id": "4521", "kind": "array", "name": "Array24", "valueType": { - "$id": "4517", + "$id": "4522", "kind": "model", "name": "FileSearchToolCallItemParamResult", "namespace": "OpenAI", @@ -55586,13 +55654,13 @@ "decorators": [], "properties": [ { - "$id": "4518", + "$id": "4523", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The unique ID of the file.", "type": { - "$id": "4519", + "$id": "4524", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55612,13 +55680,13 @@ "isHttpMetadata": false }, { - "$id": "4520", + "$id": "4525", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text that was retrieved from the file.", "type": { - "$id": "4521", + "$id": "4526", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55638,13 +55706,13 @@ "isHttpMetadata": false }, { - "$id": "4522", + "$id": "4527", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file.", "type": { - "$id": "4523", + "$id": "4528", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55664,12 +55732,12 @@ "isHttpMetadata": false }, { - "$id": "4524", + "$id": "4529", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$ref": "3763" + "$ref": "3767" }, "optional": true, "readOnly": false, @@ -55685,13 +55753,13 @@ "isHttpMetadata": false }, { - "$id": "4525", + "$id": "4530", "kind": "property", "name": "score", "serializedName": "score", "doc": "The relevance score of the file - a value between 0 and 1.", "type": { - "$id": "4526", + "$id": "4531", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -55733,7 +55801,7 @@ ] }, "computer_call": { - "$id": "4527", + "$id": "4532", "kind": "model", "name": "ComputerToolCallItemParam", "namespace": "OpenAI", @@ -55743,16 +55811,16 @@ "discriminatorValue": "computer_call", "decorators": [], "baseModel": { - "$ref": "4509" + "$ref": "4514" }, "properties": [ { - "$id": "4528", + "$id": "4533", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "604" + "$ref": "608" }, "optional": false, "readOnly": false, @@ -55768,13 +55836,13 @@ "isHttpMetadata": false }, { - "$id": "4529", + "$id": "4534", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "An identifier used when responding to the tool call with output.", "type": { - "$id": "4530", + "$id": "4535", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55794,12 +55862,12 @@ "isHttpMetadata": false }, { - "$id": "4531", + "$id": "4536", "kind": "property", "name": "action", "serializedName": "action", "type": { - "$id": "4532", + "$id": "4537", "kind": "model", "name": "ComputerAction", "namespace": "OpenAI", @@ -55807,12 +55875,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "4533", + "$id": "4538", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "617" + "$ref": "621" }, "optional": false, "readOnly": false, @@ -55829,12 +55897,12 @@ }, "properties": [ { - "$ref": "4533" + "$ref": "4538" } ], "discriminatedSubtypes": { "click": { - "$id": "4534", + "$id": "4539", "kind": "model", "name": "ComputerActionClick", "namespace": "OpenAI", @@ -55844,17 +55912,17 @@ "discriminatorValue": "click", "decorators": [], "baseModel": { - "$ref": "4532" + "$ref": "4537" }, "properties": [ { - "$id": "4535", + "$id": "4540", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a click action, this property is\nalways set to `click`.", "type": { - "$ref": "620" + "$ref": "624" }, "optional": false, "readOnly": false, @@ -55870,13 +55938,13 @@ "isHttpMetadata": false }, { - "$id": "4536", + "$id": "4541", "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": "628" + "$ref": "632" }, "optional": false, "readOnly": false, @@ -55892,13 +55960,13 @@ "isHttpMetadata": false }, { - "$id": "4537", + "$id": "4542", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate where the click occurred.", "type": { - "$id": "4538", + "$id": "4543", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -55918,13 +55986,13 @@ "isHttpMetadata": false }, { - "$id": "4539", + "$id": "4544", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate where the click occurred.", "type": { - "$id": "4540", + "$id": "4545", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -55946,7 +56014,7 @@ ] }, "double_click": { - "$id": "4541", + "$id": "4546", "kind": "model", "name": "ComputerActionDoubleClick", "namespace": "OpenAI", @@ -55956,17 +56024,17 @@ "discriminatorValue": "double_click", "decorators": [], "baseModel": { - "$ref": "4532" + "$ref": "4537" }, "properties": [ { - "$id": "4542", + "$id": "4547", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a double click action, this property is\nalways set to `double_click`.", "type": { - "$ref": "621" + "$ref": "625" }, "optional": false, "readOnly": false, @@ -55982,13 +56050,13 @@ "isHttpMetadata": false }, { - "$id": "4543", + "$id": "4548", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate where the double click occurred.", "type": { - "$id": "4544", + "$id": "4549", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -56008,13 +56076,13 @@ "isHttpMetadata": false }, { - "$id": "4545", + "$id": "4550", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate where the double click occurred.", "type": { - "$id": "4546", + "$id": "4551", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -56036,7 +56104,7 @@ ] }, "drag": { - "$id": "4547", + "$id": "4552", "kind": "model", "name": "ComputerActionDrag", "namespace": "OpenAI", @@ -56046,17 +56114,17 @@ "discriminatorValue": "drag", "decorators": [], "baseModel": { - "$ref": "4532" + "$ref": "4537" }, "properties": [ { - "$id": "4548", + "$id": "4553", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a drag action, this property is\nalways set to `drag`.", "type": { - "$ref": "626" + "$ref": "630" }, "optional": false, "readOnly": false, @@ -56072,17 +56140,17 @@ "isHttpMetadata": false }, { - "$id": "4549", + "$id": "4554", "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": "4550", + "$id": "4555", "kind": "array", "name": "ArrayCoordinate", "valueType": { - "$id": "4551", + "$id": "4556", "kind": "model", "name": "Coordinate", "namespace": "OpenAI", @@ -56092,13 +56160,13 @@ "decorators": [], "properties": [ { - "$id": "4552", + "$id": "4557", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate.", "type": { - "$id": "4553", + "$id": "4558", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -56118,13 +56186,13 @@ "isHttpMetadata": false }, { - "$id": "4554", + "$id": "4559", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate.", "type": { - "$id": "4555", + "$id": "4560", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -56164,7 +56232,7 @@ ] }, "move": { - "$id": "4556", + "$id": "4561", "kind": "model", "name": "ComputerActionMove", "namespace": "OpenAI", @@ -56174,17 +56242,17 @@ "discriminatorValue": "move", "decorators": [], "baseModel": { - "$ref": "4532" + "$ref": "4537" }, "properties": [ { - "$id": "4557", + "$id": "4562", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a move action, this property is\nalways set to `move`.", "type": { - "$ref": "627" + "$ref": "631" }, "optional": false, "readOnly": false, @@ -56200,13 +56268,13 @@ "isHttpMetadata": false }, { - "$id": "4558", + "$id": "4563", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate to move to.", "type": { - "$id": "4559", + "$id": "4564", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -56226,13 +56294,13 @@ "isHttpMetadata": false }, { - "$id": "4560", + "$id": "4565", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate to move to.", "type": { - "$id": "4561", + "$id": "4566", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -56254,7 +56322,7 @@ ] }, "screenshot": { - "$id": "4562", + "$id": "4567", "kind": "model", "name": "ComputerActionScreenshot", "namespace": "OpenAI", @@ -56264,17 +56332,17 @@ "discriminatorValue": "screenshot", "decorators": [], "baseModel": { - "$ref": "4532" + "$ref": "4537" }, "properties": [ { - "$id": "4563", + "$id": "4568", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a screenshot action, this property is\nalways set to `screenshot`.", "type": { - "$ref": "619" + "$ref": "623" }, "optional": false, "readOnly": false, @@ -56292,7 +56360,7 @@ ] }, "scroll": { - "$id": "4564", + "$id": "4569", "kind": "model", "name": "ComputerActionScroll", "namespace": "OpenAI", @@ -56302,17 +56370,17 @@ "discriminatorValue": "scroll", "decorators": [], "baseModel": { - "$ref": "4532" + "$ref": "4537" }, "properties": [ { - "$id": "4565", + "$id": "4570", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a scroll action, this property is\nalways set to `scroll`.", "type": { - "$ref": "622" + "$ref": "626" }, "optional": false, "readOnly": false, @@ -56328,13 +56396,13 @@ "isHttpMetadata": false }, { - "$id": "4566", + "$id": "4571", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate where the scroll occurred.", "type": { - "$id": "4567", + "$id": "4572", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -56354,13 +56422,13 @@ "isHttpMetadata": false }, { - "$id": "4568", + "$id": "4573", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate where the scroll occurred.", "type": { - "$id": "4569", + "$id": "4574", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -56380,13 +56448,13 @@ "isHttpMetadata": false }, { - "$id": "4570", + "$id": "4575", "kind": "property", "name": "scroll_x", "serializedName": "scroll_x", "doc": "The horizontal scroll distance.", "type": { - "$id": "4571", + "$id": "4576", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -56406,13 +56474,13 @@ "isHttpMetadata": false }, { - "$id": "4572", + "$id": "4577", "kind": "property", "name": "scroll_y", "serializedName": "scroll_y", "doc": "The vertical scroll distance.", "type": { - "$id": "4573", + "$id": "4578", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -56434,7 +56502,7 @@ ] }, "type": { - "$id": "4574", + "$id": "4579", "kind": "model", "name": "ComputerActionTypeKeys", "namespace": "OpenAI", @@ -56444,17 +56512,17 @@ "discriminatorValue": "type", "decorators": [], "baseModel": { - "$ref": "4532" + "$ref": "4537" }, "properties": [ { - "$id": "4575", + "$id": "4580", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a type action, this property is\nalways set to `type`.", "type": { - "$ref": "623" + "$ref": "627" }, "optional": false, "readOnly": false, @@ -56470,13 +56538,13 @@ "isHttpMetadata": false }, { - "$id": "4576", + "$id": "4581", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text to type.", "type": { - "$id": "4577", + "$id": "4582", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56498,7 +56566,7 @@ ] }, "wait": { - "$id": "4578", + "$id": "4583", "kind": "model", "name": "ComputerActionWait", "namespace": "OpenAI", @@ -56508,17 +56576,17 @@ "discriminatorValue": "wait", "decorators": [], "baseModel": { - "$ref": "4532" + "$ref": "4537" }, "properties": [ { - "$id": "4579", + "$id": "4584", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a wait action, this property is\nalways set to `wait`.", "type": { - "$ref": "624" + "$ref": "628" }, "optional": false, "readOnly": false, @@ -56536,7 +56604,7 @@ ] }, "keypress": { - "$id": "4580", + "$id": "4585", "kind": "model", "name": "ComputerActionKeyPress", "namespace": "OpenAI", @@ -56546,17 +56614,17 @@ "discriminatorValue": "keypress", "decorators": [], "baseModel": { - "$ref": "4532" + "$ref": "4537" }, "properties": [ { - "$id": "4581", + "$id": "4586", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a keypress action, this property is\nalways set to `keypress`.", "type": { - "$ref": "625" + "$ref": "629" }, "optional": false, "readOnly": false, @@ -56572,13 +56640,13 @@ "isHttpMetadata": false }, { - "$id": "4582", + "$id": "4587", "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": "2339" + "$ref": "2343" }, "optional": false, "readOnly": false, @@ -56611,17 +56679,17 @@ "isHttpMetadata": false }, { - "$id": "4583", + "$id": "4588", "kind": "property", "name": "pending_safety_checks", "serializedName": "pending_safety_checks", "doc": "The pending safety checks for the computer call.", "type": { - "$id": "4584", + "$id": "4589", "kind": "array", "name": "ArrayComputerToolCallSafetyCheck", "valueType": { - "$id": "4585", + "$id": "4590", "kind": "model", "name": "ComputerToolCallSafetyCheck", "namespace": "OpenAI", @@ -56631,13 +56699,13 @@ "decorators": [], "properties": [ { - "$id": "4586", + "$id": "4591", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the pending safety check.", "type": { - "$id": "4587", + "$id": "4592", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56657,13 +56725,13 @@ "isHttpMetadata": false }, { - "$id": "4588", + "$id": "4593", "kind": "property", "name": "code", "serializedName": "code", "doc": "The type of the pending safety check.", "type": { - "$id": "4589", + "$id": "4594", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56683,13 +56751,13 @@ "isHttpMetadata": false }, { - "$id": "4590", + "$id": "4595", "kind": "property", "name": "message", "serializedName": "message", "doc": "Details about the pending safety check.", "type": { - "$id": "4591", + "$id": "4596", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56729,7 +56797,7 @@ ] }, "computer_call_output": { - "$id": "4592", + "$id": "4597", "kind": "model", "name": "ComputerToolCallOutputItemParam", "namespace": "OpenAI", @@ -56739,16 +56807,16 @@ "discriminatorValue": "computer_call_output", "decorators": [], "baseModel": { - "$ref": "4509" + "$ref": "4514" }, "properties": [ { - "$id": "4593", + "$id": "4598", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "605" + "$ref": "609" }, "optional": false, "readOnly": false, @@ -56764,13 +56832,13 @@ "isHttpMetadata": false }, { - "$id": "4594", + "$id": "4599", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the computer tool call that produced the output.", "type": { - "$id": "4595", + "$id": "4600", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56790,13 +56858,13 @@ "isHttpMetadata": false }, { - "$id": "4596", + "$id": "4601", "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": "4584" + "$ref": "4589" }, "optional": true, "readOnly": false, @@ -56812,12 +56880,12 @@ "isHttpMetadata": false }, { - "$id": "4597", + "$id": "4602", "kind": "property", "name": "output", "serializedName": "output", "type": { - "$id": "4598", + "$id": "4603", "kind": "model", "name": "ComputerToolCallOutputItemOutput", "namespace": "OpenAI", @@ -56825,12 +56893,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "4599", + "$id": "4604", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "635" + "$ref": "639" }, "optional": false, "readOnly": false, @@ -56847,12 +56915,12 @@ }, "properties": [ { - "$ref": "4599" + "$ref": "4604" } ], "discriminatedSubtypes": { "computer_screenshot": { - "$id": "4600", + "$id": "4605", "kind": "model", "name": "ComputerToolCallOutputItemOutputComputerScreenshot", "namespace": "OpenAI", @@ -56861,16 +56929,16 @@ "discriminatorValue": "computer_screenshot", "decorators": [], "baseModel": { - "$ref": "4598" + "$ref": "4603" }, "properties": [ { - "$id": "4601", + "$id": "4606", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "637" + "$ref": "641" }, "optional": false, "readOnly": false, @@ -56886,12 +56954,12 @@ "isHttpMetadata": false }, { - "$id": "4602", + "$id": "4607", "kind": "property", "name": "image_url", "serializedName": "image_url", "type": { - "$id": "4603", + "$id": "4608", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56911,12 +56979,12 @@ "isHttpMetadata": false }, { - "$id": "4604", + "$id": "4609", "kind": "property", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "4605", + "$id": "4610", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56955,7 +57023,7 @@ ] }, "web_search_call": { - "$id": "4606", + "$id": "4611", "kind": "model", "name": "WebSearchToolCallItemParam", "namespace": "OpenAI", @@ -56965,16 +57033,16 @@ "discriminatorValue": "web_search_call", "decorators": [], "baseModel": { - "$ref": "4509" + "$ref": "4514" }, "properties": [ { - "$id": "4607", + "$id": "4612", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "606" + "$ref": "610" }, "optional": false, "readOnly": false, @@ -56992,7 +57060,7 @@ ] }, "function_call": { - "$id": "4608", + "$id": "4613", "kind": "model", "name": "FunctionToolCallItemParam", "namespace": "OpenAI", @@ -57002,16 +57070,16 @@ "discriminatorValue": "function_call", "decorators": [], "baseModel": { - "$ref": "4509" + "$ref": "4514" }, "properties": [ { - "$id": "4609", + "$id": "4614", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "602" + "$ref": "606" }, "optional": false, "readOnly": false, @@ -57027,13 +57095,13 @@ "isHttpMetadata": false }, { - "$id": "4610", + "$id": "4615", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "4611", + "$id": "4616", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57053,13 +57121,13 @@ "isHttpMetadata": false }, { - "$id": "4612", + "$id": "4617", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to run.", "type": { - "$id": "4613", + "$id": "4618", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57079,13 +57147,13 @@ "isHttpMetadata": false }, { - "$id": "4614", + "$id": "4619", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "A JSON string of the arguments to pass to the function.", "type": { - "$id": "4615", + "$id": "4620", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57107,7 +57175,7 @@ ] }, "function_call_output": { - "$id": "4616", + "$id": "4621", "kind": "model", "name": "FunctionToolCallOutputItemParam", "namespace": "OpenAI", @@ -57117,16 +57185,16 @@ "discriminatorValue": "function_call_output", "decorators": [], "baseModel": { - "$ref": "4509" + "$ref": "4514" }, "properties": [ { - "$id": "4617", + "$id": "4622", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "603" + "$ref": "607" }, "optional": false, "readOnly": false, @@ -57142,13 +57210,13 @@ "isHttpMetadata": false }, { - "$id": "4618", + "$id": "4623", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "4619", + "$id": "4624", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57168,13 +57236,13 @@ "isHttpMetadata": false }, { - "$id": "4620", + "$id": "4625", "kind": "property", "name": "output", "serializedName": "output", "doc": "A JSON string of the output of the function tool call.", "type": { - "$id": "4621", + "$id": "4626", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57196,7 +57264,7 @@ ] }, "reasoning": { - "$id": "4622", + "$id": "4627", "kind": "model", "name": "ReasoningItemParam", "namespace": "OpenAI", @@ -57206,16 +57274,16 @@ "discriminatorValue": "reasoning", "decorators": [], "baseModel": { - "$ref": "4509" + "$ref": "4514" }, "properties": [ { - "$id": "4623", + "$id": "4628", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "607" + "$ref": "611" }, "optional": false, "readOnly": false, @@ -57231,16 +57299,16 @@ "isHttpMetadata": false }, { - "$id": "4624", + "$id": "4629", "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": "4625", + "$id": "4630", "kind": "nullable", "type": { - "$id": "4626", + "$id": "4631", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57262,17 +57330,17 @@ "isHttpMetadata": false }, { - "$id": "4627", + "$id": "4632", "kind": "property", "name": "summary", "serializedName": "summary", "doc": "Reasoning text contents.", "type": { - "$id": "4628", + "$id": "4633", "kind": "array", "name": "ArrayReasoningItemSummaryPart", "valueType": { - "$id": "4629", + "$id": "4634", "kind": "model", "name": "ReasoningItemSummaryPart", "namespace": "OpenAI", @@ -57280,12 +57348,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "4630", + "$id": "4635", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "638" + "$ref": "642" }, "optional": false, "readOnly": false, @@ -57302,12 +57370,12 @@ }, "properties": [ { - "$ref": "4630" + "$ref": "4635" } ], "discriminatedSubtypes": { "summary_text": { - "$id": "4631", + "$id": "4636", "kind": "model", "name": "ReasoningItemSummaryTextPart", "namespace": "OpenAI", @@ -57316,16 +57384,16 @@ "discriminatorValue": "summary_text", "decorators": [], "baseModel": { - "$ref": "4629" + "$ref": "4634" }, "properties": [ { - "$id": "4632", + "$id": "4637", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "640" + "$ref": "644" }, "optional": false, "readOnly": false, @@ -57341,12 +57409,12 @@ "isHttpMetadata": false }, { - "$id": "4633", + "$id": "4638", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "4634", + "$id": "4639", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57388,7 +57456,7 @@ ] }, "item_reference": { - "$id": "4635", + "$id": "4640", "kind": "model", "name": "ItemReferenceItemParam", "namespace": "OpenAI", @@ -57398,16 +57466,16 @@ "discriminatorValue": "item_reference", "decorators": [], "baseModel": { - "$ref": "4509" + "$ref": "4514" }, "properties": [ { - "$id": "4636", + "$id": "4641", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "608" + "$ref": "612" }, "optional": false, "readOnly": false, @@ -57423,13 +57491,13 @@ "isHttpMetadata": false }, { - "$id": "4637", + "$id": "4642", "kind": "property", "name": "id", "serializedName": "id", "doc": "The service-originated ID of the previously generated response item being referenced.", "type": { - "$id": "4638", + "$id": "4643", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57451,7 +57519,7 @@ ] }, "image_generation_call": { - "$id": "4639", + "$id": "4644", "kind": "model", "name": "ImageGenToolCallItemParam", "namespace": "OpenAI", @@ -57461,16 +57529,16 @@ "discriminatorValue": "image_generation_call", "decorators": [], "baseModel": { - "$ref": "4509" + "$ref": "4514" }, "properties": [ { - "$id": "4640", + "$id": "4645", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "609" + "$ref": "613" }, "optional": false, "readOnly": false, @@ -57486,19 +57554,20 @@ "isHttpMetadata": false }, { - "$id": "4641", + "$id": "4646", "kind": "property", "name": "result", "serializedName": "result", "doc": "The generated image encoded in base64.", "type": { - "$id": "4642", + "$id": "4647", "kind": "nullable", "type": { - "$id": "4643", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", + "$id": "4648", + "kind": "bytes", + "name": "bytes", + "encode": "base64", + "crossLanguageDefinitionId": "TypeSpec.bytes", "decorators": [] }, "namespace": "OpenAI" @@ -57519,7 +57588,7 @@ ] }, "code_interpreter_call": { - "$id": "4644", + "$id": "4649", "kind": "model", "name": "CodeInterpreterToolCallItemParam", "namespace": "OpenAI", @@ -57529,16 +57598,16 @@ "discriminatorValue": "code_interpreter_call", "decorators": [], "baseModel": { - "$ref": "4509" + "$ref": "4514" }, "properties": [ { - "$id": "4645", + "$id": "4650", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "610" + "$ref": "614" }, "optional": false, "readOnly": false, @@ -57554,13 +57623,13 @@ "isHttpMetadata": false }, { - "$id": "4646", + "$id": "4651", "kind": "property", "name": "container_id", "serializedName": "container_id", "doc": "The ID of the container used to run the code.", "type": { - "$id": "4647", + "$id": "4652", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57580,13 +57649,13 @@ "isHttpMetadata": false }, { - "$id": "4648", + "$id": "4653", "kind": "property", "name": "code", "serializedName": "code", "doc": "The code to run.", "type": { - "$id": "4649", + "$id": "4654", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57606,17 +57675,17 @@ "isHttpMetadata": false }, { - "$id": "4650", + "$id": "4655", "kind": "property", "name": "outputs", "serializedName": "outputs", "doc": "The outputs of the code interpreter tool call.", "type": { - "$id": "4651", + "$id": "4656", "kind": "array", "name": "ArrayCodeInterpreterToolOutput", "valueType": { - "$id": "4652", + "$id": "4657", "kind": "model", "name": "CodeInterpreterToolOutput", "namespace": "OpenAI", @@ -57624,13 +57693,13 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "4653", + "$id": "4658", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the output.", "type": { - "$ref": "641" + "$ref": "645" }, "optional": false, "readOnly": false, @@ -57647,12 +57716,12 @@ }, "properties": [ { - "$ref": "4653" + "$ref": "4658" } ], "discriminatedSubtypes": { "logs": { - "$id": "4654", + "$id": "4659", "kind": "model", "name": "CodeInterpreterToolLogsOutput", "namespace": "OpenAI", @@ -57661,17 +57730,17 @@ "discriminatorValue": "logs", "decorators": [], "baseModel": { - "$ref": "4652" + "$ref": "4657" }, "properties": [ { - "$id": "4655", + "$id": "4660", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the output. Always 'logs'.", "type": { - "$ref": "643" + "$ref": "647" }, "optional": false, "readOnly": false, @@ -57687,13 +57756,13 @@ "isHttpMetadata": false }, { - "$id": "4656", + "$id": "4661", "kind": "property", "name": "logs", "serializedName": "logs", "doc": "The logs output from the code interpreter.", "type": { - "$id": "4657", + "$id": "4662", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57715,7 +57784,7 @@ ] }, "image": { - "$id": "4658", + "$id": "4663", "kind": "model", "name": "CodeInterpreterToolImageOutput", "namespace": "OpenAI", @@ -57724,17 +57793,17 @@ "discriminatorValue": "image", "decorators": [], "baseModel": { - "$ref": "4652" + "$ref": "4657" }, "properties": [ { - "$id": "4659", + "$id": "4664", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the output. Always 'image'.", "type": { - "$ref": "644" + "$ref": "648" }, "optional": false, "readOnly": false, @@ -57750,13 +57819,13 @@ "isHttpMetadata": false }, { - "$id": "4660", + "$id": "4665", "kind": "property", "name": "ImageUri", "serializedName": "url", "doc": "The URL of the image output from the code interpreter.", "type": { - "$id": "4661", + "$id": "4666", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -57798,7 +57867,7 @@ ] }, "local_shell_call": { - "$id": "4662", + "$id": "4667", "kind": "model", "name": "LocalShellToolCallItemParam", "namespace": "OpenAI", @@ -57808,16 +57877,16 @@ "discriminatorValue": "local_shell_call", "decorators": [], "baseModel": { - "$ref": "4509" + "$ref": "4514" }, "properties": [ { - "$id": "4663", + "$id": "4668", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "611" + "$ref": "615" }, "optional": false, "readOnly": false, @@ -57833,13 +57902,13 @@ "isHttpMetadata": false }, { - "$id": "4664", + "$id": "4669", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the local shell tool call generated by the model.", "type": { - "$id": "4665", + "$id": "4670", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57859,12 +57928,12 @@ "isHttpMetadata": false }, { - "$id": "4666", + "$id": "4671", "kind": "property", "name": "action", "serializedName": "action", "type": { - "$id": "4667", + "$id": "4672", "kind": "model", "name": "LocalShellExecAction", "namespace": "OpenAI", @@ -57874,13 +57943,13 @@ "decorators": [], "properties": [ { - "$id": "4668", + "$id": "4673", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the local shell action. Always `exec`.", "type": { - "$ref": "1621" + "$ref": "1625" }, "optional": false, "readOnly": false, @@ -57896,13 +57965,13 @@ "isHttpMetadata": false }, { - "$id": "4669", + "$id": "4674", "kind": "property", "name": "command", "serializedName": "command", "doc": "The command to run.", "type": { - "$ref": "2339" + "$ref": "2343" }, "optional": false, "readOnly": false, @@ -57918,16 +57987,16 @@ "isHttpMetadata": false }, { - "$id": "4670", + "$id": "4675", "kind": "property", "name": "timeout_ms", "serializedName": "timeout_ms", "doc": "Optional timeout in milliseconds for the command.", "type": { - "$id": "4671", + "$id": "4676", "kind": "nullable", "type": { - "$id": "4672", + "$id": "4677", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -57949,16 +58018,16 @@ "isHttpMetadata": false }, { - "$id": "4673", + "$id": "4678", "kind": "property", "name": "working_directory", "serializedName": "working_directory", "doc": "Optional working directory to run the command in.", "type": { - "$id": "4674", + "$id": "4679", "kind": "nullable", "type": { - "$id": "4675", + "$id": "4680", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57980,13 +58049,13 @@ "isHttpMetadata": false }, { - "$id": "4676", + "$id": "4681", "kind": "property", "name": "env", "serializedName": "env", "doc": "Environment variables to set for the command.", "type": { - "$ref": "2346" + "$ref": "2350" }, "optional": false, "readOnly": false, @@ -58002,16 +58071,16 @@ "isHttpMetadata": false }, { - "$id": "4677", + "$id": "4682", "kind": "property", "name": "user", "serializedName": "user", "doc": "Optional user to run the command as.", "type": { - "$id": "4678", + "$id": "4683", "kind": "nullable", "type": { - "$id": "4679", + "$id": "4684", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58050,7 +58119,7 @@ ] }, "local_shell_call_output": { - "$id": "4680", + "$id": "4685", "kind": "model", "name": "LocalShellToolCallOutputItemParam", "namespace": "OpenAI", @@ -58060,16 +58129,16 @@ "discriminatorValue": "local_shell_call_output", "decorators": [], "baseModel": { - "$ref": "4509" + "$ref": "4514" }, "properties": [ { - "$id": "4681", + "$id": "4686", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "612" + "$ref": "616" }, "optional": false, "readOnly": false, @@ -58085,13 +58154,13 @@ "isHttpMetadata": false }, { - "$id": "4682", + "$id": "4687", "kind": "property", "name": "output", "serializedName": "output", "doc": "A JSON string of the output of the local shell tool call.", "type": { - "$id": "4683", + "$id": "4688", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58113,7 +58182,7 @@ ] }, "mcp_list_tools": { - "$id": "4684", + "$id": "4689", "kind": "model", "name": "MCPListToolsItemParam", "namespace": "OpenAI", @@ -58123,16 +58192,16 @@ "discriminatorValue": "mcp_list_tools", "decorators": [], "baseModel": { - "$ref": "4509" + "$ref": "4514" }, "properties": [ { - "$id": "4685", + "$id": "4690", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "613" + "$ref": "617" }, "optional": false, "readOnly": false, @@ -58148,13 +58217,13 @@ "isHttpMetadata": false }, { - "$id": "4686", + "$id": "4691", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server.", "type": { - "$id": "4687", + "$id": "4692", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58174,17 +58243,17 @@ "isHttpMetadata": false }, { - "$id": "4688", + "$id": "4693", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "The tools available on the server.", "type": { - "$id": "4689", + "$id": "4694", "kind": "array", "name": "ArrayMcpListToolsTool", "valueType": { - "$id": "4690", + "$id": "4695", "kind": "model", "name": "MCPListToolsTool", "namespace": "OpenAI", @@ -58194,13 +58263,13 @@ "decorators": [], "properties": [ { - "$id": "4691", + "$id": "4696", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the tool.", "type": { - "$id": "4692", + "$id": "4697", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58220,16 +58289,16 @@ "isHttpMetadata": false }, { - "$id": "4693", + "$id": "4698", "kind": "property", "name": "description", "serializedName": "description", "doc": "The description of the tool.", "type": { - "$id": "4694", + "$id": "4699", "kind": "nullable", "type": { - "$id": "4695", + "$id": "4700", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58251,13 +58320,13 @@ "isHttpMetadata": false }, { - "$id": "4696", + "$id": "4701", "kind": "property", "name": "input_schema", "serializedName": "input_schema", "doc": "The JSON schema describing the tool's input.", "type": { - "$id": "4697", + "$id": "4702", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -58277,16 +58346,16 @@ "isHttpMetadata": false }, { - "$id": "4698", + "$id": "4703", "kind": "property", "name": "annotations", "serializedName": "annotations", "doc": "Additional annotations about the tool.", "type": { - "$id": "4699", + "$id": "4704", "kind": "nullable", "type": { - "$id": "4700", + "$id": "4705", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -58326,16 +58395,16 @@ "isHttpMetadata": false }, { - "$id": "4701", + "$id": "4706", "kind": "property", "name": "error", "serializedName": "error", "doc": "Error message if the server could not list tools.", "type": { - "$id": "4702", + "$id": "4707", "kind": "nullable", "type": { - "$id": "4703", + "$id": "4708", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58359,7 +58428,7 @@ ] }, "mcp_approval_request": { - "$id": "4704", + "$id": "4709", "kind": "model", "name": "MCPApprovalRequestItemParam", "namespace": "OpenAI", @@ -58369,16 +58438,16 @@ "discriminatorValue": "mcp_approval_request", "decorators": [], "baseModel": { - "$ref": "4509" + "$ref": "4514" }, "properties": [ { - "$id": "4705", + "$id": "4710", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "614" + "$ref": "618" }, "optional": false, "readOnly": false, @@ -58394,13 +58463,13 @@ "isHttpMetadata": false }, { - "$id": "4706", + "$id": "4711", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server making the request.", "type": { - "$id": "4707", + "$id": "4712", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58420,13 +58489,13 @@ "isHttpMetadata": false }, { - "$id": "4708", + "$id": "4713", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the tool to run.", "type": { - "$id": "4709", + "$id": "4714", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58446,13 +58515,13 @@ "isHttpMetadata": false }, { - "$id": "4710", + "$id": "4715", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "A JSON string of arguments for the tool.", "type": { - "$id": "4711", + "$id": "4716", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58474,7 +58543,7 @@ ] }, "mcp_approval_response": { - "$id": "4712", + "$id": "4717", "kind": "model", "name": "MCPApprovalResponseItemParam", "namespace": "OpenAI", @@ -58484,16 +58553,16 @@ "discriminatorValue": "mcp_approval_response", "decorators": [], "baseModel": { - "$ref": "4509" + "$ref": "4514" }, "properties": [ { - "$id": "4713", + "$id": "4718", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "615" + "$ref": "619" }, "optional": false, "readOnly": false, @@ -58509,13 +58578,13 @@ "isHttpMetadata": false }, { - "$id": "4714", + "$id": "4719", "kind": "property", "name": "approval_request_id", "serializedName": "approval_request_id", "doc": "The ID of the approval request being answered.", "type": { - "$id": "4715", + "$id": "4720", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58535,13 +58604,13 @@ "isHttpMetadata": false }, { - "$id": "4716", + "$id": "4721", "kind": "property", "name": "approve", "serializedName": "approve", "doc": "Whether the request was approved.", "type": { - "$id": "4717", + "$id": "4722", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -58561,16 +58630,16 @@ "isHttpMetadata": false }, { - "$id": "4718", + "$id": "4723", "kind": "property", "name": "reason", "serializedName": "reason", "doc": "Optional reason for the decision.", "type": { - "$id": "4719", + "$id": "4724", "kind": "nullable", "type": { - "$id": "4720", + "$id": "4725", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58594,7 +58663,7 @@ ] }, "mcp_call": { - "$id": "4721", + "$id": "4726", "kind": "model", "name": "MCPCallItemParam", "namespace": "OpenAI", @@ -58604,16 +58673,16 @@ "discriminatorValue": "mcp_call", "decorators": [], "baseModel": { - "$ref": "4509" + "$ref": "4514" }, "properties": [ { - "$id": "4722", + "$id": "4727", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "616" + "$ref": "620" }, "optional": false, "readOnly": false, @@ -58629,13 +58698,13 @@ "isHttpMetadata": false }, { - "$id": "4723", + "$id": "4728", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server running the tool.", "type": { - "$id": "4724", + "$id": "4729", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58655,13 +58724,13 @@ "isHttpMetadata": false }, { - "$id": "4725", + "$id": "4730", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the tool that was run.", "type": { - "$id": "4726", + "$id": "4731", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58681,13 +58750,13 @@ "isHttpMetadata": false }, { - "$id": "4727", + "$id": "4732", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "A JSON string of the arguments passed to the tool.", "type": { - "$id": "4728", + "$id": "4733", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58707,16 +58776,16 @@ "isHttpMetadata": false }, { - "$id": "4729", + "$id": "4734", "kind": "property", "name": "output", "serializedName": "output", "doc": "The output from the tool call.", "type": { - "$id": "4730", + "$id": "4735", "kind": "nullable", "type": { - "$id": "4731", + "$id": "4736", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58738,16 +58807,16 @@ "isHttpMetadata": false }, { - "$id": "4732", + "$id": "4737", "kind": "property", "name": "error", "serializedName": "error", "doc": "The error from the tool call, if any.", "type": { - "$id": "4733", + "$id": "4738", "kind": "nullable", "type": { - "$id": "4734", + "$id": "4739", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58771,7 +58840,7 @@ ] }, "message": { - "$id": "4735", + "$id": "4740", "kind": "model", "name": "ResponsesMessageItemParam", "namespace": "OpenAI", @@ -58781,13 +58850,13 @@ "discriminatorValue": "message", "decorators": [], "discriminatorProperty": { - "$id": "4736", + "$id": "4741", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role associated with the message.", "type": { - "$ref": "645" + "$ref": "649" }, "optional": false, "readOnly": false, @@ -58803,17 +58872,17 @@ "isHttpMetadata": false }, "baseModel": { - "$ref": "4509" + "$ref": "4514" }, "properties": [ { - "$id": "4737", + "$id": "4742", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the responses item, which is always 'message'.", "type": { - "$ref": "600" + "$ref": "604" }, "optional": false, "readOnly": false, @@ -58829,12 +58898,12 @@ "isHttpMetadata": false }, { - "$ref": "4736" + "$ref": "4741" } ], "discriminatedSubtypes": { "user": { - "$id": "4738", + "$id": "4743", "kind": "model", "name": "ResponsesUserMessageItemParam", "namespace": "OpenAI", @@ -58844,17 +58913,17 @@ "discriminatorValue": "user", "decorators": [], "baseModel": { - "$ref": "4735" + "$ref": "4740" }, "properties": [ { - "$id": "4739", + "$id": "4744", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `user`.", "type": { - "$ref": "649" + "$ref": "653" }, "optional": false, "readOnly": false, @@ -58870,13 +58939,13 @@ "isHttpMetadata": false }, { - "$id": "4740", + "$id": "4745", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4423" + "$ref": "4428" }, "optional": false, "readOnly": false, @@ -58894,7 +58963,7 @@ ] }, "system": { - "$id": "4741", + "$id": "4746", "kind": "model", "name": "ResponsesSystemMessageItemParam", "namespace": "OpenAI", @@ -58904,17 +58973,17 @@ "discriminatorValue": "system", "decorators": [], "baseModel": { - "$ref": "4735" + "$ref": "4740" }, "properties": [ { - "$id": "4742", + "$id": "4747", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `system`.", "type": { - "$ref": "647" + "$ref": "651" }, "optional": false, "readOnly": false, @@ -58930,13 +58999,13 @@ "isHttpMetadata": false }, { - "$id": "4743", + "$id": "4748", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4423" + "$ref": "4428" }, "optional": false, "readOnly": false, @@ -58954,7 +59023,7 @@ ] }, "developer": { - "$id": "4744", + "$id": "4749", "kind": "model", "name": "ResponsesDeveloperMessageItemParam", "namespace": "OpenAI", @@ -58964,17 +59033,17 @@ "discriminatorValue": "developer", "decorators": [], "baseModel": { - "$ref": "4735" + "$ref": "4740" }, "properties": [ { - "$id": "4745", + "$id": "4750", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `developer`.", "type": { - "$ref": "648" + "$ref": "652" }, "optional": false, "readOnly": false, @@ -58990,13 +59059,13 @@ "isHttpMetadata": false }, { - "$id": "4746", + "$id": "4751", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4423" + "$ref": "4428" }, "optional": false, "readOnly": false, @@ -59014,7 +59083,7 @@ ] }, "assistant": { - "$id": "4747", + "$id": "4752", "kind": "model", "name": "ResponsesAssistantMessageItemParam", "namespace": "OpenAI", @@ -59024,17 +59093,17 @@ "discriminatorValue": "assistant", "decorators": [], "baseModel": { - "$ref": "4735" + "$ref": "4740" }, "properties": [ { - "$id": "4748", + "$id": "4753", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `assistant`.", "type": { - "$ref": "650" + "$ref": "654" }, "optional": false, "readOnly": false, @@ -59050,13 +59119,13 @@ "isHttpMetadata": false }, { - "$id": "4749", + "$id": "4754", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4423" + "$ref": "4428" }, "optional": false, "readOnly": false, @@ -59102,20 +59171,20 @@ "isHttpMetadata": false }, { - "$id": "4750", + "$id": "4755", "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": "4751", + "$id": "4756", "kind": "nullable", "type": { - "$id": "4752", + "$id": "4757", "kind": "array", "name": "ArrayIncludable", "valueType": { - "$ref": "651" + "$ref": "655" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -59136,16 +59205,16 @@ "isHttpMetadata": false }, { - "$id": "4753", + "$id": "4758", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "doc": "Whether to allow the model to run tool calls in parallel.", "type": { - "$id": "4754", + "$id": "4759", "kind": "nullable", "type": { - "$id": "4755", + "$id": "4760", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -59167,16 +59236,16 @@ "isHttpMetadata": false }, { - "$id": "4756", + "$id": "4761", "kind": "property", "name": "store", "serializedName": "store", "doc": "Whether to store the generated model response for later retrieval via\nAPI.", "type": { - "$id": "4757", + "$id": "4762", "kind": "nullable", "type": { - "$id": "4758", + "$id": "4763", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -59198,16 +59267,16 @@ "isHttpMetadata": false }, { - "$id": "4759", + "$id": "4764", "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": "4760", + "$id": "4765", "kind": "nullable", "type": { - "$id": "4761", + "$id": "4766", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -59231,214 +59300,214 @@ ] }, { - "$ref": "4372" - }, - { - "$ref": "4389" + "$ref": "4377" }, { "$ref": "4394" }, { - "$ref": "4396" + "$ref": "4399" }, { - "$ref": "4398" + "$ref": "4401" }, { - "$ref": "4400" + "$ref": "4403" }, { - "$ref": "4402" + "$ref": "4405" }, { - "$ref": "4404" + "$ref": "4407" }, { - "$ref": "4406" + "$ref": "4409" }, { - "$ref": "4408" + "$ref": "4411" }, { - "$ref": "4419" + "$ref": "4413" }, { "$ref": "4424" }, { - "$ref": "4426" + "$ref": "4429" }, { "$ref": "4431" }, { - "$ref": "4437" + "$ref": "4436" }, { - "$ref": "4441" + "$ref": "4442" }, { - "$ref": "4445" + "$ref": "4446" }, { - "$ref": "4454" + "$ref": "4450" }, { - "$ref": "4463" + "$ref": "4459" }, { - "$ref": "4469" + "$ref": "4468" }, { - "$ref": "4471" + "$ref": "4474" }, { - "$ref": "4477" + "$ref": "4476" }, { - "$ref": "4487" + "$ref": "4482" }, { - "$ref": "4495" + "$ref": "4492" }, { - "$ref": "4503" + "$ref": "4500" }, { - "$ref": "4509" + "$ref": "4508" }, { - "$ref": "4511" + "$ref": "4514" }, { - "$ref": "4517" + "$ref": "4516" }, { - "$ref": "4527" + "$ref": "4522" }, { "$ref": "4532" }, { - "$ref": "4534" + "$ref": "4537" }, { - "$ref": "4541" + "$ref": "4539" }, { - "$ref": "4547" + "$ref": "4546" }, { - "$ref": "4551" + "$ref": "4552" }, { "$ref": "4556" }, { - "$ref": "4562" + "$ref": "4561" }, { - "$ref": "4564" + "$ref": "4567" }, { - "$ref": "4574" + "$ref": "4569" }, { - "$ref": "4578" + "$ref": "4579" }, { - "$ref": "4580" + "$ref": "4583" }, { "$ref": "4585" }, { - "$ref": "4592" + "$ref": "4590" }, { - "$ref": "4598" + "$ref": "4597" }, { - "$ref": "4600" + "$ref": "4603" }, { - "$ref": "4606" + "$ref": "4605" }, { - "$ref": "4608" + "$ref": "4611" }, { - "$ref": "4616" + "$ref": "4613" }, { - "$ref": "4622" + "$ref": "4621" }, { - "$ref": "4629" + "$ref": "4627" }, { - "$ref": "4631" + "$ref": "4634" }, { - "$ref": "4635" + "$ref": "4636" }, { - "$ref": "4639" + "$ref": "4640" }, { "$ref": "4644" }, { - "$ref": "4652" + "$ref": "4649" }, { - "$ref": "4654" + "$ref": "4657" }, { - "$ref": "4658" + "$ref": "4659" }, { - "$ref": "4662" + "$ref": "4663" }, { "$ref": "4667" }, { - "$ref": "4680" + "$ref": "4672" + }, + { + "$ref": "4685" }, { - "$ref": "4684" + "$ref": "4689" }, { - "$ref": "4690" + "$ref": "4695" }, { - "$ref": "4704" + "$ref": "4709" }, { - "$ref": "4712" + "$ref": "4717" }, { - "$ref": "4721" + "$ref": "4726" }, { - "$ref": "4735" + "$ref": "4740" }, { - "$ref": "4738" + "$ref": "4743" }, { - "$ref": "4741" + "$ref": "4746" }, { - "$ref": "4744" + "$ref": "4749" }, { - "$ref": "4747" + "$ref": "4752" }, { - "$id": "4762", + "$id": "4767", "kind": "model", "name": "Response", "namespace": "OpenAI", @@ -59447,13 +59516,13 @@ "decorators": [], "properties": [ { - "$id": "4763", + "$id": "4768", "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": "2345" + "$ref": "2349" }, "optional": false, "readOnly": false, @@ -59469,16 +59538,16 @@ "isHttpMetadata": false }, { - "$id": "4764", + "$id": "4769", "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": "4765", + "$id": "4770", "kind": "nullable", "type": { - "$id": "4766", + "$id": "4771", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -59500,16 +59569,16 @@ "isHttpMetadata": false }, { - "$id": "4767", + "$id": "4772", "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": "4768", + "$id": "4773", "kind": "nullable", "type": { - "$id": "4769", + "$id": "4774", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -59531,16 +59600,16 @@ "isHttpMetadata": false }, { - "$id": "4770", + "$id": "4775", "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": "4771", + "$id": "4776", "kind": "nullable", "type": { - "$id": "4772", + "$id": "4777", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59562,12 +59631,12 @@ "isHttpMetadata": false }, { - "$id": "4773", + "$id": "4778", "kind": "property", "name": "service_tier", "serializedName": "service_tier", "type": { - "$ref": "477" + "$ref": "481" }, "optional": true, "readOnly": false, @@ -59583,13 +59652,13 @@ "isHttpMetadata": false }, { - "$id": "4774", + "$id": "4779", "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": "4367" + "$ref": "4372" }, "optional": true, "readOnly": false, @@ -59605,13 +59674,13 @@ "isHttpMetadata": false }, { - "$id": "4775", + "$id": "4780", "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": "483" + "$ref": "487" }, "optional": true, "readOnly": false, @@ -59627,12 +59696,12 @@ "isHttpMetadata": false }, { - "$id": "4776", + "$id": "4781", "kind": "property", "name": "reasoning", "serializedName": "reasoning", "type": { - "$ref": "4371" + "$ref": "4376" }, "optional": true, "readOnly": false, @@ -59648,13 +59717,13 @@ "isHttpMetadata": false }, { - "$id": "4777", + "$id": "4782", "kind": "property", "name": "background", "serializedName": "background", "doc": "Whether to run the model response in the background.\n[Learn more](/docs/guides/background).", "type": { - "$ref": "4380" + "$ref": "4385" }, "optional": true, "readOnly": false, @@ -59670,13 +59739,13 @@ "isHttpMetadata": false }, { - "$id": "4778", + "$id": "4783", "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": "4383" + "$ref": "4388" }, "optional": true, "readOnly": false, @@ -59692,13 +59761,13 @@ "isHttpMetadata": false }, { - "$id": "4779", + "$id": "4784", "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": "4386" + "$ref": "4391" }, "optional": true, "readOnly": false, @@ -59714,13 +59783,13 @@ "isHttpMetadata": false }, { - "$id": "4780", + "$id": "4785", "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": "4389" + "$ref": "4394" }, "optional": true, "readOnly": false, @@ -59736,13 +59805,13 @@ "isHttpMetadata": false }, { - "$id": "4781", + "$id": "4786", "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": "4136" + "$ref": "4140" }, "optional": true, "readOnly": false, @@ -59758,13 +59827,13 @@ "isHttpMetadata": false }, { - "$id": "4782", + "$id": "4787", "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": "4393" + "$ref": "4398" }, "optional": true, "readOnly": false, @@ -59780,13 +59849,13 @@ "isHttpMetadata": false }, { - "$id": "4783", + "$id": "4788", "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": "4413" + "$ref": "4418" }, "optional": true, "readOnly": false, @@ -59802,13 +59871,13 @@ "isHttpMetadata": false }, { - "$id": "4784", + "$id": "4789", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for this Response.", "type": { - "$id": "4785", + "$id": "4790", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59828,13 +59897,13 @@ "isHttpMetadata": false }, { - "$id": "4786", + "$id": "4791", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type of this resource - always set to `response`.", "type": { - "$ref": "1623" + "$ref": "1627" }, "optional": false, "readOnly": false, @@ -59850,13 +59919,13 @@ "isHttpMetadata": false }, { - "$id": "4787", + "$id": "4792", "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": "658" + "$ref": "662" }, "optional": true, "readOnly": false, @@ -59872,18 +59941,18 @@ "isHttpMetadata": false }, { - "$id": "4788", + "$id": "4793", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) of when this Response was created.", "type": { - "$id": "4789", + "$id": "4794", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "4790", + "$id": "4795", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59906,15 +59975,15 @@ "isHttpMetadata": false }, { - "$id": "4791", + "$id": "4796", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$id": "4792", + "$id": "4797", "kind": "nullable", "type": { - "$id": "4793", + "$id": "4798", "kind": "model", "name": "ResponseError", "namespace": "OpenAI", @@ -59924,12 +59993,12 @@ "decorators": [], "properties": [ { - "$id": "4794", + "$id": "4799", "kind": "property", "name": "code", "serializedName": "code", "type": { - "$ref": "666" + "$ref": "670" }, "optional": false, "readOnly": false, @@ -59945,13 +60014,13 @@ "isHttpMetadata": false }, { - "$id": "4795", + "$id": "4800", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "4796", + "$id": "4801", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59988,16 +60057,16 @@ "isHttpMetadata": false }, { - "$id": "4797", + "$id": "4802", "kind": "property", "name": "incomplete_details", "serializedName": "incomplete_details", "doc": "Details about why the response is incomplete.", "type": { - "$id": "4798", + "$id": "4803", "kind": "nullable", "type": { - "$id": "4799", + "$id": "4804", "kind": "model", "name": "ResponseIncompleteDetails1", "namespace": "OpenAI", @@ -60006,13 +60075,13 @@ "decorators": [], "properties": [ { - "$id": "4800", + "$id": "4805", "kind": "property", "name": "reason", "serializedName": "reason", "doc": "The reason why the response is incomplete.", "type": { - "$ref": "686" + "$ref": "690" }, "optional": true, "readOnly": false, @@ -60045,17 +60114,17 @@ "isHttpMetadata": false }, { - "$id": "4801", + "$id": "4806", "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": "4802", + "$id": "4807", "kind": "array", "name": "ArrayItemResource", "valueType": { - "$id": "4803", + "$id": "4808", "kind": "model", "name": "ItemResource", "namespace": "OpenAI", @@ -60064,12 +60133,12 @@ "doc": "Content item used to generate a response.", "decorators": [], "discriminatorProperty": { - "$id": "4804", + "$id": "4809", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "598" + "$ref": "602" }, "optional": false, "readOnly": false, @@ -60086,15 +60155,15 @@ }, "properties": [ { - "$ref": "4804" + "$ref": "4809" }, { - "$id": "4805", + "$id": "4810", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "4806", + "$id": "4811", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60116,7 +60185,7 @@ ], "discriminatedSubtypes": { "file_search_call": { - "$id": "4807", + "$id": "4812", "kind": "model", "name": "FileSearchToolCallItemResource", "namespace": "OpenAI", @@ -60126,16 +60195,16 @@ "discriminatorValue": "file_search_call", "decorators": [], "baseModel": { - "$ref": "4803" + "$ref": "4808" }, "properties": [ { - "$id": "4808", + "$id": "4813", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "601" + "$ref": "605" }, "optional": false, "readOnly": false, @@ -60151,13 +60220,13 @@ "isHttpMetadata": false }, { - "$id": "4809", + "$id": "4814", "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": "690" + "$ref": "694" }, "optional": false, "readOnly": true, @@ -60173,13 +60242,13 @@ "isHttpMetadata": false }, { - "$id": "4810", + "$id": "4815", "kind": "property", "name": "queries", "serializedName": "queries", "doc": "The queries used to search for files.", "type": { - "$ref": "2339" + "$ref": "2343" }, "optional": false, "readOnly": false, @@ -60195,13 +60264,13 @@ "isHttpMetadata": false }, { - "$id": "4811", + "$id": "4816", "kind": "property", "name": "results", "serializedName": "results", "doc": "The results of the file search tool call.", "type": { - "$ref": "4515" + "$ref": "4520" }, "optional": true, "readOnly": false, @@ -60219,7 +60288,7 @@ ] }, "computer_call": { - "$id": "4812", + "$id": "4817", "kind": "model", "name": "ComputerToolCallItemResource", "namespace": "OpenAI", @@ -60229,16 +60298,16 @@ "discriminatorValue": "computer_call", "decorators": [], "baseModel": { - "$ref": "4803" + "$ref": "4808" }, "properties": [ { - "$id": "4813", + "$id": "4818", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "604" + "$ref": "608" }, "optional": false, "readOnly": false, @@ -60254,13 +60323,13 @@ "isHttpMetadata": false }, { - "$id": "4814", + "$id": "4819", "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": "697" + "$ref": "701" }, "optional": false, "readOnly": true, @@ -60276,13 +60345,13 @@ "isHttpMetadata": false }, { - "$id": "4815", + "$id": "4820", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "An identifier used when responding to the tool call with output.", "type": { - "$id": "4816", + "$id": "4821", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60302,12 +60371,12 @@ "isHttpMetadata": false }, { - "$id": "4817", + "$id": "4822", "kind": "property", "name": "action", "serializedName": "action", "type": { - "$ref": "4532" + "$ref": "4537" }, "optional": false, "readOnly": false, @@ -60323,13 +60392,13 @@ "isHttpMetadata": false }, { - "$id": "4818", + "$id": "4823", "kind": "property", "name": "pending_safety_checks", "serializedName": "pending_safety_checks", "doc": "The pending safety checks for the computer call.", "type": { - "$ref": "4584" + "$ref": "4589" }, "optional": false, "readOnly": false, @@ -60347,7 +60416,7 @@ ] }, "computer_call_output": { - "$id": "4819", + "$id": "4824", "kind": "model", "name": "ComputerToolCallOutputItemResource", "namespace": "OpenAI", @@ -60357,16 +60426,16 @@ "discriminatorValue": "computer_call_output", "decorators": [], "baseModel": { - "$ref": "4803" + "$ref": "4808" }, "properties": [ { - "$id": "4820", + "$id": "4825", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "605" + "$ref": "609" }, "optional": false, "readOnly": false, @@ -60382,13 +60451,13 @@ "isHttpMetadata": false }, { - "$id": "4821", + "$id": "4826", "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": "702" + "$ref": "706" }, "optional": false, "readOnly": true, @@ -60404,13 +60473,13 @@ "isHttpMetadata": false }, { - "$id": "4822", + "$id": "4827", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the computer tool call that produced the output.", "type": { - "$id": "4823", + "$id": "4828", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60430,13 +60499,13 @@ "isHttpMetadata": false }, { - "$id": "4824", + "$id": "4829", "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": "4584" + "$ref": "4589" }, "optional": true, "readOnly": false, @@ -60452,12 +60521,12 @@ "isHttpMetadata": false }, { - "$id": "4825", + "$id": "4830", "kind": "property", "name": "output", "serializedName": "output", "type": { - "$ref": "4598" + "$ref": "4603" }, "optional": false, "readOnly": false, @@ -60475,7 +60544,7 @@ ] }, "web_search_call": { - "$id": "4826", + "$id": "4831", "kind": "model", "name": "WebSearchToolCallItemResource", "namespace": "OpenAI", @@ -60485,16 +60554,16 @@ "discriminatorValue": "web_search_call", "decorators": [], "baseModel": { - "$ref": "4803" + "$ref": "4808" }, "properties": [ { - "$id": "4827", + "$id": "4832", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "606" + "$ref": "610" }, "optional": false, "readOnly": false, @@ -60510,13 +60579,13 @@ "isHttpMetadata": false }, { - "$id": "4828", + "$id": "4833", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the web search tool call.", "type": { - "$ref": "707" + "$ref": "711" }, "optional": false, "readOnly": true, @@ -60534,7 +60603,7 @@ ] }, "function_call": { - "$id": "4829", + "$id": "4834", "kind": "model", "name": "FunctionToolCallItemResource", "namespace": "OpenAI", @@ -60544,16 +60613,16 @@ "discriminatorValue": "function_call", "decorators": [], "baseModel": { - "$ref": "4803" + "$ref": "4808" }, "properties": [ { - "$id": "4830", + "$id": "4835", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "602" + "$ref": "606" }, "optional": false, "readOnly": false, @@ -60569,13 +60638,13 @@ "isHttpMetadata": false }, { - "$id": "4831", + "$id": "4836", "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": "713" + "$ref": "717" }, "optional": false, "readOnly": true, @@ -60591,13 +60660,13 @@ "isHttpMetadata": false }, { - "$id": "4832", + "$id": "4837", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "4833", + "$id": "4838", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60617,13 +60686,13 @@ "isHttpMetadata": false }, { - "$id": "4834", + "$id": "4839", "kind": "property", "name": "FunctionName", "serializedName": "name", "doc": "The name of the function to run.", "type": { - "$id": "4835", + "$id": "4840", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60643,13 +60712,13 @@ "isHttpMetadata": false }, { - "$id": "4836", + "$id": "4841", "kind": "property", "name": "FunctionArguments", "serializedName": "arguments", "doc": "A JSON string of the arguments to pass to the function.", "type": { - "$id": "4837", + "$id": "4842", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -60671,7 +60740,7 @@ ] }, "function_call_output": { - "$id": "4838", + "$id": "4843", "kind": "model", "name": "FunctionToolCallOutputItemResource", "namespace": "OpenAI", @@ -60681,16 +60750,16 @@ "discriminatorValue": "function_call_output", "decorators": [], "baseModel": { - "$ref": "4803" + "$ref": "4808" }, "properties": [ { - "$id": "4839", + "$id": "4844", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "603" + "$ref": "607" }, "optional": false, "readOnly": false, @@ -60706,13 +60775,13 @@ "isHttpMetadata": false }, { - "$id": "4840", + "$id": "4845", "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": "718" + "$ref": "722" }, "optional": false, "readOnly": true, @@ -60728,13 +60797,13 @@ "isHttpMetadata": false }, { - "$id": "4841", + "$id": "4846", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "4842", + "$id": "4847", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60754,13 +60823,13 @@ "isHttpMetadata": false }, { - "$id": "4843", + "$id": "4848", "kind": "property", "name": "FunctionOutput", "serializedName": "output", "doc": "A JSON string of the output of the function tool call.", "type": { - "$id": "4844", + "$id": "4849", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60782,7 +60851,7 @@ ] }, "reasoning": { - "$id": "4845", + "$id": "4850", "kind": "model", "name": "ReasoningItemResource", "namespace": "OpenAI", @@ -60792,16 +60861,16 @@ "discriminatorValue": "reasoning", "decorators": [], "baseModel": { - "$ref": "4803" + "$ref": "4808" }, "properties": [ { - "$id": "4846", + "$id": "4851", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "607" + "$ref": "611" }, "optional": false, "readOnly": false, @@ -60817,13 +60886,13 @@ "isHttpMetadata": false }, { - "$id": "4847", + "$id": "4852", "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": "723" + "$ref": "727" }, "optional": false, "readOnly": true, @@ -60839,13 +60908,13 @@ "isHttpMetadata": false }, { - "$id": "4848", + "$id": "4853", "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": "4625" + "$ref": "4630" }, "optional": true, "readOnly": false, @@ -60861,13 +60930,13 @@ "isHttpMetadata": false }, { - "$id": "4849", + "$id": "4854", "kind": "property", "name": "SummaryParts", "serializedName": "summary", "doc": "Reasoning text contents.", "type": { - "$ref": "4628" + "$ref": "4633" }, "optional": false, "readOnly": false, @@ -60885,7 +60954,7 @@ ] }, "image_generation_call": { - "$id": "4850", + "$id": "4855", "kind": "model", "name": "ImageGenToolCallItemResource", "namespace": "OpenAI", @@ -60895,16 +60964,16 @@ "discriminatorValue": "image_generation_call", "decorators": [], "baseModel": { - "$ref": "4803" + "$ref": "4808" }, "properties": [ { - "$id": "4851", + "$id": "4856", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "609" + "$ref": "613" }, "optional": false, "readOnly": false, @@ -60920,15 +60989,15 @@ "isHttpMetadata": false }, { - "$id": "4852", + "$id": "4857", "kind": "property", "name": "status", "serializedName": "status", "type": { - "$ref": "728" + "$ref": "732" }, "optional": false, - "readOnly": false, + "readOnly": true, "discriminator": false, "flatten": false, "decorators": [], @@ -60941,13 +61010,13 @@ "isHttpMetadata": false }, { - "$id": "4853", + "$id": "4858", "kind": "property", - "name": "result", + "name": "GeneratedImageBytes", "serializedName": "result", "doc": "The generated image encoded in base64.", "type": { - "$ref": "4642" + "$ref": "4647" }, "optional": false, "readOnly": false, @@ -60965,7 +61034,7 @@ ] }, "code_interpreter_call": { - "$id": "4854", + "$id": "4859", "kind": "model", "name": "CodeInterpreterToolCallItemResource", "namespace": "OpenAI", @@ -60975,16 +61044,16 @@ "discriminatorValue": "code_interpreter_call", "decorators": [], "baseModel": { - "$ref": "4803" + "$ref": "4808" }, "properties": [ { - "$id": "4855", + "$id": "4860", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "610" + "$ref": "614" }, "optional": false, "readOnly": false, @@ -61000,12 +61069,12 @@ "isHttpMetadata": false }, { - "$id": "4856", + "$id": "4861", "kind": "property", "name": "status", "serializedName": "status", "type": { - "$ref": "734" + "$ref": "738" }, "optional": false, "readOnly": true, @@ -61021,13 +61090,13 @@ "isHttpMetadata": false }, { - "$id": "4857", + "$id": "4862", "kind": "property", "name": "container_id", "serializedName": "container_id", "doc": "The ID of the container used to run the code.", "type": { - "$id": "4858", + "$id": "4863", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61047,13 +61116,13 @@ "isHttpMetadata": false }, { - "$id": "4859", + "$id": "4864", "kind": "property", "name": "code", "serializedName": "code", "doc": "The code to run.", "type": { - "$id": "4860", + "$id": "4865", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61073,13 +61142,13 @@ "isHttpMetadata": false }, { - "$id": "4861", + "$id": "4866", "kind": "property", "name": "outputs", "serializedName": "outputs", "doc": "The outputs of the code interpreter tool call.", "type": { - "$ref": "4651" + "$ref": "4656" }, "optional": true, "readOnly": false, @@ -61097,7 +61166,7 @@ ] }, "local_shell_call": { - "$id": "4862", + "$id": "4867", "kind": "model", "name": "LocalShellToolCallItemResource", "namespace": "OpenAI", @@ -61107,16 +61176,16 @@ "discriminatorValue": "local_shell_call", "decorators": [], "baseModel": { - "$ref": "4803" + "$ref": "4808" }, "properties": [ { - "$id": "4863", + "$id": "4868", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "611" + "$ref": "615" }, "optional": false, "readOnly": false, @@ -61132,12 +61201,12 @@ "isHttpMetadata": false }, { - "$id": "4864", + "$id": "4869", "kind": "property", "name": "status", "serializedName": "status", "type": { - "$ref": "739" + "$ref": "743" }, "optional": false, "readOnly": false, @@ -61153,13 +61222,13 @@ "isHttpMetadata": false }, { - "$id": "4865", + "$id": "4870", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the local shell tool call generated by the model.", "type": { - "$id": "4866", + "$id": "4871", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61179,12 +61248,12 @@ "isHttpMetadata": false }, { - "$id": "4867", + "$id": "4872", "kind": "property", "name": "action", "serializedName": "action", "type": { - "$ref": "4667" + "$ref": "4672" }, "optional": false, "readOnly": false, @@ -61202,7 +61271,7 @@ ] }, "local_shell_call_output": { - "$id": "4868", + "$id": "4873", "kind": "model", "name": "LocalShellToolCallOutputItemResource", "namespace": "OpenAI", @@ -61212,16 +61281,16 @@ "discriminatorValue": "local_shell_call_output", "decorators": [], "baseModel": { - "$ref": "4803" + "$ref": "4808" }, "properties": [ { - "$id": "4869", + "$id": "4874", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "612" + "$ref": "616" }, "optional": false, "readOnly": false, @@ -61237,12 +61306,12 @@ "isHttpMetadata": false }, { - "$id": "4870", + "$id": "4875", "kind": "property", "name": "status", "serializedName": "status", "type": { - "$ref": "744" + "$ref": "748" }, "optional": false, "readOnly": false, @@ -61258,13 +61327,13 @@ "isHttpMetadata": false }, { - "$id": "4871", + "$id": "4876", "kind": "property", "name": "output", "serializedName": "output", "doc": "A JSON string of the output of the local shell tool call.", "type": { - "$id": "4872", + "$id": "4877", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61286,7 +61355,7 @@ ] }, "mcp_list_tools": { - "$id": "4873", + "$id": "4878", "kind": "model", "name": "MCPListToolsItemResource", "namespace": "OpenAI", @@ -61296,16 +61365,16 @@ "discriminatorValue": "mcp_list_tools", "decorators": [], "baseModel": { - "$ref": "4803" + "$ref": "4808" }, "properties": [ { - "$id": "4874", + "$id": "4879", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "613" + "$ref": "617" }, "optional": false, "readOnly": false, @@ -61321,13 +61390,13 @@ "isHttpMetadata": false }, { - "$id": "4875", + "$id": "4880", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server.", "type": { - "$id": "4876", + "$id": "4881", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61347,13 +61416,13 @@ "isHttpMetadata": false }, { - "$id": "4877", + "$id": "4882", "kind": "property", "name": "ToolDefinitions", "serializedName": "tools", "doc": "The tools available on the server.", "type": { - "$ref": "4689" + "$ref": "4694" }, "optional": false, "readOnly": false, @@ -61369,16 +61438,16 @@ "isHttpMetadata": false }, { - "$id": "4878", + "$id": "4883", "kind": "property", "name": "error", "serializedName": "error", "doc": "Error message if the server could not list tools.", "type": { - "$id": "4879", + "$id": "4884", "kind": "nullable", "type": { - "$id": "4880", + "$id": "4885", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -61402,7 +61471,7 @@ ] }, "mcp_approval_request": { - "$id": "4881", + "$id": "4886", "kind": "model", "name": "MCPApprovalRequestItemResource", "namespace": "OpenAI", @@ -61412,16 +61481,16 @@ "discriminatorValue": "mcp_approval_request", "decorators": [], "baseModel": { - "$ref": "4803" + "$ref": "4808" }, "properties": [ { - "$id": "4882", + "$id": "4887", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "614" + "$ref": "618" }, "optional": false, "readOnly": false, @@ -61437,13 +61506,13 @@ "isHttpMetadata": false }, { - "$id": "4883", + "$id": "4888", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server making the request.", "type": { - "$id": "4884", + "$id": "4889", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61463,13 +61532,13 @@ "isHttpMetadata": false }, { - "$id": "4885", + "$id": "4890", "kind": "property", "name": "ToolName", "serializedName": "name", "doc": "The name of the tool to run.", "type": { - "$id": "4886", + "$id": "4891", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61489,13 +61558,13 @@ "isHttpMetadata": false }, { - "$id": "4887", + "$id": "4892", "kind": "property", "name": "ToolArguments", "serializedName": "arguments", "doc": "A JSON string of arguments for the tool.", "type": { - "$id": "4888", + "$id": "4893", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -61517,7 +61586,7 @@ ] }, "mcp_approval_response": { - "$id": "4889", + "$id": "4894", "kind": "model", "name": "MCPApprovalResponseItemResource", "namespace": "OpenAI", @@ -61527,16 +61596,16 @@ "discriminatorValue": "mcp_approval_response", "decorators": [], "baseModel": { - "$ref": "4803" + "$ref": "4808" }, "properties": [ { - "$id": "4890", + "$id": "4895", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "615" + "$ref": "619" }, "optional": false, "readOnly": false, @@ -61552,13 +61621,13 @@ "isHttpMetadata": false }, { - "$id": "4891", + "$id": "4896", "kind": "property", "name": "approval_request_id", "serializedName": "approval_request_id", "doc": "The ID of the approval request being answered.", "type": { - "$id": "4892", + "$id": "4897", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61578,13 +61647,13 @@ "isHttpMetadata": false }, { - "$id": "4893", + "$id": "4898", "kind": "property", "name": "Approved", "serializedName": "approve", "doc": "Whether the request was approved.", "type": { - "$id": "4894", + "$id": "4899", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -61604,13 +61673,13 @@ "isHttpMetadata": false }, { - "$id": "4895", + "$id": "4900", "kind": "property", "name": "reason", "serializedName": "reason", "doc": "Optional reason for the decision.", "type": { - "$ref": "4719" + "$ref": "4724" }, "optional": true, "readOnly": false, @@ -61628,7 +61697,7 @@ ] }, "mcp_call": { - "$id": "4896", + "$id": "4901", "kind": "model", "name": "MCPCallItemResource", "namespace": "OpenAI", @@ -61638,16 +61707,16 @@ "discriminatorValue": "mcp_call", "decorators": [], "baseModel": { - "$ref": "4803" + "$ref": "4808" }, "properties": [ { - "$id": "4897", + "$id": "4902", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "616" + "$ref": "620" }, "optional": false, "readOnly": false, @@ -61663,13 +61732,13 @@ "isHttpMetadata": false }, { - "$id": "4898", + "$id": "4903", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server running the tool.", "type": { - "$id": "4899", + "$id": "4904", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61689,13 +61758,13 @@ "isHttpMetadata": false }, { - "$id": "4900", + "$id": "4905", "kind": "property", "name": "ToolName", "serializedName": "name", "doc": "The name of the tool that was run.", "type": { - "$id": "4901", + "$id": "4906", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61715,13 +61784,13 @@ "isHttpMetadata": false }, { - "$id": "4902", + "$id": "4907", "kind": "property", "name": "ToolArguments", "serializedName": "arguments", "doc": "A JSON string of the arguments passed to the tool.", "type": { - "$id": "4903", + "$id": "4908", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -61741,13 +61810,13 @@ "isHttpMetadata": false }, { - "$id": "4904", + "$id": "4909", "kind": "property", "name": "ToolOutput", "serializedName": "output", "doc": "The output from the tool call.", "type": { - "$ref": "4730" + "$ref": "4735" }, "optional": true, "readOnly": false, @@ -61763,16 +61832,16 @@ "isHttpMetadata": false }, { - "$id": "4905", + "$id": "4910", "kind": "property", "name": "error", "serializedName": "error", "doc": "The error from the tool call, if any.", "type": { - "$id": "4906", + "$id": "4911", "kind": "nullable", "type": { - "$id": "4907", + "$id": "4912", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -61796,7 +61865,7 @@ ] }, "message": { - "$id": "4908", + "$id": "4913", "kind": "model", "name": "ResponsesMessageItemResource", "namespace": "OpenAI", @@ -61806,13 +61875,13 @@ "discriminatorValue": "message", "decorators": [], "discriminatorProperty": { - "$id": "4909", + "$id": "4914", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role associated with the message.", "type": { - "$ref": "645" + "$ref": "649" }, "optional": false, "readOnly": false, @@ -61828,17 +61897,17 @@ "isHttpMetadata": false }, "baseModel": { - "$ref": "4803" + "$ref": "4808" }, "properties": [ { - "$id": "4910", + "$id": "4915", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the responses item, which is always 'message'.", "type": { - "$ref": "600" + "$ref": "604" }, "optional": false, "readOnly": false, @@ -61854,13 +61923,13 @@ "isHttpMetadata": false }, { - "$id": "4911", + "$id": "4916", "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": "749" + "$ref": "753" }, "optional": false, "readOnly": true, @@ -61876,12 +61945,12 @@ "isHttpMetadata": false }, { - "$ref": "4909" + "$ref": "4914" } ], "discriminatedSubtypes": { "user": { - "$id": "4912", + "$id": "4917", "kind": "model", "name": "ResponsesUserMessageItemResource", "namespace": "OpenAI", @@ -61891,17 +61960,17 @@ "discriminatorValue": "user", "decorators": [], "baseModel": { - "$ref": "4908" + "$ref": "4913" }, "properties": [ { - "$id": "4913", + "$id": "4918", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `user`.", "type": { - "$ref": "649" + "$ref": "653" }, "optional": false, "readOnly": false, @@ -61917,13 +61986,13 @@ "isHttpMetadata": false }, { - "$id": "4914", + "$id": "4919", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4423" + "$ref": "4428" }, "optional": false, "readOnly": false, @@ -61941,7 +62010,7 @@ ] }, "system": { - "$id": "4915", + "$id": "4920", "kind": "model", "name": "ResponsesSystemMessageItemResource", "namespace": "OpenAI", @@ -61951,17 +62020,17 @@ "discriminatorValue": "system", "decorators": [], "baseModel": { - "$ref": "4908" + "$ref": "4913" }, "properties": [ { - "$id": "4916", + "$id": "4921", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `system`.", "type": { - "$ref": "647" + "$ref": "651" }, "optional": false, "readOnly": false, @@ -61977,13 +62046,13 @@ "isHttpMetadata": false }, { - "$id": "4917", + "$id": "4922", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4423" + "$ref": "4428" }, "optional": false, "readOnly": false, @@ -62001,7 +62070,7 @@ ] }, "developer": { - "$id": "4918", + "$id": "4923", "kind": "model", "name": "ResponsesDeveloperMessageItemResource", "namespace": "OpenAI", @@ -62011,17 +62080,17 @@ "discriminatorValue": "developer", "decorators": [], "baseModel": { - "$ref": "4908" + "$ref": "4913" }, "properties": [ { - "$id": "4919", + "$id": "4924", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `developer`.", "type": { - "$ref": "648" + "$ref": "652" }, "optional": false, "readOnly": false, @@ -62037,13 +62106,13 @@ "isHttpMetadata": false }, { - "$id": "4920", + "$id": "4925", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4423" + "$ref": "4428" }, "optional": false, "readOnly": false, @@ -62061,7 +62130,7 @@ ] }, "assistant": { - "$id": "4921", + "$id": "4926", "kind": "model", "name": "ResponsesAssistantMessageItemResource", "namespace": "OpenAI", @@ -62071,17 +62140,17 @@ "discriminatorValue": "assistant", "decorators": [], "baseModel": { - "$ref": "4908" + "$ref": "4913" }, "properties": [ { - "$id": "4922", + "$id": "4927", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `assistant`.", "type": { - "$ref": "650" + "$ref": "654" }, "optional": false, "readOnly": false, @@ -62097,13 +62166,13 @@ "isHttpMetadata": false }, { - "$id": "4923", + "$id": "4928", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4423" + "$ref": "4428" }, "optional": false, "readOnly": false, @@ -62123,7 +62192,7 @@ } }, "item_reference": { - "$id": "4924", + "$id": "4929", "kind": "model", "name": "DotNetItemReferenceItemResource", "namespace": "OpenAI", @@ -62133,16 +62202,16 @@ "discriminatorValue": "item_reference", "decorators": [], "baseModel": { - "$ref": "4803" + "$ref": "4808" }, "properties": [ { - "$id": "4925", + "$id": "4930", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "608" + "$ref": "612" }, "optional": false, "readOnly": false, @@ -62178,16 +62247,16 @@ "isHttpMetadata": false }, { - "$id": "4926", + "$id": "4931", "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": "4927", + "$id": "4932", "kind": "nullable", "type": { - "$id": "4928", + "$id": "4933", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62209,12 +62278,12 @@ "isHttpMetadata": false }, { - "$id": "4929", + "$id": "4934", "kind": "property", "name": "usage", "serializedName": "usage", "type": { - "$id": "4930", + "$id": "4935", "kind": "model", "name": "ResponseUsage", "namespace": "OpenAI", @@ -62224,13 +62293,13 @@ "decorators": [], "properties": [ { - "$id": "4931", + "$id": "4936", "kind": "property", "name": "input_tokens", "serializedName": "input_tokens", "doc": "The number of input tokens.", "type": { - "$id": "4932", + "$id": "4937", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -62250,13 +62319,13 @@ "isHttpMetadata": false }, { - "$id": "4933", + "$id": "4938", "kind": "property", "name": "input_tokens_details", "serializedName": "input_tokens_details", "doc": "A detailed breakdown of the input tokens.", "type": { - "$id": "4934", + "$id": "4939", "kind": "model", "name": "ResponseUsageInputTokensDetails", "namespace": "OpenAI", @@ -62265,13 +62334,13 @@ "decorators": [], "properties": [ { - "$id": "4935", + "$id": "4940", "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": "4936", + "$id": "4941", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -62306,13 +62375,13 @@ "isHttpMetadata": false }, { - "$id": "4937", + "$id": "4942", "kind": "property", "name": "output_tokens", "serializedName": "output_tokens", "doc": "The number of output tokens.", "type": { - "$id": "4938", + "$id": "4943", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -62332,13 +62401,13 @@ "isHttpMetadata": false }, { - "$id": "4939", + "$id": "4944", "kind": "property", "name": "output_tokens_details", "serializedName": "output_tokens_details", "doc": "A detailed breakdown of the output tokens.", "type": { - "$id": "4940", + "$id": "4945", "kind": "model", "name": "ResponseUsageOutputTokensDetails", "namespace": "OpenAI", @@ -62347,13 +62416,13 @@ "decorators": [], "properties": [ { - "$id": "4941", + "$id": "4946", "kind": "property", "name": "reasoning_tokens", "serializedName": "reasoning_tokens", "doc": "The number of reasoning tokens.", "type": { - "$id": "4942", + "$id": "4947", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -62388,13 +62457,13 @@ "isHttpMetadata": false }, { - "$id": "4943", + "$id": "4948", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens used.", "type": { - "$id": "4944", + "$id": "4949", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -62429,13 +62498,13 @@ "isHttpMetadata": false }, { - "$id": "4945", + "$id": "4950", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "doc": "Whether to allow the model to run tool calls in parallel.", "type": { - "$id": "4946", + "$id": "4951", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -62457,88 +62526,88 @@ ] }, { - "$ref": "4793" + "$ref": "4798" }, { - "$ref": "4799" + "$ref": "4804" }, { - "$ref": "4803" - }, - { - "$ref": "4807" + "$ref": "4808" }, { "$ref": "4812" }, { - "$ref": "4819" + "$ref": "4817" }, { - "$ref": "4826" + "$ref": "4824" }, { - "$ref": "4829" + "$ref": "4831" }, { - "$ref": "4838" + "$ref": "4834" }, { - "$ref": "4845" + "$ref": "4843" }, { "$ref": "4850" }, { - "$ref": "4854" + "$ref": "4855" }, { - "$ref": "4862" + "$ref": "4859" }, { - "$ref": "4868" + "$ref": "4867" }, { "$ref": "4873" }, { - "$ref": "4881" + "$ref": "4878" + }, + { + "$ref": "4886" }, { - "$ref": "4889" + "$ref": "4894" }, { - "$ref": "4896" + "$ref": "4901" }, { - "$ref": "4908" + "$ref": "4913" }, { - "$ref": "4912" + "$ref": "4917" }, { - "$ref": "4915" + "$ref": "4920" }, { - "$ref": "4918" + "$ref": "4923" }, { - "$ref": "4921" + "$ref": "4926" }, { - "$ref": "4924" + "$ref": "4929" }, { - "$ref": "4930" + "$ref": "4935" }, { - "$ref": "4934" + "$ref": "4939" }, { - "$ref": "4940" + "$ref": "4945" }, { - "$id": "4947", + "$id": "4952", "kind": "model", "name": "ResponseStreamEvent", "namespace": "OpenAI", @@ -62546,11 +62615,11 @@ "usage": "Output", "decorators": [], "discriminatorProperty": { - "$id": "4948", + "$id": "4953", "kind": "property", "name": "type", "type": { - "$ref": "754" + "$ref": "758" }, "optional": false, "readOnly": false, @@ -62563,15 +62632,15 @@ }, "properties": [ { - "$ref": "4948" + "$ref": "4953" }, { - "$id": "4949", + "$id": "4954", "kind": "property", "name": "sequence_number", "doc": "The sequence number for this event.", "type": { - "$id": "4950", + "$id": "4955", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -62589,7 +62658,7 @@ ], "discriminatedSubtypes": { "response.completed": { - "$id": "4951", + "$id": "4956", "kind": "model", "name": "ResponseCompletedEvent", "namespace": "OpenAI", @@ -62599,16 +62668,16 @@ "discriminatorValue": "response.completed", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "4952", + "$id": "4957", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.completed`.", "type": { - "$ref": "765" + "$ref": "769" }, "optional": false, "readOnly": false, @@ -62620,12 +62689,12 @@ "isHttpMetadata": false }, { - "$id": "4953", + "$id": "4958", "kind": "property", "name": "response", "doc": "Properties of the completed response.", "type": { - "$ref": "4762" + "$ref": "4767" }, "optional": false, "readOnly": false, @@ -62639,7 +62708,7 @@ ] }, "response.content_part.added": { - "$id": "4954", + "$id": "4959", "kind": "model", "name": "ResponseContentPartAddedEvent", "namespace": "OpenAI", @@ -62649,16 +62718,16 @@ "discriminatorValue": "response.content_part.added", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "4955", + "$id": "4960", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.content_part.added`.", "type": { - "$ref": "766" + "$ref": "770" }, "optional": false, "readOnly": false, @@ -62670,12 +62739,12 @@ "isHttpMetadata": false }, { - "$id": "4956", + "$id": "4961", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the content part was added to.", "type": { - "$id": "4957", + "$id": "4962", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62691,12 +62760,12 @@ "isHttpMetadata": false }, { - "$id": "4958", + "$id": "4963", "kind": "property", "name": "output_index", "doc": "The index of the output item that the content part was added to.", "type": { - "$id": "4959", + "$id": "4964", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -62712,12 +62781,12 @@ "isHttpMetadata": false }, { - "$id": "4960", + "$id": "4965", "kind": "property", "name": "content_index", "doc": "The index of the content part that was added.", "type": { - "$id": "4961", + "$id": "4966", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -62733,12 +62802,12 @@ "isHttpMetadata": false }, { - "$id": "4962", + "$id": "4967", "kind": "property", "name": "part", "doc": "The content part that was added.", "type": { - "$ref": "4424" + "$ref": "4429" }, "optional": false, "readOnly": false, @@ -62752,7 +62821,7 @@ ] }, "response.content_part.done": { - "$id": "4963", + "$id": "4968", "kind": "model", "name": "ResponseContentPartDoneEvent", "namespace": "OpenAI", @@ -62762,16 +62831,16 @@ "discriminatorValue": "response.content_part.done", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "4964", + "$id": "4969", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.content_part.done`.", "type": { - "$ref": "767" + "$ref": "771" }, "optional": false, "readOnly": false, @@ -62783,12 +62852,12 @@ "isHttpMetadata": false }, { - "$id": "4965", + "$id": "4970", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the content part was added to.", "type": { - "$id": "4966", + "$id": "4971", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62804,12 +62873,12 @@ "isHttpMetadata": false }, { - "$id": "4967", + "$id": "4972", "kind": "property", "name": "output_index", "doc": "The index of the output item that the content part was added to.", "type": { - "$id": "4968", + "$id": "4973", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -62825,12 +62894,12 @@ "isHttpMetadata": false }, { - "$id": "4969", + "$id": "4974", "kind": "property", "name": "content_index", "doc": "The index of the content part that is done.", "type": { - "$id": "4970", + "$id": "4975", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -62846,12 +62915,12 @@ "isHttpMetadata": false }, { - "$id": "4971", + "$id": "4976", "kind": "property", "name": "part", "doc": "The content part that is done.", "type": { - "$ref": "4424" + "$ref": "4429" }, "optional": false, "readOnly": false, @@ -62865,7 +62934,7 @@ ] }, "response.created": { - "$id": "4972", + "$id": "4977", "kind": "model", "name": "ResponseCreatedEvent", "namespace": "OpenAI", @@ -62875,16 +62944,16 @@ "discriminatorValue": "response.created", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "4973", + "$id": "4978", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.created`.", "type": { - "$ref": "768" + "$ref": "772" }, "optional": false, "readOnly": false, @@ -62896,12 +62965,12 @@ "isHttpMetadata": false }, { - "$id": "4974", + "$id": "4979", "kind": "property", "name": "response", "doc": "The response that was created.", "type": { - "$ref": "4762" + "$ref": "4767" }, "optional": false, "readOnly": false, @@ -62915,7 +62984,7 @@ ] }, "error": { - "$id": "4975", + "$id": "4980", "kind": "model", "name": "ResponseErrorEvent", "namespace": "OpenAI", @@ -62925,16 +62994,16 @@ "discriminatorValue": "error", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "4976", + "$id": "4981", "kind": "property", "name": "type", "doc": "The type of the event. Always `error`.", "type": { - "$ref": "769" + "$ref": "773" }, "optional": false, "readOnly": false, @@ -62946,15 +63015,15 @@ "isHttpMetadata": false }, { - "$id": "4977", + "$id": "4982", "kind": "property", "name": "code", "doc": "The error code.", "type": { - "$id": "4978", + "$id": "4983", "kind": "nullable", "type": { - "$id": "4979", + "$id": "4984", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62972,12 +63041,12 @@ "isHttpMetadata": false }, { - "$id": "4980", + "$id": "4985", "kind": "property", "name": "message", "doc": "The error message.", "type": { - "$id": "4981", + "$id": "4986", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62993,15 +63062,15 @@ "isHttpMetadata": false }, { - "$id": "4982", + "$id": "4987", "kind": "property", "name": "param", "doc": "The error parameter.", "type": { - "$id": "4983", + "$id": "4988", "kind": "nullable", "type": { - "$id": "4984", + "$id": "4989", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63021,7 +63090,7 @@ ] }, "response.file_search_call.completed": { - "$id": "4985", + "$id": "4990", "kind": "model", "name": "ResponseFileSearchCallCompletedEvent", "namespace": "OpenAI", @@ -63031,16 +63100,16 @@ "discriminatorValue": "response.file_search_call.completed", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "4986", + "$id": "4991", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.file_search_call.completed`.", "type": { - "$ref": "770" + "$ref": "774" }, "optional": false, "readOnly": false, @@ -63052,12 +63121,12 @@ "isHttpMetadata": false }, { - "$id": "4987", + "$id": "4992", "kind": "property", "name": "output_index", "doc": "The index of the output item that the file search call is initiated.", "type": { - "$id": "4988", + "$id": "4993", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -63073,12 +63142,12 @@ "isHttpMetadata": false }, { - "$id": "4989", + "$id": "4994", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the file search call is initiated.", "type": { - "$id": "4990", + "$id": "4995", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63096,7 +63165,7 @@ ] }, "response.file_search_call.in_progress": { - "$id": "4991", + "$id": "4996", "kind": "model", "name": "ResponseFileSearchCallInProgressEvent", "namespace": "OpenAI", @@ -63106,16 +63175,16 @@ "discriminatorValue": "response.file_search_call.in_progress", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "4992", + "$id": "4997", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.file_search_call.in_progress`.", "type": { - "$ref": "771" + "$ref": "775" }, "optional": false, "readOnly": false, @@ -63127,12 +63196,12 @@ "isHttpMetadata": false }, { - "$id": "4993", + "$id": "4998", "kind": "property", "name": "output_index", "doc": "The index of the output item that the file search call is initiated.", "type": { - "$id": "4994", + "$id": "4999", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -63148,12 +63217,12 @@ "isHttpMetadata": false }, { - "$id": "4995", + "$id": "5000", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the file search call is initiated.", "type": { - "$id": "4996", + "$id": "5001", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63171,7 +63240,7 @@ ] }, "response.file_search_call.searching": { - "$id": "4997", + "$id": "5002", "kind": "model", "name": "ResponseFileSearchCallSearchingEvent", "namespace": "OpenAI", @@ -63181,16 +63250,16 @@ "discriminatorValue": "response.file_search_call.searching", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "4998", + "$id": "5003", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.file_search_call.searching`.", "type": { - "$ref": "772" + "$ref": "776" }, "optional": false, "readOnly": false, @@ -63202,12 +63271,12 @@ "isHttpMetadata": false }, { - "$id": "4999", + "$id": "5004", "kind": "property", "name": "output_index", "doc": "The index of the output item that the file search call is searching.", "type": { - "$id": "5000", + "$id": "5005", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -63223,12 +63292,12 @@ "isHttpMetadata": false }, { - "$id": "5001", + "$id": "5006", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the file search call is initiated.", "type": { - "$id": "5002", + "$id": "5007", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63246,7 +63315,7 @@ ] }, "response.function_call_arguments.delta": { - "$id": "5003", + "$id": "5008", "kind": "model", "name": "ResponseFunctionCallArgumentsDeltaEvent", "namespace": "OpenAI", @@ -63256,16 +63325,16 @@ "discriminatorValue": "response.function_call_arguments.delta", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5004", + "$id": "5009", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.function_call_arguments.delta`.", "type": { - "$ref": "773" + "$ref": "777" }, "optional": false, "readOnly": false, @@ -63277,12 +63346,12 @@ "isHttpMetadata": false }, { - "$id": "5005", + "$id": "5010", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the function-call arguments delta is added to.", "type": { - "$id": "5006", + "$id": "5011", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63298,12 +63367,12 @@ "isHttpMetadata": false }, { - "$id": "5007", + "$id": "5012", "kind": "property", "name": "output_index", "doc": "The index of the output item that the function-call arguments delta is added to.", "type": { - "$id": "5008", + "$id": "5013", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -63319,12 +63388,12 @@ "isHttpMetadata": false }, { - "$id": "5009", + "$id": "5014", "kind": "property", "name": "delta", "doc": "The function-call arguments delta that is added.", "type": { - "$id": "5010", + "$id": "5015", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -63342,7 +63411,7 @@ ] }, "response.function_call_arguments.done": { - "$id": "5011", + "$id": "5016", "kind": "model", "name": "ResponseFunctionCallArgumentsDoneEvent", "namespace": "OpenAI", @@ -63352,15 +63421,15 @@ "discriminatorValue": "response.function_call_arguments.done", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5012", + "$id": "5017", "kind": "property", "name": "type", "type": { - "$ref": "774" + "$ref": "778" }, "optional": false, "readOnly": false, @@ -63372,12 +63441,12 @@ "isHttpMetadata": false }, { - "$id": "5013", + "$id": "5018", "kind": "property", "name": "item_id", "doc": "The ID of the item.", "type": { - "$id": "5014", + "$id": "5019", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63393,12 +63462,12 @@ "isHttpMetadata": false }, { - "$id": "5015", + "$id": "5020", "kind": "property", "name": "output_index", "doc": "The index of the output item.", "type": { - "$id": "5016", + "$id": "5021", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -63414,12 +63483,12 @@ "isHttpMetadata": false }, { - "$id": "5017", + "$id": "5022", "kind": "property", "name": "arguments", "doc": "The function-call arguments.", "type": { - "$id": "5018", + "$id": "5023", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -63437,7 +63506,7 @@ ] }, "response.in_progress": { - "$id": "5019", + "$id": "5024", "kind": "model", "name": "ResponseInProgressEvent", "namespace": "OpenAI", @@ -63447,16 +63516,16 @@ "discriminatorValue": "response.in_progress", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5020", + "$id": "5025", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.in_progress`.", "type": { - "$ref": "775" + "$ref": "779" }, "optional": false, "readOnly": false, @@ -63468,12 +63537,12 @@ "isHttpMetadata": false }, { - "$id": "5021", + "$id": "5026", "kind": "property", "name": "response", "doc": "The response that is in progress.", "type": { - "$ref": "4762" + "$ref": "4767" }, "optional": false, "readOnly": false, @@ -63487,7 +63556,7 @@ ] }, "response.failed": { - "$id": "5022", + "$id": "5027", "kind": "model", "name": "ResponseFailedEvent", "namespace": "OpenAI", @@ -63497,16 +63566,16 @@ "discriminatorValue": "response.failed", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5023", + "$id": "5028", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.failed`.", "type": { - "$ref": "776" + "$ref": "780" }, "optional": false, "readOnly": false, @@ -63518,12 +63587,12 @@ "isHttpMetadata": false }, { - "$id": "5024", + "$id": "5029", "kind": "property", "name": "response", "doc": "The response that failed.", "type": { - "$ref": "4762" + "$ref": "4767" }, "optional": false, "readOnly": false, @@ -63537,7 +63606,7 @@ ] }, "response.incomplete": { - "$id": "5025", + "$id": "5030", "kind": "model", "name": "ResponseIncompleteEvent", "namespace": "OpenAI", @@ -63547,16 +63616,16 @@ "discriminatorValue": "response.incomplete", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5026", + "$id": "5031", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.incomplete`.", "type": { - "$ref": "777" + "$ref": "781" }, "optional": false, "readOnly": false, @@ -63568,12 +63637,12 @@ "isHttpMetadata": false }, { - "$id": "5027", + "$id": "5032", "kind": "property", "name": "response", "doc": "The response that was incomplete.", "type": { - "$ref": "4762" + "$ref": "4767" }, "optional": false, "readOnly": false, @@ -63587,7 +63656,7 @@ ] }, "response.output_item.added": { - "$id": "5028", + "$id": "5033", "kind": "model", "name": "ResponseOutputItemAddedEvent", "namespace": "OpenAI", @@ -63597,16 +63666,16 @@ "discriminatorValue": "response.output_item.added", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5029", + "$id": "5034", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.output_item.added`.", "type": { - "$ref": "778" + "$ref": "782" }, "optional": false, "readOnly": false, @@ -63618,12 +63687,12 @@ "isHttpMetadata": false }, { - "$id": "5030", + "$id": "5035", "kind": "property", "name": "output_index", "doc": "The index of the output item that was added.", "type": { - "$id": "5031", + "$id": "5036", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -63639,12 +63708,12 @@ "isHttpMetadata": false }, { - "$id": "5032", + "$id": "5037", "kind": "property", "name": "item", "doc": "The output item that was added.", "type": { - "$ref": "4803" + "$ref": "4808" }, "optional": false, "readOnly": false, @@ -63658,7 +63727,7 @@ ] }, "response.output_item.done": { - "$id": "5033", + "$id": "5038", "kind": "model", "name": "ResponseOutputItemDoneEvent", "namespace": "OpenAI", @@ -63668,16 +63737,16 @@ "discriminatorValue": "response.output_item.done", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5034", + "$id": "5039", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.output_item.done`.", "type": { - "$ref": "779" + "$ref": "783" }, "optional": false, "readOnly": false, @@ -63689,12 +63758,12 @@ "isHttpMetadata": false }, { - "$id": "5035", + "$id": "5040", "kind": "property", "name": "output_index", "doc": "The index of the output item that was marked done.", "type": { - "$id": "5036", + "$id": "5041", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -63710,12 +63779,12 @@ "isHttpMetadata": false }, { - "$id": "5037", + "$id": "5042", "kind": "property", "name": "item", "doc": "The output item that was marked done.", "type": { - "$ref": "4803" + "$ref": "4808" }, "optional": false, "readOnly": false, @@ -63729,7 +63798,7 @@ ] }, "response.refusal.delta": { - "$id": "5038", + "$id": "5043", "kind": "model", "name": "ResponseRefusalDeltaEvent", "namespace": "OpenAI", @@ -63739,16 +63808,16 @@ "discriminatorValue": "response.refusal.delta", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5039", + "$id": "5044", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.refusal.delta`.", "type": { - "$ref": "780" + "$ref": "784" }, "optional": false, "readOnly": false, @@ -63760,12 +63829,12 @@ "isHttpMetadata": false }, { - "$id": "5040", + "$id": "5045", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the refusal text is added to.", "type": { - "$id": "5041", + "$id": "5046", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63781,12 +63850,12 @@ "isHttpMetadata": false }, { - "$id": "5042", + "$id": "5047", "kind": "property", "name": "output_index", "doc": "The index of the output item that the refusal text is added to.", "type": { - "$id": "5043", + "$id": "5048", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -63802,12 +63871,12 @@ "isHttpMetadata": false }, { - "$id": "5044", + "$id": "5049", "kind": "property", "name": "content_index", "doc": "The index of the content part that the refusal text is added to.", "type": { - "$id": "5045", + "$id": "5050", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -63823,12 +63892,12 @@ "isHttpMetadata": false }, { - "$id": "5046", + "$id": "5051", "kind": "property", "name": "delta", "doc": "The refusal text that is added.", "type": { - "$id": "5047", + "$id": "5052", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63846,7 +63915,7 @@ ] }, "response.refusal.done": { - "$id": "5048", + "$id": "5053", "kind": "model", "name": "ResponseRefusalDoneEvent", "namespace": "OpenAI", @@ -63856,16 +63925,16 @@ "discriminatorValue": "response.refusal.done", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5049", + "$id": "5054", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.refusal.done`.", "type": { - "$ref": "781" + "$ref": "785" }, "optional": false, "readOnly": false, @@ -63877,12 +63946,12 @@ "isHttpMetadata": false }, { - "$id": "5050", + "$id": "5055", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the refusal text is finalized.", "type": { - "$id": "5051", + "$id": "5056", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63898,12 +63967,12 @@ "isHttpMetadata": false }, { - "$id": "5052", + "$id": "5057", "kind": "property", "name": "output_index", "doc": "The index of the output item that the refusal text is finalized.", "type": { - "$id": "5053", + "$id": "5058", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -63919,12 +63988,12 @@ "isHttpMetadata": false }, { - "$id": "5054", + "$id": "5059", "kind": "property", "name": "content_index", "doc": "The index of the content part that the refusal text is finalized.", "type": { - "$id": "5055", + "$id": "5060", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -63940,12 +64009,12 @@ "isHttpMetadata": false }, { - "$id": "5056", + "$id": "5061", "kind": "property", "name": "refusal", "doc": "The refusal text that is finalized.", "type": { - "$id": "5057", + "$id": "5062", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63963,7 +64032,7 @@ ] }, "response.output_text.delta": { - "$id": "5058", + "$id": "5063", "kind": "model", "name": "ResponseTextDeltaEvent", "namespace": "OpenAI", @@ -63973,16 +64042,16 @@ "discriminatorValue": "response.output_text.delta", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5059", + "$id": "5064", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.output_text.delta`.", "type": { - "$ref": "783" + "$ref": "787" }, "optional": false, "readOnly": false, @@ -63994,12 +64063,12 @@ "isHttpMetadata": false }, { - "$id": "5060", + "$id": "5065", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the text delta was added to.", "type": { - "$id": "5061", + "$id": "5066", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64015,12 +64084,12 @@ "isHttpMetadata": false }, { - "$id": "5062", + "$id": "5067", "kind": "property", "name": "output_index", "doc": "The index of the output item that the text delta was added to.", "type": { - "$id": "5063", + "$id": "5068", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -64036,12 +64105,12 @@ "isHttpMetadata": false }, { - "$id": "5064", + "$id": "5069", "kind": "property", "name": "content_index", "doc": "The index of the content part that the text delta was added to.", "type": { - "$id": "5065", + "$id": "5070", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -64057,12 +64126,12 @@ "isHttpMetadata": false }, { - "$id": "5066", + "$id": "5071", "kind": "property", "name": "delta", "doc": "The text delta that was added.", "type": { - "$id": "5067", + "$id": "5072", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64080,7 +64149,7 @@ ] }, "response.output_text.done": { - "$id": "5068", + "$id": "5073", "kind": "model", "name": "ResponseTextDoneEvent", "namespace": "OpenAI", @@ -64090,16 +64159,16 @@ "discriminatorValue": "response.output_text.done", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5069", + "$id": "5074", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.output_text.done`.", "type": { - "$ref": "784" + "$ref": "788" }, "optional": false, "readOnly": false, @@ -64111,12 +64180,12 @@ "isHttpMetadata": false }, { - "$id": "5070", + "$id": "5075", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the text content is finalized.", "type": { - "$id": "5071", + "$id": "5076", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64132,12 +64201,12 @@ "isHttpMetadata": false }, { - "$id": "5072", + "$id": "5077", "kind": "property", "name": "output_index", "doc": "The index of the output item that the text content is finalized.", "type": { - "$id": "5073", + "$id": "5078", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -64153,12 +64222,12 @@ "isHttpMetadata": false }, { - "$id": "5074", + "$id": "5079", "kind": "property", "name": "content_index", "doc": "The index of the content part that the text content is finalized.", "type": { - "$id": "5075", + "$id": "5080", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -64174,12 +64243,12 @@ "isHttpMetadata": false }, { - "$id": "5076", + "$id": "5081", "kind": "property", "name": "text", "doc": "The text content that is finalized.", "type": { - "$id": "5077", + "$id": "5082", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64197,7 +64266,7 @@ ] }, "response.reasoning_summary_part.added": { - "$id": "5078", + "$id": "5083", "kind": "model", "name": "ResponseReasoningSummaryPartAddedEvent", "namespace": "OpenAI", @@ -64207,16 +64276,16 @@ "discriminatorValue": "response.reasoning_summary_part.added", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5079", + "$id": "5084", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.reasoning_summary_part.added`.", "type": { - "$ref": "785" + "$ref": "789" }, "optional": false, "readOnly": false, @@ -64228,12 +64297,12 @@ "isHttpMetadata": false }, { - "$id": "5080", + "$id": "5085", "kind": "property", "name": "item_id", "doc": "The ID of the item this summary part is associated with.", "type": { - "$id": "5081", + "$id": "5086", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64249,12 +64318,12 @@ "isHttpMetadata": false }, { - "$id": "5082", + "$id": "5087", "kind": "property", "name": "output_index", "doc": "The index of the output item this summary part is associated with.", "type": { - "$id": "5083", + "$id": "5088", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -64270,12 +64339,12 @@ "isHttpMetadata": false }, { - "$id": "5084", + "$id": "5089", "kind": "property", "name": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "5085", + "$id": "5090", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -64291,12 +64360,12 @@ "isHttpMetadata": false }, { - "$id": "5086", + "$id": "5091", "kind": "property", "name": "part", "doc": "The summary part that was added.", "type": { - "$ref": "4629" + "$ref": "4634" }, "optional": false, "readOnly": false, @@ -64310,7 +64379,7 @@ ] }, "response.reasoning_summary_part.done": { - "$id": "5087", + "$id": "5092", "kind": "model", "name": "ResponseReasoningSummaryPartDoneEvent", "namespace": "OpenAI", @@ -64320,16 +64389,16 @@ "discriminatorValue": "response.reasoning_summary_part.done", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5088", + "$id": "5093", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.reasoning_summary_part.done`.", "type": { - "$ref": "786" + "$ref": "790" }, "optional": false, "readOnly": false, @@ -64341,12 +64410,12 @@ "isHttpMetadata": false }, { - "$id": "5089", + "$id": "5094", "kind": "property", "name": "item_id", "doc": "The ID of the item this summary part is associated with.", "type": { - "$id": "5090", + "$id": "5095", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64362,12 +64431,12 @@ "isHttpMetadata": false }, { - "$id": "5091", + "$id": "5096", "kind": "property", "name": "output_index", "doc": "The index of the output item this summary part is associated with.", "type": { - "$id": "5092", + "$id": "5097", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -64383,12 +64452,12 @@ "isHttpMetadata": false }, { - "$id": "5093", + "$id": "5098", "kind": "property", "name": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "5094", + "$id": "5099", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -64404,12 +64473,12 @@ "isHttpMetadata": false }, { - "$id": "5095", + "$id": "5100", "kind": "property", "name": "part", "doc": "The completed summary part.", "type": { - "$ref": "4629" + "$ref": "4634" }, "optional": false, "readOnly": false, @@ -64423,7 +64492,7 @@ ] }, "response.reasoning_summary_text.delta": { - "$id": "5096", + "$id": "5101", "kind": "model", "name": "ResponseReasoningSummaryTextDeltaEvent", "namespace": "OpenAI", @@ -64433,16 +64502,16 @@ "discriminatorValue": "response.reasoning_summary_text.delta", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5097", + "$id": "5102", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.reasoning_summary_text.delta`.", "type": { - "$ref": "787" + "$ref": "791" }, "optional": false, "readOnly": false, @@ -64454,12 +64523,12 @@ "isHttpMetadata": false }, { - "$id": "5098", + "$id": "5103", "kind": "property", "name": "item_id", "doc": "The ID of the item this summary text delta is associated with.", "type": { - "$id": "5099", + "$id": "5104", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64475,12 +64544,12 @@ "isHttpMetadata": false }, { - "$id": "5100", + "$id": "5105", "kind": "property", "name": "output_index", "doc": "The index of the output item this summary text delta is associated with.", "type": { - "$id": "5101", + "$id": "5106", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -64496,12 +64565,12 @@ "isHttpMetadata": false }, { - "$id": "5102", + "$id": "5107", "kind": "property", "name": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "5103", + "$id": "5108", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -64517,12 +64586,12 @@ "isHttpMetadata": false }, { - "$id": "5104", + "$id": "5109", "kind": "property", "name": "delta", "doc": "The text delta that was added to the summary.", "type": { - "$id": "5105", + "$id": "5110", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64540,7 +64609,7 @@ ] }, "response.reasoning_summary_text.done": { - "$id": "5106", + "$id": "5111", "kind": "model", "name": "ResponseReasoningSummaryTextDoneEvent", "namespace": "OpenAI", @@ -64550,16 +64619,16 @@ "discriminatorValue": "response.reasoning_summary_text.done", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5107", + "$id": "5112", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.reasoning_summary_text.done`.", "type": { - "$ref": "788" + "$ref": "792" }, "optional": false, "readOnly": false, @@ -64571,12 +64640,12 @@ "isHttpMetadata": false }, { - "$id": "5108", + "$id": "5113", "kind": "property", "name": "item_id", "doc": "The ID of the item this summary text is associated with.", "type": { - "$id": "5109", + "$id": "5114", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64592,12 +64661,12 @@ "isHttpMetadata": false }, { - "$id": "5110", + "$id": "5115", "kind": "property", "name": "output_index", "doc": "The index of the output item this summary text is associated with.", "type": { - "$id": "5111", + "$id": "5116", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -64613,12 +64682,12 @@ "isHttpMetadata": false }, { - "$id": "5112", + "$id": "5117", "kind": "property", "name": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "5113", + "$id": "5118", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -64634,12 +64703,12 @@ "isHttpMetadata": false }, { - "$id": "5114", + "$id": "5119", "kind": "property", "name": "text", "doc": "The full text of the completed reasoning summary.", "type": { - "$id": "5115", + "$id": "5120", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64657,7 +64726,7 @@ ] }, "response.web_search_call.completed": { - "$id": "5116", + "$id": "5121", "kind": "model", "name": "ResponseWebSearchCallCompletedEvent", "namespace": "OpenAI", @@ -64667,16 +64736,16 @@ "discriminatorValue": "response.web_search_call.completed", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5117", + "$id": "5122", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.web_search_call.completed`.", "type": { - "$ref": "789" + "$ref": "793" }, "optional": false, "readOnly": false, @@ -64688,12 +64757,12 @@ "isHttpMetadata": false }, { - "$id": "5118", + "$id": "5123", "kind": "property", "name": "output_index", "doc": "The index of the output item that the web search call is associated with.", "type": { - "$id": "5119", + "$id": "5124", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -64709,12 +64778,12 @@ "isHttpMetadata": false }, { - "$id": "5120", + "$id": "5125", "kind": "property", "name": "item_id", "doc": "Unique ID for the output item associated with the web search call.", "type": { - "$id": "5121", + "$id": "5126", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64732,7 +64801,7 @@ ] }, "response.web_search_call.in_progress": { - "$id": "5122", + "$id": "5127", "kind": "model", "name": "ResponseWebSearchCallInProgressEvent", "namespace": "OpenAI", @@ -64742,16 +64811,16 @@ "discriminatorValue": "response.web_search_call.in_progress", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5123", + "$id": "5128", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.web_search_call.in_progress`.", "type": { - "$ref": "790" + "$ref": "794" }, "optional": false, "readOnly": false, @@ -64763,12 +64832,12 @@ "isHttpMetadata": false }, { - "$id": "5124", + "$id": "5129", "kind": "property", "name": "output_index", "doc": "The index of the output item that the web search call is associated with.", "type": { - "$id": "5125", + "$id": "5130", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -64784,12 +64853,12 @@ "isHttpMetadata": false }, { - "$id": "5126", + "$id": "5131", "kind": "property", "name": "item_id", "doc": "Unique ID for the output item associated with the web search call.", "type": { - "$id": "5127", + "$id": "5132", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64807,7 +64876,7 @@ ] }, "response.web_search_call.searching": { - "$id": "5128", + "$id": "5133", "kind": "model", "name": "ResponseWebSearchCallSearchingEvent", "namespace": "OpenAI", @@ -64817,16 +64886,16 @@ "discriminatorValue": "response.web_search_call.searching", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5129", + "$id": "5134", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.web_search_call.searching`.", "type": { - "$ref": "791" + "$ref": "795" }, "optional": false, "readOnly": false, @@ -64838,12 +64907,12 @@ "isHttpMetadata": false }, { - "$id": "5130", + "$id": "5135", "kind": "property", "name": "output_index", "doc": "The index of the output item that the web search call is associated with.", "type": { - "$id": "5131", + "$id": "5136", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -64859,12 +64928,12 @@ "isHttpMetadata": false }, { - "$id": "5132", + "$id": "5137", "kind": "property", "name": "item_id", "doc": "Unique ID for the output item associated with the web search call.", "type": { - "$id": "5133", + "$id": "5138", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64882,7 +64951,7 @@ ] }, "response.image_generation_call.completed": { - "$id": "5134", + "$id": "5139", "kind": "model", "name": "ResponseImageGenCallCompletedEvent", "namespace": "OpenAI", @@ -64892,16 +64961,16 @@ "discriminatorValue": "response.image_generation_call.completed", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5135", + "$id": "5140", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.image_generation_call.completed'.", "type": { - "$ref": "792" + "$ref": "796" }, "optional": false, "readOnly": false, @@ -64913,12 +64982,12 @@ "isHttpMetadata": false }, { - "$id": "5136", + "$id": "5141", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5137", + "$id": "5142", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -64934,12 +65003,12 @@ "isHttpMetadata": false }, { - "$id": "5138", + "$id": "5143", "kind": "property", "name": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "5139", + "$id": "5144", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64957,7 +65026,7 @@ ] }, "response.image_generation_call.generating": { - "$id": "5140", + "$id": "5145", "kind": "model", "name": "ResponseImageGenCallGeneratingEvent", "namespace": "OpenAI", @@ -64967,16 +65036,16 @@ "discriminatorValue": "response.image_generation_call.generating", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5141", + "$id": "5146", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.image_generation_call.generating'.", "type": { - "$ref": "793" + "$ref": "797" }, "optional": false, "readOnly": false, @@ -64988,12 +65057,12 @@ "isHttpMetadata": false }, { - "$id": "5142", + "$id": "5147", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5143", + "$id": "5148", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -65009,12 +65078,12 @@ "isHttpMetadata": false }, { - "$id": "5144", + "$id": "5149", "kind": "property", "name": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "5145", + "$id": "5150", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65032,7 +65101,7 @@ ] }, "response.image_generation_call.in_progress": { - "$id": "5146", + "$id": "5151", "kind": "model", "name": "ResponseImageGenCallInProgressEvent", "namespace": "OpenAI", @@ -65042,16 +65111,16 @@ "discriminatorValue": "response.image_generation_call.in_progress", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5147", + "$id": "5152", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.image_generation_call.in_progress'.", "type": { - "$ref": "794" + "$ref": "798" }, "optional": false, "readOnly": false, @@ -65063,12 +65132,12 @@ "isHttpMetadata": false }, { - "$id": "5148", + "$id": "5153", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5149", + "$id": "5154", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -65084,12 +65153,12 @@ "isHttpMetadata": false }, { - "$id": "5150", + "$id": "5155", "kind": "property", "name": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "5151", + "$id": "5156", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65107,7 +65176,7 @@ ] }, "response.image_generation_call.partial_image": { - "$id": "5152", + "$id": "5157", "kind": "model", "name": "ResponseImageGenCallPartialImageEvent", "namespace": "OpenAI", @@ -65117,16 +65186,16 @@ "discriminatorValue": "response.image_generation_call.partial_image", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5153", + "$id": "5158", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.image_generation_call.partial_image'.", "type": { - "$ref": "795" + "$ref": "799" }, "optional": false, "readOnly": false, @@ -65138,12 +65207,12 @@ "isHttpMetadata": false }, { - "$id": "5154", + "$id": "5159", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5155", + "$id": "5160", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -65159,12 +65228,12 @@ "isHttpMetadata": false }, { - "$id": "5156", + "$id": "5161", "kind": "property", "name": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "5157", + "$id": "5162", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65180,12 +65249,12 @@ "isHttpMetadata": false }, { - "$id": "5158", + "$id": "5163", "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": "5159", + "$id": "5164", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -65201,15 +65270,16 @@ "isHttpMetadata": false }, { - "$id": "5160", + "$id": "5165", "kind": "property", - "name": "partial_image_b64", + "name": "PartialImageBytes", "doc": "Base64-encoded partial image data, suitable for rendering as an image.", "type": { - "$id": "5161", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", + "$id": "5166", + "kind": "bytes", + "name": "bytes", + "encode": "base64", + "crossLanguageDefinitionId": "TypeSpec.bytes", "decorators": [] }, "optional": false, @@ -65224,7 +65294,7 @@ ] }, "response.mcp_call_arguments.delta": { - "$id": "5162", + "$id": "5167", "kind": "model", "name": "ResponseMCPCallArgumentsDeltaEvent", "namespace": "OpenAI", @@ -65234,16 +65304,16 @@ "discriminatorValue": "response.mcp_call_arguments.delta", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5163", + "$id": "5168", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_call.arguments_delta'.", "type": { - "$ref": "796" + "$ref": "800" }, "optional": false, "readOnly": false, @@ -65255,12 +65325,12 @@ "isHttpMetadata": false }, { - "$id": "5164", + "$id": "5169", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5165", + "$id": "5170", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -65276,12 +65346,12 @@ "isHttpMetadata": false }, { - "$id": "5166", + "$id": "5171", "kind": "property", "name": "item_id", "doc": "The unique identifier of the MCP tool call item being processed.", "type": { - "$id": "5167", + "$id": "5172", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65297,12 +65367,12 @@ "isHttpMetadata": false }, { - "$id": "5168", + "$id": "5173", "kind": "property", "name": "delta", "doc": "The partial update to the arguments for the MCP tool call.", "type": { - "$id": "5169", + "$id": "5174", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -65320,7 +65390,7 @@ ] }, "response.mcp_call_arguments.done": { - "$id": "5170", + "$id": "5175", "kind": "model", "name": "ResponseMCPCallArgumentsDoneEvent", "namespace": "OpenAI", @@ -65330,16 +65400,16 @@ "discriminatorValue": "response.mcp_call_arguments.done", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5171", + "$id": "5176", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_call.arguments_done'.", "type": { - "$ref": "797" + "$ref": "801" }, "optional": false, "readOnly": false, @@ -65351,12 +65421,12 @@ "isHttpMetadata": false }, { - "$id": "5172", + "$id": "5177", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5173", + "$id": "5178", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -65372,12 +65442,12 @@ "isHttpMetadata": false }, { - "$id": "5174", + "$id": "5179", "kind": "property", "name": "item_id", "doc": "The unique identifier of the MCP tool call item being processed.", "type": { - "$id": "5175", + "$id": "5180", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65393,12 +65463,12 @@ "isHttpMetadata": false }, { - "$id": "5176", + "$id": "5181", "kind": "property", "name": "arguments", "doc": "A JSON string containing the finalized arguments for the MCP tool call.", "type": { - "$id": "5177", + "$id": "5182", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -65416,7 +65486,7 @@ ] }, "response.mcp_call.completed": { - "$id": "5178", + "$id": "5183", "kind": "model", "name": "ResponseMCPCallCompletedEvent", "namespace": "OpenAI", @@ -65426,16 +65496,16 @@ "discriminatorValue": "response.mcp_call.completed", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5179", + "$id": "5184", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_call.completed'.", "type": { - "$ref": "798" + "$ref": "802" }, "optional": false, "readOnly": false, @@ -65447,12 +65517,12 @@ "isHttpMetadata": false }, { - "$id": "5180", + "$id": "5185", "kind": "property", "name": "item_id", "doc": "The ID of the MCP tool call item that completed.", "type": { - "$id": "5181", + "$id": "5186", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65468,12 +65538,12 @@ "isHttpMetadata": false }, { - "$id": "5182", + "$id": "5187", "kind": "property", "name": "output_index", "doc": "The index of the output item that completed.", "type": { - "$id": "5183", + "$id": "5188", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -65491,7 +65561,7 @@ ] }, "response.mcp_call.failed": { - "$id": "5184", + "$id": "5189", "kind": "model", "name": "ResponseMCPCallFailedEvent", "namespace": "OpenAI", @@ -65501,16 +65571,16 @@ "discriminatorValue": "response.mcp_call.failed", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5185", + "$id": "5190", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_call.failed'.", "type": { - "$ref": "799" + "$ref": "803" }, "optional": false, "readOnly": false, @@ -65522,12 +65592,12 @@ "isHttpMetadata": false }, { - "$id": "5186", + "$id": "5191", "kind": "property", "name": "item_id", "doc": "The ID of the MCP tool call item that failed.", "type": { - "$id": "5187", + "$id": "5192", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65543,12 +65613,12 @@ "isHttpMetadata": false }, { - "$id": "5188", + "$id": "5193", "kind": "property", "name": "output_index", "doc": "The index of the output item that failed.", "type": { - "$id": "5189", + "$id": "5194", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -65566,7 +65636,7 @@ ] }, "response.mcp_call.in_progress": { - "$id": "5190", + "$id": "5195", "kind": "model", "name": "ResponseMCPCallInProgressEvent", "namespace": "OpenAI", @@ -65576,16 +65646,16 @@ "discriminatorValue": "response.mcp_call.in_progress", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5191", + "$id": "5196", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_call.in_progress'.", "type": { - "$ref": "800" + "$ref": "804" }, "optional": false, "readOnly": false, @@ -65597,12 +65667,12 @@ "isHttpMetadata": false }, { - "$id": "5192", + "$id": "5197", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5193", + "$id": "5198", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -65618,12 +65688,12 @@ "isHttpMetadata": false }, { - "$id": "5194", + "$id": "5199", "kind": "property", "name": "item_id", "doc": "The unique identifier of the MCP tool call item being processed.", "type": { - "$id": "5195", + "$id": "5200", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65641,7 +65711,7 @@ ] }, "response.mcp_list_tools.completed": { - "$id": "5196", + "$id": "5201", "kind": "model", "name": "ResponseMCPListToolsCompletedEvent", "namespace": "OpenAI", @@ -65651,16 +65721,16 @@ "discriminatorValue": "response.mcp_list_tools.completed", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5197", + "$id": "5202", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_list_tools.completed'.", "type": { - "$ref": "801" + "$ref": "805" }, "optional": false, "readOnly": false, @@ -65672,12 +65742,12 @@ "isHttpMetadata": false }, { - "$id": "5198", + "$id": "5203", "kind": "property", "name": "item_id", "doc": "The ID of the MCP tool call item that produced this output.", "type": { - "$id": "5199", + "$id": "5204", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65693,12 +65763,12 @@ "isHttpMetadata": false }, { - "$id": "5200", + "$id": "5205", "kind": "property", "name": "output_index", "doc": "The index of the output item that was processed.", "type": { - "$id": "5201", + "$id": "5206", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -65716,7 +65786,7 @@ ] }, "response.mcp_list_tools.failed": { - "$id": "5202", + "$id": "5207", "kind": "model", "name": "ResponseMCPListToolsFailedEvent", "namespace": "OpenAI", @@ -65726,16 +65796,16 @@ "discriminatorValue": "response.mcp_list_tools.failed", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5203", + "$id": "5208", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_list_tools.failed'.", "type": { - "$ref": "802" + "$ref": "806" }, "optional": false, "readOnly": false, @@ -65747,12 +65817,12 @@ "isHttpMetadata": false }, { - "$id": "5204", + "$id": "5209", "kind": "property", "name": "item_id", "doc": "The ID of the MCP tool call item that failed.", "type": { - "$id": "5205", + "$id": "5210", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65768,12 +65838,12 @@ "isHttpMetadata": false }, { - "$id": "5206", + "$id": "5211", "kind": "property", "name": "output_index", "doc": "The index of the output item that failed.", "type": { - "$id": "5207", + "$id": "5212", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -65791,7 +65861,7 @@ ] }, "response.mcp_list_tools.in_progress": { - "$id": "5208", + "$id": "5213", "kind": "model", "name": "ResponseMCPListToolsInProgressEvent", "namespace": "OpenAI", @@ -65801,16 +65871,16 @@ "discriminatorValue": "response.mcp_list_tools.in_progress", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5209", + "$id": "5214", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_list_tools.in_progress'.", "type": { - "$ref": "803" + "$ref": "807" }, "optional": false, "readOnly": false, @@ -65822,12 +65892,12 @@ "isHttpMetadata": false }, { - "$id": "5210", + "$id": "5215", "kind": "property", "name": "item_id", "doc": "The ID of the MCP tool call item that is being processed.", "type": { - "$id": "5211", + "$id": "5216", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65843,12 +65913,12 @@ "isHttpMetadata": false }, { - "$id": "5212", + "$id": "5217", "kind": "property", "name": "output_index", "doc": "The index of the output item that is being processed.", "type": { - "$id": "5213", + "$id": "5218", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -65866,7 +65936,7 @@ ] }, "response.output_text.annotation.added": { - "$id": "5214", + "$id": "5219", "kind": "model", "name": "ResponseOutputTextAnnotationAddedEvent", "namespace": "OpenAI", @@ -65876,16 +65946,16 @@ "discriminatorValue": "response.output_text.annotation.added", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5215", + "$id": "5220", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.output_text_annotation.added'.", "type": { - "$ref": "782" + "$ref": "786" }, "optional": false, "readOnly": false, @@ -65897,12 +65967,12 @@ "isHttpMetadata": false }, { - "$id": "5216", + "$id": "5221", "kind": "property", "name": "item_id", "doc": "The unique identifier of the item to which the annotation is being added.", "type": { - "$id": "5217", + "$id": "5222", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65918,12 +65988,12 @@ "isHttpMetadata": false }, { - "$id": "5218", + "$id": "5223", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5219", + "$id": "5224", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -65939,12 +66009,12 @@ "isHttpMetadata": false }, { - "$id": "5220", + "$id": "5225", "kind": "property", "name": "content_index", "doc": "The index of the content part within the output item.", "type": { - "$id": "5221", + "$id": "5226", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -65960,12 +66030,12 @@ "isHttpMetadata": false }, { - "$id": "5222", + "$id": "5227", "kind": "property", "name": "annotation_index", "doc": "The index of the annotation within the content part.", "type": { - "$id": "5223", + "$id": "5228", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -65981,12 +66051,12 @@ "isHttpMetadata": false }, { - "$id": "5224", + "$id": "5229", "kind": "property", "name": "annotation", "doc": "The annotation object being added. (See annotation schema for details.)", "type": { - "$id": "5225", + "$id": "5230", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -66004,7 +66074,7 @@ ] }, "response.queued": { - "$id": "5226", + "$id": "5231", "kind": "model", "name": "ResponseQueuedEvent", "namespace": "OpenAI", @@ -66014,16 +66084,16 @@ "discriminatorValue": "response.queued", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5227", + "$id": "5232", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.queued'.", "type": { - "$ref": "804" + "$ref": "808" }, "optional": false, "readOnly": false, @@ -66035,12 +66105,12 @@ "isHttpMetadata": false }, { - "$id": "5228", + "$id": "5233", "kind": "property", "name": "response", "doc": "The full response object that is queued.", "type": { - "$ref": "4762" + "$ref": "4767" }, "optional": false, "readOnly": false, @@ -66054,7 +66124,7 @@ ] }, "response.reasoning.delta": { - "$id": "5229", + "$id": "5234", "kind": "model", "name": "ResponseReasoningDeltaEvent", "namespace": "OpenAI", @@ -66064,16 +66134,16 @@ "discriminatorValue": "response.reasoning.delta", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5230", + "$id": "5235", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.reasoning.delta'.", "type": { - "$ref": "805" + "$ref": "809" }, "optional": false, "readOnly": false, @@ -66085,12 +66155,12 @@ "isHttpMetadata": false }, { - "$id": "5231", + "$id": "5236", "kind": "property", "name": "item_id", "doc": "The unique identifier of the item for which reasoning is being updated.", "type": { - "$id": "5232", + "$id": "5237", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66106,12 +66176,12 @@ "isHttpMetadata": false }, { - "$id": "5233", + "$id": "5238", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5234", + "$id": "5239", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -66127,12 +66197,12 @@ "isHttpMetadata": false }, { - "$id": "5235", + "$id": "5240", "kind": "property", "name": "content_index", "doc": "The index of the reasoning content part within the output item.", "type": { - "$id": "5236", + "$id": "5241", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -66148,12 +66218,12 @@ "isHttpMetadata": false }, { - "$id": "5237", + "$id": "5242", "kind": "property", "name": "delta", "doc": "The partial update to the reasoning content.", "type": { - "$id": "5238", + "$id": "5243", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -66171,7 +66241,7 @@ ] }, "response.reasoning.done": { - "$id": "5239", + "$id": "5244", "kind": "model", "name": "ResponseReasoningDoneEvent", "namespace": "OpenAI", @@ -66181,16 +66251,16 @@ "discriminatorValue": "response.reasoning.done", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5240", + "$id": "5245", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.reasoning.done'.", "type": { - "$ref": "806" + "$ref": "810" }, "optional": false, "readOnly": false, @@ -66202,12 +66272,12 @@ "isHttpMetadata": false }, { - "$id": "5241", + "$id": "5246", "kind": "property", "name": "item_id", "doc": "The unique identifier of the item for which reasoning is finalized.", "type": { - "$id": "5242", + "$id": "5247", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66223,12 +66293,12 @@ "isHttpMetadata": false }, { - "$id": "5243", + "$id": "5248", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5244", + "$id": "5249", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -66244,12 +66314,12 @@ "isHttpMetadata": false }, { - "$id": "5245", + "$id": "5250", "kind": "property", "name": "content_index", "doc": "The index of the reasoning content part within the output item.", "type": { - "$id": "5246", + "$id": "5251", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -66265,12 +66335,12 @@ "isHttpMetadata": false }, { - "$id": "5247", + "$id": "5252", "kind": "property", "name": "text", "doc": "The finalized reasoning text.", "type": { - "$id": "5248", + "$id": "5253", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66288,7 +66358,7 @@ ] }, "response.reasoning_summary.delta": { - "$id": "5249", + "$id": "5254", "kind": "model", "name": "ResponseReasoningSummaryDeltaEvent", "namespace": "OpenAI", @@ -66298,16 +66368,16 @@ "discriminatorValue": "response.reasoning_summary.delta", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5250", + "$id": "5255", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.reasoning_summary.delta'.", "type": { - "$ref": "807" + "$ref": "811" }, "optional": false, "readOnly": false, @@ -66319,12 +66389,12 @@ "isHttpMetadata": false }, { - "$id": "5251", + "$id": "5256", "kind": "property", "name": "item_id", "doc": "The unique identifier of the item for which the reasoning summary is being updated.", "type": { - "$id": "5252", + "$id": "5257", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66340,12 +66410,12 @@ "isHttpMetadata": false }, { - "$id": "5253", + "$id": "5258", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5254", + "$id": "5259", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -66361,12 +66431,12 @@ "isHttpMetadata": false }, { - "$id": "5255", + "$id": "5260", "kind": "property", "name": "summary_index", "doc": "The index of the summary part within the output item.", "type": { - "$id": "5256", + "$id": "5261", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -66382,12 +66452,12 @@ "isHttpMetadata": false }, { - "$id": "5257", + "$id": "5262", "kind": "property", "name": "delta", "doc": "The partial update to the reasoning summary content.", "type": { - "$id": "5258", + "$id": "5263", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -66405,7 +66475,7 @@ ] }, "response.reasoning_summary.done": { - "$id": "5259", + "$id": "5264", "kind": "model", "name": "ResponseReasoningSummaryDoneEvent", "namespace": "OpenAI", @@ -66415,16 +66485,16 @@ "discriminatorValue": "response.reasoning_summary.done", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5260", + "$id": "5265", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.reasoning_summary.done'.", "type": { - "$ref": "808" + "$ref": "812" }, "optional": false, "readOnly": false, @@ -66436,12 +66506,12 @@ "isHttpMetadata": false }, { - "$id": "5261", + "$id": "5266", "kind": "property", "name": "item_id", "doc": "The unique identifier of the item for which the reasoning summary is finalized.", "type": { - "$id": "5262", + "$id": "5267", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66457,12 +66527,12 @@ "isHttpMetadata": false }, { - "$id": "5263", + "$id": "5268", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5264", + "$id": "5269", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -66478,12 +66548,12 @@ "isHttpMetadata": false }, { - "$id": "5265", + "$id": "5270", "kind": "property", "name": "summary_index", "doc": "The index of the summary part within the output item.", "type": { - "$id": "5266", + "$id": "5271", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -66499,12 +66569,12 @@ "isHttpMetadata": false }, { - "$id": "5267", + "$id": "5272", "kind": "property", "name": "text", "doc": "The finalized reasoning summary text.", "type": { - "$id": "5268", + "$id": "5273", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66522,7 +66592,7 @@ ] }, "response.code_interpreter_call_code.delta": { - "$id": "5269", + "$id": "5274", "kind": "model", "name": "ResponseCodeInterpreterCallCodeDeltaEvent", "namespace": "OpenAI", @@ -66532,16 +66602,16 @@ "discriminatorValue": "response.code_interpreter_call_code.delta", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5270", + "$id": "5275", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.code_interpreter_call_code.delta`.", "type": { - "$ref": "760" + "$ref": "764" }, "optional": false, "readOnly": false, @@ -66553,12 +66623,12 @@ "isHttpMetadata": false }, { - "$id": "5271", + "$id": "5276", "kind": "property", "name": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5272", + "$id": "5277", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -66574,12 +66644,12 @@ "isHttpMetadata": false }, { - "$id": "5273", + "$id": "5278", "kind": "property", "name": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5274", + "$id": "5279", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66595,12 +66665,12 @@ "isHttpMetadata": false }, { - "$id": "5275", + "$id": "5280", "kind": "property", "name": "delta", "doc": "The partial code snippet added by the code interpreter.", "type": { - "$id": "5276", + "$id": "5281", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66618,7 +66688,7 @@ ] }, "response.code_interpreter_call_code.done": { - "$id": "5277", + "$id": "5282", "kind": "model", "name": "ResponseCodeInterpreterCallCodeDoneEvent", "namespace": "OpenAI", @@ -66628,16 +66698,16 @@ "discriminatorValue": "response.code_interpreter_call_code.done", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5278", + "$id": "5283", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.code_interpreter_call_code.done`.", "type": { - "$ref": "761" + "$ref": "765" }, "optional": false, "readOnly": false, @@ -66649,12 +66719,12 @@ "isHttpMetadata": false }, { - "$id": "5279", + "$id": "5284", "kind": "property", "name": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5280", + "$id": "5285", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -66670,12 +66740,12 @@ "isHttpMetadata": false }, { - "$id": "5281", + "$id": "5286", "kind": "property", "name": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5282", + "$id": "5287", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66691,12 +66761,12 @@ "isHttpMetadata": false }, { - "$id": "5283", + "$id": "5288", "kind": "property", "name": "code", "doc": "The final code snippet output by the code interpreter.", "type": { - "$id": "5284", + "$id": "5289", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66714,7 +66784,7 @@ ] }, "response.code_interpreter_call.completed": { - "$id": "5285", + "$id": "5290", "kind": "model", "name": "ResponseCodeInterpreterCallCompletedEvent", "namespace": "OpenAI", @@ -66724,16 +66794,16 @@ "discriminatorValue": "response.code_interpreter_call.completed", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5286", + "$id": "5291", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.code_interpreter_call.completed`.", "type": { - "$ref": "762" + "$ref": "766" }, "optional": false, "readOnly": false, @@ -66745,12 +66815,12 @@ "isHttpMetadata": false }, { - "$id": "5287", + "$id": "5292", "kind": "property", "name": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5288", + "$id": "5293", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -66766,12 +66836,12 @@ "isHttpMetadata": false }, { - "$id": "5289", + "$id": "5294", "kind": "property", "name": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5290", + "$id": "5295", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66789,7 +66859,7 @@ ] }, "response.code_interpreter_call.in_progress": { - "$id": "5291", + "$id": "5296", "kind": "model", "name": "ResponseCodeInterpreterCallInProgressEvent", "namespace": "OpenAI", @@ -66799,16 +66869,16 @@ "discriminatorValue": "response.code_interpreter_call.in_progress", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5292", + "$id": "5297", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.code_interpreter_call.in_progress`.", "type": { - "$ref": "763" + "$ref": "767" }, "optional": false, "readOnly": false, @@ -66820,12 +66890,12 @@ "isHttpMetadata": false }, { - "$id": "5293", + "$id": "5298", "kind": "property", "name": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5294", + "$id": "5299", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -66841,12 +66911,12 @@ "isHttpMetadata": false }, { - "$id": "5295", + "$id": "5300", "kind": "property", "name": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5296", + "$id": "5301", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66864,7 +66934,7 @@ ] }, "response.code_interpreter_call.interpreting": { - "$id": "5297", + "$id": "5302", "kind": "model", "name": "ResponseCodeInterpreterCallInterpretingEvent", "namespace": "OpenAI", @@ -66874,16 +66944,16 @@ "discriminatorValue": "response.code_interpreter_call.interpreting", "decorators": [], "baseModel": { - "$ref": "4947" + "$ref": "4952" }, "properties": [ { - "$id": "5298", + "$id": "5303", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.code_interpreter_call.interpreting`.", "type": { - "$ref": "764" + "$ref": "768" }, "optional": false, "readOnly": false, @@ -66895,12 +66965,12 @@ "isHttpMetadata": false }, { - "$id": "5299", + "$id": "5304", "kind": "property", "name": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5300", + "$id": "5305", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -66916,12 +66986,12 @@ "isHttpMetadata": false }, { - "$id": "5301", + "$id": "5306", "kind": "property", "name": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5302", + "$id": "5307", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66941,46 +67011,43 @@ } }, { - "$ref": "4951" - }, - { - "$ref": "4954" + "$ref": "4956" }, { - "$ref": "4963" + "$ref": "4959" }, { - "$ref": "4972" + "$ref": "4968" }, { - "$ref": "4975" + "$ref": "4977" }, { - "$ref": "4985" + "$ref": "4980" }, { - "$ref": "4991" + "$ref": "4990" }, { - "$ref": "4997" + "$ref": "4996" }, { - "$ref": "5003" + "$ref": "5002" }, { - "$ref": "5011" + "$ref": "5008" }, { - "$ref": "5019" + "$ref": "5016" }, { - "$ref": "5022" + "$ref": "5024" }, { - "$ref": "5025" + "$ref": "5027" }, { - "$ref": "5028" + "$ref": "5030" }, { "$ref": "5033" @@ -66989,106 +67056,109 @@ "$ref": "5038" }, { - "$ref": "5048" + "$ref": "5043" + }, + { + "$ref": "5053" }, { - "$ref": "5058" + "$ref": "5063" }, { - "$ref": "5068" + "$ref": "5073" }, { - "$ref": "5078" + "$ref": "5083" }, { - "$ref": "5087" + "$ref": "5092" }, { - "$ref": "5096" + "$ref": "5101" }, { - "$ref": "5106" + "$ref": "5111" }, { - "$ref": "5116" + "$ref": "5121" }, { - "$ref": "5122" + "$ref": "5127" }, { - "$ref": "5128" + "$ref": "5133" }, { - "$ref": "5134" + "$ref": "5139" }, { - "$ref": "5140" + "$ref": "5145" }, { - "$ref": "5146" + "$ref": "5151" }, { - "$ref": "5152" + "$ref": "5157" }, { - "$ref": "5162" + "$ref": "5167" }, { - "$ref": "5170" + "$ref": "5175" }, { - "$ref": "5178" + "$ref": "5183" }, { - "$ref": "5184" + "$ref": "5189" }, { - "$ref": "5190" + "$ref": "5195" }, { - "$ref": "5196" + "$ref": "5201" }, { - "$ref": "5202" + "$ref": "5207" }, { - "$ref": "5208" + "$ref": "5213" }, { - "$ref": "5214" + "$ref": "5219" }, { - "$ref": "5226" + "$ref": "5231" }, { - "$ref": "5229" + "$ref": "5234" }, { - "$ref": "5239" + "$ref": "5244" }, { - "$ref": "5249" + "$ref": "5254" }, { - "$ref": "5259" + "$ref": "5264" }, { - "$ref": "5269" + "$ref": "5274" }, { - "$ref": "5277" + "$ref": "5282" }, { - "$ref": "5285" + "$ref": "5290" }, { - "$ref": "5291" + "$ref": "5296" }, { - "$ref": "5297" + "$ref": "5302" }, { - "$id": "5303", + "$id": "5308", "kind": "model", "name": "ResponseErrorResponse", "namespace": "OpenAI", @@ -67097,12 +67167,12 @@ "decorators": [], "properties": [ { - "$id": "5304", + "$id": "5309", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$ref": "4793" + "$ref": "4798" }, "optional": false, "readOnly": false, @@ -67120,7 +67190,7 @@ ] }, { - "$id": "5305", + "$id": "5310", "kind": "model", "name": "DeleteResponseResponse", "namespace": "OpenAI", @@ -67129,12 +67199,12 @@ "decorators": [], "properties": [ { - "$id": "5306", + "$id": "5311", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "5307", + "$id": "5312", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67154,12 +67224,12 @@ "isHttpMetadata": false }, { - "$id": "5308", + "$id": "5313", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1625" + "$ref": "1629" }, "optional": false, "readOnly": false, @@ -67175,12 +67245,12 @@ "isHttpMetadata": false }, { - "$id": "5309", + "$id": "5314", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$ref": "1627" + "$ref": "1631" }, "optional": false, "readOnly": false, @@ -67198,7 +67268,7 @@ ] }, { - "$id": "5310", + "$id": "5315", "kind": "model", "name": "ResponseItemList", "namespace": "OpenAI", @@ -67208,13 +67278,13 @@ "decorators": [], "properties": [ { - "$id": "5311", + "$id": "5316", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of object returned, must be `list`.", "type": { - "$ref": "1629" + "$ref": "1633" }, "optional": false, "readOnly": false, @@ -67230,13 +67300,13 @@ "isHttpMetadata": false }, { - "$id": "5312", + "$id": "5317", "kind": "property", "name": "data", "serializedName": "data", "doc": "A list of items used to generate this response.", "type": { - "$ref": "4802" + "$ref": "4807" }, "optional": false, "readOnly": false, @@ -67252,13 +67322,13 @@ "isHttpMetadata": false }, { - "$id": "5313", + "$id": "5318", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Whether there are more items available.", "type": { - "$id": "5314", + "$id": "5319", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -67278,13 +67348,13 @@ "isHttpMetadata": false }, { - "$id": "5315", + "$id": "5320", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The ID of the first item in the list.", "type": { - "$id": "5316", + "$id": "5321", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67304,13 +67374,13 @@ "isHttpMetadata": false }, { - "$id": "5317", + "$id": "5322", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The ID of the last item in the list.", "type": { - "$id": "5318", + "$id": "5323", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67332,7 +67402,7 @@ ] }, { - "$id": "5319", + "$id": "5324", "kind": "model", "name": "CreateImageRequest", "namespace": "OpenAI", @@ -67341,13 +67411,13 @@ "decorators": [], "properties": [ { - "$id": "5320", + "$id": "5325", "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": "5321", + "$id": "5326", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67367,16 +67437,16 @@ "isHttpMetadata": false }, { - "$id": "5322", + "$id": "5327", "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": "5323", + "$id": "5328", "kind": "nullable", "type": { - "$ref": "809" + "$ref": "813" }, "namespace": "OpenAI" }, @@ -67394,16 +67464,16 @@ "isHttpMetadata": false }, { - "$id": "5324", + "$id": "5329", "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": "5325", + "$id": "5330", "kind": "nullable", "type": { - "$id": "5326", + "$id": "5331", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67425,16 +67495,16 @@ "isHttpMetadata": false }, { - "$id": "5327", + "$id": "5332", "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": "5328", + "$id": "5333", "kind": "nullable", "type": { - "$ref": "814" + "$ref": "818" }, "namespace": "OpenAI" }, @@ -67452,16 +67522,16 @@ "isHttpMetadata": false }, { - "$id": "5329", + "$id": "5334", "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": "5330", + "$id": "5335", "kind": "nullable", "type": { - "$ref": "822" + "$ref": "826" }, "namespace": "OpenAI" }, @@ -67479,16 +67549,16 @@ "isHttpMetadata": false }, { - "$id": "5331", + "$id": "5336", "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": "5332", + "$id": "5337", "kind": "nullable", "type": { - "$ref": "826" + "$ref": "830" }, "namespace": "OpenAI" }, @@ -67506,16 +67576,16 @@ "isHttpMetadata": false }, { - "$id": "5333", + "$id": "5338", "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": "5334", + "$id": "5339", "kind": "nullable", "type": { - "$id": "5335", + "$id": "5340", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67537,16 +67607,16 @@ "isHttpMetadata": false }, { - "$id": "5336", + "$id": "5341", "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": "5337", + "$id": "5342", "kind": "nullable", "type": { - "$ref": "831" + "$ref": "835" }, "namespace": "OpenAI" }, @@ -67564,16 +67634,16 @@ "isHttpMetadata": false }, { - "$id": "5338", + "$id": "5343", "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": "5339", + "$id": "5344", "kind": "nullable", "type": { - "$ref": "841" + "$ref": "845" }, "namespace": "OpenAI" }, @@ -67591,16 +67661,16 @@ "isHttpMetadata": false }, { - "$id": "5340", + "$id": "5345", "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": "5341", + "$id": "5346", "kind": "nullable", "type": { - "$ref": "845" + "$ref": "849" }, "namespace": "OpenAI" }, @@ -67618,16 +67688,16 @@ "isHttpMetadata": false }, { - "$id": "5342", + "$id": "5347", "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": "5343", + "$id": "5348", "kind": "nullable", "type": { - "$ref": "850" + "$ref": "854" }, "namespace": "OpenAI" }, @@ -67645,13 +67715,13 @@ "isHttpMetadata": false }, { - "$id": "5344", + "$id": "5349", "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": "5345", + "$id": "5350", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67673,7 +67743,7 @@ ] }, { - "$id": "5346", + "$id": "5351", "kind": "model", "name": "ImagesResponse", "namespace": "OpenAI", @@ -67683,18 +67753,18 @@ "decorators": [], "properties": [ { - "$id": "5347", + "$id": "5352", "kind": "property", "name": "created", "serializedName": "created", "doc": "The Unix timestamp (in seconds) of when the image was created.", "type": { - "$id": "5348", + "$id": "5353", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5349", + "$id": "5354", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67717,17 +67787,17 @@ "isHttpMetadata": false }, { - "$id": "5350", + "$id": "5355", "kind": "property", "name": "data", "serializedName": "data", "doc": "The list of generated images.", "type": { - "$id": "5351", + "$id": "5356", "kind": "array", "name": "ArrayImage", "valueType": { - "$id": "5352", + "$id": "5357", "kind": "model", "name": "Image", "namespace": "OpenAI", @@ -67737,13 +67807,13 @@ "decorators": [], "properties": [ { - "$id": "5353", + "$id": "5358", "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": "5354", + "$id": "5359", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -67764,13 +67834,13 @@ "isHttpMetadata": false }, { - "$id": "5355", + "$id": "5360", "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": "5356", + "$id": "5361", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -67790,13 +67860,13 @@ "isHttpMetadata": false }, { - "$id": "5357", + "$id": "5362", "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": "5358", + "$id": "5363", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67834,13 +67904,13 @@ "isHttpMetadata": false }, { - "$id": "5359", + "$id": "5364", "kind": "property", "name": "usage", "serializedName": "usage", "doc": "For `gpt-image-1` only, the token usage information for the image generation.", "type": { - "$id": "5360", + "$id": "5365", "kind": "model", "name": "ImagesResponseUsage", "namespace": "OpenAI", @@ -67849,13 +67919,13 @@ "decorators": [], "properties": [ { - "$id": "5361", + "$id": "5366", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens (images and text) used for the image generation.", "type": { - "$id": "5362", + "$id": "5367", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67875,13 +67945,13 @@ "isHttpMetadata": false }, { - "$id": "5363", + "$id": "5368", "kind": "property", "name": "input_tokens", "serializedName": "input_tokens", "doc": "The number of tokens (images and text) in the input prompt.", "type": { - "$id": "5364", + "$id": "5369", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67901,13 +67971,13 @@ "isHttpMetadata": false }, { - "$id": "5365", + "$id": "5370", "kind": "property", "name": "output_tokens", "serializedName": "output_tokens", "doc": "The number of image tokens in the output image.", "type": { - "$id": "5366", + "$id": "5371", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67927,13 +67997,13 @@ "isHttpMetadata": false }, { - "$id": "5367", + "$id": "5372", "kind": "property", "name": "input_tokens_details", "serializedName": "input_tokens_details", "doc": "The input tokens detailed information for the image generation.", "type": { - "$id": "5368", + "$id": "5373", "kind": "model", "name": "ImagesResponseUsageInputTokensDetails", "namespace": "OpenAI", @@ -67942,13 +68012,13 @@ "decorators": [], "properties": [ { - "$id": "5369", + "$id": "5374", "kind": "property", "name": "text_tokens", "serializedName": "text_tokens", "doc": "The number of text tokens in the input prompt.", "type": { - "$id": "5370", + "$id": "5375", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67968,13 +68038,13 @@ "isHttpMetadata": false }, { - "$id": "5371", + "$id": "5376", "kind": "property", "name": "image_tokens", "serializedName": "image_tokens", "doc": "The number of image tokens in the input prompt.", "type": { - "$id": "5372", + "$id": "5377", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -68026,16 +68096,16 @@ ] }, { - "$ref": "5352" + "$ref": "5357" }, { - "$ref": "5360" + "$ref": "5365" }, { - "$ref": "5368" + "$ref": "5373" }, { - "$id": "5373", + "$id": "5378", "kind": "model", "name": "CreateImageEditRequest", "namespace": "OpenAI", @@ -68044,18 +68114,18 @@ "decorators": [], "properties": [ { - "$id": "5374", + "$id": "5379", "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": "5375", + "$id": "5380", "kind": "union", "name": "CreateImageEditRequestImage", "variantTypes": [ { - "$id": "5376", + "$id": "5381", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -68063,11 +68133,11 @@ "decorators": [] }, { - "$id": "5377", + "$id": "5382", "kind": "array", "name": "Array25", "valueType": { - "$id": "5378", + "$id": "5383", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -68102,13 +68172,13 @@ "isHttpMetadata": false }, { - "$id": "5379", + "$id": "5384", "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": "5380", + "$id": "5385", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -68134,13 +68204,13 @@ "isHttpMetadata": false }, { - "$id": "5381", + "$id": "5386", "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": "5382", + "$id": "5387", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -68167,16 +68237,16 @@ "isHttpMetadata": false }, { - "$id": "5383", + "$id": "5388", "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": "5384", + "$id": "5389", "kind": "nullable", "type": { - "$ref": "854" + "$ref": "858" }, "namespace": "OpenAI" }, @@ -68200,16 +68270,16 @@ "isHttpMetadata": false }, { - "$id": "5385", + "$id": "5390", "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": "5386", + "$id": "5391", "kind": "nullable", "type": { - "$ref": "859" + "$ref": "863" }, "namespace": "OpenAI" }, @@ -68233,21 +68303,21 @@ "isHttpMetadata": false }, { - "$id": "5387", + "$id": "5392", "kind": "property", "name": "n", "serializedName": "n", "doc": "The number of images to generate. Must be between 1 and 10.", "type": { - "$id": "5388", + "$id": "5393", "kind": "nullable", "type": { - "$id": "5389", + "$id": "5394", "kind": "int32", "name": "OneToTenInt", "crossLanguageDefinitionId": "OpenAI.OneToTenInt", "baseType": { - "$id": "5390", + "$id": "5395", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -68277,16 +68347,16 @@ "isHttpMetadata": false }, { - "$id": "5391", + "$id": "5396", "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": "5392", + "$id": "5397", "kind": "nullable", "type": { - "$ref": "863" + "$ref": "867" }, "namespace": "OpenAI" }, @@ -68310,16 +68380,16 @@ "isHttpMetadata": false }, { - "$id": "5393", + "$id": "5398", "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": "5394", + "$id": "5399", "kind": "nullable", "type": { - "$ref": "871" + "$ref": "875" }, "namespace": "OpenAI" }, @@ -68343,13 +68413,13 @@ "isHttpMetadata": false }, { - "$id": "5395", + "$id": "5400", "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": "5396", + "$id": "5401", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -68375,16 +68445,16 @@ "isHttpMetadata": false }, { - "$id": "5397", + "$id": "5402", "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": "5398", + "$id": "5403", "kind": "nullable", "type": { - "$ref": "875" + "$ref": "879" }, "namespace": "OpenAI" }, @@ -68410,7 +68480,7 @@ ] }, { - "$id": "5399", + "$id": "5404", "kind": "model", "name": "CreateImageVariationRequest", "namespace": "OpenAI", @@ -68419,13 +68489,13 @@ "decorators": [], "properties": [ { - "$id": "5400", + "$id": "5405", "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": "5401", + "$id": "5406", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -68452,16 +68522,16 @@ "isHttpMetadata": false }, { - "$id": "5402", + "$id": "5407", "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": "5403", + "$id": "5408", "kind": "nullable", "type": { - "$ref": "882" + "$ref": "886" }, "namespace": "OpenAI" }, @@ -68485,21 +68555,21 @@ "isHttpMetadata": false }, { - "$id": "5404", + "$id": "5409", "kind": "property", "name": "n", "serializedName": "n", "doc": "The number of images to generate. Must be between 1 and 10.", "type": { - "$id": "5405", + "$id": "5410", "kind": "nullable", "type": { - "$id": "5406", + "$id": "5411", "kind": "int32", "name": "OneToTenInt", "crossLanguageDefinitionId": "OpenAI.OneToTenInt", "baseType": { - "$id": "5407", + "$id": "5412", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -68529,16 +68599,16 @@ "isHttpMetadata": false }, { - "$id": "5408", + "$id": "5413", "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": "5409", + "$id": "5414", "kind": "nullable", "type": { - "$ref": "885" + "$ref": "889" }, "namespace": "OpenAI" }, @@ -68562,16 +68632,16 @@ "isHttpMetadata": false }, { - "$id": "5410", + "$id": "5415", "kind": "property", "name": "size", "serializedName": "size", "doc": "The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`.", "type": { - "$id": "5411", + "$id": "5416", "kind": "nullable", "type": { - "$ref": "889" + "$ref": "893" }, "namespace": "OpenAI" }, @@ -68595,13 +68665,13 @@ "isHttpMetadata": false }, { - "$id": "5412", + "$id": "5417", "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": "5413", + "$id": "5418", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -68629,7 +68699,7 @@ ] }, { - "$id": "5414", + "$id": "5419", "kind": "model", "name": "CreateMessageRequest", "namespace": "OpenAI", @@ -68638,13 +68708,13 @@ "decorators": [], "properties": [ { - "$id": "5415", + "$id": "5420", "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": "894" + "$ref": "898" }, "optional": false, "readOnly": false, @@ -68660,16 +68730,16 @@ "isHttpMetadata": false }, { - "$id": "5416", + "$id": "5421", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "5417", + "$id": "5422", "kind": "array", "name": "ArrayMessageContent", "valueType": { - "$id": "5418", + "$id": "5423", "kind": "model", "name": "MessageContent", "namespace": "OpenAI", @@ -68679,12 +68749,12 @@ "doc": "Represents a single piece of content in an Assistants API message.", "decorators": [], "discriminatorProperty": { - "$id": "5419", + "$id": "5424", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "898" + "$ref": "902" }, "optional": false, "readOnly": false, @@ -68701,12 +68771,12 @@ }, "properties": [ { - "$ref": "5419" + "$ref": "5424" } ], "discriminatedSubtypes": { "image_file": { - "$id": "5420", + "$id": "5425", "kind": "model", "name": "MessageContentImageFileObject", "namespace": "OpenAI", @@ -68717,17 +68787,17 @@ "discriminatorValue": "image_file", "decorators": [], "baseModel": { - "$ref": "5418" + "$ref": "5423" }, "properties": [ { - "$id": "5421", + "$id": "5426", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `image_file`.", "type": { - "$ref": "901" + "$ref": "905" }, "optional": false, "readOnly": false, @@ -68743,12 +68813,12 @@ "isHttpMetadata": false }, { - "$id": "5422", + "$id": "5427", "kind": "property", "name": "image_file", "serializedName": "image_file", "type": { - "$id": "5423", + "$id": "5428", "kind": "model", "name": "MessageContentImageFileObjectImageFile", "namespace": "OpenAI", @@ -68757,13 +68827,13 @@ "decorators": [], "properties": [ { - "$id": "5424", + "$id": "5429", "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": "5425", + "$id": "5430", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -68783,13 +68853,13 @@ "isHttpMetadata": false }, { - "$id": "5426", + "$id": "5431", "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": "904" + "$ref": "908" }, "optional": true, "readOnly": false, @@ -68822,7 +68892,7 @@ ] }, "text": { - "$id": "5427", + "$id": "5432", "kind": "model", "name": "MessageContentTextObject", "namespace": "OpenAI", @@ -68833,17 +68903,17 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "5418" + "$ref": "5423" }, "properties": [ { - "$id": "5428", + "$id": "5433", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `text`.", "type": { - "$ref": "900" + "$ref": "904" }, "optional": false, "readOnly": false, @@ -68859,24 +68929,24 @@ "isHttpMetadata": false }, { - "$id": "5429", + "$id": "5434", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "5430", + "$id": "5435", "kind": "union", "name": "MessageContentTextObjectText", "variantTypes": [ { - "$id": "5431", + "$id": "5436", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "5432", + "$id": "5437", "kind": "model", "name": "MessageContentTextObjectText1", "namespace": "OpenAI", @@ -68885,12 +68955,12 @@ "decorators": [], "properties": [ { - "$id": "5433", + "$id": "5438", "kind": "property", "name": "value", "serializedName": "value", "type": { - "$id": "5434", + "$id": "5439", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -68910,16 +68980,16 @@ "isHttpMetadata": false }, { - "$id": "5435", + "$id": "5440", "kind": "property", "name": "annotations", "serializedName": "annotations", "type": { - "$id": "5436", + "$id": "5441", "kind": "array", "name": "ArrayMessageContentTextObjectAnnotation", "valueType": { - "$id": "5437", + "$id": "5442", "kind": "model", "name": "MessageContentTextObjectAnnotation", "namespace": "OpenAI", @@ -68928,13 +68998,13 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "5438", + "$id": "5443", "kind": "property", "name": "type", "serializedName": "type", "doc": "The discriminated type identifier for the content item.", "type": { - "$ref": "909" + "$ref": "913" }, "optional": false, "readOnly": false, @@ -68951,12 +69021,12 @@ }, "properties": [ { - "$ref": "5438" + "$ref": "5443" } ], "discriminatedSubtypes": { "file_citation": { - "$id": "5439", + "$id": "5444", "kind": "model", "name": "MessageContentTextAnnotationsFileCitationObject", "namespace": "OpenAI", @@ -68967,17 +69037,17 @@ "discriminatorValue": "file_citation", "decorators": [], "baseModel": { - "$ref": "5437" + "$ref": "5442" }, "properties": [ { - "$id": "5440", + "$id": "5445", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `file_citation`.", "type": { - "$ref": "911" + "$ref": "915" }, "optional": false, "readOnly": false, @@ -68993,13 +69063,13 @@ "isHttpMetadata": false }, { - "$id": "5441", + "$id": "5446", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "5442", + "$id": "5447", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69019,12 +69089,12 @@ "isHttpMetadata": false }, { - "$id": "5443", + "$id": "5448", "kind": "property", "name": "file_citation", "serializedName": "file_citation", "type": { - "$id": "5444", + "$id": "5449", "kind": "model", "name": "MessageContentTextAnnotationsFileCitationObjectFileCitation", "namespace": "OpenAI", @@ -69033,13 +69103,13 @@ "decorators": [], "properties": [ { - "$id": "5445", + "$id": "5450", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the specific File the citation is from.", "type": { - "$id": "5446", + "$id": "5451", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69074,12 +69144,12 @@ "isHttpMetadata": false }, { - "$id": "5447", + "$id": "5452", "kind": "property", "name": "start_index", "serializedName": "start_index", "type": { - "$id": "5448", + "$id": "5453", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69099,12 +69169,12 @@ "isHttpMetadata": false }, { - "$id": "5449", + "$id": "5454", "kind": "property", "name": "end_index", "serializedName": "end_index", "type": { - "$id": "5450", + "$id": "5455", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69126,7 +69196,7 @@ ] }, "file_path": { - "$id": "5451", + "$id": "5456", "kind": "model", "name": "MessageContentTextAnnotationsFilePathObject", "namespace": "OpenAI", @@ -69137,17 +69207,17 @@ "discriminatorValue": "file_path", "decorators": [], "baseModel": { - "$ref": "5437" + "$ref": "5442" }, "properties": [ { - "$id": "5452", + "$id": "5457", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `file_path`.", "type": { - "$ref": "912" + "$ref": "916" }, "optional": false, "readOnly": false, @@ -69163,13 +69233,13 @@ "isHttpMetadata": false }, { - "$id": "5453", + "$id": "5458", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "5454", + "$id": "5459", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69189,12 +69259,12 @@ "isHttpMetadata": false }, { - "$id": "5455", + "$id": "5460", "kind": "property", "name": "file_path", "serializedName": "file_path", "type": { - "$id": "5456", + "$id": "5461", "kind": "model", "name": "MessageContentTextAnnotationsFilePathObjectFilePath", "namespace": "OpenAI", @@ -69203,13 +69273,13 @@ "decorators": [], "properties": [ { - "$id": "5457", + "$id": "5462", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file that was generated.", "type": { - "$id": "5458", + "$id": "5463", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69244,12 +69314,12 @@ "isHttpMetadata": false }, { - "$id": "5459", + "$id": "5464", "kind": "property", "name": "start_index", "serializedName": "start_index", "type": { - "$id": "5460", + "$id": "5465", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69269,12 +69339,12 @@ "isHttpMetadata": false }, { - "$id": "5461", + "$id": "5466", "kind": "property", "name": "end_index", "serializedName": "end_index", "type": { - "$id": "5462", + "$id": "5467", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69335,7 +69405,7 @@ ] }, "refusal": { - "$id": "5463", + "$id": "5468", "kind": "model", "name": "MessageContentRefusalObject", "namespace": "OpenAI", @@ -69346,17 +69416,17 @@ "discriminatorValue": "refusal", "decorators": [], "baseModel": { - "$ref": "5418" + "$ref": "5423" }, "properties": [ { - "$id": "5464", + "$id": "5469", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `refusal`.", "type": { - "$ref": "903" + "$ref": "907" }, "optional": false, "readOnly": false, @@ -69372,12 +69442,12 @@ "isHttpMetadata": false }, { - "$id": "5465", + "$id": "5470", "kind": "property", "name": "refusal", "serializedName": "refusal", "type": { - "$id": "5466", + "$id": "5471", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69399,7 +69469,7 @@ ] }, "image_url": { - "$id": "5467", + "$id": "5472", "kind": "model", "name": "MessageContentImageUrlObject", "namespace": "OpenAI", @@ -69410,17 +69480,17 @@ "discriminatorValue": "image_url", "decorators": [], "baseModel": { - "$ref": "5418" + "$ref": "5423" }, "properties": [ { - "$id": "5468", + "$id": "5473", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content part.", "type": { - "$ref": "902" + "$ref": "906" }, "optional": false, "readOnly": false, @@ -69436,12 +69506,12 @@ "isHttpMetadata": false }, { - "$id": "5469", + "$id": "5474", "kind": "property", "name": "image_url", "serializedName": "image_url", "type": { - "$id": "5470", + "$id": "5475", "kind": "model", "name": "MessageContentImageUrlObjectImageUrl", "namespace": "OpenAI", @@ -69450,13 +69520,13 @@ "decorators": [], "properties": [ { - "$id": "5471", + "$id": "5476", "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": "5472", + "$id": "5477", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -69476,13 +69546,13 @@ "isHttpMetadata": false }, { - "$id": "5473", + "$id": "5478", "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": "913" + "$ref": "917" }, "optional": true, "readOnly": false, @@ -69533,20 +69603,20 @@ "isHttpMetadata": false }, { - "$id": "5474", + "$id": "5479", "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": "5475", + "$id": "5480", "kind": "nullable", "type": { - "$id": "5476", + "$id": "5481", "kind": "array", "name": "Array26", "valueType": { - "$id": "5477", + "$id": "5482", "kind": "model", "name": "CreateMessageRequestAttachment", "namespace": "OpenAI", @@ -69555,13 +69625,13 @@ "decorators": [], "properties": [ { - "$id": "5478", + "$id": "5483", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to attach to the message.", "type": { - "$id": "5479", + "$id": "5484", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69581,25 +69651,25 @@ "isHttpMetadata": false }, { - "$id": "5480", + "$id": "5485", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "The tools to add this file to.", "type": { - "$id": "5481", + "$id": "5486", "kind": "array", "name": "Array27", "valueType": { - "$id": "5482", + "$id": "5487", "kind": "union", "name": "CreateMessageRequestAttachmentTool", "variantTypes": [ { - "$ref": "2307" + "$ref": "2311" }, { - "$id": "5483", + "$id": "5488", "kind": "model", "name": "AssistantToolsFileSearchTypeOnly", "namespace": "OpenAI", @@ -69608,13 +69678,13 @@ "decorators": [], "properties": [ { - "$id": "5484", + "$id": "5489", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of tool being defined: `file_search`", "type": { - "$ref": "1631" + "$ref": "1635" }, "optional": false, "readOnly": false, @@ -69672,13 +69742,13 @@ "isHttpMetadata": false }, { - "$id": "5485", + "$id": "5490", "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": "2346" + "$ref": "2350" }, "optional": true, "readOnly": false, @@ -69696,16 +69766,13 @@ ] }, { - "$ref": "5418" - }, - { - "$ref": "5420" + "$ref": "5423" }, { - "$ref": "5423" + "$ref": "5425" }, { - "$ref": "5427" + "$ref": "5428" }, { "$ref": "5432" @@ -69714,34 +69781,37 @@ "$ref": "5437" }, { - "$ref": "5439" + "$ref": "5442" }, { "$ref": "5444" }, { - "$ref": "5451" + "$ref": "5449" }, { "$ref": "5456" }, { - "$ref": "5463" + "$ref": "5461" + }, + { + "$ref": "5468" }, { - "$ref": "5467" + "$ref": "5472" }, { - "$ref": "5470" + "$ref": "5475" }, { - "$ref": "5477" + "$ref": "5482" }, { - "$ref": "5483" + "$ref": "5488" }, { - "$id": "5486", + "$id": "5491", "kind": "model", "name": "MessageObject", "namespace": "OpenAI", @@ -69751,13 +69821,13 @@ "decorators": [], "properties": [ { - "$id": "5487", + "$id": "5492", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "5488", + "$id": "5493", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69777,13 +69847,13 @@ "isHttpMetadata": false }, { - "$id": "5489", + "$id": "5494", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `thread.message`.", "type": { - "$ref": "1633" + "$ref": "1637" }, "optional": false, "readOnly": false, @@ -69799,18 +69869,18 @@ "isHttpMetadata": false }, { - "$id": "5490", + "$id": "5495", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the message was created.", "type": { - "$id": "5491", + "$id": "5496", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5492", + "$id": "5497", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69833,13 +69903,13 @@ "isHttpMetadata": false }, { - "$id": "5493", + "$id": "5498", "kind": "property", "name": "thread_id", "serializedName": "thread_id", "doc": "The [thread](/docs/api-reference/threads) ID that this message belongs to.", "type": { - "$id": "5494", + "$id": "5499", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69859,13 +69929,13 @@ "isHttpMetadata": false }, { - "$id": "5495", + "$id": "5500", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the message, which can be either `in_progress`, `incomplete`, or `completed`.", "type": { - "$ref": "918" + "$ref": "922" }, "optional": false, "readOnly": false, @@ -69881,16 +69951,16 @@ "isHttpMetadata": false }, { - "$id": "5496", + "$id": "5501", "kind": "property", "name": "incomplete_details", "serializedName": "incomplete_details", "doc": "On an incomplete message, details about why the message is incomplete.", "type": { - "$id": "5497", + "$id": "5502", "kind": "nullable", "type": { - "$id": "5498", + "$id": "5503", "kind": "model", "name": "MessageObjectIncompleteDetails1", "namespace": "OpenAI", @@ -69899,13 +69969,13 @@ "decorators": [], "properties": [ { - "$id": "5499", + "$id": "5504", "kind": "property", "name": "reason", "serializedName": "reason", "doc": "The reason the message is incomplete.", "type": { - "$ref": "923" + "$ref": "927" }, "optional": false, "readOnly": false, @@ -69938,21 +70008,21 @@ "isHttpMetadata": false }, { - "$id": "5500", + "$id": "5505", "kind": "property", "name": "completed_at", "serializedName": "completed_at", "doc": "The Unix timestamp (in seconds) for when the message was completed.", "type": { - "$id": "5501", + "$id": "5506", "kind": "nullable", "type": { - "$id": "5502", + "$id": "5507", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5503", + "$id": "5508", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69977,21 +70047,21 @@ "isHttpMetadata": false }, { - "$id": "5504", + "$id": "5509", "kind": "property", "name": "incomplete_at", "serializedName": "incomplete_at", "doc": "The Unix timestamp (in seconds) for when the message was marked as incomplete.", "type": { - "$id": "5505", + "$id": "5510", "kind": "nullable", "type": { - "$id": "5506", + "$id": "5511", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5507", + "$id": "5512", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70016,13 +70086,13 @@ "isHttpMetadata": false }, { - "$id": "5508", + "$id": "5513", "kind": "property", "name": "role", "serializedName": "role", "doc": "The entity that produced the message. One of `user` or `assistant`.", "type": { - "$ref": "930" + "$ref": "934" }, "optional": false, "readOnly": false, @@ -70038,13 +70108,13 @@ "isHttpMetadata": false }, { - "$id": "5509", + "$id": "5514", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message in array of text and/or images.", "type": { - "$ref": "5417" + "$ref": "5422" }, "optional": false, "readOnly": true, @@ -70060,16 +70130,16 @@ "isHttpMetadata": false }, { - "$id": "5510", + "$id": "5515", "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": "5511", + "$id": "5516", "kind": "nullable", "type": { - "$id": "5512", + "$id": "5517", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70091,16 +70161,16 @@ "isHttpMetadata": false }, { - "$id": "5513", + "$id": "5518", "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": "5514", + "$id": "5519", "kind": "nullable", "type": { - "$id": "5515", + "$id": "5520", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70122,20 +70192,20 @@ "isHttpMetadata": false }, { - "$id": "5516", + "$id": "5521", "kind": "property", "name": "attachments", "serializedName": "attachments", "doc": "A list of files attached to the message, and the tools they were added to.", "type": { - "$id": "5517", + "$id": "5522", "kind": "nullable", "type": { - "$id": "5518", + "$id": "5523", "kind": "array", "name": "Array28", "valueType": { - "$id": "5519", + "$id": "5524", "kind": "model", "name": "MessageObjectAttachment", "namespace": "OpenAI", @@ -70144,13 +70214,13 @@ "decorators": [], "properties": [ { - "$id": "5520", + "$id": "5525", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to attach to the message.", "type": { - "$id": "5521", + "$id": "5526", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70170,25 +70240,25 @@ "isHttpMetadata": false }, { - "$id": "5522", + "$id": "5527", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "The tools to add this file to.", "type": { - "$id": "5523", + "$id": "5528", "kind": "array", "name": "Array29", "valueType": { - "$id": "5524", + "$id": "5529", "kind": "union", "name": "MessageObjectAttachmentTool", "variantTypes": [ { - "$ref": "2307" + "$ref": "2311" }, { - "$ref": "5483" + "$ref": "5488" } ], "namespace": "OpenAI", @@ -70231,13 +70301,13 @@ "isHttpMetadata": false }, { - "$id": "5525", + "$id": "5530", "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": "2345" + "$ref": "2349" }, "optional": false, "readOnly": true, @@ -70255,13 +70325,13 @@ ] }, { - "$ref": "5498" + "$ref": "5503" }, { - "$ref": "5519" + "$ref": "5524" }, { - "$id": "5526", + "$id": "5531", "kind": "model", "name": "ListMessagesResponse", "namespace": "OpenAI", @@ -70270,12 +70340,12 @@ "decorators": [], "properties": [ { - "$id": "5527", + "$id": "5532", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1635" + "$ref": "1639" }, "optional": false, "readOnly": false, @@ -70291,16 +70361,16 @@ "isHttpMetadata": false }, { - "$id": "5528", + "$id": "5533", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "5529", + "$id": "5534", "kind": "array", "name": "ArrayMessageObject", "valueType": { - "$ref": "5486" + "$ref": "5491" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -70319,12 +70389,12 @@ "isHttpMetadata": false }, { - "$id": "5530", + "$id": "5535", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "5531", + "$id": "5536", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70344,12 +70414,12 @@ "isHttpMetadata": false }, { - "$id": "5532", + "$id": "5537", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "5533", + "$id": "5538", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70369,12 +70439,12 @@ "isHttpMetadata": false }, { - "$id": "5534", + "$id": "5539", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "5535", + "$id": "5540", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -70396,7 +70466,7 @@ ] }, { - "$id": "5536", + "$id": "5541", "kind": "model", "name": "ModifyMessageRequest", "namespace": "OpenAI", @@ -70405,13 +70475,13 @@ "decorators": [], "properties": [ { - "$id": "5537", + "$id": "5542", "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": "2346" + "$ref": "2350" }, "optional": true, "readOnly": false, @@ -70429,7 +70499,7 @@ ] }, { - "$id": "5538", + "$id": "5543", "kind": "model", "name": "DeleteMessageResponse", "namespace": "OpenAI", @@ -70438,12 +70508,12 @@ "decorators": [], "properties": [ { - "$id": "5539", + "$id": "5544", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "5540", + "$id": "5545", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70463,12 +70533,12 @@ "isHttpMetadata": false }, { - "$id": "5541", + "$id": "5546", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "5542", + "$id": "5547", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -70488,12 +70558,12 @@ "isHttpMetadata": false }, { - "$id": "5543", + "$id": "5548", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1637" + "$ref": "1641" }, "optional": false, "readOnly": false, @@ -70511,7 +70581,7 @@ ] }, { - "$id": "5544", + "$id": "5549", "kind": "model", "name": "CreateModerationRequest", "namespace": "OpenAI", @@ -70520,37 +70590,37 @@ "decorators": [], "properties": [ { - "$id": "5545", + "$id": "5550", "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": "5546", + "$id": "5551", "kind": "union", "name": "CreateModerationRequestInput", "variantTypes": [ { - "$id": "5547", + "$id": "5552", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$ref": "2339" + "$ref": "2343" }, { - "$id": "5548", + "$id": "5553", "kind": "array", "name": "Array30", "valueType": { - "$id": "5549", + "$id": "5554", "kind": "union", "name": "CreateModerationRequestInput1", "variantTypes": [ { - "$id": "5550", + "$id": "5555", "kind": "model", "name": "CreateModerationRequestInput2", "namespace": "OpenAI", @@ -70559,13 +70629,13 @@ "decorators": [], "properties": [ { - "$id": "5551", + "$id": "5556", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `image_url`.", "type": { - "$ref": "1639" + "$ref": "1643" }, "optional": false, "readOnly": false, @@ -70581,13 +70651,13 @@ "isHttpMetadata": false }, { - "$id": "5552", + "$id": "5557", "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": "5553", + "$id": "5558", "kind": "model", "name": "CreateModerationRequestInputImageUrl", "namespace": "OpenAI", @@ -70596,13 +70666,13 @@ "decorators": [], "properties": [ { - "$id": "5554", + "$id": "5559", "kind": "property", "name": "url", "serializedName": "url", "doc": "Either a URL of the image or the base64 encoded image data.", "type": { - "$id": "5555", + "$id": "5560", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70639,7 +70709,7 @@ ] }, { - "$id": "5556", + "$id": "5561", "kind": "model", "name": "CreateModerationRequestInput3", "namespace": "OpenAI", @@ -70648,13 +70718,13 @@ "decorators": [], "properties": [ { - "$id": "5557", + "$id": "5562", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `text`.", "type": { - "$ref": "1641" + "$ref": "1645" }, "optional": false, "readOnly": false, @@ -70670,13 +70740,13 @@ "isHttpMetadata": false }, { - "$id": "5558", + "$id": "5563", "kind": "property", "name": "text", "serializedName": "text", "doc": "A string of text to classify.", "type": { - "$id": "5559", + "$id": "5564", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70722,13 +70792,13 @@ "isHttpMetadata": false }, { - "$id": "5560", + "$id": "5565", "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": "934" + "$ref": "938" }, "optional": true, "readOnly": false, @@ -70746,16 +70816,16 @@ ] }, { - "$ref": "5550" + "$ref": "5555" }, { - "$ref": "5553" + "$ref": "5558" }, { - "$ref": "5556" + "$ref": "5561" }, { - "$id": "5561", + "$id": "5566", "kind": "model", "name": "CreateModerationResponse", "namespace": "OpenAI", @@ -70765,13 +70835,13 @@ "decorators": [], "properties": [ { - "$id": "5562", + "$id": "5567", "kind": "property", "name": "id", "serializedName": "id", "doc": "The unique identifier for the moderation request.", "type": { - "$id": "5563", + "$id": "5568", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70791,13 +70861,13 @@ "isHttpMetadata": false }, { - "$id": "5564", + "$id": "5569", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model used to generate the moderation results.", "type": { - "$id": "5565", + "$id": "5570", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70817,17 +70887,17 @@ "isHttpMetadata": false }, { - "$id": "5566", + "$id": "5571", "kind": "property", "name": "results", "serializedName": "results", "doc": "A list of moderation objects.", "type": { - "$id": "5567", + "$id": "5572", "kind": "array", "name": "ArrayCreateModerationResponseResult", "valueType": { - "$id": "5568", + "$id": "5573", "kind": "model", "name": "CreateModerationResponseResult", "namespace": "OpenAI", @@ -70836,13 +70906,13 @@ "decorators": [], "properties": [ { - "$id": "5569", + "$id": "5574", "kind": "property", "name": "flagged", "serializedName": "flagged", "doc": "Whether any of the below categories are flagged.", "type": { - "$id": "5570", + "$id": "5575", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -70862,13 +70932,13 @@ "isHttpMetadata": false }, { - "$id": "5571", + "$id": "5576", "kind": "property", "name": "categories", "serializedName": "categories", "doc": "A list of the categories, and whether they are flagged or not.", "type": { - "$id": "5572", + "$id": "5577", "kind": "model", "name": "CreateModerationResponseResultCategories", "namespace": "OpenAI", @@ -70877,13 +70947,13 @@ "decorators": [], "properties": [ { - "$id": "5573", + "$id": "5578", "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": "5574", + "$id": "5579", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -70903,13 +70973,13 @@ "isHttpMetadata": false }, { - "$id": "5575", + "$id": "5580", "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": "5576", + "$id": "5581", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -70929,13 +70999,13 @@ "isHttpMetadata": false }, { - "$id": "5577", + "$id": "5582", "kind": "property", "name": "harassment", "serializedName": "harassment", "doc": "Content that expresses, incites, or promotes harassing language towards any target.", "type": { - "$id": "5578", + "$id": "5583", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -70955,13 +71025,13 @@ "isHttpMetadata": false }, { - "$id": "5579", + "$id": "5584", "kind": "property", "name": "harassment/threatening", "serializedName": "harassment/threatening", "doc": "Harassment content that also includes violence or serious harm towards any target.", "type": { - "$id": "5580", + "$id": "5585", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -70981,13 +71051,13 @@ "isHttpMetadata": false }, { - "$id": "5581", + "$id": "5586", "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": "5582", + "$id": "5587", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -71007,13 +71077,13 @@ "isHttpMetadata": false }, { - "$id": "5583", + "$id": "5588", "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": "5584", + "$id": "5589", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -71033,13 +71103,13 @@ "isHttpMetadata": false }, { - "$id": "5585", + "$id": "5590", "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": "5586", + "$id": "5591", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -71059,13 +71129,13 @@ "isHttpMetadata": false }, { - "$id": "5587", + "$id": "5592", "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": "5588", + "$id": "5593", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -71085,13 +71155,13 @@ "isHttpMetadata": false }, { - "$id": "5589", + "$id": "5594", "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": "5590", + "$id": "5595", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -71111,13 +71181,13 @@ "isHttpMetadata": false }, { - "$id": "5591", + "$id": "5596", "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": "5592", + "$id": "5597", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -71137,13 +71207,13 @@ "isHttpMetadata": false }, { - "$id": "5593", + "$id": "5598", "kind": "property", "name": "sexual/minors", "serializedName": "sexual/minors", "doc": "Sexual content that includes an individual who is under 18 years old.", "type": { - "$id": "5594", + "$id": "5599", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -71163,13 +71233,13 @@ "isHttpMetadata": false }, { - "$id": "5595", + "$id": "5600", "kind": "property", "name": "violence", "serializedName": "violence", "doc": "Content that depicts death, violence, or physical injury.", "type": { - "$id": "5596", + "$id": "5601", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -71189,13 +71259,13 @@ "isHttpMetadata": false }, { - "$id": "5597", + "$id": "5602", "kind": "property", "name": "violence/graphic", "serializedName": "violence/graphic", "doc": "Content that depicts death, violence, or physical injury in graphic detail.", "type": { - "$id": "5598", + "$id": "5603", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -71230,13 +71300,13 @@ "isHttpMetadata": false }, { - "$id": "5599", + "$id": "5604", "kind": "property", "name": "category_scores", "serializedName": "category_scores", "doc": "A list of the categories along with their scores as predicted by model.", "type": { - "$id": "5600", + "$id": "5605", "kind": "model", "name": "CreateModerationResponseResultCategoryScores", "namespace": "OpenAI", @@ -71245,13 +71315,13 @@ "decorators": [], "properties": [ { - "$id": "5601", + "$id": "5606", "kind": "property", "name": "hate", "serializedName": "hate", "doc": "The score for the category 'hate'.", "type": { - "$id": "5602", + "$id": "5607", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -71271,13 +71341,13 @@ "isHttpMetadata": false }, { - "$id": "5603", + "$id": "5608", "kind": "property", "name": "hate/threatening", "serializedName": "hate/threatening", "doc": "The score for the category 'hate/threatening'.", "type": { - "$id": "5604", + "$id": "5609", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -71297,13 +71367,13 @@ "isHttpMetadata": false }, { - "$id": "5605", + "$id": "5610", "kind": "property", "name": "harassment", "serializedName": "harassment", "doc": "The score for the category 'harassment'.", "type": { - "$id": "5606", + "$id": "5611", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -71323,13 +71393,13 @@ "isHttpMetadata": false }, { - "$id": "5607", + "$id": "5612", "kind": "property", "name": "harassment/threatening", "serializedName": "harassment/threatening", "doc": "The score for the category 'harassment/threatening'.", "type": { - "$id": "5608", + "$id": "5613", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -71349,13 +71419,13 @@ "isHttpMetadata": false }, { - "$id": "5609", + "$id": "5614", "kind": "property", "name": "illicit", "serializedName": "illicit", "doc": "The score for the category 'illicit'.", "type": { - "$id": "5610", + "$id": "5615", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -71375,13 +71445,13 @@ "isHttpMetadata": false }, { - "$id": "5611", + "$id": "5616", "kind": "property", "name": "illicit/violent", "serializedName": "illicit/violent", "doc": "The score for the category 'illicit/violent'.", "type": { - "$id": "5612", + "$id": "5617", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -71401,13 +71471,13 @@ "isHttpMetadata": false }, { - "$id": "5613", + "$id": "5618", "kind": "property", "name": "self-harm", "serializedName": "self-harm", "doc": "The score for the category 'self-harm'.", "type": { - "$id": "5614", + "$id": "5619", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -71427,13 +71497,13 @@ "isHttpMetadata": false }, { - "$id": "5615", + "$id": "5620", "kind": "property", "name": "self-harm/intent", "serializedName": "self-harm/intent", "doc": "The score for the category 'self-harm/intent'.", "type": { - "$id": "5616", + "$id": "5621", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -71453,13 +71523,13 @@ "isHttpMetadata": false }, { - "$id": "5617", + "$id": "5622", "kind": "property", "name": "self-harm/instructions", "serializedName": "self-harm/instructions", "doc": "The score for the category 'self-harm/instructions'.", "type": { - "$id": "5618", + "$id": "5623", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -71479,13 +71549,13 @@ "isHttpMetadata": false }, { - "$id": "5619", + "$id": "5624", "kind": "property", "name": "sexual", "serializedName": "sexual", "doc": "The score for the category 'sexual'.", "type": { - "$id": "5620", + "$id": "5625", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -71505,13 +71575,13 @@ "isHttpMetadata": false }, { - "$id": "5621", + "$id": "5626", "kind": "property", "name": "sexual/minors", "serializedName": "sexual/minors", "doc": "The score for the category 'sexual/minors'.", "type": { - "$id": "5622", + "$id": "5627", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -71531,13 +71601,13 @@ "isHttpMetadata": false }, { - "$id": "5623", + "$id": "5628", "kind": "property", "name": "violence", "serializedName": "violence", "doc": "The score for the category 'violence'.", "type": { - "$id": "5624", + "$id": "5629", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -71557,13 +71627,13 @@ "isHttpMetadata": false }, { - "$id": "5625", + "$id": "5630", "kind": "property", "name": "violence/graphic", "serializedName": "violence/graphic", "doc": "The score for the category 'violence/graphic'.", "type": { - "$id": "5626", + "$id": "5631", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -71598,13 +71668,13 @@ "isHttpMetadata": false }, { - "$id": "5627", + "$id": "5632", "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": "5628", + "$id": "5633", "kind": "model", "name": "CreateModerationResponseResultCategoryAppliedInputTypes", "namespace": "OpenAI", @@ -71613,25 +71683,25 @@ "decorators": [], "properties": [ { - "$id": "5629", + "$id": "5634", "kind": "property", "name": "hate", "serializedName": "hate", "doc": "The applied input type(s) for the category 'hate'.", "type": { - "$id": "5630", + "$id": "5635", "kind": "array", "name": "Array31", "valueType": { - "$id": "5631", + "$id": "5636", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "941" + "$ref": "945" }, "enumType": { - "$ref": "940" + "$ref": "944" }, "decorators": [] }, @@ -71652,13 +71722,13 @@ "isHttpMetadata": false }, { - "$id": "5632", + "$id": "5637", "kind": "property", "name": "hate/threatening", "serializedName": "hate/threatening", "doc": "The applied input type(s) for the category 'hate/threatening'.", "type": { - "$ref": "5630" + "$ref": "5635" }, "optional": false, "readOnly": false, @@ -71674,13 +71744,13 @@ "isHttpMetadata": false }, { - "$id": "5633", + "$id": "5638", "kind": "property", "name": "harassment", "serializedName": "harassment", "doc": "The applied input type(s) for the category 'harassment'.", "type": { - "$ref": "5630" + "$ref": "5635" }, "optional": false, "readOnly": false, @@ -71696,13 +71766,13 @@ "isHttpMetadata": false }, { - "$id": "5634", + "$id": "5639", "kind": "property", "name": "harassment/threatening", "serializedName": "harassment/threatening", "doc": "The applied input type(s) for the category 'harassment/threatening'.", "type": { - "$ref": "5630" + "$ref": "5635" }, "optional": false, "readOnly": false, @@ -71718,13 +71788,13 @@ "isHttpMetadata": false }, { - "$id": "5635", + "$id": "5640", "kind": "property", "name": "illicit", "serializedName": "illicit", "doc": "The applied input type(s) for the category 'illicit'.", "type": { - "$ref": "5630" + "$ref": "5635" }, "optional": false, "readOnly": false, @@ -71740,13 +71810,13 @@ "isHttpMetadata": false }, { - "$id": "5636", + "$id": "5641", "kind": "property", "name": "illicit/violent", "serializedName": "illicit/violent", "doc": "The applied input type(s) for the category 'illicit/violent'.", "type": { - "$ref": "5630" + "$ref": "5635" }, "optional": false, "readOnly": false, @@ -71762,25 +71832,25 @@ "isHttpMetadata": false }, { - "$id": "5637", + "$id": "5642", "kind": "property", "name": "self-harm", "serializedName": "self-harm", "doc": "The applied input type(s) for the category 'self-harm'.", "type": { - "$id": "5638", + "$id": "5643", "kind": "array", "name": "Array32", "valueType": { - "$id": "5639", + "$id": "5644", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSelfHarm", "variantTypes": [ { - "$ref": "5631" + "$ref": "5636" }, { - "$ref": "943" + "$ref": "947" } ], "namespace": "OpenAI", @@ -71803,25 +71873,25 @@ "isHttpMetadata": false }, { - "$id": "5640", + "$id": "5645", "kind": "property", "name": "self-harm/intent", "serializedName": "self-harm/intent", "doc": "The applied input type(s) for the category 'self-harm/intent'.", "type": { - "$id": "5641", + "$id": "5646", "kind": "array", "name": "Array33", "valueType": { - "$id": "5642", + "$id": "5647", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmIntent", "variantTypes": [ { - "$ref": "5631" + "$ref": "5636" }, { - "$ref": "943" + "$ref": "947" } ], "namespace": "OpenAI", @@ -71844,25 +71914,25 @@ "isHttpMetadata": false }, { - "$id": "5643", + "$id": "5648", "kind": "property", "name": "self-harm/instructions", "serializedName": "self-harm/instructions", "doc": "The applied input type(s) for the category 'self-harm/instructions'.", "type": { - "$id": "5644", + "$id": "5649", "kind": "array", "name": "Array34", "valueType": { - "$id": "5645", + "$id": "5650", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmInstruction", "variantTypes": [ { - "$ref": "5631" + "$ref": "5636" }, { - "$ref": "943" + "$ref": "947" } ], "namespace": "OpenAI", @@ -71885,25 +71955,25 @@ "isHttpMetadata": false }, { - "$id": "5646", + "$id": "5651", "kind": "property", "name": "sexual", "serializedName": "sexual", "doc": "The applied input type(s) for the category 'sexual'.", "type": { - "$id": "5647", + "$id": "5652", "kind": "array", "name": "Array35", "valueType": { - "$id": "5648", + "$id": "5653", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSexual", "variantTypes": [ { - "$ref": "5631" + "$ref": "5636" }, { - "$ref": "943" + "$ref": "947" } ], "namespace": "OpenAI", @@ -71926,13 +71996,13 @@ "isHttpMetadata": false }, { - "$id": "5649", + "$id": "5654", "kind": "property", "name": "sexual/minors", "serializedName": "sexual/minors", "doc": "The applied input type(s) for the category 'sexual/minors'.", "type": { - "$ref": "5630" + "$ref": "5635" }, "optional": false, "readOnly": false, @@ -71948,25 +72018,25 @@ "isHttpMetadata": false }, { - "$id": "5650", + "$id": "5655", "kind": "property", "name": "violence", "serializedName": "violence", "doc": "The applied input type(s) for the category 'violence'.", "type": { - "$id": "5651", + "$id": "5656", "kind": "array", "name": "Array36", "valueType": { - "$id": "5652", + "$id": "5657", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesViolence", "variantTypes": [ { - "$ref": "5631" + "$ref": "5636" }, { - "$ref": "943" + "$ref": "947" } ], "namespace": "OpenAI", @@ -71989,25 +72059,25 @@ "isHttpMetadata": false }, { - "$id": "5653", + "$id": "5658", "kind": "property", "name": "violence/graphic", "serializedName": "violence/graphic", "doc": "The applied input type(s) for the category 'violence/graphic'.", "type": { - "$id": "5654", + "$id": "5659", "kind": "array", "name": "Array37", "valueType": { - "$id": "5655", + "$id": "5660", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesViolenceGraphic", "variantTypes": [ { - "$ref": "5631" + "$ref": "5636" }, { - "$ref": "943" + "$ref": "947" } ], "namespace": "OpenAI", @@ -72065,19 +72135,19 @@ ] }, { - "$ref": "5568" + "$ref": "5573" }, { - "$ref": "5572" + "$ref": "5577" }, { - "$ref": "5600" + "$ref": "5605" }, { - "$ref": "5628" + "$ref": "5633" }, { - "$id": "5656", + "$id": "5661", "kind": "model", "name": "CreateThreadAndRunRequest", "namespace": "OpenAI", @@ -72086,13 +72156,13 @@ "decorators": [], "properties": [ { - "$id": "5657", + "$id": "5662", "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": "5658", + "$id": "5663", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72112,12 +72182,12 @@ "isHttpMetadata": false }, { - "$id": "5659", + "$id": "5664", "kind": "property", "name": "thread", "serializedName": "thread", "type": { - "$id": "5660", + "$id": "5665", "kind": "model", "name": "CreateThreadRequest", "namespace": "OpenAI", @@ -72127,17 +72197,17 @@ "decorators": [], "properties": [ { - "$id": "5661", + "$id": "5666", "kind": "property", "name": "messages", "serializedName": "messages", "doc": "A list of [messages](/docs/api-reference/messages) to start the thread with.", "type": { - "$id": "5662", + "$id": "5667", "kind": "array", "name": "ArrayCreateMessageRequest", "valueType": { - "$ref": "5414" + "$ref": "5419" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -72156,16 +72226,16 @@ "isHttpMetadata": false }, { - "$id": "5663", + "$id": "5668", "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": "5664", + "$id": "5669", "kind": "nullable", "type": { - "$id": "5665", + "$id": "5670", "kind": "model", "name": "CreateThreadRequestToolResources1", "namespace": "OpenAI", @@ -72174,12 +72244,12 @@ "decorators": [], "properties": [ { - "$id": "5666", + "$id": "5671", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "5667", + "$id": "5672", "kind": "model", "name": "CreateThreadRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -72188,13 +72258,13 @@ "decorators": [], "properties": [ { - "$id": "5668", + "$id": "5673", "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": "2339" + "$ref": "2343" }, "optional": true, "readOnly": false, @@ -72225,12 +72295,12 @@ "isHttpMetadata": false }, { - "$id": "5669", + "$id": "5674", "kind": "property", "name": "file_search", "serializedName": "file_search", "type": { - "$ref": "2419" + "$ref": "2423" }, "optional": true, "readOnly": false, @@ -72263,13 +72333,13 @@ "isHttpMetadata": false }, { - "$id": "5670", + "$id": "5675", "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": "2346" + "$ref": "2350" }, "optional": true, "readOnly": false, @@ -72300,16 +72370,16 @@ "isHttpMetadata": false }, { - "$id": "5671", + "$id": "5676", "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": "5672", + "$id": "5677", "kind": "nullable", "type": { - "$ref": "944" + "$ref": "948" }, "namespace": "OpenAI" }, @@ -72327,16 +72397,16 @@ "isHttpMetadata": false }, { - "$id": "5673", + "$id": "5678", "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": "5674", + "$id": "5679", "kind": "nullable", "type": { - "$id": "5675", + "$id": "5680", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72358,16 +72428,16 @@ "isHttpMetadata": false }, { - "$id": "5676", + "$id": "5681", "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": "5677", + "$id": "5682", "kind": "nullable", "type": { - "$ref": "2304" + "$ref": "2308" }, "namespace": "OpenAI" }, @@ -72385,16 +72455,16 @@ "isHttpMetadata": false }, { - "$id": "5678", + "$id": "5683", "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": "5679", + "$id": "5684", "kind": "nullable", "type": { - "$id": "5680", + "$id": "5685", "kind": "model", "name": "CreateThreadAndRunRequestToolResources1", "namespace": "OpenAI", @@ -72403,12 +72473,12 @@ "decorators": [], "properties": [ { - "$id": "5681", + "$id": "5686", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "5682", + "$id": "5687", "kind": "model", "name": "CreateThreadAndRunRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -72417,13 +72487,13 @@ "decorators": [], "properties": [ { - "$id": "5683", + "$id": "5688", "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": "2339" + "$ref": "2343" }, "optional": true, "readOnly": false, @@ -72454,12 +72524,12 @@ "isHttpMetadata": false }, { - "$id": "5684", + "$id": "5689", "kind": "property", "name": "file_search", "serializedName": "file_search", "type": { - "$ref": "2342" + "$ref": "2346" }, "optional": true, "readOnly": false, @@ -72492,13 +72562,13 @@ "isHttpMetadata": false }, { - "$id": "5685", + "$id": "5690", "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": "2346" + "$ref": "2350" }, "optional": true, "readOnly": false, @@ -72514,16 +72584,16 @@ "isHttpMetadata": false }, { - "$id": "5686", + "$id": "5691", "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": "5687", + "$id": "5692", "kind": "nullable", "type": { - "$id": "5688", + "$id": "5693", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -72545,16 +72615,16 @@ "isHttpMetadata": false }, { - "$id": "5689", + "$id": "5694", "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": "5690", + "$id": "5695", "kind": "nullable", "type": { - "$id": "5691", + "$id": "5696", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -72576,16 +72646,16 @@ "isHttpMetadata": false }, { - "$id": "5692", + "$id": "5697", "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": "5693", + "$id": "5698", "kind": "nullable", "type": { - "$id": "5694", + "$id": "5699", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -72607,16 +72677,16 @@ "isHttpMetadata": false }, { - "$id": "5695", + "$id": "5700", "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": "5696", + "$id": "5701", "kind": "nullable", "type": { - "$id": "5697", + "$id": "5702", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72638,16 +72708,16 @@ "isHttpMetadata": false }, { - "$id": "5698", + "$id": "5703", "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": "5699", + "$id": "5704", "kind": "nullable", "type": { - "$id": "5700", + "$id": "5705", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72669,15 +72739,15 @@ "isHttpMetadata": false }, { - "$id": "5701", + "$id": "5706", "kind": "property", "name": "truncation_strategy", "serializedName": "truncation_strategy", "type": { - "$id": "5702", + "$id": "5707", "kind": "nullable", "type": { - "$id": "5703", + "$id": "5708", "kind": "model", "name": "TruncationObject", "namespace": "OpenAI", @@ -72687,13 +72757,13 @@ "decorators": [], "properties": [ { - "$id": "5704", + "$id": "5709", "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": "978" + "$ref": "982" }, "optional": false, "readOnly": false, @@ -72709,16 +72779,16 @@ "isHttpMetadata": false }, { - "$id": "5705", + "$id": "5710", "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": "5706", + "$id": "5711", "kind": "nullable", "type": { - "$id": "5707", + "$id": "5712", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72757,23 +72827,23 @@ "isHttpMetadata": false }, { - "$id": "5708", + "$id": "5713", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "5709", + "$id": "5714", "kind": "nullable", "type": { - "$id": "5710", + "$id": "5715", "kind": "union", "name": "AssistantsApiToolChoiceOption", "variantTypes": [ { - "$ref": "982" + "$ref": "986" }, { - "$id": "5711", + "$id": "5716", "kind": "model", "name": "AssistantsNamedToolChoice", "namespace": "OpenAI", @@ -72783,13 +72853,13 @@ "decorators": [], "properties": [ { - "$id": "5712", + "$id": "5717", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the tool. If type is `function`, the function name must be set", "type": { - "$ref": "987" + "$ref": "991" }, "optional": false, "readOnly": false, @@ -72805,12 +72875,12 @@ "isHttpMetadata": false }, { - "$id": "5713", + "$id": "5718", "kind": "property", "name": "function", "serializedName": "function", "type": { - "$id": "5714", + "$id": "5719", "kind": "model", "name": "AssistantsNamedToolChoiceFunction", "namespace": "OpenAI", @@ -72819,13 +72889,13 @@ "decorators": [], "properties": [ { - "$id": "5715", + "$id": "5720", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "5716", + "$id": "5721", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72881,17 +72951,17 @@ "isHttpMetadata": false }, { - "$id": "5717", + "$id": "5722", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "type": { - "$id": "5718", + "$id": "5723", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "5719", + "$id": "5724", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -72913,15 +72983,15 @@ "isHttpMetadata": false }, { - "$id": "5720", + "$id": "5725", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "5721", + "$id": "5726", "kind": "nullable", "type": { - "$ref": "2357" + "$ref": "2361" }, "namespace": "OpenAI" }, @@ -72941,31 +73011,31 @@ ] }, { - "$ref": "5660" + "$ref": "5665" }, { - "$ref": "5665" + "$ref": "5670" }, { - "$ref": "5667" + "$ref": "5672" }, { - "$ref": "5680" + "$ref": "5685" }, { - "$ref": "5682" + "$ref": "5687" }, { - "$ref": "5703" + "$ref": "5708" }, { - "$ref": "5711" + "$ref": "5716" }, { - "$ref": "5714" + "$ref": "5719" }, { - "$id": "5722", + "$id": "5727", "kind": "model", "name": "RunObject", "namespace": "OpenAI", @@ -72975,13 +73045,13 @@ "decorators": [], "properties": [ { - "$id": "5723", + "$id": "5728", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "5724", + "$id": "5729", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73001,13 +73071,13 @@ "isHttpMetadata": false }, { - "$id": "5725", + "$id": "5730", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `thread.run`.", "type": { - "$ref": "1643" + "$ref": "1647" }, "optional": false, "readOnly": false, @@ -73023,18 +73093,18 @@ "isHttpMetadata": false }, { - "$id": "5726", + "$id": "5731", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the run was created.", "type": { - "$id": "5727", + "$id": "5732", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5728", + "$id": "5733", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73057,13 +73127,13 @@ "isHttpMetadata": false }, { - "$id": "5729", + "$id": "5734", "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": "5730", + "$id": "5735", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73083,13 +73153,13 @@ "isHttpMetadata": false }, { - "$id": "5731", + "$id": "5736", "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": "5732", + "$id": "5737", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73109,13 +73179,13 @@ "isHttpMetadata": false }, { - "$id": "5733", + "$id": "5738", "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": "992" + "$ref": "996" }, "optional": false, "readOnly": false, @@ -73131,16 +73201,16 @@ "isHttpMetadata": false }, { - "$id": "5734", + "$id": "5739", "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": "5735", + "$id": "5740", "kind": "nullable", "type": { - "$id": "5736", + "$id": "5741", "kind": "model", "name": "RunObjectRequiredAction1", "namespace": "OpenAI", @@ -73149,13 +73219,13 @@ "decorators": [], "properties": [ { - "$id": "5737", + "$id": "5742", "kind": "property", "name": "type", "serializedName": "type", "doc": "For now, this is always `submit_tool_outputs`.", "type": { - "$ref": "1645" + "$ref": "1649" }, "optional": false, "readOnly": false, @@ -73171,13 +73241,13 @@ "isHttpMetadata": false }, { - "$id": "5738", + "$id": "5743", "kind": "property", "name": "submit_tool_outputs", "serializedName": "submit_tool_outputs", "doc": "Details on the tool outputs needed for this run to continue.", "type": { - "$id": "5739", + "$id": "5744", "kind": "model", "name": "RunObjectRequiredActionSubmitToolOutputs", "namespace": "OpenAI", @@ -73186,17 +73256,17 @@ "decorators": [], "properties": [ { - "$id": "5740", + "$id": "5745", "kind": "property", "name": "tool_calls", "serializedName": "tool_calls", "doc": "A list of the relevant tool calls.", "type": { - "$id": "5741", + "$id": "5746", "kind": "array", "name": "ArrayRunToolCallObject", "valueType": { - "$id": "5742", + "$id": "5747", "kind": "model", "name": "RunToolCallObject", "namespace": "OpenAI", @@ -73206,13 +73276,13 @@ "decorators": [], "properties": [ { - "$id": "5743", + "$id": "5748", "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": "5744", + "$id": "5749", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73232,13 +73302,13 @@ "isHttpMetadata": false }, { - "$id": "5745", + "$id": "5750", "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": "1647" + "$ref": "1651" }, "optional": false, "readOnly": false, @@ -73254,13 +73324,13 @@ "isHttpMetadata": false }, { - "$id": "5746", + "$id": "5751", "kind": "property", "name": "function", "serializedName": "function", "doc": "The function definition.", "type": { - "$id": "5747", + "$id": "5752", "kind": "model", "name": "RunToolCallObjectFunction", "namespace": "OpenAI", @@ -73269,13 +73339,13 @@ "decorators": [], "properties": [ { - "$id": "5748", + "$id": "5753", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function.", "type": { - "$id": "5749", + "$id": "5754", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73295,13 +73365,13 @@ "isHttpMetadata": false }, { - "$id": "5750", + "$id": "5755", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "The arguments that the model expects you to pass to the function.", "type": { - "$id": "5751", + "$id": "5756", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73386,16 +73456,16 @@ "isHttpMetadata": false }, { - "$id": "5752", + "$id": "5757", "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": "5753", + "$id": "5758", "kind": "nullable", "type": { - "$id": "5754", + "$id": "5759", "kind": "model", "name": "RunObjectLastError1", "namespace": "OpenAI", @@ -73404,13 +73474,13 @@ "decorators": [], "properties": [ { - "$id": "5755", + "$id": "5760", "kind": "property", "name": "code", "serializedName": "code", "doc": "One of `server_error`, `rate_limit_exceeded`, or `invalid_prompt`.", "type": { - "$ref": "1003" + "$ref": "1007" }, "optional": false, "readOnly": false, @@ -73426,13 +73496,13 @@ "isHttpMetadata": false }, { - "$id": "5756", + "$id": "5761", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "5757", + "$id": "5762", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73469,21 +73539,21 @@ "isHttpMetadata": false }, { - "$id": "5758", + "$id": "5763", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the run will expire.", "type": { - "$id": "5759", + "$id": "5764", "kind": "nullable", "type": { - "$id": "5760", + "$id": "5765", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5761", + "$id": "5766", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73508,21 +73578,21 @@ "isHttpMetadata": false }, { - "$id": "5762", + "$id": "5767", "kind": "property", "name": "started_at", "serializedName": "started_at", "doc": "The Unix timestamp (in seconds) for when the run was started.", "type": { - "$id": "5763", + "$id": "5768", "kind": "nullable", "type": { - "$id": "5764", + "$id": "5769", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5765", + "$id": "5770", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73547,21 +73617,21 @@ "isHttpMetadata": false }, { - "$id": "5766", + "$id": "5771", "kind": "property", "name": "cancelled_at", "serializedName": "cancelled_at", "doc": "The Unix timestamp (in seconds) for when the run was cancelled.", "type": { - "$id": "5767", + "$id": "5772", "kind": "nullable", "type": { - "$id": "5768", + "$id": "5773", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5769", + "$id": "5774", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73586,21 +73656,21 @@ "isHttpMetadata": false }, { - "$id": "5770", + "$id": "5775", "kind": "property", "name": "failed_at", "serializedName": "failed_at", "doc": "The Unix timestamp (in seconds) for when the run failed.", "type": { - "$id": "5771", + "$id": "5776", "kind": "nullable", "type": { - "$id": "5772", + "$id": "5777", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5773", + "$id": "5778", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73625,21 +73695,21 @@ "isHttpMetadata": false }, { - "$id": "5774", + "$id": "5779", "kind": "property", "name": "completed_at", "serializedName": "completed_at", "doc": "The Unix timestamp (in seconds) for when the run was completed.", "type": { - "$id": "5775", + "$id": "5780", "kind": "nullable", "type": { - "$id": "5776", + "$id": "5781", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5777", + "$id": "5782", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73664,16 +73734,16 @@ "isHttpMetadata": false }, { - "$id": "5778", + "$id": "5783", "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": "5779", + "$id": "5784", "kind": "nullable", "type": { - "$id": "5780", + "$id": "5785", "kind": "model", "name": "RunObjectIncompleteDetails1", "namespace": "OpenAI", @@ -73682,13 +73752,13 @@ "decorators": [], "properties": [ { - "$id": "5781", + "$id": "5786", "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": "1008" + "$ref": "1012" }, "optional": true, "readOnly": false, @@ -73721,13 +73791,13 @@ "isHttpMetadata": false }, { - "$id": "5782", + "$id": "5787", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model that the [assistant](/docs/api-reference/assistants) used for this run.", "type": { - "$id": "5783", + "$id": "5788", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73747,13 +73817,13 @@ "isHttpMetadata": false }, { - "$id": "5784", + "$id": "5789", "kind": "property", "name": "instructions", "serializedName": "instructions", "doc": "The instructions that the [assistant](/docs/api-reference/assistants) used for this run.", "type": { - "$id": "5785", + "$id": "5790", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73773,13 +73843,13 @@ "isHttpMetadata": false }, { - "$id": "5786", + "$id": "5791", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "The list of tools that the [assistant](/docs/api-reference/assistants) used for this run.", "type": { - "$ref": "2304" + "$ref": "2308" }, "optional": false, "readOnly": true, @@ -73795,13 +73865,13 @@ "isHttpMetadata": false }, { - "$id": "5787", + "$id": "5792", "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": "2345" + "$ref": "2349" }, "optional": false, "readOnly": true, @@ -73817,15 +73887,15 @@ "isHttpMetadata": false }, { - "$id": "5788", + "$id": "5793", "kind": "property", "name": "usage", "serializedName": "usage", "type": { - "$id": "5789", + "$id": "5794", "kind": "nullable", "type": { - "$id": "5790", + "$id": "5795", "kind": "model", "name": "RunCompletionUsage", "namespace": "OpenAI", @@ -73835,13 +73905,13 @@ "decorators": [], "properties": [ { - "$id": "5791", + "$id": "5796", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "Number of completion tokens used over the course of the run.", "type": { - "$id": "5792", + "$id": "5797", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73861,13 +73931,13 @@ "isHttpMetadata": false }, { - "$id": "5793", + "$id": "5798", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "Number of prompt tokens used over the course of the run.", "type": { - "$id": "5794", + "$id": "5799", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73887,13 +73957,13 @@ "isHttpMetadata": false }, { - "$id": "5795", + "$id": "5800", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "Total number of tokens used (prompt + completion).", "type": { - "$id": "5796", + "$id": "5801", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73930,16 +74000,16 @@ "isHttpMetadata": false }, { - "$id": "5797", + "$id": "5802", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "The sampling temperature used for this run. If not set, defaults to 1.", "type": { - "$id": "5798", + "$id": "5803", "kind": "nullable", "type": { - "$id": "5799", + "$id": "5804", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -73961,16 +74031,16 @@ "isHttpMetadata": false }, { - "$id": "5800", + "$id": "5805", "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": "5801", + "$id": "5806", "kind": "nullable", "type": { - "$id": "5802", + "$id": "5807", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -73992,16 +74062,16 @@ "isHttpMetadata": false }, { - "$id": "5803", + "$id": "5808", "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": "5804", + "$id": "5809", "kind": "nullable", "type": { - "$id": "5805", + "$id": "5810", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74023,16 +74093,16 @@ "isHttpMetadata": false }, { - "$id": "5806", + "$id": "5811", "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": "5807", + "$id": "5812", "kind": "nullable", "type": { - "$id": "5808", + "$id": "5813", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74054,15 +74124,15 @@ "isHttpMetadata": false }, { - "$id": "5809", + "$id": "5814", "kind": "property", "name": "truncation_strategy", "serializedName": "truncation_strategy", "type": { - "$id": "5810", + "$id": "5815", "kind": "nullable", "type": { - "$ref": "5703" + "$ref": "5708" }, "namespace": "OpenAI" }, @@ -74080,15 +74150,15 @@ "isHttpMetadata": false }, { - "$id": "5811", + "$id": "5816", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "5812", + "$id": "5817", "kind": "nullable", "type": { - "$ref": "5710" + "$ref": "5715" }, "namespace": "OpenAI" }, @@ -74106,17 +74176,17 @@ "isHttpMetadata": false }, { - "$id": "5813", + "$id": "5818", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "type": { - "$id": "5814", + "$id": "5819", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "5815", + "$id": "5820", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -74138,15 +74208,15 @@ "isHttpMetadata": false }, { - "$id": "5816", + "$id": "5821", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "5817", + "$id": "5822", "kind": "nullable", "type": { - "$ref": "2357" + "$ref": "2361" }, "namespace": "OpenAI" }, @@ -74166,28 +74236,28 @@ ] }, { - "$ref": "5736" + "$ref": "5741" }, { - "$ref": "5739" + "$ref": "5744" }, { - "$ref": "5742" + "$ref": "5747" }, { - "$ref": "5747" + "$ref": "5752" }, { - "$ref": "5754" + "$ref": "5759" }, { - "$ref": "5780" + "$ref": "5785" }, { - "$ref": "5790" + "$ref": "5795" }, { - "$id": "5818", + "$id": "5823", "kind": "model", "name": "CreateRunRequest", "namespace": "OpenAI", @@ -74196,13 +74266,13 @@ "decorators": [], "properties": [ { - "$id": "5819", + "$id": "5824", "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": "5820", + "$id": "5825", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74222,13 +74292,13 @@ "isHttpMetadata": false }, { - "$id": "5821", + "$id": "5826", "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": "5822", + "$id": "5827", "kind": "nullable", "type": { "$ref": "15" @@ -74249,12 +74319,12 @@ "isHttpMetadata": false }, { - "$id": "5823", + "$id": "5828", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", "type": { - "$id": "5824", + "$id": "5829", "kind": "nullable", "type": { "$ref": "53" @@ -74275,16 +74345,16 @@ "isHttpMetadata": false }, { - "$id": "5825", + "$id": "5830", "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": "5826", + "$id": "5831", "kind": "nullable", "type": { - "$id": "5827", + "$id": "5832", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74306,16 +74376,16 @@ "isHttpMetadata": false }, { - "$id": "5828", + "$id": "5833", "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": "5829", + "$id": "5834", "kind": "nullable", "type": { - "$id": "5830", + "$id": "5835", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74337,16 +74407,16 @@ "isHttpMetadata": false }, { - "$id": "5831", + "$id": "5836", "kind": "property", "name": "additional_messages", "serializedName": "additional_messages", "doc": "Adds additional messages to the thread before creating the run.", "type": { - "$id": "5832", + "$id": "5837", "kind": "nullable", "type": { - "$ref": "5662" + "$ref": "5667" }, "namespace": "OpenAI" }, @@ -74364,16 +74434,16 @@ "isHttpMetadata": false }, { - "$id": "5833", + "$id": "5838", "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": "5834", + "$id": "5839", "kind": "nullable", "type": { - "$ref": "2304" + "$ref": "2308" }, "namespace": "OpenAI" }, @@ -74391,13 +74461,13 @@ "isHttpMetadata": false }, { - "$id": "5835", + "$id": "5840", "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": "2346" + "$ref": "2350" }, "optional": true, "readOnly": false, @@ -74413,16 +74483,16 @@ "isHttpMetadata": false }, { - "$id": "5836", + "$id": "5841", "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": "5837", + "$id": "5842", "kind": "nullable", "type": { - "$id": "5838", + "$id": "5843", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -74444,16 +74514,16 @@ "isHttpMetadata": false }, { - "$id": "5839", + "$id": "5844", "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": "5840", + "$id": "5845", "kind": "nullable", "type": { - "$id": "5841", + "$id": "5846", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -74475,16 +74545,16 @@ "isHttpMetadata": false }, { - "$id": "5842", + "$id": "5847", "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": "5843", + "$id": "5848", "kind": "nullable", "type": { - "$id": "5844", + "$id": "5849", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -74506,16 +74576,16 @@ "isHttpMetadata": false }, { - "$id": "5845", + "$id": "5850", "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": "5846", + "$id": "5851", "kind": "nullable", "type": { - "$id": "5847", + "$id": "5852", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74537,16 +74607,16 @@ "isHttpMetadata": false }, { - "$id": "5848", + "$id": "5853", "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": "5849", + "$id": "5854", "kind": "nullable", "type": { - "$id": "5850", + "$id": "5855", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74568,15 +74638,15 @@ "isHttpMetadata": false }, { - "$id": "5851", + "$id": "5856", "kind": "property", "name": "truncation_strategy", "serializedName": "truncation_strategy", "type": { - "$id": "5852", + "$id": "5857", "kind": "nullable", "type": { - "$ref": "5703" + "$ref": "5708" }, "namespace": "OpenAI" }, @@ -74594,15 +74664,15 @@ "isHttpMetadata": false }, { - "$id": "5853", + "$id": "5858", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "5854", + "$id": "5859", "kind": "nullable", "type": { - "$ref": "5710" + "$ref": "5715" }, "namespace": "OpenAI" }, @@ -74620,17 +74690,17 @@ "isHttpMetadata": false }, { - "$id": "5855", + "$id": "5860", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "type": { - "$id": "5856", + "$id": "5861", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "5857", + "$id": "5862", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -74652,15 +74722,15 @@ "isHttpMetadata": false }, { - "$id": "5858", + "$id": "5863", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "5859", + "$id": "5864", "kind": "nullable", "type": { - "$ref": "2357" + "$ref": "2361" }, "namespace": "OpenAI" }, @@ -74680,7 +74750,7 @@ ] }, { - "$id": "5860", + "$id": "5865", "kind": "model", "name": "ListRunsResponse", "namespace": "OpenAI", @@ -74689,12 +74759,12 @@ "decorators": [], "properties": [ { - "$id": "5861", + "$id": "5866", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1649" + "$ref": "1653" }, "optional": false, "readOnly": false, @@ -74710,16 +74780,16 @@ "isHttpMetadata": false }, { - "$id": "5862", + "$id": "5867", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "5863", + "$id": "5868", "kind": "array", "name": "ArrayRunObject", "valueType": { - "$ref": "5722" + "$ref": "5727" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -74738,12 +74808,12 @@ "isHttpMetadata": false }, { - "$id": "5864", + "$id": "5869", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "5865", + "$id": "5870", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74763,12 +74833,12 @@ "isHttpMetadata": false }, { - "$id": "5866", + "$id": "5871", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "5867", + "$id": "5872", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74788,12 +74858,12 @@ "isHttpMetadata": false }, { - "$id": "5868", + "$id": "5873", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "5869", + "$id": "5874", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -74815,7 +74885,7 @@ ] }, { - "$id": "5870", + "$id": "5875", "kind": "model", "name": "ModifyRunRequest", "namespace": "OpenAI", @@ -74824,13 +74894,13 @@ "decorators": [], "properties": [ { - "$id": "5871", + "$id": "5876", "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": "2346" + "$ref": "2350" }, "optional": true, "readOnly": false, @@ -74848,7 +74918,7 @@ ] }, { - "$id": "5872", + "$id": "5877", "kind": "model", "name": "SubmitToolOutputsRunRequest", "namespace": "OpenAI", @@ -74857,17 +74927,17 @@ "decorators": [], "properties": [ { - "$id": "5873", + "$id": "5878", "kind": "property", "name": "tool_outputs", "serializedName": "tool_outputs", "doc": "A list of tools for which the outputs are being submitted.", "type": { - "$id": "5874", + "$id": "5879", "kind": "array", "name": "Array38", "valueType": { - "$id": "5875", + "$id": "5880", "kind": "model", "name": "SubmitToolOutputsRunRequestToolOutput", "namespace": "OpenAI", @@ -74876,13 +74946,13 @@ "decorators": [], "properties": [ { - "$id": "5876", + "$id": "5881", "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": "5877", + "$id": "5882", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74902,13 +74972,13 @@ "isHttpMetadata": false }, { - "$id": "5878", + "$id": "5883", "kind": "property", "name": "output", "serializedName": "output", "doc": "The output of the tool call to be submitted to continue the run.", "type": { - "$id": "5879", + "$id": "5884", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74946,16 +75016,16 @@ "isHttpMetadata": false }, { - "$id": "5880", + "$id": "5885", "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": "5881", + "$id": "5886", "kind": "nullable", "type": { - "$id": "5882", + "$id": "5887", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -74979,10 +75049,10 @@ ] }, { - "$ref": "5875" + "$ref": "5880" }, { - "$id": "5883", + "$id": "5888", "kind": "model", "name": "ListRunStepsResponse", "namespace": "OpenAI", @@ -74991,12 +75061,12 @@ "decorators": [], "properties": [ { - "$id": "5884", + "$id": "5889", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1651" + "$ref": "1655" }, "optional": false, "readOnly": false, @@ -75012,16 +75082,16 @@ "isHttpMetadata": false }, { - "$id": "5885", + "$id": "5890", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "5886", + "$id": "5891", "kind": "array", "name": "ArrayRunStepObject", "valueType": { - "$id": "5887", + "$id": "5892", "kind": "model", "name": "RunStepObject", "namespace": "OpenAI", @@ -75031,13 +75101,13 @@ "decorators": [], "properties": [ { - "$id": "5888", + "$id": "5893", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier of the run step, which can be referenced in API endpoints.", "type": { - "$id": "5889", + "$id": "5894", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75057,13 +75127,13 @@ "isHttpMetadata": false }, { - "$id": "5890", + "$id": "5895", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `thread.run.step`.", "type": { - "$ref": "1653" + "$ref": "1657" }, "optional": false, "readOnly": false, @@ -75079,18 +75149,18 @@ "isHttpMetadata": false }, { - "$id": "5891", + "$id": "5896", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the run step was created.", "type": { - "$id": "5892", + "$id": "5897", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5893", + "$id": "5898", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -75113,13 +75183,13 @@ "isHttpMetadata": false }, { - "$id": "5894", + "$id": "5899", "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": "5895", + "$id": "5900", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75139,13 +75209,13 @@ "isHttpMetadata": false }, { - "$id": "5896", + "$id": "5901", "kind": "property", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "5897", + "$id": "5902", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75165,13 +75235,13 @@ "isHttpMetadata": false }, { - "$id": "5898", + "$id": "5903", "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": "5899", + "$id": "5904", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75191,13 +75261,13 @@ "isHttpMetadata": false }, { - "$id": "5900", + "$id": "5905", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of run step, which can be either `message_creation` or `tool_calls`.", "type": { - "$ref": "1012" + "$ref": "1016" }, "optional": false, "readOnly": false, @@ -75213,13 +75283,13 @@ "isHttpMetadata": false }, { - "$id": "5901", + "$id": "5906", "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": "1016" + "$ref": "1020" }, "optional": false, "readOnly": false, @@ -75235,13 +75305,13 @@ "isHttpMetadata": false }, { - "$id": "5902", + "$id": "5907", "kind": "property", "name": "step_details", "serializedName": "step_details", "doc": "The details of the run step.", "type": { - "$id": "5903", + "$id": "5908", "kind": "model", "name": "RunStepObjectStepDetails", "namespace": "OpenAI", @@ -75250,13 +75320,13 @@ "doc": "Abstractly represents a run step details object.", "decorators": [], "discriminatorProperty": { - "$id": "5904", + "$id": "5909", "kind": "property", "name": "type", "serializedName": "type", "doc": "The discriminated type identifier for the details object.", "type": { - "$ref": "1023" + "$ref": "1027" }, "optional": false, "readOnly": false, @@ -75273,12 +75343,12 @@ }, "properties": [ { - "$ref": "5904" + "$ref": "5909" } ], "discriminatedSubtypes": { "message_creation": { - "$id": "5905", + "$id": "5910", "kind": "model", "name": "RunStepDetailsMessageCreationObject", "namespace": "OpenAI", @@ -75288,17 +75358,17 @@ "discriminatorValue": "message_creation", "decorators": [], "baseModel": { - "$ref": "5903" + "$ref": "5908" }, "properties": [ { - "$id": "5906", + "$id": "5911", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `message_creation`.", "type": { - "$ref": "1025" + "$ref": "1029" }, "optional": false, "readOnly": false, @@ -75314,12 +75384,12 @@ "isHttpMetadata": false }, { - "$id": "5907", + "$id": "5912", "kind": "property", "name": "message_creation", "serializedName": "message_creation", "type": { - "$id": "5908", + "$id": "5913", "kind": "model", "name": "RunStepDetailsMessageCreationObjectMessageCreation", "namespace": "OpenAI", @@ -75328,13 +75398,13 @@ "decorators": [], "properties": [ { - "$id": "5909", + "$id": "5914", "kind": "property", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message that was created by this run step.", "type": { - "$id": "5910", + "$id": "5915", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75371,7 +75441,7 @@ ] }, "tool_calls": { - "$id": "5911", + "$id": "5916", "kind": "model", "name": "RunStepDetailsToolCallsObject", "namespace": "OpenAI", @@ -75381,17 +75451,17 @@ "discriminatorValue": "tool_calls", "decorators": [], "baseModel": { - "$ref": "5903" + "$ref": "5908" }, "properties": [ { - "$id": "5912", + "$id": "5917", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `tool_calls`.", "type": { - "$ref": "1026" + "$ref": "1030" }, "optional": false, "readOnly": false, @@ -75407,17 +75477,17 @@ "isHttpMetadata": false }, { - "$id": "5913", + "$id": "5918", "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": "5914", + "$id": "5919", "kind": "array", "name": "ArrayRunStepDetailsToolCallsObjectToolCallsObject", "valueType": { - "$id": "5915", + "$id": "5920", "kind": "model", "name": "RunStepDetailsToolCallsObjectToolCallsObject", "namespace": "OpenAI", @@ -75426,13 +75496,13 @@ "doc": "Abstractly represents a run step tool call details inner object.", "decorators": [], "discriminatorProperty": { - "$id": "5916", + "$id": "5921", "kind": "property", "name": "type", "serializedName": "type", "doc": "The discriminated type identifier for the details object.", "type": { - "$ref": "1027" + "$ref": "1031" }, "optional": false, "readOnly": false, @@ -75449,16 +75519,16 @@ }, "properties": [ { - "$ref": "5916" + "$ref": "5921" }, { - "$id": "5917", + "$id": "5922", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the tool call object.", "type": { - "$id": "5918", + "$id": "5923", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75480,7 +75550,7 @@ ], "discriminatedSubtypes": { "code_interpreter": { - "$id": "5919", + "$id": "5924", "kind": "model", "name": "RunStepDetailsToolCallsCodeObject", "namespace": "OpenAI", @@ -75490,17 +75560,17 @@ "discriminatorValue": "code_interpreter", "decorators": [], "baseModel": { - "$ref": "5915" + "$ref": "5920" }, "properties": [ { - "$id": "5920", + "$id": "5925", "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": { - "$ref": "1029" + "$ref": "1033" }, "optional": false, "readOnly": false, @@ -75516,13 +75586,13 @@ "isHttpMetadata": false }, { - "$id": "5921", + "$id": "5926", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "doc": "The Code Interpreter tool call definition.", "type": { - "$id": "5922", + "$id": "5927", "kind": "model", "name": "RunStepDetailsToolCallsCodeObjectCodeInterpreter", "namespace": "OpenAI", @@ -75531,13 +75601,13 @@ "decorators": [], "properties": [ { - "$id": "5923", + "$id": "5928", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input to the Code Interpreter tool call.", "type": { - "$id": "5924", + "$id": "5929", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75557,17 +75627,17 @@ "isHttpMetadata": false }, { - "$id": "5925", + "$id": "5930", "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": "5926", + "$id": "5931", "kind": "array", "name": "ArrayRunStepDetailsToolCallsCodeObjectCodeInterpreterOutputsObject", "valueType": { - "$id": "5927", + "$id": "5932", "kind": "model", "name": "RunStepDetailsToolCallsCodeObjectCodeInterpreterOutputsObject", "namespace": "OpenAI", @@ -75576,13 +75646,13 @@ "doc": "Abstractly represents a run step tool call details code interpreter output.", "decorators": [], "discriminatorProperty": { - "$id": "5928", + "$id": "5933", "kind": "property", "name": "type", "serializedName": "type", "doc": "The discriminated type identifier for the details object.", "type": { - "$ref": "1032" + "$ref": "1036" }, "optional": false, "readOnly": false, @@ -75599,12 +75669,12 @@ }, "properties": [ { - "$ref": "5928" + "$ref": "5933" } ], "discriminatedSubtypes": { "logs": { - "$id": "5929", + "$id": "5934", "kind": "model", "name": "RunStepDetailsToolCallsCodeOutputLogsObject", "namespace": "OpenAI", @@ -75614,17 +75684,17 @@ "discriminatorValue": "logs", "decorators": [], "baseModel": { - "$ref": "5927" + "$ref": "5932" }, "properties": [ { - "$id": "5930", + "$id": "5935", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `logs`.", "type": { - "$ref": "1034" + "$ref": "1038" }, "optional": false, "readOnly": false, @@ -75640,13 +75710,13 @@ "isHttpMetadata": false }, { - "$id": "5931", + "$id": "5936", "kind": "property", "name": "logs", "serializedName": "logs", "doc": "The text output from the Code Interpreter tool call.", "type": { - "$id": "5932", + "$id": "5937", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75668,7 +75738,7 @@ ] }, "image": { - "$id": "5933", + "$id": "5938", "kind": "model", "name": "RunStepDetailsToolCallsCodeOutputImageObject", "namespace": "OpenAI", @@ -75677,17 +75747,17 @@ "discriminatorValue": "image", "decorators": [], "baseModel": { - "$ref": "5927" + "$ref": "5932" }, "properties": [ { - "$id": "5934", + "$id": "5939", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `image`.", "type": { - "$ref": "1035" + "$ref": "1039" }, "optional": false, "readOnly": false, @@ -75703,12 +75773,12 @@ "isHttpMetadata": false }, { - "$id": "5935", + "$id": "5940", "kind": "property", "name": "image", "serializedName": "image", "type": { - "$id": "5936", + "$id": "5941", "kind": "model", "name": "RunStepDetailsToolCallsCodeOutputImageObjectImage", "namespace": "OpenAI", @@ -75717,13 +75787,13 @@ "decorators": [], "properties": [ { - "$id": "5937", + "$id": "5942", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The [file](/docs/api-reference/files) ID of the image.", "type": { - "$id": "5938", + "$id": "5943", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75795,7 +75865,7 @@ ] }, "file_search": { - "$id": "5939", + "$id": "5944", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchObject", "namespace": "OpenAI", @@ -75804,17 +75874,17 @@ "discriminatorValue": "file_search", "decorators": [], "baseModel": { - "$ref": "5915" + "$ref": "5920" }, "properties": [ { - "$id": "5940", + "$id": "5945", "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": { - "$ref": "1030" + "$ref": "1034" }, "optional": false, "readOnly": false, @@ -75830,13 +75900,13 @@ "isHttpMetadata": false }, { - "$id": "5941", + "$id": "5946", "kind": "property", "name": "file_search", "serializedName": "file_search", "doc": "For now, this is always going to be an empty object.", "type": { - "$id": "5942", + "$id": "5947", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchObjectFileSearch", "namespace": "OpenAI", @@ -75845,12 +75915,12 @@ "decorators": [], "properties": [ { - "$id": "5943", + "$id": "5948", "kind": "property", "name": "ranking_options", "serializedName": "ranking_options", "type": { - "$id": "5944", + "$id": "5949", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchRankingOptionsObject", "namespace": "OpenAI", @@ -75860,7 +75930,7 @@ "decorators": [], "properties": [ { - "$id": "5945", + "$id": "5950", "kind": "property", "name": "ranker", "serializedName": "ranker", @@ -75881,13 +75951,13 @@ "isHttpMetadata": false }, { - "$id": "5946", + "$id": "5951", "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": "5947", + "$id": "5952", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -75922,17 +75992,17 @@ "isHttpMetadata": false }, { - "$id": "5948", + "$id": "5953", "kind": "property", "name": "results", "serializedName": "results", "doc": "The results of the file search.", "type": { - "$id": "5949", + "$id": "5954", "kind": "array", "name": "ArrayRunStepDetailsToolCallsFileSearchResultObject", "valueType": { - "$id": "5950", + "$id": "5955", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchResultObject", "namespace": "OpenAI", @@ -75942,13 +76012,13 @@ "decorators": [], "properties": [ { - "$id": "5951", + "$id": "5956", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file that result was found in.", "type": { - "$id": "5952", + "$id": "5957", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75968,13 +76038,13 @@ "isHttpMetadata": false }, { - "$id": "5953", + "$id": "5958", "kind": "property", "name": "file_name", "serializedName": "file_name", "doc": "The name of the file that result was found in.", "type": { - "$id": "5954", + "$id": "5959", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75994,13 +76064,13 @@ "isHttpMetadata": false }, { - "$id": "5955", + "$id": "5960", "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": "5956", + "$id": "5961", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -76020,17 +76090,17 @@ "isHttpMetadata": false }, { - "$id": "5957", + "$id": "5962", "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": "5958", + "$id": "5963", "kind": "array", "name": "Array39", "valueType": { - "$id": "5959", + "$id": "5964", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchResultObjectContent", "namespace": "OpenAI", @@ -76039,21 +76109,21 @@ "decorators": [], "properties": [ { - "$id": "5960", + "$id": "5965", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content.", "type": { - "$id": "5961", + "$id": "5966", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "1037" + "$ref": "1041" }, "enumType": { - "$ref": "1036" + "$ref": "1040" }, "decorators": [] }, @@ -76071,13 +76141,13 @@ "isHttpMetadata": false }, { - "$id": "5962", + "$id": "5967", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content of the file.", "type": { - "$id": "5963", + "$id": "5968", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76150,7 +76220,7 @@ ] }, "function": { - "$id": "5964", + "$id": "5969", "kind": "model", "name": "RunStepDetailsToolCallsFunctionObject", "namespace": "OpenAI", @@ -76159,17 +76229,17 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "5915" + "$ref": "5920" }, "properties": [ { - "$id": "5965", + "$id": "5970", "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": { - "$ref": "1031" + "$ref": "1035" }, "optional": false, "readOnly": false, @@ -76185,13 +76255,13 @@ "isHttpMetadata": false }, { - "$id": "5966", + "$id": "5971", "kind": "property", "name": "function", "serializedName": "function", "doc": "The definition of the function that was called.", "type": { - "$id": "5967", + "$id": "5972", "kind": "model", "name": "RunStepDetailsToolCallsFunctionObjectFunction", "namespace": "OpenAI", @@ -76200,13 +76270,13 @@ "decorators": [], "properties": [ { - "$id": "5968", + "$id": "5973", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function.", "type": { - "$id": "5969", + "$id": "5974", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76226,13 +76296,13 @@ "isHttpMetadata": false }, { - "$id": "5970", + "$id": "5975", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "The arguments passed to the function.", "type": { - "$id": "5971", + "$id": "5976", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76252,16 +76322,16 @@ "isHttpMetadata": false }, { - "$id": "5972", + "$id": "5977", "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": "5973", + "$id": "5978", "kind": "nullable", "type": { - "$id": "5974", + "$id": "5979", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76335,16 +76405,16 @@ "isHttpMetadata": false }, { - "$id": "5975", + "$id": "5980", "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": "5976", + "$id": "5981", "kind": "nullable", "type": { - "$id": "5977", + "$id": "5982", "kind": "model", "name": "RunStepObjectLastError1", "namespace": "OpenAI", @@ -76353,13 +76423,13 @@ "decorators": [], "properties": [ { - "$id": "5978", + "$id": "5983", "kind": "property", "name": "code", "serializedName": "code", "doc": "One of `server_error` or `rate_limit_exceeded`.", "type": { - "$ref": "1039" + "$ref": "1043" }, "optional": false, "readOnly": false, @@ -76375,13 +76445,13 @@ "isHttpMetadata": false }, { - "$id": "5979", + "$id": "5984", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "5980", + "$id": "5985", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76418,21 +76488,21 @@ "isHttpMetadata": false }, { - "$id": "5981", + "$id": "5986", "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": "5982", + "$id": "5987", "kind": "nullable", "type": { - "$id": "5983", + "$id": "5988", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5984", + "$id": "5989", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76457,21 +76527,21 @@ "isHttpMetadata": false }, { - "$id": "5985", + "$id": "5990", "kind": "property", "name": "cancelled_at", "serializedName": "cancelled_at", "doc": "The Unix timestamp (in seconds) for when the run step was cancelled.", "type": { - "$id": "5986", + "$id": "5991", "kind": "nullable", "type": { - "$id": "5987", + "$id": "5992", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5988", + "$id": "5993", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76496,21 +76566,21 @@ "isHttpMetadata": false }, { - "$id": "5989", + "$id": "5994", "kind": "property", "name": "failed_at", "serializedName": "failed_at", "doc": "The Unix timestamp (in seconds) for when the run step failed.", "type": { - "$id": "5990", + "$id": "5995", "kind": "nullable", "type": { - "$id": "5991", + "$id": "5996", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5992", + "$id": "5997", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76535,21 +76605,21 @@ "isHttpMetadata": false }, { - "$id": "5993", + "$id": "5998", "kind": "property", "name": "completed_at", "serializedName": "completed_at", "doc": "The Unix timestamp (in seconds) for when the run step completed.", "type": { - "$id": "5994", + "$id": "5999", "kind": "nullable", "type": { - "$id": "5995", + "$id": "6000", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5996", + "$id": "6001", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76574,13 +76644,13 @@ "isHttpMetadata": false }, { - "$id": "5997", + "$id": "6002", "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": "2345" + "$ref": "2349" }, "optional": false, "readOnly": true, @@ -76596,15 +76666,15 @@ "isHttpMetadata": false }, { - "$id": "5998", + "$id": "6003", "kind": "property", "name": "usage", "serializedName": "usage", "type": { - "$id": "5999", + "$id": "6004", "kind": "nullable", "type": { - "$id": "6000", + "$id": "6005", "kind": "model", "name": "RunStepCompletionUsage", "namespace": "OpenAI", @@ -76614,13 +76684,13 @@ "decorators": [], "properties": [ { - "$id": "6001", + "$id": "6006", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "Number of completion tokens used over the course of the run step.", "type": { - "$id": "6002", + "$id": "6007", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76640,13 +76710,13 @@ "isHttpMetadata": false }, { - "$id": "6003", + "$id": "6008", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "Number of prompt tokens used over the course of the run step.", "type": { - "$id": "6004", + "$id": "6009", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76666,13 +76736,13 @@ "isHttpMetadata": false }, { - "$id": "6005", + "$id": "6010", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "Total number of tokens used (prompt + completion).", "type": { - "$id": "6006", + "$id": "6011", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76727,12 +76797,12 @@ "isHttpMetadata": false }, { - "$id": "6007", + "$id": "6012", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6008", + "$id": "6013", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76752,12 +76822,12 @@ "isHttpMetadata": false }, { - "$id": "6009", + "$id": "6014", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6010", + "$id": "6015", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76777,12 +76847,12 @@ "isHttpMetadata": false }, { - "$id": "6011", + "$id": "6016", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6012", + "$id": "6017", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -76804,70 +76874,70 @@ ] }, { - "$ref": "5887" - }, - { - "$ref": "5903" + "$ref": "5892" }, { - "$ref": "5905" + "$ref": "5908" }, { - "$ref": "5908" + "$ref": "5910" }, { - "$ref": "5911" + "$ref": "5913" }, { - "$ref": "5915" + "$ref": "5916" }, { - "$ref": "5919" + "$ref": "5920" }, { - "$ref": "5922" + "$ref": "5924" }, { "$ref": "5927" }, { - "$ref": "5929" + "$ref": "5932" }, { - "$ref": "5933" + "$ref": "5934" }, { - "$ref": "5936" + "$ref": "5938" }, { - "$ref": "5939" + "$ref": "5941" }, { - "$ref": "5942" + "$ref": "5944" }, { - "$ref": "5944" + "$ref": "5947" }, { - "$ref": "5950" + "$ref": "5949" }, { - "$ref": "5959" + "$ref": "5955" }, { "$ref": "5964" }, { - "$ref": "5967" + "$ref": "5969" + }, + { + "$ref": "5972" }, { - "$ref": "5977" + "$ref": "5982" }, { - "$ref": "6000" + "$ref": "6005" }, { - "$id": "6013", + "$id": "6018", "kind": "model", "name": "ThreadObject", "namespace": "OpenAI", @@ -76877,13 +76947,13 @@ "decorators": [], "properties": [ { - "$id": "6014", + "$id": "6019", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6015", + "$id": "6020", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76903,13 +76973,13 @@ "isHttpMetadata": false }, { - "$id": "6016", + "$id": "6021", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `thread`.", "type": { - "$ref": "1655" + "$ref": "1659" }, "optional": false, "readOnly": false, @@ -76925,18 +76995,18 @@ "isHttpMetadata": false }, { - "$id": "6017", + "$id": "6022", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the thread was created.", "type": { - "$id": "6018", + "$id": "6023", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6019", + "$id": "6024", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76959,16 +77029,16 @@ "isHttpMetadata": false }, { - "$id": "6020", + "$id": "6025", "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": "6021", + "$id": "6026", "kind": "nullable", "type": { - "$id": "6022", + "$id": "6027", "kind": "model", "name": "ThreadObjectToolResources1", "namespace": "OpenAI", @@ -76977,12 +77047,12 @@ "decorators": [], "properties": [ { - "$id": "6023", + "$id": "6028", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "6024", + "$id": "6029", "kind": "model", "name": "ThreadObjectToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -76991,13 +77061,13 @@ "decorators": [], "properties": [ { - "$id": "6025", + "$id": "6030", "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": "2339" + "$ref": "2343" }, "optional": true, "readOnly": false, @@ -77028,12 +77098,12 @@ "isHttpMetadata": false }, { - "$id": "6026", + "$id": "6031", "kind": "property", "name": "file_search", "serializedName": "file_search", "type": { - "$id": "6027", + "$id": "6032", "kind": "model", "name": "ThreadObjectToolResourcesFileSearch", "namespace": "OpenAI", @@ -77042,13 +77112,13 @@ "decorators": [], "properties": [ { - "$id": "6028", + "$id": "6033", "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": "2339" + "$ref": "2343" }, "optional": true, "readOnly": false, @@ -77096,13 +77166,13 @@ "isHttpMetadata": false }, { - "$id": "6029", + "$id": "6034", "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": "2345" + "$ref": "2349" }, "optional": false, "readOnly": true, @@ -77120,16 +77190,16 @@ ] }, { - "$ref": "6022" + "$ref": "6027" }, { - "$ref": "6024" + "$ref": "6029" }, { - "$ref": "6027" + "$ref": "6032" }, { - "$id": "6030", + "$id": "6035", "kind": "model", "name": "ModifyThreadRequest", "namespace": "OpenAI", @@ -77138,16 +77208,16 @@ "decorators": [], "properties": [ { - "$id": "6031", + "$id": "6036", "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": "6032", + "$id": "6037", "kind": "nullable", "type": { - "$id": "6033", + "$id": "6038", "kind": "model", "name": "ModifyThreadRequestToolResources1", "namespace": "OpenAI", @@ -77156,12 +77226,12 @@ "decorators": [], "properties": [ { - "$id": "6034", + "$id": "6039", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "6035", + "$id": "6040", "kind": "model", "name": "ModifyThreadRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -77170,13 +77240,13 @@ "decorators": [], "properties": [ { - "$id": "6036", + "$id": "6041", "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": "2339" + "$ref": "2343" }, "optional": true, "readOnly": false, @@ -77207,12 +77277,12 @@ "isHttpMetadata": false }, { - "$id": "6037", + "$id": "6042", "kind": "property", "name": "file_search", "serializedName": "file_search", "type": { - "$ref": "2342" + "$ref": "2346" }, "optional": true, "readOnly": false, @@ -77245,13 +77315,13 @@ "isHttpMetadata": false }, { - "$id": "6038", + "$id": "6043", "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": "2346" + "$ref": "2350" }, "optional": true, "readOnly": false, @@ -77269,13 +77339,13 @@ ] }, { - "$ref": "6033" + "$ref": "6038" }, { - "$ref": "6035" + "$ref": "6040" }, { - "$id": "6039", + "$id": "6044", "kind": "model", "name": "DeleteThreadResponse", "namespace": "OpenAI", @@ -77284,12 +77354,12 @@ "decorators": [], "properties": [ { - "$id": "6040", + "$id": "6045", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6041", + "$id": "6046", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77309,12 +77379,12 @@ "isHttpMetadata": false }, { - "$id": "6042", + "$id": "6047", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6043", + "$id": "6048", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -77334,12 +77404,12 @@ "isHttpMetadata": false }, { - "$id": "6044", + "$id": "6049", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1657" + "$ref": "1661" }, "optional": false, "readOnly": false, @@ -77357,7 +77427,7 @@ ] }, { - "$id": "6045", + "$id": "6050", "kind": "model", "name": "ListVectorStoresResponse", "namespace": "OpenAI", @@ -77366,12 +77436,12 @@ "decorators": [], "properties": [ { - "$id": "6046", + "$id": "6051", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1659" + "$ref": "1663" }, "optional": false, "readOnly": false, @@ -77387,16 +77457,16 @@ "isHttpMetadata": false }, { - "$id": "6047", + "$id": "6052", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6048", + "$id": "6053", "kind": "array", "name": "ArrayVectorStoreObject", "valueType": { - "$id": "6049", + "$id": "6054", "kind": "model", "name": "VectorStoreObject", "namespace": "OpenAI", @@ -77406,13 +77476,13 @@ "decorators": [], "properties": [ { - "$id": "6050", + "$id": "6055", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6051", + "$id": "6056", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77432,13 +77502,13 @@ "isHttpMetadata": false }, { - "$id": "6052", + "$id": "6057", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `vector_store`.", "type": { - "$ref": "1661" + "$ref": "1665" }, "optional": false, "readOnly": false, @@ -77454,18 +77524,18 @@ "isHttpMetadata": false }, { - "$id": "6053", + "$id": "6058", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the vector store was created.", "type": { - "$id": "6054", + "$id": "6059", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6055", + "$id": "6060", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -77488,13 +77558,13 @@ "isHttpMetadata": false }, { - "$id": "6056", + "$id": "6061", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the vector store.", "type": { - "$id": "6057", + "$id": "6062", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77514,13 +77584,13 @@ "isHttpMetadata": false }, { - "$id": "6058", + "$id": "6063", "kind": "property", "name": "usage_bytes", "serializedName": "usage_bytes", "doc": "The total number of bytes used by the files in the vector store.", "type": { - "$id": "6059", + "$id": "6064", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -77540,12 +77610,12 @@ "isHttpMetadata": false }, { - "$id": "6060", + "$id": "6065", "kind": "property", "name": "file_counts", "serializedName": "file_counts", "type": { - "$id": "6061", + "$id": "6066", "kind": "model", "name": "VectorStoreObjectFileCounts", "namespace": "OpenAI", @@ -77554,13 +77624,13 @@ "decorators": [], "properties": [ { - "$id": "6062", + "$id": "6067", "kind": "property", "name": "in_progress", "serializedName": "in_progress", "doc": "The number of files that are currently being processed.", "type": { - "$id": "6063", + "$id": "6068", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -77580,13 +77650,13 @@ "isHttpMetadata": false }, { - "$id": "6064", + "$id": "6069", "kind": "property", "name": "completed", "serializedName": "completed", "doc": "The number of files that have been successfully processed.", "type": { - "$id": "6065", + "$id": "6070", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -77606,13 +77676,13 @@ "isHttpMetadata": false }, { - "$id": "6066", + "$id": "6071", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "The number of files that have failed to process.", "type": { - "$id": "6067", + "$id": "6072", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -77632,13 +77702,13 @@ "isHttpMetadata": false }, { - "$id": "6068", + "$id": "6073", "kind": "property", "name": "cancelled", "serializedName": "cancelled", "doc": "The number of files that were cancelled.", "type": { - "$id": "6069", + "$id": "6074", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -77658,13 +77728,13 @@ "isHttpMetadata": false }, { - "$id": "6070", + "$id": "6075", "kind": "property", "name": "total", "serializedName": "total", "doc": "The total number of files.", "type": { - "$id": "6071", + "$id": "6076", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -77699,13 +77769,13 @@ "isHttpMetadata": false }, { - "$id": "6072", + "$id": "6077", "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": "1043" + "$ref": "1047" }, "optional": false, "readOnly": false, @@ -77721,12 +77791,12 @@ "isHttpMetadata": false }, { - "$id": "6073", + "$id": "6078", "kind": "property", "name": "expires_after", "serializedName": "expires_after", "type": { - "$id": "6074", + "$id": "6079", "kind": "model", "name": "VectorStoreExpirationAfter", "namespace": "OpenAI", @@ -77736,21 +77806,21 @@ "decorators": [], "properties": [ { - "$id": "6075", + "$id": "6080", "kind": "property", "name": "anchor", "serializedName": "anchor", "doc": "Anchor timestamp after which the expiration policy applies. Supported anchors: `last_active_at`.", "type": { - "$id": "6076", + "$id": "6081", "kind": "enumvalue", "name": "last_active_at", "value": "last_active_at", "valueType": { - "$ref": "1049" + "$ref": "1053" }, "enumType": { - "$ref": "1048" + "$ref": "1052" }, "decorators": [] }, @@ -77768,13 +77838,13 @@ "isHttpMetadata": false }, { - "$id": "6077", + "$id": "6082", "kind": "property", "name": "days", "serializedName": "days", "doc": "The number of days after the anchor time that the vector store will expire.", "type": { - "$id": "6078", + "$id": "6083", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -77809,21 +77879,21 @@ "isHttpMetadata": false }, { - "$id": "6079", + "$id": "6084", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the vector store will expire.", "type": { - "$id": "6080", + "$id": "6085", "kind": "nullable", "type": { - "$id": "6081", + "$id": "6086", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6082", + "$id": "6087", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -77848,21 +77918,21 @@ "isHttpMetadata": false }, { - "$id": "6083", + "$id": "6088", "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": "6084", + "$id": "6089", "kind": "nullable", "type": { - "$id": "6085", + "$id": "6090", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6086", + "$id": "6091", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -77887,13 +77957,13 @@ "isHttpMetadata": false }, { - "$id": "6087", + "$id": "6092", "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": "2345" + "$ref": "2349" }, "optional": false, "readOnly": true, @@ -77927,12 +77997,12 @@ "isHttpMetadata": false }, { - "$id": "6088", + "$id": "6093", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6089", + "$id": "6094", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77952,12 +78022,12 @@ "isHttpMetadata": false }, { - "$id": "6090", + "$id": "6095", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6091", + "$id": "6096", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77977,12 +78047,12 @@ "isHttpMetadata": false }, { - "$id": "6092", + "$id": "6097", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6093", + "$id": "6098", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78004,16 +78074,16 @@ ] }, { - "$ref": "6049" + "$ref": "6054" }, { - "$ref": "6061" + "$ref": "6066" }, { - "$ref": "6074" + "$ref": "6079" }, { - "$id": "6094", + "$id": "6099", "kind": "model", "name": "CreateVectorStoreRequest", "namespace": "OpenAI", @@ -78022,13 +78092,13 @@ "decorators": [], "properties": [ { - "$id": "6095", + "$id": "6100", "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": "2339" + "$ref": "2343" }, "optional": true, "readOnly": false, @@ -78044,13 +78114,13 @@ "isHttpMetadata": false }, { - "$id": "6096", + "$id": "6101", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the vector store.", "type": { - "$id": "6097", + "$id": "6102", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78070,12 +78140,12 @@ "isHttpMetadata": false }, { - "$id": "6098", + "$id": "6103", "kind": "property", "name": "expires_after", "serializedName": "expires_after", "type": { - "$ref": "6074" + "$ref": "6079" }, "optional": true, "readOnly": false, @@ -78091,21 +78161,21 @@ "isHttpMetadata": false }, { - "$id": "6099", + "$id": "6104", "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": "6100", + "$id": "6105", "kind": "union", "name": "CreateVectorStoreRequestChunkingStrategy", "variantTypes": [ { - "$ref": "2428" + "$ref": "2432" }, { - "$ref": "2430" + "$ref": "2434" } ], "namespace": "OpenAI", @@ -78125,13 +78195,13 @@ "isHttpMetadata": false }, { - "$id": "6101", + "$id": "6106", "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": "2346" + "$ref": "2350" }, "optional": true, "readOnly": false, @@ -78149,7 +78219,7 @@ ] }, { - "$id": "6102", + "$id": "6107", "kind": "model", "name": "UpdateVectorStoreRequest", "namespace": "OpenAI", @@ -78158,16 +78228,16 @@ "decorators": [], "properties": [ { - "$id": "6103", + "$id": "6108", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the vector store.", "type": { - "$id": "6104", + "$id": "6109", "kind": "nullable", "type": { - "$id": "6105", + "$id": "6110", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78189,15 +78259,15 @@ "isHttpMetadata": false }, { - "$id": "6106", + "$id": "6111", "kind": "property", "name": "expires_after", "serializedName": "expires_after", "type": { - "$id": "6107", + "$id": "6112", "kind": "nullable", "type": { - "$ref": "6074" + "$ref": "6079" }, "namespace": "OpenAI" }, @@ -78215,13 +78285,13 @@ "isHttpMetadata": false }, { - "$id": "6108", + "$id": "6113", "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": "2346" + "$ref": "2350" }, "optional": true, "readOnly": false, @@ -78239,7 +78309,7 @@ ] }, { - "$id": "6109", + "$id": "6114", "kind": "model", "name": "DeleteVectorStoreResponse", "namespace": "OpenAI", @@ -78248,12 +78318,12 @@ "decorators": [], "properties": [ { - "$id": "6110", + "$id": "6115", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6111", + "$id": "6116", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78273,12 +78343,12 @@ "isHttpMetadata": false }, { - "$id": "6112", + "$id": "6117", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6113", + "$id": "6118", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78298,12 +78368,12 @@ "isHttpMetadata": false }, { - "$id": "6114", + "$id": "6119", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1663" + "$ref": "1667" }, "optional": false, "readOnly": false, @@ -78321,7 +78391,7 @@ ] }, { - "$id": "6115", + "$id": "6120", "kind": "model", "name": "CreateVectorStoreFileBatchRequest", "namespace": "OpenAI", @@ -78330,13 +78400,13 @@ "decorators": [], "properties": [ { - "$id": "6116", + "$id": "6121", "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": "2339" + "$ref": "2343" }, "optional": false, "readOnly": false, @@ -78352,12 +78422,12 @@ "isHttpMetadata": false }, { - "$id": "6117", + "$id": "6122", "kind": "property", "name": "chunking_strategy", "serializedName": "chunking_strategy", "type": { - "$ref": "2426" + "$ref": "2430" }, "optional": true, "readOnly": false, @@ -78373,15 +78443,15 @@ "isHttpMetadata": false }, { - "$id": "6118", + "$id": "6123", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6119", + "$id": "6124", "kind": "nullable", "type": { - "$ref": "3763" + "$ref": "3767" }, "namespace": "OpenAI" }, @@ -78401,7 +78471,7 @@ ] }, { - "$id": "6120", + "$id": "6125", "kind": "model", "name": "VectorStoreFileBatchObject", "namespace": "OpenAI", @@ -78411,13 +78481,13 @@ "decorators": [], "properties": [ { - "$id": "6121", + "$id": "6126", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6122", + "$id": "6127", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78437,13 +78507,13 @@ "isHttpMetadata": false }, { - "$id": "6123", + "$id": "6128", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `vector_store.file_batch`.", "type": { - "$ref": "1665" + "$ref": "1669" }, "optional": false, "readOnly": false, @@ -78459,18 +78529,18 @@ "isHttpMetadata": false }, { - "$id": "6124", + "$id": "6129", "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": "6125", + "$id": "6130", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6126", + "$id": "6131", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -78493,13 +78563,13 @@ "isHttpMetadata": false }, { - "$id": "6127", + "$id": "6132", "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": "6128", + "$id": "6133", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78519,13 +78589,13 @@ "isHttpMetadata": false }, { - "$id": "6129", + "$id": "6134", "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": "1051" + "$ref": "1055" }, "optional": false, "readOnly": false, @@ -78541,12 +78611,12 @@ "isHttpMetadata": false }, { - "$id": "6130", + "$id": "6135", "kind": "property", "name": "file_counts", "serializedName": "file_counts", "type": { - "$id": "6131", + "$id": "6136", "kind": "model", "name": "VectorStoreFileBatchObjectFileCounts", "namespace": "OpenAI", @@ -78555,13 +78625,13 @@ "decorators": [], "properties": [ { - "$id": "6132", + "$id": "6137", "kind": "property", "name": "in_progress", "serializedName": "in_progress", "doc": "The number of files that are currently being processed.", "type": { - "$id": "6133", + "$id": "6138", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -78581,13 +78651,13 @@ "isHttpMetadata": false }, { - "$id": "6134", + "$id": "6139", "kind": "property", "name": "completed", "serializedName": "completed", "doc": "The number of files that have been processed.", "type": { - "$id": "6135", + "$id": "6140", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -78607,13 +78677,13 @@ "isHttpMetadata": false }, { - "$id": "6136", + "$id": "6141", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "The number of files that have failed to process.", "type": { - "$id": "6137", + "$id": "6142", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -78633,13 +78703,13 @@ "isHttpMetadata": false }, { - "$id": "6138", + "$id": "6143", "kind": "property", "name": "cancelled", "serializedName": "cancelled", "doc": "The number of files that where cancelled.", "type": { - "$id": "6139", + "$id": "6144", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -78659,13 +78729,13 @@ "isHttpMetadata": false }, { - "$id": "6140", + "$id": "6145", "kind": "property", "name": "total", "serializedName": "total", "doc": "The total number of files.", "type": { - "$id": "6141", + "$id": "6146", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -78702,10 +78772,10 @@ ] }, { - "$ref": "6131" + "$ref": "6136" }, { - "$id": "6142", + "$id": "6147", "kind": "model", "name": "ListVectorStoreFilesResponse", "namespace": "OpenAI", @@ -78714,12 +78784,12 @@ "decorators": [], "properties": [ { - "$id": "6143", + "$id": "6148", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1667" + "$ref": "1671" }, "optional": false, "readOnly": false, @@ -78735,16 +78805,16 @@ "isHttpMetadata": false }, { - "$id": "6144", + "$id": "6149", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6145", + "$id": "6150", "kind": "array", "name": "ArrayVectorStoreFileObject", "valueType": { - "$id": "6146", + "$id": "6151", "kind": "model", "name": "VectorStoreFileObject", "namespace": "OpenAI", @@ -78754,13 +78824,13 @@ "decorators": [], "properties": [ { - "$id": "6147", + "$id": "6152", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6148", + "$id": "6153", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78780,13 +78850,13 @@ "isHttpMetadata": false }, { - "$id": "6149", + "$id": "6154", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `vector_store.file`.", "type": { - "$ref": "1669" + "$ref": "1673" }, "optional": false, "readOnly": false, @@ -78802,13 +78872,13 @@ "isHttpMetadata": false }, { - "$id": "6150", + "$id": "6155", "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": "6151", + "$id": "6156", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -78828,18 +78898,18 @@ "isHttpMetadata": false }, { - "$id": "6152", + "$id": "6157", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the vector store file was created.", "type": { - "$id": "6153", + "$id": "6158", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6154", + "$id": "6159", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -78862,13 +78932,13 @@ "isHttpMetadata": false }, { - "$id": "6155", + "$id": "6160", "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": "6156", + "$id": "6161", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78888,13 +78958,13 @@ "isHttpMetadata": false }, { - "$id": "6157", + "$id": "6162", "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": "1057" + "$ref": "1061" }, "optional": false, "readOnly": false, @@ -78910,16 +78980,16 @@ "isHttpMetadata": false }, { - "$id": "6158", + "$id": "6163", "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": "6159", + "$id": "6164", "kind": "nullable", "type": { - "$id": "6160", + "$id": "6165", "kind": "model", "name": "VectorStoreFileObjectLastError1", "namespace": "OpenAI", @@ -78928,13 +78998,13 @@ "decorators": [], "properties": [ { - "$id": "6161", + "$id": "6166", "kind": "property", "name": "code", "serializedName": "code", "doc": "One of `server_error` or `rate_limit_exceeded`.", "type": { - "$ref": "1063" + "$ref": "1067" }, "optional": false, "readOnly": false, @@ -78950,13 +79020,13 @@ "isHttpMetadata": false }, { - "$id": "6162", + "$id": "6167", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "6163", + "$id": "6168", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78993,13 +79063,13 @@ "isHttpMetadata": false }, { - "$id": "6164", + "$id": "6169", "kind": "property", "name": "chunking_strategy", "serializedName": "chunking_strategy", "doc": "The strategy used to chunk the file.", "type": { - "$id": "6165", + "$id": "6170", "kind": "model", "name": "ChunkingStrategyResponseParam", "namespace": "OpenAI", @@ -79007,12 +79077,12 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "6166", + "$id": "6171", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1068" + "$ref": "1072" }, "optional": false, "readOnly": false, @@ -79029,12 +79099,12 @@ }, "properties": [ { - "$ref": "6166" + "$ref": "6171" } ], "discriminatedSubtypes": { "other": { - "$id": "6167", + "$id": "6172", "kind": "model", "name": "OtherChunkingStrategyResponseParam", "namespace": "OpenAI", @@ -79044,17 +79114,17 @@ "discriminatorValue": "other", "decorators": [], "baseModel": { - "$ref": "6165" + "$ref": "6170" }, "properties": [ { - "$id": "6168", + "$id": "6173", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `other`.", "type": { - "$ref": "1071" + "$ref": "1075" }, "optional": false, "readOnly": false, @@ -79072,7 +79142,7 @@ ] }, "static": { - "$id": "6169", + "$id": "6174", "kind": "model", "name": "StaticChunkingStrategyResponseParam", "namespace": "OpenAI", @@ -79081,17 +79151,17 @@ "discriminatorValue": "static", "decorators": [], "baseModel": { - "$ref": "6165" + "$ref": "6170" }, "properties": [ { - "$id": "6170", + "$id": "6175", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `static`.", "type": { - "$ref": "1070" + "$ref": "1074" }, "optional": false, "readOnly": false, @@ -79107,12 +79177,12 @@ "isHttpMetadata": false }, { - "$id": "6171", + "$id": "6176", "kind": "property", "name": "static", "serializedName": "static", "type": { - "$ref": "2433" + "$ref": "2437" }, "optional": false, "readOnly": false, @@ -79145,15 +79215,15 @@ "isHttpMetadata": false }, { - "$id": "6172", + "$id": "6177", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6173", + "$id": "6178", "kind": "nullable", "type": { - "$ref": "3763" + "$ref": "3767" }, "namespace": "OpenAI" }, @@ -79189,12 +79259,12 @@ "isHttpMetadata": false }, { - "$id": "6174", + "$id": "6179", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6175", + "$id": "6180", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79214,12 +79284,12 @@ "isHttpMetadata": false }, { - "$id": "6176", + "$id": "6181", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6177", + "$id": "6182", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79239,12 +79309,12 @@ "isHttpMetadata": false }, { - "$id": "6178", + "$id": "6183", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6179", + "$id": "6184", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79266,22 +79336,22 @@ ] }, { - "$ref": "6146" + "$ref": "6151" }, { - "$ref": "6160" + "$ref": "6165" }, { - "$ref": "6165" + "$ref": "6170" }, { - "$ref": "6167" + "$ref": "6172" }, { - "$ref": "6169" + "$ref": "6174" }, { - "$id": "6180", + "$id": "6185", "kind": "model", "name": "CreateVectorStoreFileRequest", "namespace": "OpenAI", @@ -79290,13 +79360,13 @@ "decorators": [], "properties": [ { - "$id": "6181", + "$id": "6186", "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": "6182", + "$id": "6187", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79316,12 +79386,12 @@ "isHttpMetadata": false }, { - "$id": "6183", + "$id": "6188", "kind": "property", "name": "chunking_strategy", "serializedName": "chunking_strategy", "type": { - "$ref": "2426" + "$ref": "2430" }, "optional": true, "readOnly": false, @@ -79337,15 +79407,15 @@ "isHttpMetadata": false }, { - "$id": "6184", + "$id": "6189", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6185", + "$id": "6190", "kind": "nullable", "type": { - "$ref": "3763" + "$ref": "3767" }, "namespace": "OpenAI" }, @@ -79365,7 +79435,7 @@ ] }, { - "$id": "6186", + "$id": "6191", "kind": "model", "name": "DeleteVectorStoreFileResponse", "namespace": "OpenAI", @@ -79374,12 +79444,12 @@ "decorators": [], "properties": [ { - "$id": "6187", + "$id": "6192", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6188", + "$id": "6193", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79399,12 +79469,12 @@ "isHttpMetadata": false }, { - "$id": "6189", + "$id": "6194", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6190", + "$id": "6195", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79424,12 +79494,12 @@ "isHttpMetadata": false }, { - "$id": "6191", + "$id": "6196", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1671" + "$ref": "1675" }, "optional": false, "readOnly": false, @@ -79447,7 +79517,7 @@ ] }, { - "$id": "6192", + "$id": "6197", "kind": "model", "name": "UpdateVectorStoreFileAttributesRequest", "namespace": "OpenAI", @@ -79456,15 +79526,15 @@ "decorators": [], "properties": [ { - "$id": "6193", + "$id": "6198", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6194", + "$id": "6199", "kind": "nullable", "type": { - "$ref": "3763" + "$ref": "3767" }, "namespace": "OpenAI" }, @@ -79484,7 +79554,7 @@ ] }, { - "$id": "6195", + "$id": "6200", "kind": "model", "name": "VectorStoreFileContentResponse", "namespace": "OpenAI", @@ -79494,13 +79564,13 @@ "decorators": [], "properties": [ { - "$id": "6196", + "$id": "6201", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `vector_store.file_content.page`", "type": { - "$ref": "1673" + "$ref": "1677" }, "optional": false, "readOnly": false, @@ -79516,17 +79586,17 @@ "isHttpMetadata": false }, { - "$id": "6197", + "$id": "6202", "kind": "property", "name": "data", "serializedName": "data", "doc": "Parsed content of the file.", "type": { - "$id": "6198", + "$id": "6203", "kind": "array", "name": "Array40", "valueType": { - "$id": "6199", + "$id": "6204", "kind": "model", "name": "VectorStoreFileContentResponseDatum", "namespace": "OpenAI", @@ -79535,13 +79605,13 @@ "decorators": [], "properties": [ { - "$id": "6200", + "$id": "6205", "kind": "property", "name": "type", "serializedName": "type", "doc": "The content type (currently only `\"text\"`)", "type": { - "$id": "6201", + "$id": "6206", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79561,13 +79631,13 @@ "isHttpMetadata": false }, { - "$id": "6202", + "$id": "6207", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content", "type": { - "$id": "6203", + "$id": "6208", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79605,13 +79675,13 @@ "isHttpMetadata": false }, { - "$id": "6204", + "$id": "6209", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates if there are more content pages to fetch.", "type": { - "$id": "6205", + "$id": "6210", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79631,16 +79701,16 @@ "isHttpMetadata": false }, { - "$id": "6206", + "$id": "6211", "kind": "property", "name": "next_page", "serializedName": "next_page", "doc": "The token for the next page, if any.", "type": { - "$id": "6207", + "$id": "6212", "kind": "nullable", "type": { - "$id": "6208", + "$id": "6213", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79664,10 +79734,10 @@ ] }, { - "$ref": "6199" + "$ref": "6204" }, { - "$id": "6209", + "$id": "6214", "kind": "model", "name": "VectorStoreSearchRequestRankingOptions", "namespace": "OpenAI", @@ -79676,12 +79746,12 @@ "decorators": [], "properties": [ { - "$id": "6210", + "$id": "6215", "kind": "property", "name": "ranker", "serializedName": "ranker", "type": { - "$ref": "1072" + "$ref": "1076" }, "optional": true, "readOnly": false, @@ -79697,12 +79767,12 @@ "isHttpMetadata": false }, { - "$id": "6211", + "$id": "6216", "kind": "property", "name": "score_threshold", "serializedName": "score_threshold", "type": { - "$id": "6212", + "$id": "6217", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79724,7 +79794,7 @@ ] }, { - "$id": "6213", + "$id": "6218", "kind": "model", "name": "VectorStoreSearchRequest", "namespace": "OpenAI", @@ -79733,25 +79803,25 @@ "decorators": [], "properties": [ { - "$id": "6214", + "$id": "6219", "kind": "property", "name": "query", "serializedName": "query", "doc": "A query string for a search", "type": { - "$id": "6215", + "$id": "6220", "kind": "union", "name": "VectorStoreSearchRequestQuery", "variantTypes": [ { - "$id": "6216", + "$id": "6221", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$ref": "2339" + "$ref": "2343" } ], "namespace": "OpenAI", @@ -79771,13 +79841,13 @@ "isHttpMetadata": false }, { - "$id": "6217", + "$id": "6222", "kind": "property", "name": "rewrite_query", "serializedName": "rewrite_query", "doc": "Whether to rewrite the natural language query for vector search.", "type": { - "$id": "6218", + "$id": "6223", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79797,13 +79867,13 @@ "isHttpMetadata": false }, { - "$id": "6219", + "$id": "6224", "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": "6220", + "$id": "6225", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -79823,21 +79893,21 @@ "isHttpMetadata": false }, { - "$id": "6221", + "$id": "6226", "kind": "property", "name": "filters", "serializedName": "filters", "doc": "A filter to apply based on file attributes.", "type": { - "$id": "6222", + "$id": "6227", "kind": "union", "name": "VectorStoreSearchRequestFilters", "variantTypes": [ { - "$ref": "4165" + "$ref": "4169" }, { - "$ref": "4186" + "$ref": "4190" } ], "namespace": "OpenAI", @@ -79857,13 +79927,13 @@ "isHttpMetadata": false }, { - "$id": "6223", + "$id": "6228", "kind": "property", "name": "ranking_options", "serializedName": "ranking_options", "doc": "Ranking options for search.", "type": { - "$ref": "6209" + "$ref": "6214" }, "optional": true, "readOnly": false, @@ -79881,7 +79951,7 @@ ] }, { - "$id": "6224", + "$id": "6229", "kind": "model", "name": "VectorStoreSearchResultsPage", "namespace": "OpenAI", @@ -79890,13 +79960,13 @@ "decorators": [], "properties": [ { - "$id": "6225", + "$id": "6230", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `vector_store.search_results.page`", "type": { - "$ref": "1675" + "$ref": "1679" }, "optional": false, "readOnly": false, @@ -79912,12 +79982,12 @@ "isHttpMetadata": false }, { - "$id": "6226", + "$id": "6231", "kind": "property", "name": "search_query", "serializedName": "search_query", "type": { - "$ref": "2339" + "$ref": "2343" }, "optional": false, "readOnly": false, @@ -79933,17 +80003,17 @@ "isHttpMetadata": false }, { - "$id": "6227", + "$id": "6232", "kind": "property", "name": "data", "serializedName": "data", "doc": "The list of search result items.", "type": { - "$id": "6228", + "$id": "6233", "kind": "array", "name": "ArrayVectorStoreSearchResultItem", "valueType": { - "$id": "6229", + "$id": "6234", "kind": "model", "name": "VectorStoreSearchResultItem", "namespace": "OpenAI", @@ -79952,13 +80022,13 @@ "decorators": [], "properties": [ { - "$id": "6230", + "$id": "6235", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the vector store file.", "type": { - "$id": "6231", + "$id": "6236", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79978,13 +80048,13 @@ "isHttpMetadata": false }, { - "$id": "6232", + "$id": "6237", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the vector store file.", "type": { - "$id": "6233", + "$id": "6238", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80004,13 +80074,13 @@ "isHttpMetadata": false }, { - "$id": "6234", + "$id": "6239", "kind": "property", "name": "score", "serializedName": "score", "doc": "The similarity score for the result.", "type": { - "$id": "6235", + "$id": "6240", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -80030,15 +80100,15 @@ "isHttpMetadata": false }, { - "$id": "6236", + "$id": "6241", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6237", + "$id": "6242", "kind": "nullable", "type": { - "$ref": "3763" + "$ref": "3767" }, "namespace": "OpenAI" }, @@ -80056,17 +80126,17 @@ "isHttpMetadata": false }, { - "$id": "6238", + "$id": "6243", "kind": "property", "name": "content", "serializedName": "content", "doc": "Content chunks from the file.", "type": { - "$id": "6239", + "$id": "6244", "kind": "array", "name": "ArrayVectorStoreSearchResultContentObject", "valueType": { - "$id": "6240", + "$id": "6245", "kind": "model", "name": "VectorStoreSearchResultContentObject", "namespace": "OpenAI", @@ -80075,13 +80145,13 @@ "decorators": [], "properties": [ { - "$id": "6241", + "$id": "6246", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of content.", "type": { - "$ref": "1677" + "$ref": "1681" }, "optional": false, "readOnly": false, @@ -80097,13 +80167,13 @@ "isHttpMetadata": false }, { - "$id": "6242", + "$id": "6247", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content returned from search.", "type": { - "$id": "6243", + "$id": "6248", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80159,13 +80229,13 @@ "isHttpMetadata": false }, { - "$id": "6244", + "$id": "6249", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates if there are more results to fetch.", "type": { - "$id": "6245", + "$id": "6250", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -80185,16 +80255,16 @@ "isHttpMetadata": false }, { - "$id": "6246", + "$id": "6251", "kind": "property", "name": "next_page", "serializedName": "next_page", "doc": "The token for the next page, if any.", "type": { - "$id": "6247", + "$id": "6252", "kind": "nullable", "type": { - "$id": "6248", + "$id": "6253", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80218,13 +80288,13 @@ ] }, { - "$ref": "6229" + "$ref": "6234" }, { - "$ref": "6240" + "$ref": "6245" }, { - "$id": "6249", + "$id": "6254", "kind": "model", "name": "CreateCompletionRequest", "namespace": "OpenAI", @@ -80233,13 +80303,13 @@ "decorators": [], "properties": [ { - "$id": "6250", + "$id": "6255", "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": "1076" + "$ref": "1080" }, "optional": false, "readOnly": false, @@ -80255,34 +80325,34 @@ "isHttpMetadata": false }, { - "$id": "6251", + "$id": "6256", "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": "6252", + "$id": "6257", "kind": "nullable", "type": { - "$id": "6253", + "$id": "6258", "kind": "union", "name": "CreateCompletionRequestPrompt", "variantTypes": [ { - "$id": "6254", + "$id": "6259", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$ref": "2339" + "$ref": "2343" }, { - "$ref": "2559" + "$ref": "2563" }, { - "$ref": "3264" + "$ref": "3268" } ], "namespace": "OpenAI", @@ -80304,16 +80374,16 @@ "isHttpMetadata": false }, { - "$id": "6255", + "$id": "6260", "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": "6256", + "$id": "6261", "kind": "nullable", "type": { - "$id": "6257", + "$id": "6262", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80335,16 +80405,16 @@ "isHttpMetadata": false }, { - "$id": "6258", + "$id": "6263", "kind": "property", "name": "echo", "serializedName": "echo", "doc": "Echo back the prompt in addition to the completion", "type": { - "$id": "6259", + "$id": "6264", "kind": "nullable", "type": { - "$id": "6260", + "$id": "6265", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -80366,16 +80436,16 @@ "isHttpMetadata": false }, { - "$id": "6261", + "$id": "6266", "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": "6262", + "$id": "6267", "kind": "nullable", "type": { - "$id": "6263", + "$id": "6268", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -80397,16 +80467,16 @@ "isHttpMetadata": false }, { - "$id": "6264", + "$id": "6269", "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": "6265", + "$id": "6270", "kind": "nullable", "type": { - "$ref": "3026" + "$ref": "3030" }, "namespace": "OpenAI" }, @@ -80424,16 +80494,16 @@ "isHttpMetadata": false }, { - "$id": "6266", + "$id": "6271", "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": "6267", + "$id": "6272", "kind": "nullable", "type": { - "$id": "6268", + "$id": "6273", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80455,16 +80525,16 @@ "isHttpMetadata": false }, { - "$id": "6269", + "$id": "6274", "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": "6270", + "$id": "6275", "kind": "nullable", "type": { - "$id": "6271", + "$id": "6276", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80486,16 +80556,16 @@ "isHttpMetadata": false }, { - "$id": "6272", + "$id": "6277", "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": "6273", + "$id": "6278", "kind": "nullable", "type": { - "$id": "6274", + "$id": "6279", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80517,16 +80587,16 @@ "isHttpMetadata": false }, { - "$id": "6275", + "$id": "6280", "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": "6276", + "$id": "6281", "kind": "nullable", "type": { - "$id": "6277", + "$id": "6282", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -80548,16 +80618,16 @@ "isHttpMetadata": false }, { - "$id": "6278", + "$id": "6283", "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": "6279", + "$id": "6284", "kind": "nullable", "type": { - "$id": "6280", + "$id": "6285", "kind": "int64", "name": "int64", "crossLanguageDefinitionId": "TypeSpec.int64", @@ -80579,15 +80649,15 @@ "isHttpMetadata": false }, { - "$id": "6281", + "$id": "6286", "kind": "property", "name": "stop", "serializedName": "stop", "type": { - "$id": "6282", + "$id": "6287", "kind": "nullable", "type": { - "$ref": "3022" + "$ref": "3026" }, "namespace": "OpenAI" }, @@ -80605,16 +80675,16 @@ "isHttpMetadata": false }, { - "$id": "6283", + "$id": "6288", "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": "6284", + "$id": "6289", "kind": "nullable", "type": { - "$id": "6285", + "$id": "6290", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -80636,15 +80706,15 @@ "isHttpMetadata": false }, { - "$id": "6286", + "$id": "6291", "kind": "property", "name": "stream_options", "serializedName": "stream_options", "type": { - "$id": "6287", + "$id": "6292", "kind": "nullable", "type": { - "$ref": "3052" + "$ref": "3056" }, "namespace": "OpenAI" }, @@ -80662,16 +80732,16 @@ "isHttpMetadata": false }, { - "$id": "6288", + "$id": "6293", "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": "6289", + "$id": "6294", "kind": "nullable", "type": { - "$id": "6290", + "$id": "6295", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80693,16 +80763,16 @@ "isHttpMetadata": false }, { - "$id": "6291", + "$id": "6296", "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": "6292", + "$id": "6297", "kind": "nullable", "type": { - "$id": "6293", + "$id": "6298", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -80724,16 +80794,16 @@ "isHttpMetadata": false }, { - "$id": "6294", + "$id": "6299", "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": "6295", + "$id": "6300", "kind": "nullable", "type": { - "$id": "6296", + "$id": "6301", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -80755,13 +80825,13 @@ "isHttpMetadata": false }, { - "$id": "6297", + "$id": "6302", "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": "6298", + "$id": "6303", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80783,7 +80853,7 @@ ] }, { - "$id": "6299", + "$id": "6304", "kind": "model", "name": "CreateCompletionResponse", "namespace": "OpenAI", @@ -80793,13 +80863,13 @@ "decorators": [], "properties": [ { - "$id": "6300", + "$id": "6305", "kind": "property", "name": "id", "serializedName": "id", "doc": "A unique identifier for the completion.", "type": { - "$id": "6301", + "$id": "6306", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80819,17 +80889,17 @@ "isHttpMetadata": false }, { - "$id": "6302", + "$id": "6307", "kind": "property", "name": "choices", "serializedName": "choices", "doc": "The list of completion choices the model generated for the input prompt.", "type": { - "$id": "6303", + "$id": "6308", "kind": "array", "name": "Array41", "valueType": { - "$id": "6304", + "$id": "6309", "kind": "model", "name": "CreateCompletionResponseChoice", "namespace": "OpenAI", @@ -80838,13 +80908,13 @@ "decorators": [], "properties": [ { - "$id": "6305", + "$id": "6310", "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": "1081" + "$ref": "1085" }, "optional": false, "readOnly": false, @@ -80860,12 +80930,12 @@ "isHttpMetadata": false }, { - "$id": "6306", + "$id": "6311", "kind": "property", "name": "index", "serializedName": "index", "type": { - "$id": "6307", + "$id": "6312", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80885,15 +80955,15 @@ "isHttpMetadata": false }, { - "$id": "6308", + "$id": "6313", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "type": { - "$id": "6309", + "$id": "6314", "kind": "nullable", "type": { - "$id": "6310", + "$id": "6315", "kind": "model", "name": "CreateCompletionResponseChoiceLogprobs1", "namespace": "OpenAI", @@ -80902,12 +80972,12 @@ "decorators": [], "properties": [ { - "$id": "6311", + "$id": "6316", "kind": "property", "name": "text_offset", "serializedName": "text_offset", "type": { - "$ref": "2559" + "$ref": "2563" }, "optional": true, "readOnly": false, @@ -80923,12 +80993,12 @@ "isHttpMetadata": false }, { - "$id": "6312", + "$id": "6317", "kind": "property", "name": "token_logprobs", "serializedName": "token_logprobs", "type": { - "$ref": "2580" + "$ref": "2584" }, "optional": true, "readOnly": false, @@ -80944,12 +81014,12 @@ "isHttpMetadata": false }, { - "$id": "6313", + "$id": "6318", "kind": "property", "name": "tokens", "serializedName": "tokens", "type": { - "$ref": "2339" + "$ref": "2343" }, "optional": true, "readOnly": false, @@ -80965,26 +81035,26 @@ "isHttpMetadata": false }, { - "$id": "6314", + "$id": "6319", "kind": "property", "name": "top_logprobs", "serializedName": "top_logprobs", "type": { - "$id": "6315", + "$id": "6320", "kind": "array", "name": "ArrayRecord1", "valueType": { - "$id": "6316", + "$id": "6321", "kind": "dict", "keyType": { - "$id": "6317", + "$id": "6322", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, "valueType": { - "$id": "6318", + "$id": "6323", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -81026,12 +81096,12 @@ "isHttpMetadata": false }, { - "$id": "6319", + "$id": "6324", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "6320", + "$id": "6325", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81069,18 +81139,18 @@ "isHttpMetadata": false }, { - "$id": "6321", + "$id": "6326", "kind": "property", "name": "created", "serializedName": "created", "doc": "The Unix timestamp (in seconds) of when the completion was created.", "type": { - "$id": "6322", + "$id": "6327", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6323", + "$id": "6328", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81103,13 +81173,13 @@ "isHttpMetadata": false }, { - "$id": "6324", + "$id": "6329", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model used for completion.", "type": { - "$id": "6325", + "$id": "6330", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81129,13 +81199,13 @@ "isHttpMetadata": false }, { - "$id": "6326", + "$id": "6331", "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": "6327", + "$id": "6332", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81155,13 +81225,13 @@ "isHttpMetadata": false }, { - "$id": "6328", + "$id": "6333", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"text_completion\"", "type": { - "$ref": "1679" + "$ref": "1683" }, "optional": false, "readOnly": false, @@ -81177,12 +81247,12 @@ "isHttpMetadata": false }, { - "$id": "6329", + "$id": "6334", "kind": "property", "name": "usage", "serializedName": "usage", "type": { - "$ref": "2816" + "$ref": "2820" }, "optional": true, "readOnly": false, @@ -81200,13 +81270,13 @@ ] }, { - "$ref": "6304" + "$ref": "6309" }, { - "$ref": "6310" + "$ref": "6315" }, { - "$id": "6330", + "$id": "6335", "kind": "model", "name": "ListModelsResponse", "namespace": "OpenAI", @@ -81215,12 +81285,12 @@ "decorators": [], "properties": [ { - "$id": "6331", + "$id": "6336", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1681" + "$ref": "1685" }, "optional": false, "readOnly": false, @@ -81236,16 +81306,16 @@ "isHttpMetadata": false }, { - "$id": "6332", + "$id": "6337", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6333", + "$id": "6338", "kind": "array", "name": "ArrayModel", "valueType": { - "$id": "6334", + "$id": "6339", "kind": "model", "name": "Model", "namespace": "OpenAI", @@ -81255,13 +81325,13 @@ "decorators": [], "properties": [ { - "$id": "6335", + "$id": "6340", "kind": "property", "name": "id", "serializedName": "id", "doc": "The model identifier, which can be referenced in the API endpoints.", "type": { - "$id": "6336", + "$id": "6341", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81281,18 +81351,18 @@ "isHttpMetadata": false }, { - "$id": "6337", + "$id": "6342", "kind": "property", "name": "created", "serializedName": "created", "doc": "The Unix timestamp (in seconds) when the model was created.", "type": { - "$id": "6338", + "$id": "6343", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6339", + "$id": "6344", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81315,13 +81385,13 @@ "isHttpMetadata": false }, { - "$id": "6340", + "$id": "6345", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"model\".", "type": { - "$ref": "1683" + "$ref": "1687" }, "optional": false, "readOnly": false, @@ -81337,13 +81407,13 @@ "isHttpMetadata": false }, { - "$id": "6341", + "$id": "6346", "kind": "property", "name": "owned_by", "serializedName": "owned_by", "doc": "The organization that owns the model.", "type": { - "$id": "6342", + "$id": "6347", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81383,10 +81453,10 @@ ] }, { - "$ref": "6334" + "$ref": "6339" }, { - "$id": "6343", + "$id": "6348", "kind": "model", "name": "DeleteModelResponse", "namespace": "OpenAI", @@ -81395,12 +81465,12 @@ "decorators": [], "properties": [ { - "$id": "6344", + "$id": "6349", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6345", + "$id": "6350", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81420,12 +81490,12 @@ "isHttpMetadata": false }, { - "$id": "6346", + "$id": "6351", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6347", + "$id": "6352", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -81445,12 +81515,12 @@ "isHttpMetadata": false }, { - "$id": "6348", + "$id": "6353", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1685" + "$ref": "1689" }, "optional": false, "readOnly": false, @@ -81468,7 +81538,7 @@ ] }, { - "$id": "6349", + "$id": "6354", "kind": "model", "name": "RealtimeClientEvent", "namespace": "OpenAI", @@ -81477,13 +81547,13 @@ "doc": "A realtime client event.", "decorators": [], "discriminatorProperty": { - "$id": "6350", + "$id": "6355", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of event.", "type": { - "$ref": "1086" + "$ref": "1090" }, "optional": false, "readOnly": false, @@ -81500,15 +81570,15 @@ }, "properties": [ { - "$ref": "6350" + "$ref": "6355" }, { - "$id": "6351", + "$id": "6356", "kind": "property", "name": "event_id", "serializedName": "event_id", "type": { - "$id": "6352", + "$id": "6357", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81530,7 +81600,7 @@ ], "discriminatedSubtypes": { "session.update": { - "$id": "6353", + "$id": "6358", "kind": "model", "name": "RealtimeClientEventSessionUpdate", "namespace": "OpenAI", @@ -81540,17 +81610,17 @@ "discriminatorValue": "session.update", "decorators": [], "baseModel": { - "$ref": "6349" + "$ref": "6354" }, "properties": [ { - "$id": "6354", + "$id": "6359", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `session.update`.", "type": { - "$ref": "1088" + "$ref": "1092" }, "optional": false, "readOnly": false, @@ -81566,12 +81636,12 @@ "isHttpMetadata": false }, { - "$id": "6355", + "$id": "6360", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$id": "6356", + "$id": "6361", "kind": "model", "name": "RealtimeRequestSession", "namespace": "OpenAI", @@ -81580,16 +81650,16 @@ "decorators": [], "properties": [ { - "$id": "6357", + "$id": "6362", "kind": "property", "name": "modalities", "serializedName": "modalities", "type": { - "$id": "6358", + "$id": "6363", "kind": "array", "name": "ArrayRealtimeModality", "valueType": { - "$ref": "1100" + "$ref": "1104" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -81608,12 +81678,12 @@ "isHttpMetadata": false }, { - "$id": "6359", + "$id": "6364", "kind": "property", "name": "instructions", "serializedName": "instructions", "type": { - "$id": "6360", + "$id": "6365", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81633,12 +81703,12 @@ "isHttpMetadata": false }, { - "$id": "6361", + "$id": "6366", "kind": "property", "name": "model", "serializedName": "model", "type": { - "$ref": "1104" + "$ref": "1108" }, "optional": true, "readOnly": false, @@ -81654,7 +81724,7 @@ "isHttpMetadata": false }, { - "$id": "6362", + "$id": "6367", "kind": "property", "name": "voice", "serializedName": "voice", @@ -81675,12 +81745,12 @@ "isHttpMetadata": false }, { - "$id": "6363", + "$id": "6368", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", "type": { - "$ref": "1111" + "$ref": "1115" }, "optional": true, "readOnly": false, @@ -81696,12 +81766,12 @@ "isHttpMetadata": false }, { - "$id": "6364", + "$id": "6369", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", "type": { - "$ref": "1111" + "$ref": "1115" }, "optional": true, "readOnly": false, @@ -81717,15 +81787,15 @@ "isHttpMetadata": false }, { - "$id": "6365", + "$id": "6370", "kind": "property", "name": "input_audio_transcription", "serializedName": "input_audio_transcription", "type": { - "$id": "6366", + "$id": "6371", "kind": "nullable", "type": { - "$id": "6367", + "$id": "6372", "kind": "model", "name": "RealtimeAudioInputTranscriptionSettings", "namespace": "OpenAI", @@ -81734,12 +81804,12 @@ "decorators": [], "properties": [ { - "$id": "6368", + "$id": "6373", "kind": "property", "name": "model", "serializedName": "model", "type": { - "$ref": "1116" + "$ref": "1120" }, "optional": true, "readOnly": false, @@ -81755,12 +81825,12 @@ "isHttpMetadata": false }, { - "$id": "6369", + "$id": "6374", "kind": "property", "name": "language", "serializedName": "language", "type": { - "$id": "6370", + "$id": "6375", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81780,12 +81850,12 @@ "isHttpMetadata": false }, { - "$id": "6371", + "$id": "6376", "kind": "property", "name": "prompt", "serializedName": "prompt", "type": { - "$id": "6372", + "$id": "6377", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81822,15 +81892,15 @@ "isHttpMetadata": false }, { - "$id": "6373", + "$id": "6378", "kind": "property", "name": "turn_detection", "serializedName": "turn_detection", "type": { - "$id": "6374", + "$id": "6379", "kind": "nullable", "type": { - "$id": "6375", + "$id": "6380", "kind": "model", "name": "RealtimeTurnDetection", "namespace": "OpenAI", @@ -81838,12 +81908,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "6376", + "$id": "6381", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1119" + "$ref": "1123" }, "optional": false, "readOnly": false, @@ -81860,16 +81930,16 @@ }, "properties": [ { - "$ref": "6376" + "$ref": "6381" }, { - "$id": "6377", + "$id": "6382", "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": "6378", + "$id": "6383", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -81889,13 +81959,13 @@ "isHttpMetadata": false }, { - "$id": "6379", + "$id": "6384", "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": "6380", + "$id": "6385", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -81917,7 +81987,7 @@ ], "discriminatedSubtypes": { "server_vad": { - "$id": "6381", + "$id": "6386", "kind": "model", "name": "RealtimeServerVadTurnDetection", "namespace": "OpenAI", @@ -81926,16 +81996,16 @@ "discriminatorValue": "server_vad", "decorators": [], "baseModel": { - "$ref": "6375" + "$ref": "6380" }, "properties": [ { - "$id": "6382", + "$id": "6387", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1121" + "$ref": "1125" }, "optional": false, "readOnly": false, @@ -81951,13 +82021,13 @@ "isHttpMetadata": false }, { - "$id": "6383", + "$id": "6388", "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": "6384", + "$id": "6389", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -81977,18 +82047,18 @@ "isHttpMetadata": false }, { - "$id": "6385", + "$id": "6390", "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": "6386", + "$id": "6391", "kind": "duration", "name": "duration", "encode": "ISO8601", "wireType": { - "$id": "6387", + "$id": "6392", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82011,18 +82081,18 @@ "isHttpMetadata": false }, { - "$id": "6388", + "$id": "6393", "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": "6389", + "$id": "6394", "kind": "duration", "name": "duration", "encode": "ISO8601", "wireType": { - "$id": "6390", + "$id": "6395", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82047,7 +82117,7 @@ ] }, "semantic_vad": { - "$id": "6391", + "$id": "6396", "kind": "model", "name": "RealtimeSemanticVadTurnDetection", "namespace": "OpenAI", @@ -82056,16 +82126,16 @@ "discriminatorValue": "semantic_vad", "decorators": [], "baseModel": { - "$ref": "6375" + "$ref": "6380" }, "properties": [ { - "$id": "6392", + "$id": "6397", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1122" + "$ref": "1126" }, "optional": false, "readOnly": false, @@ -82081,13 +82151,13 @@ "isHttpMetadata": false }, { - "$id": "6393", + "$id": "6398", "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": "1123" + "$ref": "1127" }, "optional": true, "readOnly": false, @@ -82122,12 +82192,12 @@ "isHttpMetadata": false }, { - "$id": "6394", + "$id": "6399", "kind": "property", "name": "input_audio_noise_reduction", "serializedName": "input_audio_noise_reduction", "type": { - "$id": "6395", + "$id": "6400", "kind": "model", "name": "RealtimeAudioNoiseReduction", "namespace": "OpenAI", @@ -82135,12 +82205,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "6396", + "$id": "6401", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1129" + "$ref": "1133" }, "optional": false, "readOnly": false, @@ -82157,12 +82227,12 @@ }, "properties": [ { - "$ref": "6396" + "$ref": "6401" } ], "discriminatedSubtypes": { "near_field": { - "$id": "6397", + "$id": "6402", "kind": "model", "name": "RealtimeAudioNearFieldNoiseReduction", "namespace": "OpenAI", @@ -82171,16 +82241,16 @@ "discriminatorValue": "near_field", "decorators": [], "baseModel": { - "$ref": "6395" + "$ref": "6400" }, "properties": [ { - "$id": "6398", + "$id": "6403", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1131" + "$ref": "1135" }, "optional": false, "readOnly": false, @@ -82198,7 +82268,7 @@ ] }, "far_field": { - "$id": "6399", + "$id": "6404", "kind": "model", "name": "RealtimeAudioFarFieldNoiseReduction", "namespace": "OpenAI", @@ -82207,16 +82277,16 @@ "discriminatorValue": "far_field", "decorators": [], "baseModel": { - "$ref": "6395" + "$ref": "6400" }, "properties": [ { - "$id": "6400", + "$id": "6405", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1132" + "$ref": "1136" }, "optional": false, "readOnly": false, @@ -82249,16 +82319,16 @@ "isHttpMetadata": false }, { - "$id": "6401", + "$id": "6406", "kind": "property", "name": "tools", "serializedName": "tools", "type": { - "$id": "6402", + "$id": "6407", "kind": "array", "name": "ArrayRealtimeTool", "valueType": { - "$id": "6403", + "$id": "6408", "kind": "model", "name": "RealtimeTool", "namespace": "OpenAI", @@ -82267,12 +82337,12 @@ "doc": "The base representation of a realtime tool definition.", "decorators": [], "discriminatorProperty": { - "$id": "6404", + "$id": "6409", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1133" + "$ref": "1137" }, "optional": false, "readOnly": false, @@ -82289,12 +82359,12 @@ }, "properties": [ { - "$ref": "6404" + "$ref": "6409" } ], "discriminatedSubtypes": { "function": { - "$id": "6405", + "$id": "6410", "kind": "model", "name": "RealtimeFunctionTool", "namespace": "OpenAI", @@ -82304,16 +82374,16 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "6403" + "$ref": "6408" }, "properties": [ { - "$id": "6406", + "$id": "6411", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1135" + "$ref": "1139" }, "optional": false, "readOnly": false, @@ -82329,12 +82399,12 @@ "isHttpMetadata": false }, { - "$id": "6407", + "$id": "6412", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "6408", + "$id": "6413", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82354,12 +82424,12 @@ "isHttpMetadata": false }, { - "$id": "6409", + "$id": "6414", "kind": "property", "name": "description", "serializedName": "description", "type": { - "$id": "6410", + "$id": "6415", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82379,12 +82449,12 @@ "isHttpMetadata": false }, { - "$id": "6411", + "$id": "6416", "kind": "property", "name": "parameters", "serializedName": "parameters", "type": { - "$id": "6412", + "$id": "6417", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -82424,20 +82494,20 @@ "isHttpMetadata": false }, { - "$id": "6413", + "$id": "6418", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "6414", + "$id": "6419", "kind": "union", "name": "RealtimeToolChoice", "variantTypes": [ { - "$ref": "1136" + "$ref": "1140" }, { - "$id": "6415", + "$id": "6420", "kind": "model", "name": "RealtimeToolChoiceObject", "namespace": "OpenAI", @@ -82446,12 +82516,12 @@ "doc": "A base representation for a realtime tool_choice selecting a named tool.", "decorators": [], "discriminatorProperty": { - "$id": "6416", + "$id": "6421", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1133" + "$ref": "1137" }, "optional": false, "readOnly": false, @@ -82468,12 +82538,12 @@ }, "properties": [ { - "$ref": "6416" + "$ref": "6421" } ], "discriminatedSubtypes": { "function": { - "$id": "6417", + "$id": "6422", "kind": "model", "name": "RealtimeToolChoiceFunctionObject", "namespace": "OpenAI", @@ -82483,16 +82553,16 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "6415" + "$ref": "6420" }, "properties": [ { - "$id": "6418", + "$id": "6423", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1135" + "$ref": "1139" }, "optional": false, "readOnly": false, @@ -82508,12 +82578,12 @@ "isHttpMetadata": false }, { - "$id": "6419", + "$id": "6424", "kind": "property", "name": "function", "serializedName": "function", "type": { - "$id": "6420", + "$id": "6425", "kind": "model", "name": "RealtimeToolChoiceFunctionObjectFunction", "namespace": "OpenAI", @@ -82522,12 +82592,12 @@ "decorators": [], "properties": [ { - "$id": "6421", + "$id": "6426", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "6422", + "$id": "6427", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82583,12 +82653,12 @@ "isHttpMetadata": false }, { - "$id": "6423", + "$id": "6428", "kind": "property", "name": "temperature", "serializedName": "temperature", "type": { - "$id": "6424", + "$id": "6429", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -82608,24 +82678,24 @@ "isHttpMetadata": false }, { - "$id": "6425", + "$id": "6430", "kind": "property", "name": "max_response_output_tokens", "serializedName": "max_response_output_tokens", "type": { - "$id": "6426", + "$id": "6431", "kind": "union", "name": "RealtimeRequestSessionMaxResponseOutputTokens", "variantTypes": [ { - "$id": "6427", + "$id": "6432", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", "decorators": [] }, { - "$ref": "1687" + "$ref": "1691" } ], "namespace": "OpenAI", @@ -82662,7 +82732,7 @@ ] }, "input_audio_buffer.append": { - "$id": "6428", + "$id": "6433", "kind": "model", "name": "RealtimeClientEventInputAudioBufferAppend", "namespace": "OpenAI", @@ -82672,17 +82742,17 @@ "discriminatorValue": "input_audio_buffer.append", "decorators": [], "baseModel": { - "$ref": "6349" + "$ref": "6354" }, "properties": [ { - "$id": "6429", + "$id": "6434", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.append`.", "type": { - "$ref": "1089" + "$ref": "1093" }, "optional": false, "readOnly": false, @@ -82698,13 +82768,13 @@ "isHttpMetadata": false }, { - "$id": "6430", + "$id": "6435", "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": "6431", + "$id": "6436", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -82727,7 +82797,7 @@ ] }, "input_audio_buffer.commit": { - "$id": "6432", + "$id": "6437", "kind": "model", "name": "RealtimeClientEventInputAudioBufferCommit", "namespace": "OpenAI", @@ -82737,17 +82807,17 @@ "discriminatorValue": "input_audio_buffer.commit", "decorators": [], "baseModel": { - "$ref": "6349" + "$ref": "6354" }, "properties": [ { - "$id": "6433", + "$id": "6438", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.commit`.", "type": { - "$ref": "1090" + "$ref": "1094" }, "optional": false, "readOnly": false, @@ -82765,7 +82835,7 @@ ] }, "input_audio_buffer.clear": { - "$id": "6434", + "$id": "6439", "kind": "model", "name": "RealtimeClientEventInputAudioBufferClear", "namespace": "OpenAI", @@ -82775,17 +82845,17 @@ "discriminatorValue": "input_audio_buffer.clear", "decorators": [], "baseModel": { - "$ref": "6349" + "$ref": "6354" }, "properties": [ { - "$id": "6435", + "$id": "6440", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.clear`.", "type": { - "$ref": "1091" + "$ref": "1095" }, "optional": false, "readOnly": false, @@ -82803,7 +82873,7 @@ ] }, "output_audio_buffer.clear": { - "$id": "6436", + "$id": "6441", "kind": "model", "name": "RealtimeClientEventOutputAudioBufferClear", "namespace": "OpenAI", @@ -82813,17 +82883,17 @@ "discriminatorValue": "output_audio_buffer.clear", "decorators": [], "baseModel": { - "$ref": "6349" + "$ref": "6354" }, "properties": [ { - "$id": "6437", + "$id": "6442", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.clear`.", "type": { - "$ref": "1092" + "$ref": "1096" }, "optional": false, "readOnly": false, @@ -82841,7 +82911,7 @@ ] }, "conversation.item.create": { - "$id": "6438", + "$id": "6443", "kind": "model", "name": "RealtimeClientEventConversationItemCreate", "namespace": "OpenAI", @@ -82851,17 +82921,17 @@ "discriminatorValue": "conversation.item.create", "decorators": [], "baseModel": { - "$ref": "6349" + "$ref": "6354" }, "properties": [ { - "$id": "6439", + "$id": "6444", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.create`.", "type": { - "$ref": "1093" + "$ref": "1097" }, "optional": false, "readOnly": false, @@ -82877,13 +82947,13 @@ "isHttpMetadata": false }, { - "$id": "6440", + "$id": "6445", "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": "6441", + "$id": "6446", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82903,12 +82973,12 @@ "isHttpMetadata": false }, { - "$id": "6442", + "$id": "6447", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$id": "6443", + "$id": "6448", "kind": "model", "name": "RealtimeConversationRequestItem", "namespace": "OpenAI", @@ -82916,12 +82986,12 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "6444", + "$id": "6449", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1141" + "$ref": "1145" }, "optional": false, "readOnly": false, @@ -82938,15 +83008,15 @@ }, "properties": [ { - "$ref": "6444" + "$ref": "6449" }, { - "$id": "6445", + "$id": "6450", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6446", + "$id": "6451", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82968,7 +83038,7 @@ ], "discriminatedSubtypes": { "message": { - "$id": "6447", + "$id": "6452", "kind": "model", "name": "RealtimeRequestMessageItem", "namespace": "OpenAI", @@ -82977,12 +83047,12 @@ "discriminatorValue": "message", "decorators": [], "discriminatorProperty": { - "$id": "6448", + "$id": "6453", "kind": "property", "name": "role", "serializedName": "role", "type": { - "$ref": "1146" + "$ref": "1150" }, "optional": false, "readOnly": false, @@ -82998,16 +83068,16 @@ "isHttpMetadata": false }, "baseModel": { - "$ref": "6443" + "$ref": "6448" }, "properties": [ { - "$id": "6449", + "$id": "6454", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1143" + "$ref": "1147" }, "optional": false, "readOnly": false, @@ -83023,15 +83093,15 @@ "isHttpMetadata": false }, { - "$ref": "6448" + "$ref": "6453" }, { - "$id": "6450", + "$id": "6455", "kind": "property", "name": "status", "serializedName": "status", "type": { - "$ref": "1151" + "$ref": "1155" }, "optional": true, "readOnly": false, @@ -83049,7 +83119,7 @@ ], "discriminatedSubtypes": { "system": { - "$id": "6451", + "$id": "6456", "kind": "model", "name": "RealtimeRequestSystemMessageItem", "namespace": "OpenAI", @@ -83058,16 +83128,16 @@ "discriminatorValue": "system", "decorators": [], "baseModel": { - "$ref": "6447" + "$ref": "6452" }, "properties": [ { - "$id": "6452", + "$id": "6457", "kind": "property", "name": "role", "serializedName": "role", "type": { - "$ref": "1148" + "$ref": "1152" }, "optional": false, "readOnly": false, @@ -83083,16 +83153,16 @@ "isHttpMetadata": false }, { - "$id": "6453", + "$id": "6458", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "6454", + "$id": "6459", "kind": "array", "name": "ArrayRealtimeRequestTextContentPart", "valueType": { - "$id": "6455", + "$id": "6460", "kind": "model", "name": "RealtimeRequestTextContentPart", "namespace": "OpenAI", @@ -83101,7 +83171,7 @@ "discriminatorValue": "input_text", "decorators": [], "baseModel": { - "$id": "6456", + "$id": "6461", "kind": "model", "name": "RealtimeContentPart", "namespace": "OpenAI", @@ -83109,12 +83179,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "6457", + "$id": "6462", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1156" + "$ref": "1160" }, "optional": false, "readOnly": false, @@ -83131,15 +83201,15 @@ }, "properties": [ { - "$ref": "6457" + "$ref": "6462" } ], "discriminatedSubtypes": { "input_text": { - "$ref": "6455" + "$ref": "6460" }, "input_audio": { - "$id": "6458", + "$id": "6463", "kind": "model", "name": "RealtimeRequestAudioContentPart", "namespace": "OpenAI", @@ -83148,16 +83218,16 @@ "discriminatorValue": "input_audio", "decorators": [], "baseModel": { - "$ref": "6456" + "$ref": "6461" }, "properties": [ { - "$id": "6459", + "$id": "6464", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1159" + "$ref": "1163" }, "optional": false, "readOnly": false, @@ -83173,12 +83243,12 @@ "isHttpMetadata": false }, { - "$id": "6460", + "$id": "6465", "kind": "property", "name": "transcript", "serializedName": "transcript", "type": { - "$id": "6461", + "$id": "6466", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83200,7 +83270,7 @@ ] }, "text": { - "$id": "6462", + "$id": "6467", "kind": "model", "name": "RealtimeResponseTextContentPart", "namespace": "OpenAI", @@ -83209,16 +83279,16 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "6456" + "$ref": "6461" }, "properties": [ { - "$id": "6463", + "$id": "6468", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1160" + "$ref": "1164" }, "optional": false, "readOnly": false, @@ -83234,12 +83304,12 @@ "isHttpMetadata": false }, { - "$id": "6464", + "$id": "6469", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "6465", + "$id": "6470", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83261,7 +83331,7 @@ ] }, "audio": { - "$id": "6466", + "$id": "6471", "kind": "model", "name": "RealtimeResponseAudioContentPart", "namespace": "OpenAI", @@ -83270,16 +83340,16 @@ "discriminatorValue": "audio", "decorators": [], "baseModel": { - "$ref": "6456" + "$ref": "6461" }, "properties": [ { - "$id": "6467", + "$id": "6472", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1161" + "$ref": "1165" }, "optional": false, "readOnly": false, @@ -83295,15 +83365,15 @@ "isHttpMetadata": false }, { - "$id": "6468", + "$id": "6473", "kind": "property", "name": "transcript", "serializedName": "transcript", "type": { - "$id": "6469", + "$id": "6474", "kind": "nullable", "type": { - "$id": "6470", + "$id": "6475", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83330,20 +83400,20 @@ }, "properties": [ { - "$id": "6471", + "$id": "6476", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "6472", + "$id": "6477", "kind": "enumvalue", "name": "input_text", "value": "input_text", "valueType": { - "$ref": "1157" + "$ref": "1161" }, "enumType": { - "$ref": "1156" + "$ref": "1160" }, "decorators": [] }, @@ -83361,12 +83431,12 @@ "isHttpMetadata": false }, { - "$id": "6473", + "$id": "6478", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "6474", + "$id": "6479", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83406,7 +83476,7 @@ ] }, "user": { - "$id": "6475", + "$id": "6480", "kind": "model", "name": "RealtimeRequestUserMessageItem", "namespace": "OpenAI", @@ -83415,16 +83485,16 @@ "discriminatorValue": "user", "decorators": [], "baseModel": { - "$ref": "6447" + "$ref": "6452" }, "properties": [ { - "$id": "6476", + "$id": "6481", "kind": "property", "name": "role", "serializedName": "role", "type": { - "$ref": "1149" + "$ref": "1153" }, "optional": false, "readOnly": false, @@ -83440,24 +83510,24 @@ "isHttpMetadata": false }, { - "$id": "6477", + "$id": "6482", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "6478", + "$id": "6483", "kind": "array", "name": "Array42", "valueType": { - "$id": "6479", + "$id": "6484", "kind": "union", "name": "RealtimeRequestUserMessageItemContent", "variantTypes": [ { - "$ref": "6455" + "$ref": "6460" }, { - "$ref": "6458" + "$ref": "6463" } ], "namespace": "OpenAI", @@ -83482,7 +83552,7 @@ ] }, "assistant": { - "$id": "6480", + "$id": "6485", "kind": "model", "name": "RealtimeRequestAssistantMessageItem", "namespace": "OpenAI", @@ -83491,16 +83561,16 @@ "discriminatorValue": "assistant", "decorators": [], "baseModel": { - "$ref": "6447" + "$ref": "6452" }, "properties": [ { - "$id": "6481", + "$id": "6486", "kind": "property", "name": "role", "serializedName": "role", "type": { - "$ref": "1150" + "$ref": "1154" }, "optional": false, "readOnly": false, @@ -83516,12 +83586,12 @@ "isHttpMetadata": false }, { - "$id": "6482", + "$id": "6487", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$ref": "6454" + "$ref": "6459" }, "optional": false, "readOnly": false, @@ -83541,7 +83611,7 @@ } }, "function_call": { - "$id": "6483", + "$id": "6488", "kind": "model", "name": "RealtimeRequestFunctionCallItem", "namespace": "OpenAI", @@ -83550,16 +83620,16 @@ "discriminatorValue": "function_call", "decorators": [], "baseModel": { - "$ref": "6443" + "$ref": "6448" }, "properties": [ { - "$id": "6484", + "$id": "6489", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1144" + "$ref": "1148" }, "optional": false, "readOnly": false, @@ -83575,12 +83645,12 @@ "isHttpMetadata": false }, { - "$id": "6485", + "$id": "6490", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "6486", + "$id": "6491", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83600,12 +83670,12 @@ "isHttpMetadata": false }, { - "$id": "6487", + "$id": "6492", "kind": "property", "name": "call_id", "serializedName": "call_id", "type": { - "$id": "6488", + "$id": "6493", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83625,12 +83695,12 @@ "isHttpMetadata": false }, { - "$id": "6489", + "$id": "6494", "kind": "property", "name": "arguments", "serializedName": "arguments", "type": { - "$id": "6490", + "$id": "6495", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83650,12 +83720,12 @@ "isHttpMetadata": false }, { - "$id": "6491", + "$id": "6496", "kind": "property", "name": "status", "serializedName": "status", "type": { - "$ref": "1151" + "$ref": "1155" }, "optional": true, "readOnly": false, @@ -83673,7 +83743,7 @@ ] }, "function_call_output": { - "$id": "6492", + "$id": "6497", "kind": "model", "name": "RealtimeRequestFunctionCallOutputItem", "namespace": "OpenAI", @@ -83682,16 +83752,16 @@ "discriminatorValue": "function_call_output", "decorators": [], "baseModel": { - "$ref": "6443" + "$ref": "6448" }, "properties": [ { - "$id": "6493", + "$id": "6498", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1145" + "$ref": "1149" }, "optional": false, "readOnly": false, @@ -83707,12 +83777,12 @@ "isHttpMetadata": false }, { - "$id": "6494", + "$id": "6499", "kind": "property", "name": "call_id", "serializedName": "call_id", "type": { - "$id": "6495", + "$id": "6500", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83732,12 +83802,12 @@ "isHttpMetadata": false }, { - "$id": "6496", + "$id": "6501", "kind": "property", "name": "output", "serializedName": "output", "type": { - "$id": "6497", + "$id": "6502", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83776,7 +83846,7 @@ ] }, "conversation.item.truncate": { - "$id": "6498", + "$id": "6503", "kind": "model", "name": "RealtimeClientEventConversationItemTruncate", "namespace": "OpenAI", @@ -83786,17 +83856,17 @@ "discriminatorValue": "conversation.item.truncate", "decorators": [], "baseModel": { - "$ref": "6349" + "$ref": "6354" }, "properties": [ { - "$id": "6499", + "$id": "6504", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.truncate`.", "type": { - "$ref": "1095" + "$ref": "1099" }, "optional": false, "readOnly": false, @@ -83812,13 +83882,13 @@ "isHttpMetadata": false }, { - "$id": "6500", + "$id": "6505", "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": "6501", + "$id": "6506", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83838,13 +83908,13 @@ "isHttpMetadata": false }, { - "$id": "6502", + "$id": "6507", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part to truncate. Set this to 0.", "type": { - "$id": "6503", + "$id": "6508", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -83864,13 +83934,13 @@ "isHttpMetadata": false }, { - "$id": "6504", + "$id": "6509", "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": "6505", + "$id": "6510", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -83892,7 +83962,7 @@ ] }, "conversation.item.delete": { - "$id": "6506", + "$id": "6511", "kind": "model", "name": "RealtimeClientEventConversationItemDelete", "namespace": "OpenAI", @@ -83902,17 +83972,17 @@ "discriminatorValue": "conversation.item.delete", "decorators": [], "baseModel": { - "$ref": "6349" + "$ref": "6354" }, "properties": [ { - "$id": "6507", + "$id": "6512", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.delete`.", "type": { - "$ref": "1096" + "$ref": "1100" }, "optional": false, "readOnly": false, @@ -83928,13 +83998,13 @@ "isHttpMetadata": false }, { - "$id": "6508", + "$id": "6513", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to delete.", "type": { - "$id": "6509", + "$id": "6514", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83956,7 +84026,7 @@ ] }, "response.create": { - "$id": "6510", + "$id": "6515", "kind": "model", "name": "RealtimeClientEventResponseCreate", "namespace": "OpenAI", @@ -83966,17 +84036,17 @@ "discriminatorValue": "response.create", "decorators": [], "baseModel": { - "$ref": "6349" + "$ref": "6354" }, "properties": [ { - "$id": "6511", + "$id": "6516", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.create`.", "type": { - "$ref": "1097" + "$ref": "1101" }, "optional": false, "readOnly": false, @@ -83992,12 +84062,12 @@ "isHttpMetadata": false }, { - "$id": "6512", + "$id": "6517", "kind": "property", "name": "response", "serializedName": "response", "type": { - "$id": "6513", + "$id": "6518", "kind": "model", "name": "RealtimeResponseCreateParams", "namespace": "OpenAI", @@ -84007,13 +84077,13 @@ "decorators": [], "properties": [ { - "$id": "6514", + "$id": "6519", "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": "6358" + "$ref": "6363" }, "optional": true, "readOnly": false, @@ -84029,13 +84099,13 @@ "isHttpMetadata": false }, { - "$id": "6515", + "$id": "6520", "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": "6516", + "$id": "6521", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84055,7 +84125,7 @@ "isHttpMetadata": false }, { - "$id": "6517", + "$id": "6522", "kind": "property", "name": "voice", "serializedName": "voice", @@ -84077,13 +84147,13 @@ "isHttpMetadata": false }, { - "$id": "6518", + "$id": "6523", "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": "1111" + "$ref": "1115" }, "optional": true, "readOnly": false, @@ -84099,13 +84169,13 @@ "isHttpMetadata": false }, { - "$id": "6519", + "$id": "6524", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "Tools (functions) available to the model.", "type": { - "$ref": "6402" + "$ref": "6407" }, "optional": true, "readOnly": false, @@ -84121,13 +84191,13 @@ "isHttpMetadata": false }, { - "$id": "6520", + "$id": "6525", "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": "6521", + "$id": "6526", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84147,13 +84217,13 @@ "isHttpMetadata": false }, { - "$id": "6522", + "$id": "6527", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Sampling temperature for the model, limited to [0.6, 1.2]. Defaults to 0.8.", "type": { - "$id": "6523", + "$id": "6528", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -84173,25 +84243,25 @@ "isHttpMetadata": false }, { - "$id": "6524", + "$id": "6529", "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": "6525", + "$id": "6530", "kind": "union", "name": "RealtimeResponseCreateParamsMaxOutputTokens", "variantTypes": [ { - "$id": "6526", + "$id": "6531", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", "decorators": [] }, { - "$ref": "1689" + "$ref": "1693" } ], "namespace": "OpenAI", @@ -84211,13 +84281,13 @@ "isHttpMetadata": false }, { - "$id": "6527", + "$id": "6532", "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": "1162" + "$ref": "1166" }, "optional": true, "readOnly": false, @@ -84233,13 +84303,13 @@ "isHttpMetadata": false }, { - "$id": "6528", + "$id": "6533", "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": "2346" + "$ref": "2350" }, "optional": true, "readOnly": false, @@ -84255,17 +84325,17 @@ "isHttpMetadata": false }, { - "$id": "6529", + "$id": "6534", "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": "6530", + "$id": "6535", "kind": "array", "name": "ArrayRealtimeConversationRequestItem", "valueType": { - "$ref": "6443" + "$ref": "6448" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -84301,7 +84371,7 @@ ] }, "response.cancel": { - "$id": "6531", + "$id": "6536", "kind": "model", "name": "RealtimeClientEventResponseCancel", "namespace": "OpenAI", @@ -84311,17 +84381,17 @@ "discriminatorValue": "response.cancel", "decorators": [], "baseModel": { - "$ref": "6349" + "$ref": "6354" }, "properties": [ { - "$id": "6532", + "$id": "6537", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.cancel`.", "type": { - "$ref": "1098" + "$ref": "1102" }, "optional": false, "readOnly": false, @@ -84337,13 +84407,13 @@ "isHttpMetadata": false }, { - "$id": "6533", + "$id": "6538", "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": "6534", + "$id": "6539", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84365,7 +84435,7 @@ ] }, "conversation.item.retrieve": { - "$id": "6535", + "$id": "6540", "kind": "model", "name": "RealtimeClientEventConversationItemRetrieve", "namespace": "OpenAI", @@ -84375,17 +84445,17 @@ "discriminatorValue": "conversation.item.retrieve", "decorators": [], "baseModel": { - "$ref": "6349" + "$ref": "6354" }, "properties": [ { - "$id": "6536", + "$id": "6541", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.retrieve`.", "type": { - "$ref": "1094" + "$ref": "1098" }, "optional": false, "readOnly": false, @@ -84401,13 +84471,13 @@ "isHttpMetadata": false }, { - "$id": "6537", + "$id": "6542", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to retrieve.", "type": { - "$id": "6538", + "$id": "6543", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84429,7 +84499,7 @@ ] }, "transcription_session.update": { - "$id": "6539", + "$id": "6544", "kind": "model", "name": "RealtimeClientEventTranscriptionSessionUpdate", "namespace": "OpenAI", @@ -84439,17 +84509,17 @@ "discriminatorValue": "transcription_session.update", "decorators": [], "baseModel": { - "$ref": "6349" + "$ref": "6354" }, "properties": [ { - "$id": "6540", + "$id": "6545", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `transcription_session.update`.", "type": { - "$ref": "1099" + "$ref": "1103" }, "optional": false, "readOnly": false, @@ -84465,12 +84535,12 @@ "isHttpMetadata": false }, { - "$id": "6541", + "$id": "6546", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$id": "6542", + "$id": "6547", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequest", "namespace": "OpenAI", @@ -84480,17 +84550,17 @@ "decorators": [], "properties": [ { - "$id": "6543", + "$id": "6548", "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": "6544", + "$id": "6549", "kind": "array", "name": "Array43", "valueType": { - "$ref": "1166" + "$ref": "1170" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -84509,13 +84579,13 @@ "isHttpMetadata": false }, { - "$id": "6545", + "$id": "6550", "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": "1170" + "$ref": "1174" }, "optional": true, "readOnly": false, @@ -84531,13 +84601,13 @@ "isHttpMetadata": false }, { - "$id": "6546", + "$id": "6551", "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": "6547", + "$id": "6552", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestInputAudioTranscription", "namespace": "OpenAI", @@ -84546,13 +84616,13 @@ "decorators": [], "properties": [ { - "$id": "6548", + "$id": "6553", "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": "1175" + "$ref": "1179" }, "optional": true, "readOnly": false, @@ -84568,13 +84638,13 @@ "isHttpMetadata": false }, { - "$id": "6549", + "$id": "6554", "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": "6550", + "$id": "6555", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84594,13 +84664,13 @@ "isHttpMetadata": false }, { - "$id": "6551", + "$id": "6556", "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": "6552", + "$id": "6557", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84635,13 +84705,13 @@ "isHttpMetadata": false }, { - "$id": "6553", + "$id": "6558", "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": "6554", + "$id": "6559", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestTurnDetection", "namespace": "OpenAI", @@ -84650,13 +84720,13 @@ "decorators": [], "properties": [ { - "$id": "6555", + "$id": "6560", "kind": "property", "name": "type", "serializedName": "type", "doc": "Type of turn detection.", "type": { - "$ref": "1180" + "$ref": "1184" }, "optional": true, "readOnly": false, @@ -84672,13 +84742,13 @@ "isHttpMetadata": false }, { - "$id": "6556", + "$id": "6561", "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": "1184" + "$ref": "1188" }, "optional": true, "readOnly": false, @@ -84694,13 +84764,13 @@ "isHttpMetadata": false }, { - "$id": "6557", + "$id": "6562", "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": "6558", + "$id": "6563", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -84720,13 +84790,13 @@ "isHttpMetadata": false }, { - "$id": "6559", + "$id": "6564", "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": "6560", + "$id": "6565", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84746,13 +84816,13 @@ "isHttpMetadata": false }, { - "$id": "6561", + "$id": "6566", "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": "6562", + "$id": "6567", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84772,13 +84842,13 @@ "isHttpMetadata": false }, { - "$id": "6563", + "$id": "6568", "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": "6564", + "$id": "6569", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -84798,13 +84868,13 @@ "isHttpMetadata": false }, { - "$id": "6565", + "$id": "6570", "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": "6566", + "$id": "6571", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -84839,16 +84909,16 @@ "isHttpMetadata": false }, { - "$id": "6567", + "$id": "6572", "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": "6568", + "$id": "6573", "kind": "nullable", "type": { - "$id": "6569", + "$id": "6574", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestInputAudioNoiseReduction1", "namespace": "OpenAI", @@ -84857,13 +84927,13 @@ "decorators": [], "properties": [ { - "$id": "6570", + "$id": "6575", "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": "1190" + "$ref": "1194" }, "optional": true, "readOnly": false, @@ -84896,13 +84966,13 @@ "isHttpMetadata": false }, { - "$id": "6571", + "$id": "6576", "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": "2339" + "$ref": "2343" }, "optional": true, "readOnly": false, @@ -84918,13 +84988,13 @@ "isHttpMetadata": false }, { - "$id": "6572", + "$id": "6577", "kind": "property", "name": "client_secret", "serializedName": "client_secret", "doc": "Configuration options for the generated client secret.", "type": { - "$id": "6573", + "$id": "6578", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestClientSecret", "namespace": "OpenAI", @@ -84933,13 +85003,13 @@ "decorators": [], "properties": [ { - "$id": "6574", + "$id": "6579", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "Configuration for the ephemeral token expiration.", "type": { - "$id": "6575", + "$id": "6580", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestClientSecretExpiresAt", "namespace": "OpenAI", @@ -84948,13 +85018,13 @@ "decorators": [], "properties": [ { - "$id": "6576", + "$id": "6581", "kind": "property", "name": "anchor", "serializedName": "anchor", "doc": "The anchor point for the ephemeral token expiration. Only `created_at` is currently supported.", "type": { - "$ref": "1691" + "$ref": "1695" }, "optional": true, "readOnly": false, @@ -84970,13 +85040,13 @@ "isHttpMetadata": false }, { - "$id": "6577", + "$id": "6582", "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": "6578", + "$id": "6583", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85045,139 +85115,139 @@ } }, { - "$ref": "6353" - }, - { - "$ref": "6356" + "$ref": "6358" }, { - "$ref": "6367" + "$ref": "6361" }, { - "$ref": "6375" + "$ref": "6372" }, { - "$ref": "6381" + "$ref": "6380" }, { - "$ref": "6391" + "$ref": "6386" }, { - "$ref": "6395" + "$ref": "6396" }, { - "$ref": "6397" + "$ref": "6400" }, { - "$ref": "6399" + "$ref": "6402" }, { - "$ref": "6403" + "$ref": "6404" }, { - "$ref": "6405" + "$ref": "6408" }, { - "$ref": "6415" + "$ref": "6410" }, { - "$ref": "6417" + "$ref": "6420" }, { - "$ref": "6420" + "$ref": "6422" }, { - "$ref": "6428" + "$ref": "6425" }, { - "$ref": "6432" + "$ref": "6433" }, { - "$ref": "6434" + "$ref": "6437" }, { - "$ref": "6436" + "$ref": "6439" }, { - "$ref": "6438" + "$ref": "6441" }, { "$ref": "6443" }, { - "$ref": "6447" + "$ref": "6448" }, { - "$ref": "6451" + "$ref": "6452" }, { - "$ref": "6455" + "$ref": "6456" }, { - "$ref": "6456" + "$ref": "6460" }, { - "$ref": "6458" + "$ref": "6461" }, { - "$ref": "6462" + "$ref": "6463" }, { - "$ref": "6466" + "$ref": "6467" }, { - "$ref": "6475" + "$ref": "6471" }, { "$ref": "6480" }, { - "$ref": "6483" + "$ref": "6485" }, { - "$ref": "6492" + "$ref": "6488" }, { - "$ref": "6498" + "$ref": "6497" }, { - "$ref": "6506" + "$ref": "6503" }, { - "$ref": "6510" + "$ref": "6511" }, { - "$ref": "6513" + "$ref": "6515" }, { - "$ref": "6531" + "$ref": "6518" }, { - "$ref": "6535" + "$ref": "6536" }, { - "$ref": "6539" + "$ref": "6540" }, { - "$ref": "6542" + "$ref": "6544" }, { "$ref": "6547" }, { - "$ref": "6554" + "$ref": "6552" }, { - "$ref": "6569" + "$ref": "6559" }, { - "$ref": "6573" + "$ref": "6574" }, { - "$ref": "6575" + "$ref": "6578" }, { - "$id": "6579", + "$ref": "6580" + }, + { + "$id": "6584", "kind": "model", "name": "RealtimeServerEvent", "namespace": "OpenAI", @@ -85186,13 +85256,13 @@ "doc": "A realtime server event.", "decorators": [], "discriminatorProperty": { - "$id": "6580", + "$id": "6585", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of event.", "type": { - "$ref": "1194" + "$ref": "1198" }, "optional": false, "readOnly": false, @@ -85209,15 +85279,15 @@ }, "properties": [ { - "$ref": "6580" + "$ref": "6585" }, { - "$id": "6581", + "$id": "6586", "kind": "property", "name": "event_id", "serializedName": "event_id", "type": { - "$id": "6582", + "$id": "6587", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85239,7 +85309,7 @@ ], "discriminatedSubtypes": { "error": { - "$id": "6583", + "$id": "6588", "kind": "model", "name": "RealtimeServerEventError", "namespace": "OpenAI", @@ -85249,17 +85319,17 @@ "discriminatorValue": "error", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6584", + "$id": "6589", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `error`.", "type": { - "$ref": "1196" + "$ref": "1200" }, "optional": false, "readOnly": false, @@ -85275,13 +85345,13 @@ "isHttpMetadata": false }, { - "$id": "6585", + "$id": "6590", "kind": "property", "name": "error", "serializedName": "error", "doc": "Details of the error.", "type": { - "$id": "6586", + "$id": "6591", "kind": "model", "name": "RealtimeServerEventErrorError", "namespace": "OpenAI", @@ -85290,13 +85360,13 @@ "decorators": [], "properties": [ { - "$id": "6587", + "$id": "6592", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of error (e.g., \"invalid_request_error\", \"server_error\").", "type": { - "$id": "6588", + "$id": "6593", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85316,16 +85386,16 @@ "isHttpMetadata": false }, { - "$id": "6589", + "$id": "6594", "kind": "property", "name": "code", "serializedName": "code", "doc": "Error code, if any.", "type": { - "$id": "6590", + "$id": "6595", "kind": "nullable", "type": { - "$id": "6591", + "$id": "6596", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85347,13 +85417,13 @@ "isHttpMetadata": false }, { - "$id": "6592", + "$id": "6597", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable error message.", "type": { - "$id": "6593", + "$id": "6598", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85373,16 +85443,16 @@ "isHttpMetadata": false }, { - "$id": "6594", + "$id": "6599", "kind": "property", "name": "param", "serializedName": "param", "doc": "Parameter related to the error, if any.", "type": { - "$id": "6595", + "$id": "6600", "kind": "nullable", "type": { - "$id": "6596", + "$id": "6601", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85404,16 +85474,16 @@ "isHttpMetadata": false }, { - "$id": "6597", + "$id": "6602", "kind": "property", "name": "event_id", "serializedName": "event_id", "doc": "The event_id of the client event that caused the error, if applicable.", "type": { - "$id": "6598", + "$id": "6603", "kind": "nullable", "type": { - "$id": "6599", + "$id": "6604", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85452,7 +85522,7 @@ ] }, "session.created": { - "$id": "6600", + "$id": "6605", "kind": "model", "name": "RealtimeServerEventSessionCreated", "namespace": "OpenAI", @@ -85462,17 +85532,17 @@ "discriminatorValue": "session.created", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6601", + "$id": "6606", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `session.created`.", "type": { - "$ref": "1197" + "$ref": "1201" }, "optional": false, "readOnly": false, @@ -85488,12 +85558,12 @@ "isHttpMetadata": false }, { - "$id": "6602", + "$id": "6607", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$id": "6603", + "$id": "6608", "kind": "model", "name": "RealtimeResponseSession", "namespace": "OpenAI", @@ -85502,12 +85572,12 @@ "decorators": [], "properties": [ { - "$id": "6604", + "$id": "6609", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1693" + "$ref": "1697" }, "optional": false, "readOnly": false, @@ -85523,12 +85593,12 @@ "isHttpMetadata": false }, { - "$id": "6605", + "$id": "6610", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6606", + "$id": "6611", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85548,12 +85618,12 @@ "isHttpMetadata": false }, { - "$id": "6607", + "$id": "6612", "kind": "property", "name": "model", "serializedName": "model", "type": { - "$id": "6608", + "$id": "6613", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85573,12 +85643,12 @@ "isHttpMetadata": false }, { - "$id": "6609", + "$id": "6614", "kind": "property", "name": "modalities", "serializedName": "modalities", "type": { - "$ref": "6358" + "$ref": "6363" }, "optional": false, "readOnly": false, @@ -85594,12 +85664,12 @@ "isHttpMetadata": false }, { - "$id": "6610", + "$id": "6615", "kind": "property", "name": "instructions", "serializedName": "instructions", "type": { - "$id": "6611", + "$id": "6616", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85619,7 +85689,7 @@ "isHttpMetadata": false }, { - "$id": "6612", + "$id": "6617", "kind": "property", "name": "voice", "serializedName": "voice", @@ -85640,12 +85710,12 @@ "isHttpMetadata": false }, { - "$id": "6613", + "$id": "6618", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", "type": { - "$ref": "1111" + "$ref": "1115" }, "optional": false, "readOnly": false, @@ -85661,12 +85731,12 @@ "isHttpMetadata": false }, { - "$id": "6614", + "$id": "6619", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", "type": { - "$ref": "1111" + "$ref": "1115" }, "optional": false, "readOnly": false, @@ -85682,15 +85752,15 @@ "isHttpMetadata": false }, { - "$id": "6615", + "$id": "6620", "kind": "property", "name": "input_audio_transcription", "serializedName": "input_audio_transcription", "type": { - "$id": "6616", + "$id": "6621", "kind": "nullable", "type": { - "$ref": "6367" + "$ref": "6372" }, "namespace": "OpenAI" }, @@ -85708,12 +85778,12 @@ "isHttpMetadata": false }, { - "$id": "6617", + "$id": "6622", "kind": "property", "name": "turn_detection", "serializedName": "turn_detection", "type": { - "$ref": "6375" + "$ref": "6380" }, "optional": false, "readOnly": false, @@ -85729,12 +85799,12 @@ "isHttpMetadata": false }, { - "$id": "6618", + "$id": "6623", "kind": "property", "name": "input_audio_noise_reduction", "serializedName": "input_audio_noise_reduction", "type": { - "$ref": "6395" + "$ref": "6400" }, "optional": false, "readOnly": false, @@ -85750,12 +85820,12 @@ "isHttpMetadata": false }, { - "$id": "6619", + "$id": "6624", "kind": "property", "name": "tools", "serializedName": "tools", "type": { - "$ref": "6402" + "$ref": "6407" }, "optional": false, "readOnly": false, @@ -85771,12 +85841,12 @@ "isHttpMetadata": false }, { - "$id": "6620", + "$id": "6625", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$ref": "6414" + "$ref": "6419" }, "optional": false, "readOnly": false, @@ -85792,12 +85862,12 @@ "isHttpMetadata": false }, { - "$id": "6621", + "$id": "6626", "kind": "property", "name": "temperature", "serializedName": "temperature", "type": { - "$id": "6622", + "$id": "6627", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -85817,27 +85887,27 @@ "isHttpMetadata": false }, { - "$id": "6623", + "$id": "6628", "kind": "property", "name": "max_response_output_tokens", "serializedName": "max_response_output_tokens", "type": { - "$id": "6624", + "$id": "6629", "kind": "nullable", "type": { - "$id": "6625", + "$id": "6630", "kind": "union", "name": "RealtimeResponseSessionMaxResponseOutputTokens", "variantTypes": [ { - "$id": "6626", + "$id": "6631", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", "decorators": [] }, { - "$ref": "1695" + "$ref": "1699" } ], "namespace": "OpenAI", @@ -85876,7 +85946,7 @@ ] }, "session.updated": { - "$id": "6627", + "$id": "6632", "kind": "model", "name": "RealtimeServerEventSessionUpdated", "namespace": "OpenAI", @@ -85886,17 +85956,17 @@ "discriminatorValue": "session.updated", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6628", + "$id": "6633", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `session.updated`.", "type": { - "$ref": "1198" + "$ref": "1202" }, "optional": false, "readOnly": false, @@ -85912,12 +85982,12 @@ "isHttpMetadata": false }, { - "$id": "6629", + "$id": "6634", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$ref": "6603" + "$ref": "6608" }, "optional": false, "readOnly": false, @@ -85935,7 +86005,7 @@ ] }, "conversation.created": { - "$id": "6630", + "$id": "6635", "kind": "model", "name": "RealtimeServerEventConversationCreated", "namespace": "OpenAI", @@ -85945,17 +86015,17 @@ "discriminatorValue": "conversation.created", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6631", + "$id": "6636", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.created`.", "type": { - "$ref": "1199" + "$ref": "1203" }, "optional": false, "readOnly": false, @@ -85971,13 +86041,13 @@ "isHttpMetadata": false }, { - "$id": "6632", + "$id": "6637", "kind": "property", "name": "conversation", "serializedName": "conversation", "doc": "The conversation resource.", "type": { - "$id": "6633", + "$id": "6638", "kind": "model", "name": "RealtimeServerEventConversationCreatedConversation", "namespace": "OpenAI", @@ -85986,13 +86056,13 @@ "decorators": [], "properties": [ { - "$id": "6634", + "$id": "6639", "kind": "property", "name": "id", "serializedName": "id", "doc": "The unique ID of the conversation.", "type": { - "$id": "6635", + "$id": "6640", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86012,13 +86082,13 @@ "isHttpMetadata": false }, { - "$id": "6636", + "$id": "6641", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, must be `realtime.conversation`.", "type": { - "$id": "6637", + "$id": "6642", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86055,7 +86125,7 @@ ] }, "input_audio_buffer.committed": { - "$id": "6638", + "$id": "6643", "kind": "model", "name": "RealtimeServerEventInputAudioBufferCommitted", "namespace": "OpenAI", @@ -86065,17 +86135,17 @@ "discriminatorValue": "input_audio_buffer.committed", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6639", + "$id": "6644", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.committed`.", "type": { - "$ref": "1207" + "$ref": "1211" }, "optional": false, "readOnly": false, @@ -86091,13 +86161,13 @@ "isHttpMetadata": false }, { - "$id": "6640", + "$id": "6645", "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": "6641", + "$id": "6646", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86117,13 +86187,13 @@ "isHttpMetadata": false }, { - "$id": "6642", + "$id": "6647", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item that will be created.", "type": { - "$id": "6643", + "$id": "6648", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86145,7 +86215,7 @@ ] }, "input_audio_buffer.cleared": { - "$id": "6644", + "$id": "6649", "kind": "model", "name": "RealtimeServerEventInputAudioBufferCleared", "namespace": "OpenAI", @@ -86155,17 +86225,17 @@ "discriminatorValue": "input_audio_buffer.cleared", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6645", + "$id": "6650", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.cleared`.", "type": { - "$ref": "1208" + "$ref": "1212" }, "optional": false, "readOnly": false, @@ -86183,7 +86253,7 @@ ] }, "input_audio_buffer.speech_started": { - "$id": "6646", + "$id": "6651", "kind": "model", "name": "RealtimeServerEventInputAudioBufferSpeechStarted", "namespace": "OpenAI", @@ -86193,17 +86263,17 @@ "discriminatorValue": "input_audio_buffer.speech_started", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6647", + "$id": "6652", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.speech_started`.", "type": { - "$ref": "1209" + "$ref": "1213" }, "optional": false, "readOnly": false, @@ -86219,13 +86289,13 @@ "isHttpMetadata": false }, { - "$id": "6648", + "$id": "6653", "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": "6649", + "$id": "6654", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86245,13 +86315,13 @@ "isHttpMetadata": false }, { - "$id": "6650", + "$id": "6655", "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": "6651", + "$id": "6656", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86273,7 +86343,7 @@ ] }, "input_audio_buffer.speech_stopped": { - "$id": "6652", + "$id": "6657", "kind": "model", "name": "RealtimeServerEventInputAudioBufferSpeechStopped", "namespace": "OpenAI", @@ -86283,17 +86353,17 @@ "discriminatorValue": "input_audio_buffer.speech_stopped", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6653", + "$id": "6658", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.speech_stopped`.", "type": { - "$ref": "1210" + "$ref": "1214" }, "optional": false, "readOnly": false, @@ -86309,13 +86379,13 @@ "isHttpMetadata": false }, { - "$id": "6654", + "$id": "6659", "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": "6655", + "$id": "6660", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86335,13 +86405,13 @@ "isHttpMetadata": false }, { - "$id": "6656", + "$id": "6661", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item that will be created.", "type": { - "$id": "6657", + "$id": "6662", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86363,7 +86433,7 @@ ] }, "output_audio_buffer.cleared": { - "$id": "6658", + "$id": "6663", "kind": "model", "name": "RealtimeServerEventOutputAudioBufferCleared", "namespace": "OpenAI", @@ -86373,17 +86443,17 @@ "discriminatorValue": "output_audio_buffer.cleared", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6659", + "$id": "6664", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.cleared`.", "type": { - "$ref": "1211" + "$ref": "1215" }, "optional": false, "readOnly": false, @@ -86399,13 +86469,13 @@ "isHttpMetadata": false }, { - "$id": "6660", + "$id": "6665", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The unique ID of the response that produced the audio.", "type": { - "$id": "6661", + "$id": "6666", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86427,7 +86497,7 @@ ] }, "output_audio_buffer.started": { - "$id": "6662", + "$id": "6667", "kind": "model", "name": "RealtimeServerEventOutputAudioBufferStarted", "namespace": "OpenAI", @@ -86437,17 +86507,17 @@ "discriminatorValue": "output_audio_buffer.started", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6663", + "$id": "6668", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.started`.", "type": { - "$ref": "1212" + "$ref": "1216" }, "optional": false, "readOnly": false, @@ -86463,13 +86533,13 @@ "isHttpMetadata": false }, { - "$id": "6664", + "$id": "6669", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The unique ID of the response that produced the audio.", "type": { - "$id": "6665", + "$id": "6670", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86491,7 +86561,7 @@ ] }, "output_audio_buffer.stopped": { - "$id": "6666", + "$id": "6671", "kind": "model", "name": "RealtimeServerEventOutputAudioBufferStopped", "namespace": "OpenAI", @@ -86501,17 +86571,17 @@ "discriminatorValue": "output_audio_buffer.stopped", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6667", + "$id": "6672", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.stopped`.", "type": { - "$ref": "1213" + "$ref": "1217" }, "optional": false, "readOnly": false, @@ -86527,13 +86597,13 @@ "isHttpMetadata": false }, { - "$id": "6668", + "$id": "6673", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The unique ID of the response that produced the audio.", "type": { - "$id": "6669", + "$id": "6674", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86555,7 +86625,7 @@ ] }, "conversation.item.created": { - "$id": "6670", + "$id": "6675", "kind": "model", "name": "RealtimeServerEventConversationItemCreated", "namespace": "OpenAI", @@ -86565,17 +86635,17 @@ "discriminatorValue": "conversation.item.created", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6671", + "$id": "6676", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.created`.", "type": { - "$ref": "1203" + "$ref": "1207" }, "optional": false, "readOnly": false, @@ -86591,13 +86661,13 @@ "isHttpMetadata": false }, { - "$id": "6672", + "$id": "6677", "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": "6673", + "$id": "6678", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86617,12 +86687,12 @@ "isHttpMetadata": false }, { - "$id": "6674", + "$id": "6679", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$id": "6675", + "$id": "6680", "kind": "model", "name": "RealtimeConversationResponseItem", "namespace": "OpenAI", @@ -86630,12 +86700,12 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "6676", + "$id": "6681", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1141" + "$ref": "1145" }, "optional": false, "readOnly": false, @@ -86652,12 +86722,12 @@ }, "properties": [ { - "$id": "6677", + "$id": "6682", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1697" + "$ref": "1701" }, "optional": false, "readOnly": false, @@ -86673,18 +86743,18 @@ "isHttpMetadata": false }, { - "$ref": "6676" + "$ref": "6681" }, { - "$id": "6678", + "$id": "6683", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6679", + "$id": "6684", "kind": "nullable", "type": { - "$id": "6680", + "$id": "6685", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86708,7 +86778,7 @@ ], "discriminatedSubtypes": { "message": { - "$id": "6681", + "$id": "6686", "kind": "model", "name": "RealtimeResponseMessageItem", "namespace": "OpenAI", @@ -86717,16 +86787,16 @@ "discriminatorValue": "message", "decorators": [], "baseModel": { - "$ref": "6675" + "$ref": "6680" }, "properties": [ { - "$id": "6682", + "$id": "6687", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1143" + "$ref": "1147" }, "optional": false, "readOnly": false, @@ -86742,12 +86812,12 @@ "isHttpMetadata": false }, { - "$id": "6683", + "$id": "6688", "kind": "property", "name": "role", "serializedName": "role", "type": { - "$ref": "1146" + "$ref": "1150" }, "optional": false, "readOnly": false, @@ -86763,16 +86833,16 @@ "isHttpMetadata": false }, { - "$id": "6684", + "$id": "6689", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "6685", + "$id": "6690", "kind": "array", "name": "ArrayRealtimeContentPart", "valueType": { - "$ref": "6456" + "$ref": "6461" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -86791,12 +86861,12 @@ "isHttpMetadata": false }, { - "$id": "6686", + "$id": "6691", "kind": "property", "name": "status", "serializedName": "status", "type": { - "$ref": "1151" + "$ref": "1155" }, "optional": false, "readOnly": false, @@ -86814,7 +86884,7 @@ ] }, "function_call": { - "$id": "6687", + "$id": "6692", "kind": "model", "name": "RealtimeResponseFunctionCallItem", "namespace": "OpenAI", @@ -86823,16 +86893,16 @@ "discriminatorValue": "function_call", "decorators": [], "baseModel": { - "$ref": "6675" + "$ref": "6680" }, "properties": [ { - "$id": "6688", + "$id": "6693", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1144" + "$ref": "1148" }, "optional": false, "readOnly": false, @@ -86848,12 +86918,12 @@ "isHttpMetadata": false }, { - "$id": "6689", + "$id": "6694", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "6690", + "$id": "6695", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86873,12 +86943,12 @@ "isHttpMetadata": false }, { - "$id": "6691", + "$id": "6696", "kind": "property", "name": "call_id", "serializedName": "call_id", "type": { - "$id": "6692", + "$id": "6697", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86898,12 +86968,12 @@ "isHttpMetadata": false }, { - "$id": "6693", + "$id": "6698", "kind": "property", "name": "arguments", "serializedName": "arguments", "type": { - "$id": "6694", + "$id": "6699", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86923,12 +86993,12 @@ "isHttpMetadata": false }, { - "$id": "6695", + "$id": "6700", "kind": "property", "name": "status", "serializedName": "status", "type": { - "$ref": "1151" + "$ref": "1155" }, "optional": false, "readOnly": false, @@ -86946,7 +87016,7 @@ ] }, "function_call_output": { - "$id": "6696", + "$id": "6701", "kind": "model", "name": "RealtimeResponseFunctionCallOutputItem", "namespace": "OpenAI", @@ -86955,16 +87025,16 @@ "discriminatorValue": "function_call_output", "decorators": [], "baseModel": { - "$ref": "6675" + "$ref": "6680" }, "properties": [ { - "$id": "6697", + "$id": "6702", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "1145" + "$ref": "1149" }, "optional": false, "readOnly": false, @@ -86980,12 +87050,12 @@ "isHttpMetadata": false }, { - "$id": "6698", + "$id": "6703", "kind": "property", "name": "call_id", "serializedName": "call_id", "type": { - "$id": "6699", + "$id": "6704", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87005,12 +87075,12 @@ "isHttpMetadata": false }, { - "$id": "6700", + "$id": "6705", "kind": "property", "name": "output", "serializedName": "output", "type": { - "$id": "6701", + "$id": "6706", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87049,7 +87119,7 @@ ] }, "conversation.item.input_audio_transcription.completed": { - "$id": "6702", + "$id": "6707", "kind": "model", "name": "RealtimeServerEventConversationItemInputAudioTranscriptionCompleted", "namespace": "OpenAI", @@ -87059,17 +87129,17 @@ "discriminatorValue": "conversation.item.input_audio_transcription.completed", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6703", + "$id": "6708", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be\n`conversation.item.input_audio_transcription.completed`.", "type": { - "$ref": "1200" + "$ref": "1204" }, "optional": false, "readOnly": false, @@ -87085,13 +87155,13 @@ "isHttpMetadata": false }, { - "$id": "6704", + "$id": "6709", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item containing the audio.", "type": { - "$id": "6705", + "$id": "6710", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87111,13 +87181,13 @@ "isHttpMetadata": false }, { - "$id": "6706", + "$id": "6711", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part containing the audio.", "type": { - "$id": "6707", + "$id": "6712", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87137,13 +87207,13 @@ "isHttpMetadata": false }, { - "$id": "6708", + "$id": "6713", "kind": "property", "name": "transcript", "serializedName": "transcript", "doc": "The transcribed text.", "type": { - "$id": "6709", + "$id": "6714", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87163,20 +87233,20 @@ "isHttpMetadata": false }, { - "$id": "6710", + "$id": "6715", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "doc": "The log probabilities of the transcription.", "type": { - "$id": "6711", + "$id": "6716", "kind": "nullable", "type": { - "$id": "6712", + "$id": "6717", "kind": "array", "name": "ArrayLogProbProperties", "valueType": { - "$id": "6713", + "$id": "6718", "kind": "model", "name": "LogProbProperties", "namespace": "OpenAI", @@ -87186,13 +87256,13 @@ "decorators": [], "properties": [ { - "$id": "6714", + "$id": "6719", "kind": "property", "name": "token", "serializedName": "token", "doc": "The token that was used to generate the log probability.", "type": { - "$id": "6715", + "$id": "6720", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87212,13 +87282,13 @@ "isHttpMetadata": false }, { - "$id": "6716", + "$id": "6721", "kind": "property", "name": "logprob", "serializedName": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "6717", + "$id": "6722", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -87238,13 +87308,13 @@ "isHttpMetadata": false }, { - "$id": "6718", + "$id": "6723", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "The bytes that were used to generate the log probability.", "type": { - "$ref": "2559" + "$ref": "2563" }, "optional": false, "readOnly": false, @@ -87282,7 +87352,7 @@ ] }, "conversation.item.input_audio_transcription.failed": { - "$id": "6719", + "$id": "6724", "kind": "model", "name": "RealtimeServerEventConversationItemInputAudioTranscriptionFailed", "namespace": "OpenAI", @@ -87292,17 +87362,17 @@ "discriminatorValue": "conversation.item.input_audio_transcription.failed", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6720", + "$id": "6725", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be\n`conversation.item.input_audio_transcription.failed`.", "type": { - "$ref": "1202" + "$ref": "1206" }, "optional": false, "readOnly": false, @@ -87318,13 +87388,13 @@ "isHttpMetadata": false }, { - "$id": "6721", + "$id": "6726", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item.", "type": { - "$id": "6722", + "$id": "6727", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87344,13 +87414,13 @@ "isHttpMetadata": false }, { - "$id": "6723", + "$id": "6728", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part containing the audio.", "type": { - "$id": "6724", + "$id": "6729", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87370,13 +87440,13 @@ "isHttpMetadata": false }, { - "$id": "6725", + "$id": "6730", "kind": "property", "name": "error", "serializedName": "error", "doc": "Details of the transcription error.", "type": { - "$id": "6726", + "$id": "6731", "kind": "model", "name": "RealtimeServerEventConversationItemInputAudioTranscriptionFailedError", "namespace": "OpenAI", @@ -87385,13 +87455,13 @@ "decorators": [], "properties": [ { - "$id": "6727", + "$id": "6732", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of error.", "type": { - "$id": "6728", + "$id": "6733", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87411,13 +87481,13 @@ "isHttpMetadata": false }, { - "$id": "6729", + "$id": "6734", "kind": "property", "name": "code", "serializedName": "code", "doc": "Error code, if any.", "type": { - "$id": "6730", + "$id": "6735", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87437,13 +87507,13 @@ "isHttpMetadata": false }, { - "$id": "6731", + "$id": "6736", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable error message.", "type": { - "$id": "6732", + "$id": "6737", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87463,13 +87533,13 @@ "isHttpMetadata": false }, { - "$id": "6733", + "$id": "6738", "kind": "property", "name": "param", "serializedName": "param", "doc": "Parameter related to the error, if any.", "type": { - "$id": "6734", + "$id": "6739", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87506,7 +87576,7 @@ ] }, "conversation.item.truncated": { - "$id": "6735", + "$id": "6740", "kind": "model", "name": "RealtimeServerEventConversationItemTruncated", "namespace": "OpenAI", @@ -87516,17 +87586,17 @@ "discriminatorValue": "conversation.item.truncated", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6736", + "$id": "6741", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.truncated`.", "type": { - "$ref": "1205" + "$ref": "1209" }, "optional": false, "readOnly": false, @@ -87542,13 +87612,13 @@ "isHttpMetadata": false }, { - "$id": "6737", + "$id": "6742", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the assistant message item that was truncated.", "type": { - "$id": "6738", + "$id": "6743", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87568,13 +87638,13 @@ "isHttpMetadata": false }, { - "$id": "6739", + "$id": "6744", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part that was truncated.", "type": { - "$id": "6740", + "$id": "6745", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87594,13 +87664,13 @@ "isHttpMetadata": false }, { - "$id": "6741", + "$id": "6746", "kind": "property", "name": "audio_end_ms", "serializedName": "audio_end_ms", "doc": "The duration up to which the audio was truncated, in milliseconds.", "type": { - "$id": "6742", + "$id": "6747", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87622,7 +87692,7 @@ ] }, "conversation.item.deleted": { - "$id": "6743", + "$id": "6748", "kind": "model", "name": "RealtimeServerEventConversationItemDeleted", "namespace": "OpenAI", @@ -87632,17 +87702,17 @@ "discriminatorValue": "conversation.item.deleted", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6744", + "$id": "6749", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.deleted`.", "type": { - "$ref": "1206" + "$ref": "1210" }, "optional": false, "readOnly": false, @@ -87658,13 +87728,13 @@ "isHttpMetadata": false }, { - "$id": "6745", + "$id": "6750", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item that was deleted.", "type": { - "$id": "6746", + "$id": "6751", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87686,7 +87756,7 @@ ] }, "response.created": { - "$id": "6747", + "$id": "6752", "kind": "model", "name": "RealtimeServerEventResponseCreated", "namespace": "OpenAI", @@ -87696,17 +87766,17 @@ "discriminatorValue": "response.created", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6748", + "$id": "6753", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.created`.", "type": { - "$ref": "1214" + "$ref": "1218" }, "optional": false, "readOnly": false, @@ -87722,12 +87792,12 @@ "isHttpMetadata": false }, { - "$id": "6749", + "$id": "6754", "kind": "property", "name": "response", "serializedName": "response", "type": { - "$id": "6750", + "$id": "6755", "kind": "model", "name": "RealtimeResponse", "namespace": "OpenAI", @@ -87737,13 +87807,13 @@ "decorators": [], "properties": [ { - "$id": "6751", + "$id": "6756", "kind": "property", "name": "id", "serializedName": "id", "doc": "The unique ID of the response.", "type": { - "$id": "6752", + "$id": "6757", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87763,13 +87833,13 @@ "isHttpMetadata": false }, { - "$id": "6753", + "$id": "6758", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, must be `realtime.response`.", "type": { - "$ref": "1699" + "$ref": "1703" }, "optional": true, "readOnly": false, @@ -87785,13 +87855,13 @@ "isHttpMetadata": false }, { - "$id": "6754", + "$id": "6759", "kind": "property", "name": "status", "serializedName": "status", "doc": "The final status of the response (`completed`, `cancelled`, `failed`, or\n`incomplete`).", "type": { - "$ref": "1230" + "$ref": "1234" }, "optional": true, "readOnly": false, @@ -87807,13 +87877,13 @@ "isHttpMetadata": false }, { - "$id": "6755", + "$id": "6760", "kind": "property", "name": "status_details", "serializedName": "status_details", "doc": "Additional details about the status.", "type": { - "$id": "6756", + "$id": "6761", "kind": "model", "name": "RealtimeResponseStatusDetails", "namespace": "OpenAI", @@ -87822,13 +87892,13 @@ "decorators": [], "properties": [ { - "$id": "6757", + "$id": "6762", "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": "1236" + "$ref": "1240" }, "optional": true, "readOnly": false, @@ -87844,13 +87914,13 @@ "isHttpMetadata": false }, { - "$id": "6758", + "$id": "6763", "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": "1242" + "$ref": "1246" }, "optional": true, "readOnly": false, @@ -87866,13 +87936,13 @@ "isHttpMetadata": false }, { - "$id": "6759", + "$id": "6764", "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": "6760", + "$id": "6765", "kind": "model", "name": "RealtimeResponseStatusDetailsError", "namespace": "OpenAI", @@ -87881,13 +87951,13 @@ "decorators": [], "properties": [ { - "$id": "6761", + "$id": "6766", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of error.", "type": { - "$id": "6762", + "$id": "6767", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87907,13 +87977,13 @@ "isHttpMetadata": false }, { - "$id": "6763", + "$id": "6768", "kind": "property", "name": "code", "serializedName": "code", "doc": "Error code, if any.", "type": { - "$id": "6764", + "$id": "6769", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87963,17 +88033,17 @@ "isHttpMetadata": false }, { - "$id": "6765", + "$id": "6770", "kind": "property", "name": "output", "serializedName": "output", "doc": "The list of output items generated by the response.", "type": { - "$id": "6766", + "$id": "6771", "kind": "array", "name": "ArrayRealtimeConversationResponseItem", "valueType": { - "$ref": "6675" + "$ref": "6680" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -87992,13 +88062,13 @@ "isHttpMetadata": false }, { - "$id": "6767", + "$id": "6772", "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": "2345" + "$ref": "2349" }, "optional": false, "readOnly": false, @@ -88014,13 +88084,13 @@ "isHttpMetadata": false }, { - "$id": "6768", + "$id": "6773", "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": "6769", + "$id": "6774", "kind": "model", "name": "RealtimeResponseUsage", "namespace": "OpenAI", @@ -88029,13 +88099,13 @@ "decorators": [], "properties": [ { - "$id": "6770", + "$id": "6775", "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": "6771", + "$id": "6776", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88055,13 +88125,13 @@ "isHttpMetadata": false }, { - "$id": "6772", + "$id": "6777", "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": "6773", + "$id": "6778", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88081,13 +88151,13 @@ "isHttpMetadata": false }, { - "$id": "6774", + "$id": "6779", "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": "6775", + "$id": "6780", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88107,13 +88177,13 @@ "isHttpMetadata": false }, { - "$id": "6776", + "$id": "6781", "kind": "property", "name": "input_token_details", "serializedName": "input_token_details", "doc": "Details about the input tokens used in the Response.", "type": { - "$id": "6777", + "$id": "6782", "kind": "model", "name": "RealtimeResponseUsageInputTokenDetails", "namespace": "OpenAI", @@ -88122,13 +88192,13 @@ "decorators": [], "properties": [ { - "$id": "6778", + "$id": "6783", "kind": "property", "name": "cached_tokens", "serializedName": "cached_tokens", "doc": "The number of cached tokens used in the Response.", "type": { - "$id": "6779", + "$id": "6784", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88148,13 +88218,13 @@ "isHttpMetadata": false }, { - "$id": "6780", + "$id": "6785", "kind": "property", "name": "text_tokens", "serializedName": "text_tokens", "doc": "The number of text tokens used in the Response.", "type": { - "$id": "6781", + "$id": "6786", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88174,13 +88244,13 @@ "isHttpMetadata": false }, { - "$id": "6782", + "$id": "6787", "kind": "property", "name": "audio_tokens", "serializedName": "audio_tokens", "doc": "The number of audio tokens used in the Response.", "type": { - "$id": "6783", + "$id": "6788", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88215,13 +88285,13 @@ "isHttpMetadata": false }, { - "$id": "6784", + "$id": "6789", "kind": "property", "name": "output_token_details", "serializedName": "output_token_details", "doc": "Details about the output tokens used in the Response.", "type": { - "$id": "6785", + "$id": "6790", "kind": "model", "name": "RealtimeResponseUsageOutputTokenDetails", "namespace": "OpenAI", @@ -88230,13 +88300,13 @@ "decorators": [], "properties": [ { - "$id": "6786", + "$id": "6791", "kind": "property", "name": "text_tokens", "serializedName": "text_tokens", "doc": "The number of text tokens used in the Response.", "type": { - "$id": "6787", + "$id": "6792", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88256,13 +88326,13 @@ "isHttpMetadata": false }, { - "$id": "6788", + "$id": "6793", "kind": "property", "name": "audio_tokens", "serializedName": "audio_tokens", "doc": "The number of audio tokens used in the Response.", "type": { - "$id": "6789", + "$id": "6794", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88312,13 +88382,13 @@ "isHttpMetadata": false }, { - "$id": "6790", + "$id": "6795", "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": "6791", + "$id": "6796", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88338,7 +88408,7 @@ "isHttpMetadata": false }, { - "$id": "6792", + "$id": "6797", "kind": "property", "name": "voice", "serializedName": "voice", @@ -88360,17 +88430,17 @@ "isHttpMetadata": false }, { - "$id": "6793", + "$id": "6798", "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": "6794", + "$id": "6799", "kind": "array", "name": "Array44", "valueType": { - "$ref": "1248" + "$ref": "1252" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -88389,13 +88459,13 @@ "isHttpMetadata": false }, { - "$id": "6795", + "$id": "6800", "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": "1252" + "$ref": "1256" }, "optional": true, "readOnly": false, @@ -88411,13 +88481,13 @@ "isHttpMetadata": false }, { - "$id": "6796", + "$id": "6801", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Sampling temperature for the model, limited to [0.6, 1.2]. Defaults to 0.8.", "type": { - "$id": "6797", + "$id": "6802", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -88437,25 +88507,25 @@ "isHttpMetadata": false }, { - "$id": "6798", + "$id": "6803", "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": "6799", + "$id": "6804", "kind": "union", "name": "RealtimeResponseMaxOutputTokens", "variantTypes": [ { - "$id": "6800", + "$id": "6805", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", "decorators": [] }, { - "$ref": "1701" + "$ref": "1705" } ], "namespace": "OpenAI", @@ -88492,7 +88562,7 @@ ] }, "response.done": { - "$id": "6801", + "$id": "6806", "kind": "model", "name": "RealtimeServerEventResponseDone", "namespace": "OpenAI", @@ -88502,17 +88572,17 @@ "discriminatorValue": "response.done", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6802", + "$id": "6807", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.done`.", "type": { - "$ref": "1215" + "$ref": "1219" }, "optional": false, "readOnly": false, @@ -88528,12 +88598,12 @@ "isHttpMetadata": false }, { - "$id": "6803", + "$id": "6808", "kind": "property", "name": "response", "serializedName": "response", "type": { - "$ref": "6750" + "$ref": "6755" }, "optional": false, "readOnly": false, @@ -88551,7 +88621,7 @@ ] }, "response.output_item.added": { - "$id": "6804", + "$id": "6809", "kind": "model", "name": "RealtimeServerEventResponseOutputItemAdded", "namespace": "OpenAI", @@ -88561,17 +88631,17 @@ "discriminatorValue": "response.output_item.added", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6805", + "$id": "6810", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.output_item.added`.", "type": { - "$ref": "1216" + "$ref": "1220" }, "optional": false, "readOnly": false, @@ -88587,13 +88657,13 @@ "isHttpMetadata": false }, { - "$id": "6806", + "$id": "6811", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the Response to which the item belongs.", "type": { - "$id": "6807", + "$id": "6812", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88613,13 +88683,13 @@ "isHttpMetadata": false }, { - "$id": "6808", + "$id": "6813", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the Response.", "type": { - "$id": "6809", + "$id": "6814", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88639,12 +88709,12 @@ "isHttpMetadata": false }, { - "$id": "6810", + "$id": "6815", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$ref": "6675" + "$ref": "6680" }, "optional": false, "readOnly": false, @@ -88662,7 +88732,7 @@ ] }, "response.output_item.done": { - "$id": "6811", + "$id": "6816", "kind": "model", "name": "RealtimeServerEventResponseOutputItemDone", "namespace": "OpenAI", @@ -88672,17 +88742,17 @@ "discriminatorValue": "response.output_item.done", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6812", + "$id": "6817", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.output_item.done`.", "type": { - "$ref": "1217" + "$ref": "1221" }, "optional": false, "readOnly": false, @@ -88698,13 +88768,13 @@ "isHttpMetadata": false }, { - "$id": "6813", + "$id": "6818", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the Response to which the item belongs.", "type": { - "$id": "6814", + "$id": "6819", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88724,13 +88794,13 @@ "isHttpMetadata": false }, { - "$id": "6815", + "$id": "6820", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the Response.", "type": { - "$id": "6816", + "$id": "6821", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88750,12 +88820,12 @@ "isHttpMetadata": false }, { - "$id": "6817", + "$id": "6822", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$ref": "6675" + "$ref": "6680" }, "optional": false, "readOnly": false, @@ -88773,7 +88843,7 @@ ] }, "response.content_part.added": { - "$id": "6818", + "$id": "6823", "kind": "model", "name": "RealtimeServerEventResponseContentPartAdded", "namespace": "OpenAI", @@ -88783,17 +88853,17 @@ "discriminatorValue": "response.content_part.added", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6819", + "$id": "6824", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.content_part.added`.", "type": { - "$ref": "1218" + "$ref": "1222" }, "optional": false, "readOnly": false, @@ -88809,13 +88879,13 @@ "isHttpMetadata": false }, { - "$id": "6820", + "$id": "6825", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "6821", + "$id": "6826", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88835,13 +88905,13 @@ "isHttpMetadata": false }, { - "$id": "6822", + "$id": "6827", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to which the content part was added.", "type": { - "$id": "6823", + "$id": "6828", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88861,13 +88931,13 @@ "isHttpMetadata": false }, { - "$id": "6824", + "$id": "6829", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "6825", + "$id": "6830", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88887,13 +88957,13 @@ "isHttpMetadata": false }, { - "$id": "6826", + "$id": "6831", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "6827", + "$id": "6832", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88913,13 +88983,13 @@ "isHttpMetadata": false }, { - "$id": "6828", + "$id": "6833", "kind": "property", "name": "part", "serializedName": "part", "doc": "The content part that was added.", "type": { - "$ref": "6456" + "$ref": "6461" }, "optional": false, "readOnly": false, @@ -88937,7 +89007,7 @@ ] }, "response.content_part.done": { - "$id": "6829", + "$id": "6834", "kind": "model", "name": "RealtimeServerEventResponseContentPartDone", "namespace": "OpenAI", @@ -88947,17 +89017,17 @@ "discriminatorValue": "response.content_part.done", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6830", + "$id": "6835", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.content_part.done`.", "type": { - "$ref": "1219" + "$ref": "1223" }, "optional": false, "readOnly": false, @@ -88973,13 +89043,13 @@ "isHttpMetadata": false }, { - "$id": "6831", + "$id": "6836", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "6832", + "$id": "6837", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88999,13 +89069,13 @@ "isHttpMetadata": false }, { - "$id": "6833", + "$id": "6838", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "6834", + "$id": "6839", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89025,13 +89095,13 @@ "isHttpMetadata": false }, { - "$id": "6835", + "$id": "6840", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "6836", + "$id": "6841", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -89051,13 +89121,13 @@ "isHttpMetadata": false }, { - "$id": "6837", + "$id": "6842", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "6838", + "$id": "6843", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -89077,13 +89147,13 @@ "isHttpMetadata": false }, { - "$id": "6839", + "$id": "6844", "kind": "property", "name": "part", "serializedName": "part", "doc": "The content part that is done.", "type": { - "$ref": "6456" + "$ref": "6461" }, "optional": false, "readOnly": false, @@ -89101,7 +89171,7 @@ ] }, "response.text.delta": { - "$id": "6840", + "$id": "6845", "kind": "model", "name": "RealtimeServerEventResponseTextDelta", "namespace": "OpenAI", @@ -89111,17 +89181,17 @@ "discriminatorValue": "response.text.delta", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6841", + "$id": "6846", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.text.delta`.", "type": { - "$ref": "1220" + "$ref": "1224" }, "optional": false, "readOnly": false, @@ -89137,13 +89207,13 @@ "isHttpMetadata": false }, { - "$id": "6842", + "$id": "6847", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "6843", + "$id": "6848", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89163,13 +89233,13 @@ "isHttpMetadata": false }, { - "$id": "6844", + "$id": "6849", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "6845", + "$id": "6850", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89189,13 +89259,13 @@ "isHttpMetadata": false }, { - "$id": "6846", + "$id": "6851", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "6847", + "$id": "6852", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -89215,13 +89285,13 @@ "isHttpMetadata": false }, { - "$id": "6848", + "$id": "6853", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "6849", + "$id": "6854", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -89241,13 +89311,13 @@ "isHttpMetadata": false }, { - "$id": "6850", + "$id": "6855", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The text delta.", "type": { - "$id": "6851", + "$id": "6856", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89269,7 +89339,7 @@ ] }, "response.text.done": { - "$id": "6852", + "$id": "6857", "kind": "model", "name": "RealtimeServerEventResponseTextDone", "namespace": "OpenAI", @@ -89279,17 +89349,17 @@ "discriminatorValue": "response.text.done", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6853", + "$id": "6858", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.text.done`.", "type": { - "$ref": "1221" + "$ref": "1225" }, "optional": false, "readOnly": false, @@ -89305,13 +89375,13 @@ "isHttpMetadata": false }, { - "$id": "6854", + "$id": "6859", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "6855", + "$id": "6860", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89331,13 +89401,13 @@ "isHttpMetadata": false }, { - "$id": "6856", + "$id": "6861", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "6857", + "$id": "6862", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89357,13 +89427,13 @@ "isHttpMetadata": false }, { - "$id": "6858", + "$id": "6863", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "6859", + "$id": "6864", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -89383,13 +89453,13 @@ "isHttpMetadata": false }, { - "$id": "6860", + "$id": "6865", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "6861", + "$id": "6866", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -89409,13 +89479,13 @@ "isHttpMetadata": false }, { - "$id": "6862", + "$id": "6867", "kind": "property", "name": "text", "serializedName": "text", "doc": "The final text content.", "type": { - "$id": "6863", + "$id": "6868", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89437,7 +89507,7 @@ ] }, "response.audio_transcript.delta": { - "$id": "6864", + "$id": "6869", "kind": "model", "name": "RealtimeServerEventResponseAudioTranscriptDelta", "namespace": "OpenAI", @@ -89447,17 +89517,17 @@ "discriminatorValue": "response.audio_transcript.delta", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6865", + "$id": "6870", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.audio_transcript.delta`.", "type": { - "$ref": "1222" + "$ref": "1226" }, "optional": false, "readOnly": false, @@ -89473,13 +89543,13 @@ "isHttpMetadata": false }, { - "$id": "6866", + "$id": "6871", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "6867", + "$id": "6872", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89499,13 +89569,13 @@ "isHttpMetadata": false }, { - "$id": "6868", + "$id": "6873", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "6869", + "$id": "6874", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89525,13 +89595,13 @@ "isHttpMetadata": false }, { - "$id": "6870", + "$id": "6875", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "6871", + "$id": "6876", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -89551,13 +89621,13 @@ "isHttpMetadata": false }, { - "$id": "6872", + "$id": "6877", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "6873", + "$id": "6878", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -89577,13 +89647,13 @@ "isHttpMetadata": false }, { - "$id": "6874", + "$id": "6879", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The transcript delta.", "type": { - "$id": "6875", + "$id": "6880", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89605,7 +89675,7 @@ ] }, "response.audio_transcript.done": { - "$id": "6876", + "$id": "6881", "kind": "model", "name": "RealtimeServerEventResponseAudioTranscriptDone", "namespace": "OpenAI", @@ -89615,17 +89685,17 @@ "discriminatorValue": "response.audio_transcript.done", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6877", + "$id": "6882", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.audio_transcript.done`.", "type": { - "$ref": "1223" + "$ref": "1227" }, "optional": false, "readOnly": false, @@ -89641,13 +89711,13 @@ "isHttpMetadata": false }, { - "$id": "6878", + "$id": "6883", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "6879", + "$id": "6884", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89667,13 +89737,13 @@ "isHttpMetadata": false }, { - "$id": "6880", + "$id": "6885", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "6881", + "$id": "6886", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89693,13 +89763,13 @@ "isHttpMetadata": false }, { - "$id": "6882", + "$id": "6887", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "6883", + "$id": "6888", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -89719,13 +89789,13 @@ "isHttpMetadata": false }, { - "$id": "6884", + "$id": "6889", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "6885", + "$id": "6890", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -89745,13 +89815,13 @@ "isHttpMetadata": false }, { - "$id": "6886", + "$id": "6891", "kind": "property", "name": "transcript", "serializedName": "transcript", "doc": "The final transcript of the audio.", "type": { - "$id": "6887", + "$id": "6892", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89773,7 +89843,7 @@ ] }, "response.audio.delta": { - "$id": "6888", + "$id": "6893", "kind": "model", "name": "RealtimeServerEventResponseAudioDelta", "namespace": "OpenAI", @@ -89783,17 +89853,17 @@ "discriminatorValue": "response.audio.delta", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6889", + "$id": "6894", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.audio.delta`.", "type": { - "$ref": "1224" + "$ref": "1228" }, "optional": false, "readOnly": false, @@ -89809,13 +89879,13 @@ "isHttpMetadata": false }, { - "$id": "6890", + "$id": "6895", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "6891", + "$id": "6896", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89835,13 +89905,13 @@ "isHttpMetadata": false }, { - "$id": "6892", + "$id": "6897", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "6893", + "$id": "6898", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89861,13 +89931,13 @@ "isHttpMetadata": false }, { - "$id": "6894", + "$id": "6899", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "6895", + "$id": "6900", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -89887,13 +89957,13 @@ "isHttpMetadata": false }, { - "$id": "6896", + "$id": "6901", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "6897", + "$id": "6902", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -89913,13 +89983,13 @@ "isHttpMetadata": false }, { - "$id": "6898", + "$id": "6903", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "Base64-encoded audio data delta.", "type": { - "$id": "6899", + "$id": "6904", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -89942,7 +90012,7 @@ ] }, "response.audio.done": { - "$id": "6900", + "$id": "6905", "kind": "model", "name": "RealtimeServerEventResponseAudioDone", "namespace": "OpenAI", @@ -89952,17 +90022,17 @@ "discriminatorValue": "response.audio.done", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6901", + "$id": "6906", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.audio.done`.", "type": { - "$ref": "1225" + "$ref": "1229" }, "optional": false, "readOnly": false, @@ -89978,13 +90048,13 @@ "isHttpMetadata": false }, { - "$id": "6902", + "$id": "6907", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "6903", + "$id": "6908", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90004,13 +90074,13 @@ "isHttpMetadata": false }, { - "$id": "6904", + "$id": "6909", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "6905", + "$id": "6910", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90030,13 +90100,13 @@ "isHttpMetadata": false }, { - "$id": "6906", + "$id": "6911", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "6907", + "$id": "6912", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -90056,13 +90126,13 @@ "isHttpMetadata": false }, { - "$id": "6908", + "$id": "6913", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "6909", + "$id": "6914", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -90084,7 +90154,7 @@ ] }, "response.function_call_arguments.delta": { - "$id": "6910", + "$id": "6915", "kind": "model", "name": "RealtimeServerEventResponseFunctionCallArgumentsDelta", "namespace": "OpenAI", @@ -90094,17 +90164,17 @@ "discriminatorValue": "response.function_call_arguments.delta", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6911", + "$id": "6916", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.function_call_arguments.delta`.", "type": { - "$ref": "1226" + "$ref": "1230" }, "optional": false, "readOnly": false, @@ -90120,13 +90190,13 @@ "isHttpMetadata": false }, { - "$id": "6912", + "$id": "6917", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "6913", + "$id": "6918", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90146,13 +90216,13 @@ "isHttpMetadata": false }, { - "$id": "6914", + "$id": "6919", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the function call item.", "type": { - "$id": "6915", + "$id": "6920", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90172,13 +90242,13 @@ "isHttpMetadata": false }, { - "$id": "6916", + "$id": "6921", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "6917", + "$id": "6922", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -90198,13 +90268,13 @@ "isHttpMetadata": false }, { - "$id": "6918", + "$id": "6923", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the function call.", "type": { - "$id": "6919", + "$id": "6924", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90224,13 +90294,13 @@ "isHttpMetadata": false }, { - "$id": "6920", + "$id": "6925", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The arguments delta as a JSON string.", "type": { - "$id": "6921", + "$id": "6926", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90252,7 +90322,7 @@ ] }, "response.function_call_arguments.done": { - "$id": "6922", + "$id": "6927", "kind": "model", "name": "RealtimeServerEventResponseFunctionCallArgumentsDone", "namespace": "OpenAI", @@ -90262,17 +90332,17 @@ "discriminatorValue": "response.function_call_arguments.done", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6923", + "$id": "6928", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.function_call_arguments.done`.", "type": { - "$ref": "1227" + "$ref": "1231" }, "optional": false, "readOnly": false, @@ -90288,13 +90358,13 @@ "isHttpMetadata": false }, { - "$id": "6924", + "$id": "6929", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "6925", + "$id": "6930", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90314,13 +90384,13 @@ "isHttpMetadata": false }, { - "$id": "6926", + "$id": "6931", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the function call item.", "type": { - "$id": "6927", + "$id": "6932", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90340,13 +90410,13 @@ "isHttpMetadata": false }, { - "$id": "6928", + "$id": "6933", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "6929", + "$id": "6934", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -90366,13 +90436,13 @@ "isHttpMetadata": false }, { - "$id": "6930", + "$id": "6935", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the function call.", "type": { - "$id": "6931", + "$id": "6936", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90392,13 +90462,13 @@ "isHttpMetadata": false }, { - "$id": "6932", + "$id": "6937", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "The final arguments as a JSON string.", "type": { - "$id": "6933", + "$id": "6938", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90420,7 +90490,7 @@ ] }, "rate_limits.updated": { - "$id": "6934", + "$id": "6939", "kind": "model", "name": "RealtimeServerEventRateLimitsUpdated", "namespace": "OpenAI", @@ -90430,17 +90500,17 @@ "discriminatorValue": "rate_limits.updated", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6935", + "$id": "6940", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `rate_limits.updated`.", "type": { - "$ref": "1229" + "$ref": "1233" }, "optional": false, "readOnly": false, @@ -90456,17 +90526,17 @@ "isHttpMetadata": false }, { - "$id": "6936", + "$id": "6941", "kind": "property", "name": "rate_limits", "serializedName": "rate_limits", "doc": "List of rate limit information.", "type": { - "$id": "6937", + "$id": "6942", "kind": "array", "name": "ArrayRealtimeServerEventRateLimitsUpdatedRateLimitsItem", "valueType": { - "$id": "6938", + "$id": "6943", "kind": "model", "name": "RealtimeServerEventRateLimitsUpdatedRateLimitsItem", "namespace": "OpenAI", @@ -90475,13 +90545,13 @@ "decorators": [], "properties": [ { - "$id": "6939", + "$id": "6944", "kind": "property", "name": "name", "serializedName": "name", "doc": "The rate limit property name that this item includes information about.", "type": { - "$id": "6940", + "$id": "6945", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90501,13 +90571,13 @@ "isHttpMetadata": false }, { - "$id": "6941", + "$id": "6946", "kind": "property", "name": "limit", "serializedName": "limit", "doc": "The maximum configured limit for this rate limit property.", "type": { - "$id": "6942", + "$id": "6947", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -90527,13 +90597,13 @@ "isHttpMetadata": false }, { - "$id": "6943", + "$id": "6948", "kind": "property", "name": "remaining", "serializedName": "remaining", "doc": "The remaining quota available against the configured limit for this rate limit property.", "type": { - "$id": "6944", + "$id": "6949", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -90553,18 +90623,18 @@ "isHttpMetadata": false }, { - "$id": "6945", + "$id": "6950", "kind": "property", "name": "reset_seconds", "serializedName": "reset_seconds", "doc": "The remaining time, in seconds, until this rate limit property is reset.", "type": { - "$id": "6946", + "$id": "6951", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "6947", + "$id": "6952", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -90607,7 +90677,7 @@ ] }, "conversation.item.input_audio_transcription.delta": { - "$id": "6948", + "$id": "6953", "kind": "model", "name": "RealtimeServerEventConversationItemInputAudioTranscriptionDelta", "namespace": "OpenAI", @@ -90617,17 +90687,17 @@ "discriminatorValue": "conversation.item.input_audio_transcription.delta", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6949", + "$id": "6954", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.input_audio_transcription.delta`.", "type": { - "$ref": "1201" + "$ref": "1205" }, "optional": false, "readOnly": false, @@ -90643,13 +90713,13 @@ "isHttpMetadata": false }, { - "$id": "6950", + "$id": "6955", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "6951", + "$id": "6956", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90669,13 +90739,13 @@ "isHttpMetadata": false }, { - "$id": "6952", + "$id": "6957", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "6953", + "$id": "6958", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -90695,13 +90765,13 @@ "isHttpMetadata": false }, { - "$id": "6954", + "$id": "6959", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The text delta.", "type": { - "$id": "6955", + "$id": "6960", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90721,16 +90791,16 @@ "isHttpMetadata": false }, { - "$id": "6956", + "$id": "6961", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "doc": "The log probabilities of the transcription.", "type": { - "$id": "6957", + "$id": "6962", "kind": "nullable", "type": { - "$ref": "6712" + "$ref": "6717" }, "namespace": "OpenAI" }, @@ -90750,7 +90820,7 @@ ] }, "conversation.item.retrieved": { - "$id": "6958", + "$id": "6963", "kind": "model", "name": "RealtimeServerEventConversationItemRetrieved", "namespace": "OpenAI", @@ -90760,17 +90830,17 @@ "discriminatorValue": "conversation.item.retrieved", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6959", + "$id": "6964", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.retrieved`.", "type": { - "$ref": "1204" + "$ref": "1208" }, "optional": false, "readOnly": false, @@ -90786,12 +90856,12 @@ "isHttpMetadata": false }, { - "$id": "6960", + "$id": "6965", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$ref": "6675" + "$ref": "6680" }, "optional": false, "readOnly": false, @@ -90809,7 +90879,7 @@ ] }, "transcription_session.updated": { - "$id": "6961", + "$id": "6966", "kind": "model", "name": "RealtimeServerEventTranscriptionSessionUpdated", "namespace": "OpenAI", @@ -90819,17 +90889,17 @@ "discriminatorValue": "transcription_session.updated", "decorators": [], "baseModel": { - "$ref": "6579" + "$ref": "6584" }, "properties": [ { - "$id": "6962", + "$id": "6967", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `transcription_session.updated`.", "type": { - "$ref": "1228" + "$ref": "1232" }, "optional": false, "readOnly": false, @@ -90845,12 +90915,12 @@ "isHttpMetadata": false }, { - "$id": "6963", + "$id": "6968", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$id": "6964", + "$id": "6969", "kind": "model", "name": "RealtimeTranscriptionSessionCreateResponse", "namespace": "OpenAI", @@ -90860,13 +90930,13 @@ "decorators": [], "properties": [ { - "$id": "6965", + "$id": "6970", "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": "6966", + "$id": "6971", "kind": "model", "name": "RealtimeTranscriptionSessionCreateResponseClientSecret", "namespace": "OpenAI", @@ -90875,13 +90945,13 @@ "decorators": [], "properties": [ { - "$id": "6967", + "$id": "6972", "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": "6968", + "$id": "6973", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90901,18 +90971,18 @@ "isHttpMetadata": false }, { - "$id": "6969", + "$id": "6974", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "Timestamp for when the token expires. Currently, all tokens expire\nafter one minute.", "type": { - "$id": "6970", + "$id": "6975", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6971", + "$id": "6976", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -90950,17 +91020,17 @@ "isHttpMetadata": false }, { - "$id": "6972", + "$id": "6977", "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": "6973", + "$id": "6978", "kind": "array", "name": "Array45", "valueType": { - "$ref": "1257" + "$ref": "1261" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -90979,13 +91049,13 @@ "isHttpMetadata": false }, { - "$id": "6974", + "$id": "6979", "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": "6975", + "$id": "6980", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91005,13 +91075,13 @@ "isHttpMetadata": false }, { - "$id": "6976", + "$id": "6981", "kind": "property", "name": "input_audio_transcription", "serializedName": "input_audio_transcription", "doc": "Configuration of the transcription model.", "type": { - "$id": "6977", + "$id": "6982", "kind": "model", "name": "RealtimeTranscriptionSessionCreateResponseInputAudioTranscription", "namespace": "OpenAI", @@ -91020,13 +91090,13 @@ "decorators": [], "properties": [ { - "$id": "6978", + "$id": "6983", "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": "1261" + "$ref": "1265" }, "optional": true, "readOnly": false, @@ -91042,13 +91112,13 @@ "isHttpMetadata": false }, { - "$id": "6979", + "$id": "6984", "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": "6980", + "$id": "6985", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91068,13 +91138,13 @@ "isHttpMetadata": false }, { - "$id": "6981", + "$id": "6986", "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": "6982", + "$id": "6987", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91109,13 +91179,13 @@ "isHttpMetadata": false }, { - "$id": "6983", + "$id": "6988", "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": "6984", + "$id": "6989", "kind": "model", "name": "RealtimeTranscriptionSessionCreateResponseTurnDetection", "namespace": "OpenAI", @@ -91124,13 +91194,13 @@ "decorators": [], "properties": [ { - "$id": "6985", + "$id": "6990", "kind": "property", "name": "type", "serializedName": "type", "doc": "Type of turn detection, only `server_vad` is currently supported.", "type": { - "$id": "6986", + "$id": "6991", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91150,13 +91220,13 @@ "isHttpMetadata": false }, { - "$id": "6987", + "$id": "6992", "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": "6988", + "$id": "6993", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -91176,13 +91246,13 @@ "isHttpMetadata": false }, { - "$id": "6989", + "$id": "6994", "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": "6990", + "$id": "6995", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -91202,13 +91272,13 @@ "isHttpMetadata": false }, { - "$id": "6991", + "$id": "6996", "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": "6992", + "$id": "6997", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -91262,169 +91332,169 @@ } }, { - "$ref": "6583" - }, - { - "$ref": "6586" + "$ref": "6588" }, { - "$ref": "6600" + "$ref": "6591" }, { - "$ref": "6603" + "$ref": "6605" }, { - "$ref": "6627" + "$ref": "6608" }, { - "$ref": "6630" + "$ref": "6632" }, { - "$ref": "6633" + "$ref": "6635" }, { "$ref": "6638" }, { - "$ref": "6644" + "$ref": "6643" }, { - "$ref": "6646" + "$ref": "6649" }, { - "$ref": "6652" + "$ref": "6651" }, { - "$ref": "6658" + "$ref": "6657" }, { - "$ref": "6662" + "$ref": "6663" }, { - "$ref": "6666" + "$ref": "6667" }, { - "$ref": "6670" + "$ref": "6671" }, { "$ref": "6675" }, { - "$ref": "6681" + "$ref": "6680" }, { - "$ref": "6687" + "$ref": "6686" }, { - "$ref": "6696" + "$ref": "6692" }, { - "$ref": "6702" + "$ref": "6701" }, { - "$ref": "6713" + "$ref": "6707" }, { - "$ref": "6719" + "$ref": "6718" }, { - "$ref": "6726" + "$ref": "6724" }, { - "$ref": "6735" + "$ref": "6731" }, { - "$ref": "6743" + "$ref": "6740" }, { - "$ref": "6747" + "$ref": "6748" }, { - "$ref": "6750" + "$ref": "6752" }, { - "$ref": "6756" + "$ref": "6755" }, { - "$ref": "6760" + "$ref": "6761" }, { - "$ref": "6769" + "$ref": "6765" }, { - "$ref": "6777" + "$ref": "6774" }, { - "$ref": "6785" + "$ref": "6782" }, { - "$ref": "6801" + "$ref": "6790" }, { - "$ref": "6804" + "$ref": "6806" }, { - "$ref": "6811" + "$ref": "6809" }, { - "$ref": "6818" + "$ref": "6816" }, { - "$ref": "6829" + "$ref": "6823" }, { - "$ref": "6840" + "$ref": "6834" }, { - "$ref": "6852" + "$ref": "6845" }, { - "$ref": "6864" + "$ref": "6857" }, { - "$ref": "6876" + "$ref": "6869" }, { - "$ref": "6888" + "$ref": "6881" }, { - "$ref": "6900" + "$ref": "6893" }, { - "$ref": "6910" + "$ref": "6905" }, { - "$ref": "6922" + "$ref": "6915" }, { - "$ref": "6934" + "$ref": "6927" }, { - "$ref": "6938" + "$ref": "6939" }, { - "$ref": "6948" + "$ref": "6943" }, { - "$ref": "6958" + "$ref": "6953" }, { - "$ref": "6961" + "$ref": "6963" }, { - "$ref": "6964" + "$ref": "6966" }, { - "$ref": "6966" + "$ref": "6969" + }, + { + "$ref": "6971" }, { - "$ref": "6977" + "$ref": "6982" }, { - "$ref": "6984" + "$ref": "6989" }, { - "$id": "6993", + "$id": "6998", "kind": "model", "name": "RealtimeSessionCreateRequest", "namespace": "OpenAI", @@ -91434,13 +91504,13 @@ "decorators": [], "properties": [ { - "$id": "6994", + "$id": "6999", "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": "6358" + "$ref": "6363" }, "optional": true, "readOnly": false, @@ -91456,13 +91526,13 @@ "isHttpMetadata": false }, { - "$id": "6995", + "$id": "7000", "kind": "property", "name": "model", "serializedName": "model", "doc": "The Realtime model used for this session.", "type": { - "$ref": "1266" + "$ref": "1270" }, "optional": true, "readOnly": false, @@ -91478,13 +91548,13 @@ "isHttpMetadata": false }, { - "$id": "6996", + "$id": "7001", "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": "6997", + "$id": "7002", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91504,7 +91574,7 @@ "isHttpMetadata": false }, { - "$id": "6998", + "$id": "7003", "kind": "property", "name": "voice", "serializedName": "voice", @@ -91526,13 +91596,13 @@ "isHttpMetadata": false }, { - "$id": "6999", + "$id": "7004", "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": "1111" + "$ref": "1115" }, "optional": true, "readOnly": false, @@ -91548,13 +91618,13 @@ "isHttpMetadata": false }, { - "$id": "7000", + "$id": "7005", "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": "1111" + "$ref": "1115" }, "optional": true, "readOnly": false, @@ -91570,13 +91640,13 @@ "isHttpMetadata": false }, { - "$id": "7001", + "$id": "7006", "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": "7002", + "$id": "7007", "kind": "model", "name": "RealtimeSessionCreateRequestInputAudioTranscription", "namespace": "OpenAI", @@ -91585,13 +91655,13 @@ "decorators": [], "properties": [ { - "$id": "7003", + "$id": "7008", "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": "7004", + "$id": "7009", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91611,13 +91681,13 @@ "isHttpMetadata": false }, { - "$id": "7005", + "$id": "7010", "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": "7006", + "$id": "7011", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91637,13 +91707,13 @@ "isHttpMetadata": false }, { - "$id": "7007", + "$id": "7012", "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": "7008", + "$id": "7013", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91678,13 +91748,13 @@ "isHttpMetadata": false }, { - "$id": "7009", + "$id": "7014", "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": "7010", + "$id": "7015", "kind": "model", "name": "RealtimeSessionCreateRequestTurnDetection", "namespace": "OpenAI", @@ -91693,13 +91763,13 @@ "decorators": [], "properties": [ { - "$id": "7011", + "$id": "7016", "kind": "property", "name": "type", "serializedName": "type", "doc": "Type of turn detection.", "type": { - "$ref": "1274" + "$ref": "1278" }, "optional": true, "readOnly": false, @@ -91715,13 +91785,13 @@ "isHttpMetadata": false }, { - "$id": "7012", + "$id": "7017", "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": "1278" + "$ref": "1282" }, "optional": true, "readOnly": false, @@ -91737,13 +91807,13 @@ "isHttpMetadata": false }, { - "$id": "7013", + "$id": "7018", "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": "7014", + "$id": "7019", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -91763,13 +91833,13 @@ "isHttpMetadata": false }, { - "$id": "7015", + "$id": "7020", "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": "7016", + "$id": "7021", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -91789,13 +91859,13 @@ "isHttpMetadata": false }, { - "$id": "7017", + "$id": "7022", "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": "7018", + "$id": "7023", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -91815,13 +91885,13 @@ "isHttpMetadata": false }, { - "$id": "7019", + "$id": "7024", "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": "7020", + "$id": "7025", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -91841,13 +91911,13 @@ "isHttpMetadata": false }, { - "$id": "7021", + "$id": "7026", "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": "7022", + "$id": "7027", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -91882,16 +91952,16 @@ "isHttpMetadata": false }, { - "$id": "7023", + "$id": "7028", "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": "7024", + "$id": "7029", "kind": "nullable", "type": { - "$id": "7025", + "$id": "7030", "kind": "model", "name": "RealtimeSessionCreateRequestInputAudioNoiseReduction1", "namespace": "OpenAI", @@ -91900,13 +91970,13 @@ "decorators": [], "properties": [ { - "$id": "7026", + "$id": "7031", "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": "1284" + "$ref": "1288" }, "optional": true, "readOnly": false, @@ -91939,13 +92009,13 @@ "isHttpMetadata": false }, { - "$id": "7027", + "$id": "7032", "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": "7028", + "$id": "7033", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -91965,21 +92035,21 @@ "isHttpMetadata": false }, { - "$id": "7029", + "$id": "7034", "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": "7030", + "$id": "7035", "kind": "union", "name": "RealtimeSessionCreateRequestTracing", "variantTypes": [ { - "$ref": "1703" + "$ref": "1707" }, { - "$id": "7031", + "$id": "7036", "kind": "model", "name": "RealtimeSessionCreateRequestTracing1", "namespace": "OpenAI", @@ -91988,13 +92058,13 @@ "decorators": [], "properties": [ { - "$id": "7032", + "$id": "7037", "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": "7033", + "$id": "7038", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92014,13 +92084,13 @@ "isHttpMetadata": false }, { - "$id": "7034", + "$id": "7039", "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": "7035", + "$id": "7040", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92040,13 +92110,13 @@ "isHttpMetadata": false }, { - "$id": "7036", + "$id": "7041", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "The arbitrary metadata to attach to this trace to enable\nfiltering in the traces dashboard.", "type": { - "$id": "7037", + "$id": "7042", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -92085,13 +92155,13 @@ "isHttpMetadata": false }, { - "$id": "7038", + "$id": "7043", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "Tools (functions) available to the model.", "type": { - "$ref": "6402" + "$ref": "6407" }, "optional": true, "readOnly": false, @@ -92107,13 +92177,13 @@ "isHttpMetadata": false }, { - "$id": "7039", + "$id": "7044", "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": "7040", + "$id": "7045", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92133,13 +92203,13 @@ "isHttpMetadata": false }, { - "$id": "7041", + "$id": "7046", "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": "7042", + "$id": "7047", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -92159,25 +92229,25 @@ "isHttpMetadata": false }, { - "$id": "7043", + "$id": "7048", "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": "7044", + "$id": "7049", "kind": "union", "name": "RealtimeSessionCreateRequestMaxResponseOutputTokens", "variantTypes": [ { - "$id": "7045", + "$id": "7050", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", "decorators": [] }, { - "$ref": "1705" + "$ref": "1709" } ], "namespace": "OpenAI", @@ -92197,13 +92267,13 @@ "isHttpMetadata": false }, { - "$id": "7046", + "$id": "7051", "kind": "property", "name": "client_secret", "serializedName": "client_secret", "doc": "Configuration options for the generated client secret.", "type": { - "$id": "7047", + "$id": "7052", "kind": "model", "name": "RealtimeSessionCreateRequestClientSecret", "namespace": "OpenAI", @@ -92212,13 +92282,13 @@ "decorators": [], "properties": [ { - "$id": "7048", + "$id": "7053", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "Configuration for the ephemeral token expiration.", "type": { - "$id": "7049", + "$id": "7054", "kind": "model", "name": "RealtimeSessionCreateRequestClientSecretExpiresAt", "namespace": "OpenAI", @@ -92227,13 +92297,13 @@ "decorators": [], "properties": [ { - "$id": "7050", + "$id": "7055", "kind": "property", "name": "anchor", "serializedName": "anchor", "doc": "The anchor point for the ephemeral token expiration. Only `created_at` is currently supported.", "type": { - "$ref": "1707" + "$ref": "1711" }, "optional": true, "readOnly": false, @@ -92249,13 +92319,13 @@ "isHttpMetadata": false }, { - "$id": "7051", + "$id": "7056", "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": "7052", + "$id": "7057", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -92307,25 +92377,25 @@ ] }, { - "$ref": "7002" + "$ref": "7007" }, { - "$ref": "7010" + "$ref": "7015" }, { - "$ref": "7025" + "$ref": "7030" }, { - "$ref": "7031" + "$ref": "7036" }, { - "$ref": "7047" + "$ref": "7052" }, { - "$ref": "7049" + "$ref": "7054" }, { - "$id": "7053", + "$id": "7058", "kind": "model", "name": "RealtimeSessionCreateResponse", "namespace": "OpenAI", @@ -92335,13 +92405,13 @@ "decorators": [], "properties": [ { - "$id": "7054", + "$id": "7059", "kind": "property", "name": "client_secret", "serializedName": "client_secret", "doc": "Ephemeral key returned by the API.", "type": { - "$id": "7055", + "$id": "7060", "kind": "model", "name": "RealtimeSessionCreateResponseClientSecret", "namespace": "OpenAI", @@ -92350,13 +92420,13 @@ "decorators": [], "properties": [ { - "$id": "7056", + "$id": "7061", "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": "7057", + "$id": "7062", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92376,18 +92446,18 @@ "isHttpMetadata": false }, { - "$id": "7058", + "$id": "7063", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "Timestamp for when the token expires. Currently, all tokens expire\nafter one minute.", "type": { - "$id": "7059", + "$id": "7064", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7060", + "$id": "7065", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -92425,13 +92495,13 @@ "isHttpMetadata": false }, { - "$id": "7061", + "$id": "7066", "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": "6358" + "$ref": "6363" }, "optional": true, "readOnly": false, @@ -92447,13 +92517,13 @@ "isHttpMetadata": false }, { - "$id": "7062", + "$id": "7067", "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": "7063", + "$id": "7068", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92473,7 +92543,7 @@ "isHttpMetadata": false }, { - "$id": "7064", + "$id": "7069", "kind": "property", "name": "voice", "serializedName": "voice", @@ -92495,13 +92565,13 @@ "isHttpMetadata": false }, { - "$id": "7065", + "$id": "7070", "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": "1111" + "$ref": "1115" }, "optional": true, "readOnly": false, @@ -92517,13 +92587,13 @@ "isHttpMetadata": false }, { - "$id": "7066", + "$id": "7071", "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": "1111" + "$ref": "1115" }, "optional": true, "readOnly": false, @@ -92539,13 +92609,13 @@ "isHttpMetadata": false }, { - "$id": "7067", + "$id": "7072", "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": "7068", + "$id": "7073", "kind": "model", "name": "RealtimeSessionCreateResponseInputAudioTranscription", "namespace": "OpenAI", @@ -92554,13 +92624,13 @@ "decorators": [], "properties": [ { - "$id": "7069", + "$id": "7074", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for transcription, `whisper-1` is the only currently\nsupported model.", "type": { - "$id": "7070", + "$id": "7075", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92595,13 +92665,13 @@ "isHttpMetadata": false }, { - "$id": "7071", + "$id": "7076", "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": "7072", + "$id": "7077", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -92621,21 +92691,21 @@ "isHttpMetadata": false }, { - "$id": "7073", + "$id": "7078", "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": "7074", + "$id": "7079", "kind": "union", "name": "RealtimeSessionCreateResponseTracing", "variantTypes": [ { - "$ref": "1709" + "$ref": "1713" }, { - "$id": "7075", + "$id": "7080", "kind": "model", "name": "RealtimeSessionCreateResponseTracing1", "namespace": "OpenAI", @@ -92644,13 +92714,13 @@ "decorators": [], "properties": [ { - "$id": "7076", + "$id": "7081", "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": "7077", + "$id": "7082", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92670,13 +92740,13 @@ "isHttpMetadata": false }, { - "$id": "7078", + "$id": "7083", "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": "7079", + "$id": "7084", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92696,13 +92766,13 @@ "isHttpMetadata": false }, { - "$id": "7080", + "$id": "7085", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "The arbitrary metadata to attach to this trace to enable\nfiltering in the traces dashboard.", "type": { - "$id": "7081", + "$id": "7086", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -92741,13 +92811,13 @@ "isHttpMetadata": false }, { - "$id": "7082", + "$id": "7087", "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": "7083", + "$id": "7088", "kind": "model", "name": "RealtimeSessionCreateResponseTurnDetection", "namespace": "OpenAI", @@ -92756,13 +92826,13 @@ "decorators": [], "properties": [ { - "$id": "7084", + "$id": "7089", "kind": "property", "name": "type", "serializedName": "type", "doc": "Type of turn detection, only `server_vad` is currently supported.", "type": { - "$id": "7085", + "$id": "7090", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92782,13 +92852,13 @@ "isHttpMetadata": false }, { - "$id": "7086", + "$id": "7091", "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": "7087", + "$id": "7092", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -92808,13 +92878,13 @@ "isHttpMetadata": false }, { - "$id": "7088", + "$id": "7093", "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": "7089", + "$id": "7094", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -92834,13 +92904,13 @@ "isHttpMetadata": false }, { - "$id": "7090", + "$id": "7095", "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": "7091", + "$id": "7096", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -92875,13 +92945,13 @@ "isHttpMetadata": false }, { - "$id": "7092", + "$id": "7097", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "Tools (functions) available to the model.", "type": { - "$ref": "6402" + "$ref": "6407" }, "optional": true, "readOnly": false, @@ -92897,13 +92967,13 @@ "isHttpMetadata": false }, { - "$id": "7093", + "$id": "7098", "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": "7094", + "$id": "7099", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92923,13 +92993,13 @@ "isHttpMetadata": false }, { - "$id": "7095", + "$id": "7100", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Sampling temperature for the model, limited to [0.6, 1.2]. Defaults to 0.8.", "type": { - "$id": "7096", + "$id": "7101", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -92949,25 +93019,25 @@ "isHttpMetadata": false }, { - "$id": "7097", + "$id": "7102", "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": "7098", + "$id": "7103", "kind": "union", "name": "RealtimeSessionCreateResponseMaxResponseOutputTokens", "variantTypes": [ { - "$id": "7099", + "$id": "7104", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", "decorators": [] }, { - "$ref": "1711" + "$ref": "1715" } ], "namespace": "OpenAI", @@ -92989,19 +93059,19 @@ ] }, { - "$ref": "7055" + "$ref": "7060" }, { - "$ref": "7068" + "$ref": "7073" }, { - "$ref": "7075" + "$ref": "7080" }, { - "$ref": "7083" + "$ref": "7088" }, { - "$id": "7100", + "$id": "7105", "kind": "model", "name": "CreateUploadRequest", "namespace": "OpenAI", @@ -93010,13 +93080,13 @@ "decorators": [], "properties": [ { - "$id": "7101", + "$id": "7106", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file to upload.", "type": { - "$id": "7102", + "$id": "7107", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93036,13 +93106,13 @@ "isHttpMetadata": false }, { - "$id": "7103", + "$id": "7108", "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": "1288" + "$ref": "1292" }, "optional": false, "readOnly": false, @@ -93058,13 +93128,13 @@ "isHttpMetadata": false }, { - "$id": "7104", + "$id": "7109", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "The number of bytes in the file you are uploading.", "type": { - "$id": "7105", + "$id": "7110", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -93084,13 +93154,13 @@ "isHttpMetadata": false }, { - "$id": "7106", + "$id": "7111", "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": "7107", + "$id": "7112", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93112,7 +93182,7 @@ ] }, { - "$id": "7108", + "$id": "7113", "kind": "model", "name": "Upload", "namespace": "OpenAI", @@ -93122,13 +93192,13 @@ "decorators": [], "properties": [ { - "$id": "7109", + "$id": "7114", "kind": "property", "name": "id", "serializedName": "id", "doc": "The Upload unique identifier, which can be referenced in API endpoints.", "type": { - "$id": "7110", + "$id": "7115", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93148,18 +93218,18 @@ "isHttpMetadata": false }, { - "$id": "7111", + "$id": "7116", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the Upload was created.", "type": { - "$id": "7112", + "$id": "7117", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7113", + "$id": "7118", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -93182,13 +93252,13 @@ "isHttpMetadata": false }, { - "$id": "7114", + "$id": "7119", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file to be uploaded.", "type": { - "$id": "7115", + "$id": "7120", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93208,13 +93278,13 @@ "isHttpMetadata": false }, { - "$id": "7116", + "$id": "7121", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "The intended number of bytes to be uploaded.", "type": { - "$id": "7117", + "$id": "7122", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -93234,13 +93304,13 @@ "isHttpMetadata": false }, { - "$id": "7118", + "$id": "7123", "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": "7119", + "$id": "7124", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93260,13 +93330,13 @@ "isHttpMetadata": false }, { - "$id": "7120", + "$id": "7125", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the Upload.", "type": { - "$ref": "1294" + "$ref": "1298" }, "optional": false, "readOnly": false, @@ -93282,18 +93352,18 @@ "isHttpMetadata": false }, { - "$id": "7121", + "$id": "7126", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the Upload will expire.", "type": { - "$id": "7122", + "$id": "7127", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7123", + "$id": "7128", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -93316,13 +93386,13 @@ "isHttpMetadata": false }, { - "$id": "7124", + "$id": "7129", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"upload\".", "type": { - "$ref": "1713" + "$ref": "1717" }, "optional": true, "readOnly": false, @@ -93338,15 +93408,15 @@ "isHttpMetadata": false }, { - "$id": "7125", + "$id": "7130", "kind": "property", "name": "file", "serializedName": "file", "type": { - "$id": "7126", + "$id": "7131", "kind": "nullable", "type": { - "$ref": "3296" + "$ref": "3300" }, "namespace": "OpenAI" }, @@ -93366,7 +93436,7 @@ ] }, { - "$id": "7127", + "$id": "7132", "kind": "model", "name": "AddUploadPartRequest", "namespace": "OpenAI", @@ -93375,13 +93445,13 @@ "decorators": [], "properties": [ { - "$id": "7128", + "$id": "7133", "kind": "property", "name": "data", "serializedName": "data", "doc": "The chunk of bytes for this Part.", "type": { - "$id": "7129", + "$id": "7134", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -93410,7 +93480,7 @@ ] }, { - "$id": "7130", + "$id": "7135", "kind": "model", "name": "UploadPart", "namespace": "OpenAI", @@ -93420,13 +93490,13 @@ "decorators": [], "properties": [ { - "$id": "7131", + "$id": "7136", "kind": "property", "name": "id", "serializedName": "id", "doc": "The upload Part unique identifier, which can be referenced in API endpoints.", "type": { - "$id": "7132", + "$id": "7137", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93446,18 +93516,18 @@ "isHttpMetadata": false }, { - "$id": "7133", + "$id": "7138", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the Part was created.", "type": { - "$id": "7134", + "$id": "7139", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7135", + "$id": "7140", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -93480,13 +93550,13 @@ "isHttpMetadata": false }, { - "$id": "7136", + "$id": "7141", "kind": "property", "name": "upload_id", "serializedName": "upload_id", "doc": "The ID of the Upload object that this Part was added to.", "type": { - "$id": "7137", + "$id": "7142", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93506,13 +93576,13 @@ "isHttpMetadata": false }, { - "$id": "7138", + "$id": "7143", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `upload.part`.", "type": { - "$ref": "1715" + "$ref": "1719" }, "optional": false, "readOnly": false, @@ -93530,7 +93600,7 @@ ] }, { - "$id": "7139", + "$id": "7144", "kind": "model", "name": "CompleteUploadRequest", "namespace": "OpenAI", @@ -93539,13 +93609,13 @@ "decorators": [], "properties": [ { - "$id": "7140", + "$id": "7145", "kind": "property", "name": "part_ids", "serializedName": "part_ids", "doc": "The ordered list of Part IDs.", "type": { - "$ref": "2339" + "$ref": "2343" }, "optional": false, "readOnly": false, @@ -93561,13 +93631,13 @@ "isHttpMetadata": false }, { - "$id": "7141", + "$id": "7146", "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": "7142", + "$id": "7147", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93589,7 +93659,7 @@ ] }, { - "$id": "7143", + "$id": "7148", "kind": "model", "name": "BatchRequestInput", "namespace": "OpenAI", @@ -93600,12 +93670,12 @@ "decorators": [], "properties": [ { - "$id": "7144", + "$id": "7149", "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": "7145", + "$id": "7150", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93621,12 +93691,12 @@ "isHttpMetadata": false }, { - "$id": "7146", + "$id": "7151", "kind": "property", "name": "method", "doc": "The HTTP method to be used for the request. Currently only `POST` is supported.", "type": { - "$ref": "1717" + "$ref": "1721" }, "optional": true, "readOnly": false, @@ -93638,12 +93708,12 @@ "isHttpMetadata": false }, { - "$id": "7147", + "$id": "7152", "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": "7148", + "$id": "7153", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -93661,7 +93731,7 @@ ] }, { - "$id": "7149", + "$id": "7154", "kind": "model", "name": "BatchRequestOutput", "namespace": "OpenAI", @@ -93672,11 +93742,11 @@ "decorators": [], "properties": [ { - "$id": "7150", + "$id": "7155", "kind": "property", "name": "id", "type": { - "$id": "7151", + "$id": "7156", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93692,12 +93762,12 @@ "isHttpMetadata": false }, { - "$id": "7152", + "$id": "7157", "kind": "property", "name": "custom_id", "doc": "A developer-provided per-request id that will be used to match outputs to inputs.", "type": { - "$id": "7153", + "$id": "7158", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93713,14 +93783,14 @@ "isHttpMetadata": false }, { - "$id": "7154", + "$id": "7159", "kind": "property", "name": "response", "type": { - "$id": "7155", + "$id": "7160", "kind": "nullable", "type": { - "$id": "7156", + "$id": "7161", "kind": "model", "name": "BatchRequestOutputResponse1", "namespace": "OpenAI", @@ -93729,12 +93799,12 @@ "decorators": [], "properties": [ { - "$id": "7157", + "$id": "7162", "kind": "property", "name": "status_code", "doc": "The HTTP status code of the response", "type": { - "$id": "7158", + "$id": "7163", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -93750,12 +93820,12 @@ "isHttpMetadata": false }, { - "$id": "7159", + "$id": "7164", "kind": "property", "name": "request_id", "doc": "An unique identifier for the OpenAI API request. Please include this request ID when contacting support.", "type": { - "$id": "7160", + "$id": "7165", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93771,12 +93841,12 @@ "isHttpMetadata": false }, { - "$id": "7161", + "$id": "7166", "kind": "property", "name": "body", "doc": "The JSON body of the response", "type": { - "$ref": "3763" + "$ref": "3767" }, "optional": true, "readOnly": false, @@ -93801,15 +93871,15 @@ "isHttpMetadata": false }, { - "$id": "7162", + "$id": "7167", "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": "7163", + "$id": "7168", "kind": "nullable", "type": { - "$id": "7164", + "$id": "7169", "kind": "model", "name": "BatchRequestOutputError1", "namespace": "OpenAI", @@ -93818,12 +93888,12 @@ "decorators": [], "properties": [ { - "$id": "7165", + "$id": "7170", "kind": "property", "name": "code", "doc": "A machine-readable error code.", "type": { - "$id": "7166", + "$id": "7171", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93839,12 +93909,12 @@ "isHttpMetadata": false }, { - "$id": "7167", + "$id": "7172", "kind": "property", "name": "message", "doc": "A human-readable error message.", "type": { - "$id": "7168", + "$id": "7173", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93875,13 +93945,13 @@ ] }, { - "$ref": "7156" + "$ref": "7161" }, { - "$ref": "7164" + "$ref": "7169" }, { - "$id": "7169", + "$id": "7174", "kind": "model", "name": "ChatCompletionFunctionChoice", "namespace": "OpenAI", @@ -93892,7 +93962,7 @@ "properties": [] }, { - "$id": "7170", + "$id": "7175", "kind": "model", "name": "ChatCompletionToolChoice", "namespace": "OpenAI", @@ -93903,7 +93973,7 @@ "properties": [] }, { - "$id": "7171", + "$id": "7176", "kind": "model", "name": "FineTuneChatCompletionRequestAssistantMessage", "namespace": "OpenAI", @@ -93912,12 +93982,12 @@ "decorators": [], "properties": [ { - "$id": "7172", + "$id": "7177", "kind": "property", "name": "weight", "doc": "Controls whether the assistant message is trained against (0 or 1)", "type": { - "$ref": "1300" + "$ref": "1304" }, "optional": true, "readOnly": false, @@ -93929,12 +93999,12 @@ "isHttpMetadata": false }, { - "$id": "7173", + "$id": "7178", "kind": "property", "name": "content", "doc": "The contents of the assistant message. Required unless `tool_calls` or `function_call` is specified.", "type": { - "$ref": "2930" + "$ref": "2934" }, "optional": true, "readOnly": false, @@ -93946,12 +94016,12 @@ "isHttpMetadata": false }, { - "$id": "7174", + "$id": "7179", "kind": "property", "name": "refusal", "doc": "The refusal message by the assistant.", "type": { - "$ref": "2936" + "$ref": "2940" }, "optional": true, "readOnly": false, @@ -93963,12 +94033,12 @@ "isHttpMetadata": false }, { - "$id": "7175", + "$id": "7180", "kind": "property", "name": "role", "doc": "The role of the messages author, in this case `assistant`.", "type": { - "$id": "7176", + "$id": "7181", "kind": "enumvalue", "name": "assistant", "value": "assistant", @@ -93990,12 +94060,12 @@ "isHttpMetadata": false }, { - "$id": "7177", + "$id": "7182", "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": "7178", + "$id": "7183", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94011,12 +94081,12 @@ "isHttpMetadata": false }, { - "$id": "7179", + "$id": "7184", "kind": "property", "name": "audio", "doc": "Data about a previous audio response from the model.\n[Learn more](/docs/guides/audio).", "type": { - "$ref": "2943" + "$ref": "2947" }, "optional": true, "readOnly": false, @@ -94028,11 +94098,11 @@ "isHttpMetadata": false }, { - "$id": "7180", + "$id": "7185", "kind": "property", "name": "tool_calls", "type": { - "$ref": "2736" + "$ref": "2740" }, "optional": true, "readOnly": false, @@ -94044,12 +94114,12 @@ "isHttpMetadata": false }, { - "$id": "7181", + "$id": "7186", "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": "2949" + "$ref": "2953" }, "optional": true, "readOnly": false, @@ -94063,7 +94133,7 @@ ] }, { - "$id": "7182", + "$id": "7187", "kind": "model", "name": "FineTuneChatRequestInput", "namespace": "OpenAI", @@ -94074,32 +94144,32 @@ "decorators": [], "properties": [ { - "$id": "7183", + "$id": "7188", "kind": "property", "name": "messages", "type": { - "$id": "7184", + "$id": "7189", "kind": "array", "name": "Array46", "valueType": { - "$id": "7185", + "$id": "7190", "kind": "union", "name": "FineTuneChatRequestInputMessage", "variantTypes": [ { - "$ref": "2899" + "$ref": "2903" }, { - "$ref": "2918" + "$ref": "2922" }, { - "$ref": "7171" + "$ref": "7176" }, { - "$ref": "2955" + "$ref": "2959" }, { - "$ref": "2965" + "$ref": "2969" } ], "namespace": "OpenAI", @@ -94118,12 +94188,12 @@ "isHttpMetadata": false }, { - "$id": "7186", + "$id": "7191", "kind": "property", "name": "tools", "doc": "A list of tools the model may generate JSON inputs for.", "type": { - "$ref": "3056" + "$ref": "3060" }, "optional": true, "readOnly": false, @@ -94135,16 +94205,16 @@ "isHttpMetadata": false }, { - "$id": "7187", + "$id": "7192", "kind": "property", "name": "parallel_tool_calls", "type": { - "$id": "7188", + "$id": "7193", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "7189", + "$id": "7194", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -94162,12 +94232,12 @@ "isHttpMetadata": false }, { - "$id": "7190", + "$id": "7195", "kind": "property", "name": "functions", "doc": "A list of functions the model may generate JSON inputs for.", "type": { - "$ref": "3078" + "$ref": "3082" }, "optional": true, "readOnly": false, @@ -94181,7 +94251,7 @@ ] }, { - "$id": "7191", + "$id": "7196", "kind": "model", "name": "FineTuningJobsPageToken", "namespace": "OpenAI", @@ -94191,11 +94261,11 @@ "decorators": [], "properties": [ { - "$id": "7192", + "$id": "7197", "kind": "property", "name": "limit", "type": { - "$id": "7193", + "$id": "7198", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -94211,11 +94281,11 @@ "isHttpMetadata": false }, { - "$id": "7194", + "$id": "7199", "kind": "property", "name": "after", "type": { - "$id": "7195", + "$id": "7200", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94233,7 +94303,7 @@ ] }, { - "$id": "7196", + "$id": "7201", "kind": "model", "name": "MessageDeltaContent", "namespace": "OpenAI", @@ -94243,12 +94313,12 @@ "doc": "Represents a single piece of incremental content in an Assistants API streaming response.", "decorators": [], "discriminatorProperty": { - "$id": "7197", + "$id": "7202", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the content item.", "type": { - "$ref": "898" + "$ref": "902" }, "optional": false, "readOnly": false, @@ -94261,12 +94331,12 @@ }, "properties": [ { - "$ref": "7197" + "$ref": "7202" } ], "discriminatedSubtypes": { "image_file": { - "$id": "7198", + "$id": "7203", "kind": "model", "name": "MessageDeltaContentImageFileObject", "namespace": "OpenAI", @@ -94277,16 +94347,16 @@ "discriminatorValue": "image_file", "decorators": [], "baseModel": { - "$ref": "7196" + "$ref": "7201" }, "properties": [ { - "$id": "7199", + "$id": "7204", "kind": "property", "name": "index", "doc": "The index of the content part in the message.", "type": { - "$id": "7200", + "$id": "7205", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -94302,12 +94372,12 @@ "isHttpMetadata": false }, { - "$id": "7201", + "$id": "7206", "kind": "property", "name": "type", "doc": "Always `image_file`.", "type": { - "$ref": "901" + "$ref": "905" }, "optional": false, "readOnly": false, @@ -94319,11 +94389,11 @@ "isHttpMetadata": false }, { - "$id": "7202", + "$id": "7207", "kind": "property", "name": "image_file", "type": { - "$id": "7203", + "$id": "7208", "kind": "model", "name": "MessageDeltaContentImageFileObjectImageFile", "namespace": "OpenAI", @@ -94332,12 +94402,12 @@ "decorators": [], "properties": [ { - "$id": "7204", + "$id": "7209", "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": "7205", + "$id": "7210", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94353,12 +94423,12 @@ "isHttpMetadata": false }, { - "$id": "7206", + "$id": "7211", "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": "1304" + "$ref": "1308" }, "optional": true, "readOnly": false, @@ -94383,7 +94453,7 @@ ] }, "image_url": { - "$id": "7207", + "$id": "7212", "kind": "model", "name": "MessageDeltaContentImageUrlObject", "namespace": "OpenAI", @@ -94394,16 +94464,16 @@ "discriminatorValue": "image_url", "decorators": [], "baseModel": { - "$ref": "7196" + "$ref": "7201" }, "properties": [ { - "$id": "7208", + "$id": "7213", "kind": "property", "name": "index", "doc": "The index of the content part in the message.", "type": { - "$id": "7209", + "$id": "7214", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -94419,12 +94489,12 @@ "isHttpMetadata": false }, { - "$id": "7210", + "$id": "7215", "kind": "property", "name": "type", "doc": "Always `image_url`.", "type": { - "$ref": "902" + "$ref": "906" }, "optional": false, "readOnly": false, @@ -94436,11 +94506,11 @@ "isHttpMetadata": false }, { - "$id": "7211", + "$id": "7216", "kind": "property", "name": "image_url", "type": { - "$id": "7212", + "$id": "7217", "kind": "model", "name": "MessageDeltaContentImageUrlObjectImageUrl", "namespace": "OpenAI", @@ -94449,12 +94519,12 @@ "decorators": [], "properties": [ { - "$id": "7213", + "$id": "7218", "kind": "property", "name": "url", "doc": "The URL of the image, must be a supported image types: jpeg, jpg, png, gif, webp.", "type": { - "$id": "7214", + "$id": "7219", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -94470,12 +94540,12 @@ "isHttpMetadata": false }, { - "$id": "7215", + "$id": "7220", "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": "1309" + "$ref": "1313" }, "optional": true, "readOnly": false, @@ -94500,7 +94570,7 @@ ] }, "text": { - "$id": "7216", + "$id": "7221", "kind": "model", "name": "MessageDeltaContentTextObject", "namespace": "OpenAI", @@ -94511,16 +94581,16 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "7196" + "$ref": "7201" }, "properties": [ { - "$id": "7217", + "$id": "7222", "kind": "property", "name": "index", "doc": "The index of the content part in the message.", "type": { - "$id": "7218", + "$id": "7223", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -94536,12 +94606,12 @@ "isHttpMetadata": false }, { - "$id": "7219", + "$id": "7224", "kind": "property", "name": "type", "doc": "Always `text`.", "type": { - "$ref": "900" + "$ref": "904" }, "optional": false, "readOnly": false, @@ -94553,11 +94623,11 @@ "isHttpMetadata": false }, { - "$id": "7220", + "$id": "7225", "kind": "property", "name": "text", "type": { - "$id": "7221", + "$id": "7226", "kind": "model", "name": "MessageDeltaContentTextObjectText", "namespace": "OpenAI", @@ -94566,12 +94636,12 @@ "decorators": [], "properties": [ { - "$id": "7222", + "$id": "7227", "kind": "property", "name": "value", "doc": "The data that makes up the text.", "type": { - "$id": "7223", + "$id": "7228", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94587,15 +94657,15 @@ "isHttpMetadata": false }, { - "$id": "7224", + "$id": "7229", "kind": "property", "name": "annotations", "type": { - "$id": "7225", + "$id": "7230", "kind": "array", "name": "ArrayMessageDeltaTextContentAnnotation", "valueType": { - "$id": "7226", + "$id": "7231", "kind": "model", "name": "MessageDeltaTextContentAnnotation", "namespace": "OpenAI", @@ -94604,12 +94674,12 @@ "usage": "Output", "decorators": [], "discriminatorProperty": { - "$id": "7227", + "$id": "7232", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the content item.", "type": { - "$ref": "909" + "$ref": "913" }, "optional": false, "readOnly": false, @@ -94622,12 +94692,12 @@ }, "properties": [ { - "$ref": "7227" + "$ref": "7232" } ], "discriminatedSubtypes": { "file_citation": { - "$id": "7228", + "$id": "7233", "kind": "model", "name": "MessageDeltaContentTextAnnotationsFileCitationObject", "namespace": "OpenAI", @@ -94638,16 +94708,16 @@ "discriminatorValue": "file_citation", "decorators": [], "baseModel": { - "$ref": "7226" + "$ref": "7231" }, "properties": [ { - "$id": "7229", + "$id": "7234", "kind": "property", "name": "index", "doc": "The index of the annotation in the text content part.", "type": { - "$id": "7230", + "$id": "7235", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -94663,12 +94733,12 @@ "isHttpMetadata": false }, { - "$id": "7231", + "$id": "7236", "kind": "property", "name": "type", "doc": "Always `file_citation`.", "type": { - "$ref": "911" + "$ref": "915" }, "optional": false, "readOnly": false, @@ -94680,12 +94750,12 @@ "isHttpMetadata": false }, { - "$id": "7232", + "$id": "7237", "kind": "property", "name": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "7233", + "$id": "7238", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94701,11 +94771,11 @@ "isHttpMetadata": false }, { - "$id": "7234", + "$id": "7239", "kind": "property", "name": "file_citation", "type": { - "$id": "7235", + "$id": "7240", "kind": "model", "name": "MessageDeltaContentTextAnnotationsFileCitationObjectFileCitation", "namespace": "OpenAI", @@ -94714,12 +94784,12 @@ "decorators": [], "properties": [ { - "$id": "7236", + "$id": "7241", "kind": "property", "name": "file_id", "doc": "The ID of the specific File the citation is from.", "type": { - "$id": "7237", + "$id": "7242", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94735,12 +94805,12 @@ "isHttpMetadata": false }, { - "$id": "7238", + "$id": "7243", "kind": "property", "name": "quote", "doc": "The specific quote in the file.", "type": { - "$id": "7239", + "$id": "7244", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94767,11 +94837,11 @@ "isHttpMetadata": false }, { - "$id": "7240", + "$id": "7245", "kind": "property", "name": "start_index", "type": { - "$id": "7241", + "$id": "7246", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -94787,11 +94857,11 @@ "isHttpMetadata": false }, { - "$id": "7242", + "$id": "7247", "kind": "property", "name": "end_index", "type": { - "$id": "7243", + "$id": "7248", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -94809,7 +94879,7 @@ ] }, "file_path": { - "$id": "7244", + "$id": "7249", "kind": "model", "name": "MessageDeltaContentTextAnnotationsFilePathObject", "namespace": "OpenAI", @@ -94820,16 +94890,16 @@ "discriminatorValue": "file_path", "decorators": [], "baseModel": { - "$ref": "7226" + "$ref": "7231" }, "properties": [ { - "$id": "7245", + "$id": "7250", "kind": "property", "name": "index", "doc": "The index of the annotation in the text content part.", "type": { - "$id": "7246", + "$id": "7251", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -94845,12 +94915,12 @@ "isHttpMetadata": false }, { - "$id": "7247", + "$id": "7252", "kind": "property", "name": "type", "doc": "Always `file_path`.", "type": { - "$ref": "912" + "$ref": "916" }, "optional": false, "readOnly": false, @@ -94862,12 +94932,12 @@ "isHttpMetadata": false }, { - "$id": "7248", + "$id": "7253", "kind": "property", "name": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "7249", + "$id": "7254", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94883,11 +94953,11 @@ "isHttpMetadata": false }, { - "$id": "7250", + "$id": "7255", "kind": "property", "name": "file_path", "type": { - "$id": "7251", + "$id": "7256", "kind": "model", "name": "MessageDeltaContentTextAnnotationsFilePathObjectFilePath", "namespace": "OpenAI", @@ -94896,12 +94966,12 @@ "decorators": [], "properties": [ { - "$id": "7252", + "$id": "7257", "kind": "property", "name": "file_id", "doc": "The ID of the file that was generated.", "type": { - "$id": "7253", + "$id": "7258", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94928,11 +94998,11 @@ "isHttpMetadata": false }, { - "$id": "7254", + "$id": "7259", "kind": "property", "name": "start_index", "type": { - "$id": "7255", + "$id": "7260", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -94948,11 +95018,11 @@ "isHttpMetadata": false }, { - "$id": "7256", + "$id": "7261", "kind": "property", "name": "end_index", "type": { - "$id": "7257", + "$id": "7262", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -94997,7 +95067,7 @@ ] }, "refusal": { - "$id": "7258", + "$id": "7263", "kind": "model", "name": "MessageDeltaContentRefusalObject", "namespace": "OpenAI", @@ -95007,16 +95077,16 @@ "discriminatorValue": "refusal", "decorators": [], "baseModel": { - "$ref": "7196" + "$ref": "7201" }, "properties": [ { - "$id": "7259", + "$id": "7264", "kind": "property", "name": "index", "doc": "The index of the refusal part in the message.", "type": { - "$id": "7260", + "$id": "7265", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -95032,12 +95102,12 @@ "isHttpMetadata": false }, { - "$id": "7261", + "$id": "7266", "kind": "property", "name": "type", "doc": "Always `refusal`.", "type": { - "$ref": "903" + "$ref": "907" }, "optional": false, "readOnly": false, @@ -95049,11 +95119,11 @@ "isHttpMetadata": false }, { - "$id": "7262", + "$id": "7267", "kind": "property", "name": "refusal", "type": { - "$id": "7263", + "$id": "7268", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95072,20 +95142,17 @@ } } }, - { - "$ref": "7198" - }, { "$ref": "7203" }, { - "$ref": "7207" + "$ref": "7208" }, { "$ref": "7212" }, { - "$ref": "7216" + "$ref": "7217" }, { "$ref": "7221" @@ -95094,22 +95161,25 @@ "$ref": "7226" }, { - "$ref": "7228" + "$ref": "7231" + }, + { + "$ref": "7233" }, { - "$ref": "7235" + "$ref": "7240" }, { - "$ref": "7244" + "$ref": "7249" }, { - "$ref": "7251" + "$ref": "7256" }, { - "$ref": "7258" + "$ref": "7263" }, { - "$id": "7264", + "$id": "7269", "kind": "model", "name": "MessageDeltaObject", "namespace": "OpenAI", @@ -95120,12 +95190,12 @@ "decorators": [], "properties": [ { - "$id": "7265", + "$id": "7270", "kind": "property", "name": "id", "doc": "The identifier of the message, which can be referenced in API endpoints.", "type": { - "$id": "7266", + "$id": "7271", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95141,12 +95211,12 @@ "isHttpMetadata": false }, { - "$id": "7267", + "$id": "7272", "kind": "property", "name": "object", "doc": "The object type, which is always `thread.message.delta`.", "type": { - "$ref": "1719" + "$ref": "1723" }, "optional": false, "readOnly": false, @@ -95158,12 +95228,12 @@ "isHttpMetadata": false }, { - "$id": "7268", + "$id": "7273", "kind": "property", "name": "delta", "doc": "The delta containing the fields that have changed on the Message.", "type": { - "$id": "7269", + "$id": "7274", "kind": "model", "name": "MessageDeltaObjectDelta", "namespace": "OpenAI", @@ -95172,12 +95242,12 @@ "decorators": [], "properties": [ { - "$id": "7270", + "$id": "7275", "kind": "property", "name": "role", "doc": "The entity that produced the message. One of `user` or `assistant`.", "type": { - "$ref": "1314" + "$ref": "1318" }, "optional": true, "readOnly": false, @@ -95189,16 +95259,16 @@ "isHttpMetadata": false }, { - "$id": "7271", + "$id": "7276", "kind": "property", "name": "content", "doc": "The content of the message in array of text and/or images.", "type": { - "$id": "7272", + "$id": "7277", "kind": "array", "name": "ArrayMessageDeltaContent", "valueType": { - "$ref": "7196" + "$ref": "7201" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -95226,10 +95296,10 @@ ] }, { - "$ref": "7269" + "$ref": "7274" }, { - "$id": "7273", + "$id": "7278", "kind": "model", "name": "RunStepDeltaObject", "namespace": "OpenAI", @@ -95240,12 +95310,12 @@ "decorators": [], "properties": [ { - "$id": "7274", + "$id": "7279", "kind": "property", "name": "id", "doc": "The identifier of the run step, which can be referenced in API endpoints.", "type": { - "$id": "7275", + "$id": "7280", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95261,12 +95331,12 @@ "isHttpMetadata": false }, { - "$id": "7276", + "$id": "7281", "kind": "property", "name": "object", "doc": "The object type, which is always `thread.run.step.delta`.", "type": { - "$ref": "1721" + "$ref": "1725" }, "optional": false, "readOnly": false, @@ -95278,12 +95348,12 @@ "isHttpMetadata": false }, { - "$id": "7277", + "$id": "7282", "kind": "property", "name": "delta", "doc": "The delta containing the fields that have changed on the run step.", "type": { - "$id": "7278", + "$id": "7283", "kind": "model", "name": "RunStepDeltaObjectDelta", "namespace": "OpenAI", @@ -95292,12 +95362,12 @@ "decorators": [], "properties": [ { - "$id": "7279", + "$id": "7284", "kind": "property", "name": "step_details", "doc": "The details of the run step.", "type": { - "$id": "7280", + "$id": "7285", "kind": "model", "name": "RunStepDeltaStepDetails", "namespace": "OpenAI", @@ -95305,12 +95375,12 @@ "usage": "Output", "decorators": [], "discriminatorProperty": { - "$id": "7281", + "$id": "7286", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the details object.", "type": { - "$ref": "1023" + "$ref": "1027" }, "optional": false, "readOnly": false, @@ -95323,12 +95393,12 @@ }, "properties": [ { - "$ref": "7281" + "$ref": "7286" } ], "discriminatedSubtypes": { "message_creation": { - "$id": "7282", + "$id": "7287", "kind": "model", "name": "RunStepDeltaStepDetailsMessageCreationObject", "namespace": "OpenAI", @@ -95339,16 +95409,16 @@ "discriminatorValue": "message_creation", "decorators": [], "baseModel": { - "$ref": "7280" + "$ref": "7285" }, "properties": [ { - "$id": "7283", + "$id": "7288", "kind": "property", "name": "type", "doc": "Always `message_creation`.", "type": { - "$ref": "1025" + "$ref": "1029" }, "optional": false, "readOnly": false, @@ -95360,11 +95430,11 @@ "isHttpMetadata": false }, { - "$id": "7284", + "$id": "7289", "kind": "property", "name": "message_creation", "type": { - "$id": "7285", + "$id": "7290", "kind": "model", "name": "RunStepDeltaStepDetailsMessageCreationObjectMessageCreation", "namespace": "OpenAI", @@ -95373,12 +95443,12 @@ "decorators": [], "properties": [ { - "$id": "7286", + "$id": "7291", "kind": "property", "name": "message_id", "doc": "The ID of the message that was created by this run step.", "type": { - "$id": "7287", + "$id": "7292", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95407,7 +95477,7 @@ ] }, "tool_calls": { - "$id": "7288", + "$id": "7293", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsObject", "namespace": "OpenAI", @@ -95418,16 +95488,16 @@ "discriminatorValue": "tool_calls", "decorators": [], "baseModel": { - "$ref": "7280" + "$ref": "7285" }, "properties": [ { - "$id": "7289", + "$id": "7294", "kind": "property", "name": "type", "doc": "Always `tool_calls`.", "type": { - "$ref": "1026" + "$ref": "1030" }, "optional": false, "readOnly": false, @@ -95439,16 +95509,16 @@ "isHttpMetadata": false }, { - "$id": "7290", + "$id": "7295", "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": "7291", + "$id": "7296", "kind": "array", "name": "ArrayRunStepDeltaStepDetailsToolCallsObjectToolCallsObject", "valueType": { - "$id": "7292", + "$id": "7297", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsObjectToolCallsObject", "namespace": "OpenAI", @@ -95457,12 +95527,12 @@ "doc": "Abstractly represents a run step tool call details inner object.", "decorators": [], "discriminatorProperty": { - "$id": "7293", + "$id": "7298", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the details object.", "type": { - "$ref": "1027" + "$ref": "1031" }, "optional": false, "readOnly": false, @@ -95475,12 +95545,12 @@ }, "properties": [ { - "$ref": "7293" + "$ref": "7298" } ], "discriminatedSubtypes": { "code_interpreter": { - "$id": "7294", + "$id": "7299", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeObject", "namespace": "OpenAI", @@ -95491,16 +95561,16 @@ "discriminatorValue": "code_interpreter", "decorators": [], "baseModel": { - "$ref": "7292" + "$ref": "7297" }, "properties": [ { - "$id": "7295", + "$id": "7300", "kind": "property", "name": "index", "doc": "The index of the tool call in the tool calls array.", "type": { - "$id": "7296", + "$id": "7301", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -95516,12 +95586,12 @@ "isHttpMetadata": false }, { - "$id": "7297", + "$id": "7302", "kind": "property", "name": "id", "doc": "The ID of the tool call.", "type": { - "$id": "7298", + "$id": "7303", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95537,12 +95607,12 @@ "isHttpMetadata": false }, { - "$id": "7299", + "$id": "7304", "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": "1029" + "$ref": "1033" }, "optional": false, "readOnly": false, @@ -95554,12 +95624,12 @@ "isHttpMetadata": false }, { - "$id": "7300", + "$id": "7305", "kind": "property", "name": "code_interpreter", "doc": "The Code Interpreter tool call definition.", "type": { - "$id": "7301", + "$id": "7306", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreter", "namespace": "OpenAI", @@ -95568,12 +95638,12 @@ "decorators": [], "properties": [ { - "$id": "7302", + "$id": "7307", "kind": "property", "name": "input", "doc": "The input to the Code Interpreter tool call.", "type": { - "$id": "7303", + "$id": "7308", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95589,16 +95659,16 @@ "isHttpMetadata": false }, { - "$id": "7304", + "$id": "7309", "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": "7305", + "$id": "7310", "kind": "array", "name": "ArrayRunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreterOutputsObject", "valueType": { - "$id": "7306", + "$id": "7311", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreterOutputsObject", "namespace": "OpenAI", @@ -95607,12 +95677,12 @@ "doc": "Abstractly represents a run step tool call details code interpreter output.", "decorators": [], "discriminatorProperty": { - "$id": "7307", + "$id": "7312", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the details object.", "type": { - "$ref": "1032" + "$ref": "1036" }, "optional": false, "readOnly": false, @@ -95625,12 +95695,12 @@ }, "properties": [ { - "$ref": "7307" + "$ref": "7312" } ], "discriminatedSubtypes": { "logs": { - "$id": "7308", + "$id": "7313", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject", "namespace": "OpenAI", @@ -95641,16 +95711,16 @@ "discriminatorValue": "logs", "decorators": [], "baseModel": { - "$ref": "7306" + "$ref": "7311" }, "properties": [ { - "$id": "7309", + "$id": "7314", "kind": "property", "name": "index", "doc": "The index of the output in the outputs array.", "type": { - "$id": "7310", + "$id": "7315", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -95666,12 +95736,12 @@ "isHttpMetadata": false }, { - "$id": "7311", + "$id": "7316", "kind": "property", "name": "type", "doc": "Always `logs`.", "type": { - "$ref": "1034" + "$ref": "1038" }, "optional": false, "readOnly": false, @@ -95683,12 +95753,12 @@ "isHttpMetadata": false }, { - "$id": "7312", + "$id": "7317", "kind": "property", "name": "logs", "doc": "The text output from the Code Interpreter tool call.", "type": { - "$id": "7313", + "$id": "7318", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95706,7 +95776,7 @@ ] }, "image": { - "$id": "7314", + "$id": "7319", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeOutputImageObject", "namespace": "OpenAI", @@ -95716,16 +95786,16 @@ "discriminatorValue": "image", "decorators": [], "baseModel": { - "$ref": "7306" + "$ref": "7311" }, "properties": [ { - "$id": "7315", + "$id": "7320", "kind": "property", "name": "index", "doc": "The index of the output in the outputs array.", "type": { - "$id": "7316", + "$id": "7321", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -95741,12 +95811,12 @@ "isHttpMetadata": false }, { - "$id": "7317", + "$id": "7322", "kind": "property", "name": "type", "doc": "Always `image`.", "type": { - "$ref": "1035" + "$ref": "1039" }, "optional": false, "readOnly": false, @@ -95758,11 +95828,11 @@ "isHttpMetadata": false }, { - "$id": "7318", + "$id": "7323", "kind": "property", "name": "image", "type": { - "$id": "7319", + "$id": "7324", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectImage", "namespace": "OpenAI", @@ -95771,12 +95841,12 @@ "decorators": [], "properties": [ { - "$id": "7320", + "$id": "7325", "kind": "property", "name": "file_id", "doc": "The [file](/docs/api-reference/files) ID of the image.", "type": { - "$id": "7321", + "$id": "7326", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95832,7 +95902,7 @@ ] }, "file_search": { - "$id": "7322", + "$id": "7327", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsFileSearchObject", "namespace": "OpenAI", @@ -95842,16 +95912,16 @@ "discriminatorValue": "file_search", "decorators": [], "baseModel": { - "$ref": "7292" + "$ref": "7297" }, "properties": [ { - "$id": "7323", + "$id": "7328", "kind": "property", "name": "index", "doc": "The index of the tool call in the tool calls array.", "type": { - "$id": "7324", + "$id": "7329", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -95867,12 +95937,12 @@ "isHttpMetadata": false }, { - "$id": "7325", + "$id": "7330", "kind": "property", "name": "id", "doc": "The ID of the tool call object.", "type": { - "$id": "7326", + "$id": "7331", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95888,12 +95958,12 @@ "isHttpMetadata": false }, { - "$id": "7327", + "$id": "7332", "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": "1030" + "$ref": "1034" }, "optional": false, "readOnly": false, @@ -95905,12 +95975,12 @@ "isHttpMetadata": false }, { - "$id": "7328", + "$id": "7333", "kind": "property", "name": "file_search", "doc": "For now, this is always going to be an empty object.", "type": { - "$id": "7329", + "$id": "7334", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsFileSearchObjectFileSearch", "namespace": "OpenAI", @@ -95919,11 +95989,11 @@ "decorators": [], "properties": [ { - "$id": "7330", + "$id": "7335", "kind": "property", "name": "ranking_options", "type": { - "$ref": "5944" + "$ref": "5949" }, "optional": true, "readOnly": false, @@ -95935,12 +96005,12 @@ "isHttpMetadata": false }, { - "$id": "7331", + "$id": "7336", "kind": "property", "name": "results", "doc": "The results of the file search.", "type": { - "$ref": "5949" + "$ref": "5954" }, "optional": true, "readOnly": true, @@ -95965,7 +96035,7 @@ ] }, "function": { - "$id": "7332", + "$id": "7337", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsFunctionObject", "namespace": "OpenAI", @@ -95975,16 +96045,16 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "7292" + "$ref": "7297" }, "properties": [ { - "$id": "7333", + "$id": "7338", "kind": "property", "name": "index", "doc": "The index of the tool call in the tool calls array.", "type": { - "$id": "7334", + "$id": "7339", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96000,12 +96070,12 @@ "isHttpMetadata": false }, { - "$id": "7335", + "$id": "7340", "kind": "property", "name": "id", "doc": "The ID of the tool call object.", "type": { - "$id": "7336", + "$id": "7341", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96021,12 +96091,12 @@ "isHttpMetadata": false }, { - "$id": "7337", + "$id": "7342", "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": "1031" + "$ref": "1035" }, "optional": false, "readOnly": false, @@ -96038,12 +96108,12 @@ "isHttpMetadata": false }, { - "$id": "7338", + "$id": "7343", "kind": "property", "name": "function", "doc": "The definition of the function that was called.", "type": { - "$id": "7339", + "$id": "7344", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsFunctionObjectFunction", "namespace": "OpenAI", @@ -96052,12 +96122,12 @@ "decorators": [], "properties": [ { - "$id": "7340", + "$id": "7345", "kind": "property", "name": "name", "doc": "The name of the function.", "type": { - "$id": "7341", + "$id": "7346", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96073,12 +96143,12 @@ "isHttpMetadata": false }, { - "$id": "7342", + "$id": "7347", "kind": "property", "name": "arguments", "doc": "The arguments passed to the function.", "type": { - "$id": "7343", + "$id": "7348", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96094,15 +96164,15 @@ "isHttpMetadata": false }, { - "$id": "7344", + "$id": "7349", "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": "7345", + "$id": "7350", "kind": "nullable", "type": { - "$id": "7346", + "$id": "7351", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96173,55 +96243,55 @@ ] }, { - "$ref": "7278" - }, - { - "$ref": "7280" + "$ref": "7283" }, { - "$ref": "7282" + "$ref": "7285" }, { - "$ref": "7285" + "$ref": "7287" }, { - "$ref": "7288" + "$ref": "7290" }, { - "$ref": "7292" + "$ref": "7293" }, { - "$ref": "7294" + "$ref": "7297" }, { - "$ref": "7301" + "$ref": "7299" }, { "$ref": "7306" }, { - "$ref": "7308" + "$ref": "7311" }, { - "$ref": "7314" + "$ref": "7313" }, { "$ref": "7319" }, { - "$ref": "7322" + "$ref": "7324" + }, + { + "$ref": "7327" }, { - "$ref": "7329" + "$ref": "7334" }, { - "$ref": "7332" + "$ref": "7337" }, { - "$ref": "7339" + "$ref": "7344" }, { - "$id": "7347", + "$id": "7352", "kind": "model", "name": "CreateThreadRequestToolResourcesFileSearchBase", "namespace": "OpenAI", @@ -96232,7 +96302,7 @@ "properties": [] }, { - "$id": "7348", + "$id": "7353", "kind": "model", "name": "AssistantCollectionOptions", "namespace": "OpenAI", @@ -96242,12 +96312,12 @@ "decorators": [], "properties": [ { - "$id": "7349", + "$id": "7354", "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": "7350", + "$id": "7355", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96263,12 +96333,12 @@ "isHttpMetadata": true }, { - "$id": "7351", + "$id": "7356", "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": "7352", + "$id": "7357", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96284,12 +96354,12 @@ "isHttpMetadata": true }, { - "$id": "7353", + "$id": "7358", "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": "7354", + "$id": "7359", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96305,12 +96375,12 @@ "isHttpMetadata": true }, { - "$id": "7355", + "$id": "7360", "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": "1318" + "$ref": "1322" }, "optional": true, "readOnly": false, @@ -96324,7 +96394,7 @@ ] }, { - "$id": "7356", + "$id": "7361", "kind": "model", "name": "MessageCollectionOptions", "namespace": "OpenAI", @@ -96334,12 +96404,12 @@ "decorators": [], "properties": [ { - "$id": "7357", + "$id": "7362", "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": "7358", + "$id": "7363", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96355,12 +96425,12 @@ "isHttpMetadata": true }, { - "$id": "7359", + "$id": "7364", "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": "7360", + "$id": "7365", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96376,12 +96446,12 @@ "isHttpMetadata": true }, { - "$id": "7361", + "$id": "7366", "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": "7362", + "$id": "7367", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96397,12 +96467,12 @@ "isHttpMetadata": true }, { - "$id": "7363", + "$id": "7368", "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": "1322" + "$ref": "1326" }, "optional": true, "readOnly": false, @@ -96416,7 +96486,7 @@ ] }, { - "$id": "7364", + "$id": "7369", "kind": "model", "name": "RunCollectionOptions", "namespace": "OpenAI", @@ -96426,12 +96496,12 @@ "decorators": [], "properties": [ { - "$id": "7365", + "$id": "7370", "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": "7366", + "$id": "7371", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96447,12 +96517,12 @@ "isHttpMetadata": true }, { - "$id": "7367", + "$id": "7372", "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": "7368", + "$id": "7373", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96468,12 +96538,12 @@ "isHttpMetadata": true }, { - "$id": "7369", + "$id": "7374", "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": "7370", + "$id": "7375", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96489,12 +96559,12 @@ "isHttpMetadata": true }, { - "$id": "7371", + "$id": "7376", "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": "1326" + "$ref": "1330" }, "optional": true, "readOnly": false, @@ -96508,7 +96578,7 @@ ] }, { - "$id": "7372", + "$id": "7377", "kind": "model", "name": "RunStepCollectionOptions", "namespace": "OpenAI", @@ -96518,12 +96588,12 @@ "decorators": [], "properties": [ { - "$id": "7373", + "$id": "7378", "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": "7374", + "$id": "7379", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96539,12 +96609,12 @@ "isHttpMetadata": true }, { - "$id": "7375", + "$id": "7380", "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": "7376", + "$id": "7381", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96560,12 +96630,12 @@ "isHttpMetadata": true }, { - "$id": "7377", + "$id": "7382", "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": "7378", + "$id": "7383", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96581,12 +96651,12 @@ "isHttpMetadata": true }, { - "$id": "7379", + "$id": "7384", "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": "1330" + "$ref": "1334" }, "optional": true, "readOnly": false, @@ -96600,7 +96670,7 @@ ] }, { - "$id": "7380", + "$id": "7385", "kind": "model", "name": "DotNetCombinedJsonTranscriptionResponse", "namespace": "OpenAI", @@ -96610,12 +96680,12 @@ "decorators": [], "properties": [ { - "$id": "7381", + "$id": "7386", "kind": "property", "name": "task", "doc": "The task label.", "type": { - "$ref": "1723" + "$ref": "1727" }, "optional": false, "readOnly": false, @@ -96627,12 +96697,12 @@ "isHttpMetadata": false }, { - "$id": "7382", + "$id": "7387", "kind": "property", "name": "language", "doc": "The language of the input audio.", "type": { - "$id": "7383", + "$id": "7388", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96648,17 +96718,17 @@ "isHttpMetadata": false }, { - "$id": "7384", + "$id": "7389", "kind": "property", "name": "duration", "doc": "The duration of the input audio.", "type": { - "$id": "7385", + "$id": "7390", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "7386", + "$id": "7391", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -96677,12 +96747,12 @@ "isHttpMetadata": false }, { - "$id": "7387", + "$id": "7392", "kind": "property", "name": "text", "doc": "The transcribed text.", "type": { - "$id": "7388", + "$id": "7393", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96698,12 +96768,12 @@ "isHttpMetadata": false }, { - "$id": "7389", + "$id": "7394", "kind": "property", "name": "words", "doc": "Extracted words and their corresponding timestamps.", "type": { - "$ref": "2533" + "$ref": "2537" }, "optional": true, "readOnly": true, @@ -96715,12 +96785,12 @@ "isHttpMetadata": false }, { - "$id": "7390", + "$id": "7395", "kind": "property", "name": "segments", "doc": "Segments of the transcribed text and their corresponding details.", "type": { - "$ref": "2544" + "$ref": "2548" }, "optional": true, "readOnly": true, @@ -96732,11 +96802,11 @@ "isHttpMetadata": false }, { - "$id": "7391", + "$id": "7396", "kind": "property", "name": "logprobs", "type": { - "$ref": "6712" + "$ref": "6717" }, "optional": true, "readOnly": false, @@ -96750,7 +96820,7 @@ ] }, { - "$id": "7392", + "$id": "7397", "kind": "model", "name": "ChatCompletionCollectionOptions", "namespace": "OpenAI", @@ -96760,12 +96830,12 @@ "decorators": [], "properties": [ { - "$id": "7393", + "$id": "7398", "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": "7394", + "$id": "7399", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96781,12 +96851,12 @@ "isHttpMetadata": true }, { - "$id": "7395", + "$id": "7400", "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": "7396", + "$id": "7401", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96802,12 +96872,12 @@ "isHttpMetadata": true }, { - "$id": "7397", + "$id": "7402", "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": "1334" + "$ref": "1338" }, "optional": true, "readOnly": false, @@ -96819,11 +96889,11 @@ "isHttpMetadata": true }, { - "$id": "7398", + "$id": "7403", "kind": "property", "name": "metadata", "type": { - "$ref": "2346" + "$ref": "2350" }, "optional": true, "readOnly": false, @@ -96835,11 +96905,11 @@ "isHttpMetadata": true }, { - "$id": "7399", + "$id": "7404", "kind": "property", "name": "model", "type": { - "$id": "7400", + "$id": "7405", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96857,7 +96927,7 @@ ] }, { - "$id": "7401", + "$id": "7406", "kind": "model", "name": "ChatCompletionMessageCollectionOptions", "namespace": "OpenAI", @@ -96867,12 +96937,12 @@ "decorators": [], "properties": [ { - "$id": "7402", + "$id": "7407", "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": "7403", + "$id": "7408", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96888,12 +96958,12 @@ "isHttpMetadata": true }, { - "$id": "7404", + "$id": "7409", "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": "7405", + "$id": "7410", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96909,12 +96979,12 @@ "isHttpMetadata": true }, { - "$id": "7406", + "$id": "7411", "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": "1338" + "$ref": "1342" }, "optional": true, "readOnly": false, @@ -96928,7 +96998,7 @@ ] }, { - "$id": "7407", + "$id": "7412", "kind": "model", "name": "ContainerCollectionOptions", "namespace": "OpenAI", @@ -96938,12 +97008,12 @@ "decorators": [], "properties": [ { - "$id": "7408", + "$id": "7413", "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": "7409", + "$id": "7414", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96959,12 +97029,12 @@ "isHttpMetadata": true }, { - "$id": "7410", + "$id": "7415", "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": "7411", + "$id": "7416", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96980,12 +97050,12 @@ "isHttpMetadata": true }, { - "$id": "7412", + "$id": "7417", "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": "1342" + "$ref": "1346" }, "optional": true, "readOnly": false, @@ -96999,7 +97069,7 @@ ] }, { - "$id": "7413", + "$id": "7418", "kind": "model", "name": "ContainerFileCollectionOptions", "namespace": "OpenAI", @@ -97009,12 +97079,12 @@ "decorators": [], "properties": [ { - "$id": "7414", + "$id": "7419", "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": "7415", + "$id": "7420", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97030,12 +97100,12 @@ "isHttpMetadata": true }, { - "$id": "7416", + "$id": "7421", "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": "7417", + "$id": "7422", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97051,12 +97121,12 @@ "isHttpMetadata": true }, { - "$id": "7418", + "$id": "7423", "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": "1342" + "$ref": "1346" }, "optional": true, "readOnly": false, @@ -97070,7 +97140,7 @@ ] }, { - "$id": "7419", + "$id": "7424", "kind": "model", "name": "DotNetChatResponseFormat", "namespace": "OpenAI", @@ -97079,7 +97149,7 @@ "usage": "Input,Output", "decorators": [], "discriminatorProperty": { - "$id": "7420", + "$id": "7425", "kind": "property", "name": "type", "type": { @@ -97096,12 +97166,12 @@ }, "properties": [ { - "$ref": "7420" + "$ref": "7425" } ], "discriminatedSubtypes": { "text": { - "$id": "7421", + "$id": "7426", "kind": "model", "name": "DotNetChatResponseFormatText", "namespace": "OpenAI", @@ -97111,16 +97181,16 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "7419" + "$ref": "7424" }, "properties": [ { - "$id": "7422", + "$id": "7427", "kind": "property", "name": "type", "doc": "The type of response format being defined. Always `text`.", "type": { - "$ref": "2378" + "$ref": "2382" }, "optional": false, "readOnly": false, @@ -97134,7 +97204,7 @@ ] }, "json_object": { - "$id": "7423", + "$id": "7428", "kind": "model", "name": "DotNetChatResponseFormatJsonObject", "namespace": "OpenAI", @@ -97144,11 +97214,11 @@ "discriminatorValue": "json_object", "decorators": [], "baseModel": { - "$ref": "7419" + "$ref": "7424" }, "properties": [ { - "$id": "7424", + "$id": "7429", "kind": "property", "name": "type", "doc": "The type of response format being defined. Always `json_object`.", @@ -97167,7 +97237,7 @@ ] }, "json_schema": { - "$id": "7425", + "$id": "7430", "kind": "model", "name": "DotNetChatResponseFormatJsonSchema", "namespace": "OpenAI", @@ -97177,11 +97247,11 @@ "discriminatorValue": "json_schema", "decorators": [], "baseModel": { - "$ref": "7419" + "$ref": "7424" }, "properties": [ { - "$id": "7426", + "$id": "7431", "kind": "property", "name": "type", "type": { @@ -97197,11 +97267,11 @@ "isHttpMetadata": false }, { - "$id": "7427", + "$id": "7432", "kind": "property", "name": "json_schema", "type": { - "$id": "7428", + "$id": "7433", "kind": "model", "name": "DotNetChatResponseFormatJsonSchemaJsonSchema", "namespace": "OpenAI", @@ -97210,11 +97280,11 @@ "decorators": [], "properties": [ { - "$id": "7429", + "$id": "7434", "kind": "property", "name": "description", "type": { - "$id": "7430", + "$id": "7435", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97230,11 +97300,11 @@ "isHttpMetadata": false }, { - "$id": "7431", + "$id": "7436", "kind": "property", "name": "name", "type": { - "$id": "7432", + "$id": "7437", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97250,11 +97320,11 @@ "isHttpMetadata": false }, { - "$id": "7433", + "$id": "7438", "kind": "property", "name": "schema", "type": { - "$id": "7434", + "$id": "7439", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -97270,14 +97340,14 @@ "isHttpMetadata": false }, { - "$id": "7435", + "$id": "7440", "kind": "property", "name": "strict", "type": { - "$id": "7436", + "$id": "7441", "kind": "nullable", "type": { - "$id": "7437", + "$id": "7442", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -97310,19 +97380,19 @@ } }, { - "$ref": "7421" + "$ref": "7426" }, { - "$ref": "7423" + "$ref": "7428" }, { - "$ref": "7425" + "$ref": "7430" }, { - "$ref": "7428" + "$ref": "7433" }, { - "$id": "7438", + "$id": "7443", "kind": "model", "name": "DotNetAssistantResponseFormat", "namespace": "OpenAI", @@ -97331,7 +97401,7 @@ "usage": "Input,Output", "decorators": [], "discriminatorProperty": { - "$id": "7439", + "$id": "7444", "kind": "property", "name": "type", "type": { @@ -97348,12 +97418,12 @@ }, "properties": [ { - "$ref": "7439" + "$ref": "7444" } ], "discriminatedSubtypes": { "text": { - "$id": "7440", + "$id": "7445", "kind": "model", "name": "DotNetAssistantResponseFormatText", "namespace": "OpenAI", @@ -97363,16 +97433,16 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "7438" + "$ref": "7443" }, "properties": [ { - "$id": "7441", + "$id": "7446", "kind": "property", "name": "type", "doc": "The type of response format being defined. Always `text`.", "type": { - "$ref": "2378" + "$ref": "2382" }, "optional": false, "readOnly": false, @@ -97386,7 +97456,7 @@ ] }, "json_object": { - "$id": "7442", + "$id": "7447", "kind": "model", "name": "DotNetAssistantResponseFormatJsonObject", "namespace": "OpenAI", @@ -97396,11 +97466,11 @@ "discriminatorValue": "json_object", "decorators": [], "baseModel": { - "$ref": "7438" + "$ref": "7443" }, "properties": [ { - "$id": "7443", + "$id": "7448", "kind": "property", "name": "type", "doc": "The type of response format being defined. Always `json_object`.", @@ -97419,7 +97489,7 @@ ] }, "json_schema": { - "$id": "7444", + "$id": "7449", "kind": "model", "name": "DotNetAssistantResponseFormatJsonSchema", "namespace": "OpenAI", @@ -97429,11 +97499,11 @@ "discriminatorValue": "json_schema", "decorators": [], "baseModel": { - "$ref": "7438" + "$ref": "7443" }, "properties": [ { - "$id": "7445", + "$id": "7450", "kind": "property", "name": "type", "type": { @@ -97449,11 +97519,11 @@ "isHttpMetadata": false }, { - "$id": "7446", + "$id": "7451", "kind": "property", "name": "json_schema", "type": { - "$id": "7447", + "$id": "7452", "kind": "model", "name": "DotNetAssistantResponseFormatJsonSchemaJsonSchema", "namespace": "OpenAI", @@ -97462,11 +97532,11 @@ "decorators": [], "properties": [ { - "$id": "7448", + "$id": "7453", "kind": "property", "name": "description", "type": { - "$id": "7449", + "$id": "7454", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97482,11 +97552,11 @@ "isHttpMetadata": false }, { - "$id": "7450", + "$id": "7455", "kind": "property", "name": "name", "type": { - "$id": "7451", + "$id": "7456", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97502,11 +97572,11 @@ "isHttpMetadata": false }, { - "$id": "7452", + "$id": "7457", "kind": "property", "name": "schema", "type": { - "$id": "7453", + "$id": "7458", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -97522,14 +97592,14 @@ "isHttpMetadata": false }, { - "$id": "7454", + "$id": "7459", "kind": "property", "name": "strict", "type": { - "$id": "7455", + "$id": "7460", "kind": "nullable", "type": { - "$id": "7456", + "$id": "7461", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -97562,19 +97632,19 @@ } }, { - "$ref": "7440" + "$ref": "7445" }, { - "$ref": "7442" + "$ref": "7447" }, { - "$ref": "7444" + "$ref": "7449" }, { - "$ref": "7447" + "$ref": "7452" }, { - "$id": "7457", + "$id": "7462", "kind": "model", "name": "DotNetAudioLogProbsProperties", "namespace": "OpenAI", @@ -97584,12 +97654,12 @@ "decorators": [], "properties": [ { - "$id": "7458", + "$id": "7463", "kind": "property", "name": "token", "doc": "The token that was used to generate the log probability.", "type": { - "$id": "7459", + "$id": "7464", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97605,12 +97675,12 @@ "isHttpMetadata": false }, { - "$id": "7460", + "$id": "7465", "kind": "property", "name": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "7461", + "$id": "7466", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -97626,12 +97696,12 @@ "isHttpMetadata": false }, { - "$id": "7462", + "$id": "7467", "kind": "property", "name": "bytes", "doc": "The bytes that were used to generate the log probability.", "type": { - "$ref": "2559" + "$ref": "2563" }, "optional": false, "readOnly": false, @@ -97645,7 +97715,7 @@ ] }, { - "$id": "7463", + "$id": "7468", "kind": "model", "name": "DotNetRealtimeLogProbsProperties", "namespace": "OpenAI", @@ -97655,12 +97725,12 @@ "decorators": [], "properties": [ { - "$id": "7464", + "$id": "7469", "kind": "property", "name": "token", "doc": "The token that was used to generate the log probability.", "type": { - "$id": "7465", + "$id": "7470", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97676,12 +97746,12 @@ "isHttpMetadata": false }, { - "$id": "7466", + "$id": "7471", "kind": "property", "name": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "7467", + "$id": "7472", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -97697,12 +97767,12 @@ "isHttpMetadata": false }, { - "$id": "7468", + "$id": "7473", "kind": "property", "name": "bytes", "doc": "The bytes that were used to generate the log probability.", "type": { - "$ref": "2559" + "$ref": "2563" }, "optional": false, "readOnly": false, @@ -97716,7 +97786,7 @@ ] }, { - "$id": "7469", + "$id": "7474", "kind": "model", "name": "ResponseItemCollectionOptions", "namespace": "OpenAI", @@ -97726,12 +97796,12 @@ "decorators": [], "properties": [ { - "$id": "7470", + "$id": "7475", "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": "7471", + "$id": "7476", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97747,12 +97817,12 @@ "isHttpMetadata": true }, { - "$id": "7472", + "$id": "7477", "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": "7473", + "$id": "7478", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97768,12 +97838,12 @@ "isHttpMetadata": true }, { - "$id": "7474", + "$id": "7479", "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": "7475", + "$id": "7480", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97789,12 +97859,12 @@ "isHttpMetadata": true }, { - "$id": "7476", + "$id": "7481", "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": "1346" + "$ref": "1350" }, "optional": true, "readOnly": false, @@ -97808,7 +97878,7 @@ ] }, { - "$id": "7477", + "$id": "7482", "kind": "model", "name": "DotNetCustomToolCallApprovalPolicy", "namespace": "OpenAI", @@ -97818,12 +97888,12 @@ "decorators": [], "properties": [ { - "$id": "7478", + "$id": "7483", "kind": "property", "name": "always", "doc": "A list of tools that always require approval.", "type": { - "$ref": "4269" + "$ref": "4274" }, "optional": true, "readOnly": false, @@ -97835,12 +97905,12 @@ "isHttpMetadata": false }, { - "$id": "7479", + "$id": "7484", "kind": "property", "name": "never", "doc": "A list of tools that never require approval.", "type": { - "$ref": "4269" + "$ref": "4274" }, "optional": true, "readOnly": false, @@ -97854,7 +97924,7 @@ ] }, { - "$id": "7480", + "$id": "7485", "kind": "model", "name": "DotNetToolCallApprovalPolicy", "namespace": "OpenAI", @@ -97864,11 +97934,11 @@ "decorators": [], "properties": [ { - "$id": "7481", + "$id": "7486", "kind": "property", "name": "global_policy", "type": { - "$ref": "1350" + "$ref": "1354" }, "optional": true, "readOnly": false, @@ -97880,11 +97950,11 @@ "isHttpMetadata": false }, { - "$id": "7482", + "$id": "7487", "kind": "property", "name": "custom_policy", "type": { - "$ref": "7477" + "$ref": "7482" }, "optional": true, "readOnly": false, @@ -97898,7 +97968,7 @@ ] }, { - "$id": "7483", + "$id": "7488", "kind": "model", "name": "DotNetCodeInterpreterContainer", "namespace": "OpenAI", @@ -97908,11 +97978,11 @@ "decorators": [], "properties": [ { - "$id": "7484", + "$id": "7489", "kind": "property", "name": "container_id", "type": { - "$id": "7485", + "$id": "7490", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97928,11 +97998,11 @@ "isHttpMetadata": false }, { - "$id": "7486", + "$id": "7491", "kind": "property", "name": "container", "type": { - "$ref": "4229" + "$ref": "4233" }, "optional": true, "readOnly": false, @@ -97946,7 +98016,7 @@ ] }, { - "$id": "7487", + "$id": "7492", "kind": "model", "name": "DotNetCombinedChunkingStrategyParam", "namespace": "OpenAI", @@ -97954,11 +98024,11 @@ "usage": "Input,Output", "decorators": [], "discriminatorProperty": { - "$id": "7488", + "$id": "7493", "kind": "property", "name": "type", "type": { - "$ref": "1354" + "$ref": "1358" }, "optional": false, "readOnly": false, @@ -97971,12 +98041,12 @@ }, "properties": [ { - "$ref": "7488" + "$ref": "7493" } ], "discriminatedSubtypes": { "auto": { - "$id": "7489", + "$id": "7494", "kind": "model", "name": "DotNetCombinedAutoChunkingStrategyParam", "namespace": "OpenAI", @@ -97986,16 +98056,16 @@ "discriminatorValue": "auto", "decorators": [], "baseModel": { - "$ref": "7487" + "$ref": "7492" }, "properties": [ { - "$id": "7490", + "$id": "7495", "kind": "property", "name": "type", "doc": "Always `auto`.", "type": { - "$ref": "1356" + "$ref": "1360" }, "optional": false, "readOnly": false, @@ -98009,7 +98079,7 @@ ] }, "static": { - "$id": "7491", + "$id": "7496", "kind": "model", "name": "DotNetCombinedStaticChunkingStrategyParam", "namespace": "OpenAI", @@ -98019,16 +98089,16 @@ "discriminatorValue": "static", "decorators": [], "baseModel": { - "$ref": "7487" + "$ref": "7492" }, "properties": [ { - "$id": "7492", + "$id": "7497", "kind": "property", "name": "type", "doc": "Always `static`.", "type": { - "$ref": "1357" + "$ref": "1361" }, "optional": false, "readOnly": false, @@ -98040,11 +98110,11 @@ "isHttpMetadata": false }, { - "$id": "7493", + "$id": "7498", "kind": "property", "name": "static", "type": { - "$ref": "2433" + "$ref": "2437" }, "optional": false, "readOnly": false, @@ -98058,7 +98128,7 @@ ] }, "other": { - "$id": "7494", + "$id": "7499", "kind": "model", "name": "DotNetCombinedOtherChunkingStrategyParam", "namespace": "OpenAI", @@ -98068,16 +98138,16 @@ "discriminatorValue": "other", "decorators": [], "baseModel": { - "$ref": "7487" + "$ref": "7492" }, "properties": [ { - "$id": "7495", + "$id": "7500", "kind": "property", "name": "type", "doc": "Always `other`.", "type": { - "$ref": "1358" + "$ref": "1362" }, "optional": false, "readOnly": false, @@ -98093,16 +98163,16 @@ } }, { - "$ref": "7489" + "$ref": "7494" }, { - "$ref": "7491" + "$ref": "7496" }, { - "$ref": "7494" + "$ref": "7499" }, { - "$id": "7496", + "$id": "7501", "kind": "model", "name": "VectorStoreCollectionOptions", "namespace": "OpenAI", @@ -98112,12 +98182,12 @@ "decorators": [], "properties": [ { - "$id": "7497", + "$id": "7502", "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": "7498", + "$id": "7503", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98133,12 +98203,12 @@ "isHttpMetadata": true }, { - "$id": "7499", + "$id": "7504", "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": "7500", + "$id": "7505", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98154,12 +98224,12 @@ "isHttpMetadata": true }, { - "$id": "7501", + "$id": "7506", "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": "7502", + "$id": "7507", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98175,12 +98245,12 @@ "isHttpMetadata": true }, { - "$id": "7503", + "$id": "7508", "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": "1359" + "$ref": "1363" }, "optional": true, "readOnly": false, @@ -98194,7 +98264,7 @@ ] }, { - "$id": "7504", + "$id": "7509", "kind": "model", "name": "VectorStoreFileCollectionOptions", "namespace": "OpenAI", @@ -98204,12 +98274,12 @@ "decorators": [], "properties": [ { - "$id": "7505", + "$id": "7510", "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": "7506", + "$id": "7511", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98225,12 +98295,12 @@ "isHttpMetadata": true }, { - "$id": "7507", + "$id": "7512", "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": "7508", + "$id": "7513", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98246,12 +98316,12 @@ "isHttpMetadata": true }, { - "$id": "7509", + "$id": "7514", "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": "7510", + "$id": "7515", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98267,12 +98337,12 @@ "isHttpMetadata": true }, { - "$id": "7511", + "$id": "7516", "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": "1363" + "$ref": "1367" }, "optional": true, "readOnly": false, @@ -98284,11 +98354,11 @@ "isHttpMetadata": true }, { - "$id": "7512", + "$id": "7517", "kind": "property", "name": "filter", "type": { - "$ref": "1367" + "$ref": "1371" }, "optional": true, "readOnly": false, @@ -98304,20 +98374,20 @@ ], "clients": [ { - "$id": "7513", + "$id": "7518", "kind": "client", "name": "OpenAIClient", "namespace": "OpenAI", "methods": [], "parameters": [ { - "$id": "7514", + "$id": "7519", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "7515", + "$id": "7520", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -98328,7 +98398,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "7516", + "$id": "7521", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -98346,32 +98416,32 @@ "apiVersions": [], "children": [ { - "$id": "7517", + "$id": "7522", "kind": "client", "name": "Assistants", "namespace": "OpenAI", "methods": [ { - "$id": "7518", + "$id": "7523", "kind": "paging", "name": "GetAssistants", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of assistants.", "operation": { - "$id": "7519", + "$id": "7524", "name": "GetAssistants", "resourceName": "Assistants", "summary": "Returns a list of assistants.", "accessibility": "public", "parameters": [ { - "$id": "7520", + "$id": "7525", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1725" + "$ref": "1729" }, "isApiVersion": false, "optional": false, @@ -98382,12 +98452,12 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.listAssistants.accept" }, { - "$id": "7521", + "$id": "7526", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "1727" + "$ref": "1731" }, "isApiVersion": false, "optional": false, @@ -98398,13 +98468,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.listAssistants.openAIBeta" }, { - "$id": "7522", + "$id": "7527", "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": "7523", + "$id": "7528", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98419,13 +98489,13 @@ "readOnly": false }, { - "$id": "7524", + "$id": "7529", "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": "1359" + "$ref": "1363" }, "isApiVersion": false, "explode": false, @@ -98436,13 +98506,13 @@ "readOnly": false }, { - "$id": "7525", + "$id": "7530", "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": "7526", + "$id": "7531", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98457,13 +98527,13 @@ "readOnly": false }, { - "$id": "7527", + "$id": "7532", "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": "7528", + "$id": "7533", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98484,7 +98554,7 @@ 200 ], "bodyType": { - "$ref": "2281" + "$ref": "2285" }, "headers": [], "isErrorResponse": false, @@ -98504,12 +98574,12 @@ }, "parameters": [ { - "$id": "7529", + "$id": "7534", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1729" + "$ref": "1733" }, "location": "Header", "isApiVersion": false, @@ -98521,12 +98591,12 @@ "decorators": [] }, { - "$id": "7530", + "$id": "7535", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "1731" + "$ref": "1735" }, "location": "Header", "isApiVersion": false, @@ -98538,13 +98608,13 @@ "decorators": [] }, { - "$id": "7531", + "$id": "7536", "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": "7532", + "$id": "7537", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98560,13 +98630,13 @@ "decorators": [] }, { - "$id": "7533", + "$id": "7538", "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": "1359" + "$ref": "1363" }, "location": "Query", "isApiVersion": false, @@ -98578,13 +98648,13 @@ "decorators": [] }, { - "$id": "7534", + "$id": "7539", "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": "7535", + "$id": "7540", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98600,13 +98670,13 @@ "decorators": [] }, { - "$id": "7536", + "$id": "7541", "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": "7537", + "$id": "7542", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98624,7 +98694,7 @@ ], "response": { "type": { - "$ref": "2284" + "$ref": "2288" }, "resultSegments": [ "data" @@ -98640,7 +98710,7 @@ ], "continuationToken": { "parameter": { - "$ref": "7525" + "$ref": "7530" }, "responseSegments": [ "last_id" @@ -98650,26 +98720,26 @@ } }, { - "$id": "7538", + "$id": "7543", "kind": "basic", "name": "createAssistant", "accessibility": "public", "apiVersions": [], "summary": "Create an assistant with a model and instructions.", "operation": { - "$id": "7539", + "$id": "7544", "name": "createAssistant", "resourceName": "Assistants", "summary": "Create an assistant with a model and instructions.", "accessibility": "public", "parameters": [ { - "$id": "7540", + "$id": "7545", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1733" + "$ref": "1737" }, "isApiVersion": false, "optional": false, @@ -98680,12 +98750,12 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant.accept" }, { - "$id": "7541", + "$id": "7546", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "1735" + "$ref": "1739" }, "isApiVersion": false, "optional": false, @@ -98696,13 +98766,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant.openAIBeta" }, { - "$id": "7542", + "$id": "7547", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1737" + "$ref": "1741" }, "isApiVersion": false, "optional": false, @@ -98713,12 +98783,12 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant.contentType" }, { - "$id": "7543", + "$id": "7548", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "2398" + "$ref": "2402" }, "isApiVersion": false, "contentTypes": [ @@ -98738,7 +98808,7 @@ 200 ], "bodyType": { - "$ref": "2285" + "$ref": "2289" }, "headers": [], "isErrorResponse": false, @@ -98761,12 +98831,12 @@ }, "parameters": [ { - "$id": "7544", + "$id": "7549", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1739" + "$ref": "1743" }, "location": "Header", "isApiVersion": false, @@ -98778,12 +98848,12 @@ "decorators": [] }, { - "$id": "7545", + "$id": "7550", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "1741" + "$ref": "1745" }, "location": "Header", "isApiVersion": false, @@ -98795,12 +98865,12 @@ "decorators": [] }, { - "$id": "7546", + "$id": "7551", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "2398" + "$ref": "2402" }, "location": "Body", "isApiVersion": false, @@ -98812,13 +98882,13 @@ "decorators": [] }, { - "$id": "7547", + "$id": "7552", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1737" + "$ref": "1741" }, "location": "Header", "isApiVersion": false, @@ -98832,7 +98902,7 @@ ], "response": { "type": { - "$ref": "2285" + "$ref": "2289" } }, "isOverride": false, @@ -98841,26 +98911,26 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant" }, { - "$id": "7548", + "$id": "7553", "kind": "basic", "name": "getAssistant", "accessibility": "public", "apiVersions": [], "summary": "Retrieves an assistant.", "operation": { - "$id": "7549", + "$id": "7554", "name": "getAssistant", "resourceName": "Assistants", "summary": "Retrieves an assistant.", "accessibility": "public", "parameters": [ { - "$id": "7550", + "$id": "7555", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1743" + "$ref": "1747" }, "isApiVersion": false, "optional": false, @@ -98871,12 +98941,12 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.getAssistant.accept" }, { - "$id": "7551", + "$id": "7556", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "1745" + "$ref": "1749" }, "isApiVersion": false, "optional": false, @@ -98887,13 +98957,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.getAssistant.openAIBeta" }, { - "$id": "7552", + "$id": "7557", "kind": "path", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to retrieve.", "type": { - "$id": "7553", + "$id": "7558", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98917,7 +98987,7 @@ 200 ], "bodyType": { - "$ref": "2285" + "$ref": "2289" }, "headers": [], "isErrorResponse": false, @@ -98937,12 +99007,12 @@ }, "parameters": [ { - "$id": "7554", + "$id": "7559", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1747" + "$ref": "1751" }, "location": "Header", "isApiVersion": false, @@ -98954,12 +99024,12 @@ "decorators": [] }, { - "$id": "7555", + "$id": "7560", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "1749" + "$ref": "1753" }, "location": "Header", "isApiVersion": false, @@ -98971,13 +99041,13 @@ "decorators": [] }, { - "$id": "7556", + "$id": "7561", "kind": "method", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to retrieve.", "type": { - "$id": "7557", + "$id": "7562", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98995,7 +99065,7 @@ ], "response": { "type": { - "$ref": "2285" + "$ref": "2289" } }, "isOverride": false, @@ -99004,26 +99074,26 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.getAssistant" }, { - "$id": "7558", + "$id": "7563", "kind": "basic", "name": "modifyAssistant", "accessibility": "public", "apiVersions": [], "summary": "Modifies an assistant.", "operation": { - "$id": "7559", + "$id": "7564", "name": "modifyAssistant", "resourceName": "Assistants", "summary": "Modifies an assistant.", "accessibility": "public", "parameters": [ { - "$id": "7560", + "$id": "7565", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1751" + "$ref": "1755" }, "isApiVersion": false, "optional": false, @@ -99034,12 +99104,12 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant.accept" }, { - "$id": "7561", + "$id": "7566", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "1753" + "$ref": "1757" }, "isApiVersion": false, "optional": false, @@ -99050,13 +99120,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant.openAIBeta" }, { - "$id": "7562", + "$id": "7567", "kind": "path", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to modify.", "type": { - "$id": "7563", + "$id": "7568", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99074,13 +99144,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant.assistant_id" }, { - "$id": "7564", + "$id": "7569", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1755" + "$ref": "1759" }, "isApiVersion": false, "optional": false, @@ -99091,12 +99161,12 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant.contentType" }, { - "$id": "7565", + "$id": "7570", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "2448" + "$ref": "2452" }, "isApiVersion": false, "contentTypes": [ @@ -99116,7 +99186,7 @@ 200 ], "bodyType": { - "$ref": "2285" + "$ref": "2289" }, "headers": [], "isErrorResponse": false, @@ -99139,12 +99209,12 @@ }, "parameters": [ { - "$id": "7566", + "$id": "7571", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1757" + "$ref": "1761" }, "location": "Header", "isApiVersion": false, @@ -99156,12 +99226,12 @@ "decorators": [] }, { - "$id": "7567", + "$id": "7572", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "1759" + "$ref": "1763" }, "location": "Header", "isApiVersion": false, @@ -99173,13 +99243,13 @@ "decorators": [] }, { - "$id": "7568", + "$id": "7573", "kind": "method", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to modify.", "type": { - "$id": "7569", + "$id": "7574", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99195,12 +99265,12 @@ "decorators": [] }, { - "$id": "7570", + "$id": "7575", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "2448" + "$ref": "2452" }, "location": "Body", "isApiVersion": false, @@ -99212,13 +99282,13 @@ "decorators": [] }, { - "$id": "7571", + "$id": "7576", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1755" + "$ref": "1759" }, "location": "Header", "isApiVersion": false, @@ -99232,7 +99302,7 @@ ], "response": { "type": { - "$ref": "2285" + "$ref": "2289" } }, "isOverride": false, @@ -99241,26 +99311,26 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant" }, { - "$id": "7572", + "$id": "7577", "kind": "basic", "name": "deleteAssistant", "accessibility": "public", "apiVersions": [], "summary": "Delete an assistant.", "operation": { - "$id": "7573", + "$id": "7578", "name": "deleteAssistant", "resourceName": "Assistants", "summary": "Delete an assistant.", "accessibility": "public", "parameters": [ { - "$id": "7574", + "$id": "7579", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1761" + "$ref": "1765" }, "isApiVersion": false, "optional": false, @@ -99271,12 +99341,12 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.deleteAssistant.accept" }, { - "$id": "7575", + "$id": "7580", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "1763" + "$ref": "1767" }, "isApiVersion": false, "optional": false, @@ -99287,13 +99357,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.deleteAssistant.openAIBeta" }, { - "$id": "7576", + "$id": "7581", "kind": "path", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to delete.", "type": { - "$id": "7577", + "$id": "7582", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99317,7 +99387,7 @@ 200 ], "bodyType": { - "$ref": "2478" + "$ref": "2482" }, "headers": [], "isErrorResponse": false, @@ -99337,12 +99407,12 @@ }, "parameters": [ { - "$id": "7578", + "$id": "7583", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1765" + "$ref": "1769" }, "location": "Header", "isApiVersion": false, @@ -99354,12 +99424,12 @@ "decorators": [] }, { - "$id": "7579", + "$id": "7584", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "1767" + "$ref": "1771" }, "location": "Header", "isApiVersion": false, @@ -99371,13 +99441,13 @@ "decorators": [] }, { - "$id": "7580", + "$id": "7585", "kind": "method", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to delete.", "type": { - "$id": "7581", + "$id": "7586", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99395,7 +99465,7 @@ ], "response": { "type": { - "$ref": "2478" + "$ref": "2482" } }, "isOverride": false, @@ -99406,13 +99476,13 @@ ], "parameters": [ { - "$id": "7582", + "$id": "7587", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "7583", + "$id": "7588", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -99423,7 +99493,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "7584", + "$id": "7589", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -99440,36 +99510,36 @@ "crossLanguageDefinitionId": "OpenAI.Assistants", "apiVersions": [], "parent": { - "$ref": "7513" + "$ref": "7518" } }, { - "$id": "7585", + "$id": "7590", "kind": "client", "name": "Audio", "namespace": "OpenAI", "methods": [ { - "$id": "7586", + "$id": "7591", "kind": "basic", "name": "GenerateSpeech", "accessibility": "public", "apiVersions": [], "summary": "Generates audio from the input text.", "operation": { - "$id": "7587", + "$id": "7592", "name": "GenerateSpeech", "resourceName": "Audio", "summary": "Generates audio from the input text.", "accessibility": "public", "parameters": [ { - "$id": "7588", + "$id": "7593", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1769" + "$ref": "1773" }, "isApiVersion": false, "optional": false, @@ -99480,13 +99550,13 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createSpeech.accept" }, { - "$id": "7589", + "$id": "7594", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1771" + "$ref": "1775" }, "isApiVersion": false, "optional": false, @@ -99497,12 +99567,12 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createSpeech.contentType" }, { - "$id": "7590", + "$id": "7595", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "2484" + "$ref": "2488" }, "isApiVersion": false, "contentTypes": [ @@ -99522,7 +99592,7 @@ 200 ], "bodyType": { - "$id": "7591", + "$id": "7596", "kind": "bytes", "name": "bytes", "crossLanguageDefinitionId": "TypeSpec.bytes", @@ -99534,7 +99604,7 @@ "nameInResponse": "Transfer-Encoding", "doc": "chunked", "type": { - "$id": "7592", + "$id": "7597", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99545,7 +99615,7 @@ "name": "contentType", "nameInResponse": "content-type", "type": { - "$ref": "1773" + "$ref": "1777" } } ], @@ -99569,12 +99639,12 @@ }, "parameters": [ { - "$id": "7593", + "$id": "7598", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1775" + "$ref": "1779" }, "location": "Header", "isApiVersion": false, @@ -99586,12 +99656,12 @@ "decorators": [] }, { - "$id": "7594", + "$id": "7599", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "2484" + "$ref": "2488" }, "location": "Body", "isApiVersion": false, @@ -99603,13 +99673,13 @@ "decorators": [] }, { - "$id": "7595", + "$id": "7600", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1771" + "$ref": "1775" }, "location": "Header", "isApiVersion": false, @@ -99623,7 +99693,7 @@ ], "response": { "type": { - "$ref": "7591" + "$ref": "7596" } }, "isOverride": false, @@ -99632,26 +99702,26 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createSpeech" }, { - "$id": "7596", + "$id": "7601", "kind": "basic", "name": "TranscribeAudio", "accessibility": "public", "apiVersions": [], "summary": "Transcribes audio into the input language.", "operation": { - "$id": "7597", + "$id": "7602", "name": "TranscribeAudio", "resourceName": "Audio", "summary": "Transcribes audio into the input language.", "accessibility": "public", "parameters": [ { - "$id": "7598", + "$id": "7603", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1373" + "$ref": "1377" }, "isApiVersion": false, "optional": false, @@ -99662,12 +99732,12 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranscription.accept" }, { - "$id": "7599", + "$id": "7604", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "1777" + "$ref": "1781" }, "isApiVersion": false, "optional": false, @@ -99678,12 +99748,12 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranscription.contentType" }, { - "$id": "7600", + "$id": "7605", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "2494" + "$ref": "2498" }, "isApiVersion": false, "contentTypes": [ @@ -99703,39 +99773,39 @@ 200 ], "bodyType": { - "$id": "7601", + "$id": "7606", "kind": "union", "name": "", "variantTypes": [ { - "$id": "7602", + "$id": "7607", "kind": "union", "name": "", "variantTypes": [ { - "$id": "7603", + "$id": "7608", "kind": "union", "name": "", "variantTypes": [ { - "$ref": "2523" + "$ref": "2527" }, { - "$ref": "2569" + "$ref": "2573" } ], "namespace": "", "decorators": [] }, { - "$ref": "2582" + "$ref": "2586" } ], "namespace": "", "decorators": [] }, { - "$id": "7604", + "$id": "7609", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99750,14 +99820,14 @@ "name": "contentType", "nameInResponse": "Content-Type", "type": { - "$ref": "1779" + "$ref": "1783" } }, { "name": "contentType", "nameInResponse": "content-type", "type": { - "$ref": "1781" + "$ref": "1785" } } ], @@ -99784,12 +99854,12 @@ }, "parameters": [ { - "$id": "7605", + "$id": "7610", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1373" + "$ref": "1377" }, "location": "Header", "isApiVersion": false, @@ -99801,12 +99871,12 @@ "decorators": [] }, { - "$id": "7606", + "$id": "7611", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "1783" + "$ref": "1787" }, "location": "Header", "isApiVersion": false, @@ -99818,12 +99888,12 @@ "decorators": [] }, { - "$id": "7607", + "$id": "7612", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "2494" + "$ref": "2498" }, "location": "Body", "isApiVersion": false, @@ -99837,7 +99907,7 @@ ], "response": { "type": { - "$ref": "7601" + "$ref": "7606" } }, "isOverride": false, @@ -99846,26 +99916,26 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranscription" }, { - "$id": "7608", + "$id": "7613", "kind": "basic", "name": "TranslateAudio", "accessibility": "public", "apiVersions": [], "summary": "Translates audio into English..", "operation": { - "$id": "7609", + "$id": "7614", "name": "TranslateAudio", "resourceName": "Audio", "summary": "Translates audio into English..", "accessibility": "public", "parameters": [ { - "$id": "7610", + "$id": "7615", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1785" + "$ref": "1789" }, "isApiVersion": false, "optional": false, @@ -99876,12 +99946,12 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranslation.accept" }, { - "$id": "7611", + "$id": "7616", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "1787" + "$ref": "1791" }, "isApiVersion": false, "optional": false, @@ -99892,12 +99962,12 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranslation.contentType" }, { - "$id": "7612", + "$id": "7617", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "2608" + "$ref": "2612" }, "isApiVersion": false, "contentTypes": [ @@ -99917,27 +99987,27 @@ 200 ], "bodyType": { - "$id": "7613", + "$id": "7618", "kind": "union", "name": "", "variantTypes": [ { - "$id": "7614", + "$id": "7619", "kind": "union", "name": "", "variantTypes": [ { - "$ref": "2618" + "$ref": "2622" }, { - "$ref": "2628" + "$ref": "2632" } ], "namespace": "", "decorators": [] }, { - "$id": "7615", + "$id": "7620", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99952,7 +100022,7 @@ "name": "contentType", "nameInResponse": "content-type", "type": { - "$ref": "1789" + "$ref": "1793" } } ], @@ -99978,12 +100048,12 @@ }, "parameters": [ { - "$id": "7616", + "$id": "7621", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1791" + "$ref": "1795" }, "location": "Header", "isApiVersion": false, @@ -99995,12 +100065,12 @@ "decorators": [] }, { - "$id": "7617", + "$id": "7622", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "1793" + "$ref": "1797" }, "location": "Header", "isApiVersion": false, @@ -100012,12 +100082,12 @@ "decorators": [] }, { - "$id": "7618", + "$id": "7623", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "2608" + "$ref": "2612" }, "location": "Body", "isApiVersion": false, @@ -100031,7 +100101,7 @@ ], "response": { "type": { - "$ref": "7613" + "$ref": "7618" } }, "isOverride": false, @@ -100042,13 +100112,13 @@ ], "parameters": [ { - "$id": "7619", + "$id": "7624", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "7620", + "$id": "7625", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -100059,7 +100129,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "7621", + "$id": "7626", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -100076,36 +100146,36 @@ "crossLanguageDefinitionId": "OpenAI.Audio", "apiVersions": [], "parent": { - "$ref": "7513" + "$ref": "7518" } }, { - "$id": "7622", + "$id": "7627", "kind": "client", "name": "Batches", "namespace": "OpenAI", "methods": [ { - "$id": "7623", + "$id": "7628", "kind": "basic", "name": "createBatch", "accessibility": "public", "apiVersions": [], "summary": "Creates and executes a batch from an uploaded file of requests", "operation": { - "$id": "7624", + "$id": "7629", "name": "createBatch", "resourceName": "Batches", "summary": "Creates and executes a batch from an uploaded file of requests", "accessibility": "public", "parameters": [ { - "$id": "7625", + "$id": "7630", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1795" + "$ref": "1799" }, "isApiVersion": false, "optional": false, @@ -100116,13 +100186,13 @@ "crossLanguageDefinitionId": "OpenAI.Batches.createBatch.accept" }, { - "$id": "7626", + "$id": "7631", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1797" + "$ref": "1801" }, "isApiVersion": false, "optional": false, @@ -100133,12 +100203,12 @@ "crossLanguageDefinitionId": "OpenAI.Batches.createBatch.contentType" }, { - "$id": "7627", + "$id": "7632", "kind": "body", "name": "createBatchRequest", "serializedName": "createBatchRequest", "type": { - "$ref": "2631" + "$ref": "2635" }, "isApiVersion": false, "contentTypes": [ @@ -100158,7 +100228,7 @@ 200 ], "bodyType": { - "$ref": "2637" + "$ref": "2641" }, "headers": [], "isErrorResponse": false, @@ -100181,12 +100251,12 @@ }, "parameters": [ { - "$id": "7628", + "$id": "7633", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1799" + "$ref": "1803" }, "location": "Header", "isApiVersion": false, @@ -100198,13 +100268,13 @@ "decorators": [] }, { - "$id": "7629", + "$id": "7634", "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": "7630", + "$id": "7635", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100220,7 +100290,7 @@ "decorators": [] }, { - "$id": "7631", + "$id": "7636", "kind": "method", "name": "endpoint", "serializedName": "endpoint", @@ -100238,13 +100308,13 @@ "decorators": [] }, { - "$id": "7632", + "$id": "7637", "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": "1477" + "$ref": "1481" }, "location": "Body", "isApiVersion": false, @@ -100256,13 +100326,13 @@ "decorators": [] }, { - "$id": "7633", + "$id": "7638", "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": "2346" + "$ref": "2350" }, "location": "Body", "isApiVersion": false, @@ -100274,13 +100344,13 @@ "decorators": [] }, { - "$id": "7634", + "$id": "7639", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1797" + "$ref": "1801" }, "location": "Header", "isApiVersion": false, @@ -100294,7 +100364,7 @@ ], "response": { "type": { - "$ref": "2637" + "$ref": "2641" } }, "isOverride": false, @@ -100303,26 +100373,26 @@ "crossLanguageDefinitionId": "OpenAI.Batches.createBatch" }, { - "$id": "7635", + "$id": "7640", "kind": "basic", "name": "GetBatches", "accessibility": "public", "apiVersions": [], "summary": "List your organization's batches.", "operation": { - "$id": "7636", + "$id": "7641", "name": "GetBatches", "resourceName": "Batches", "summary": "List your organization's batches.", "accessibility": "public", "parameters": [ { - "$id": "7637", + "$id": "7642", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1803" + "$ref": "1807" }, "isApiVersion": false, "optional": false, @@ -100333,13 +100403,13 @@ "crossLanguageDefinitionId": "OpenAI.Batches.listBatches.accept" }, { - "$id": "7638", + "$id": "7643", "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": "7639", + "$id": "7644", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100354,13 +100424,13 @@ "readOnly": false }, { - "$id": "7640", + "$id": "7645", "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": "7641", + "$id": "7646", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100381,7 +100451,7 @@ 200 ], "bodyType": { - "$ref": "2704" + "$ref": "2708" }, "headers": [], "isErrorResponse": false, @@ -100401,12 +100471,12 @@ }, "parameters": [ { - "$id": "7642", + "$id": "7647", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1805" + "$ref": "1809" }, "location": "Header", "isApiVersion": false, @@ -100418,13 +100488,13 @@ "decorators": [] }, { - "$id": "7643", + "$id": "7648", "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": "7644", + "$id": "7649", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100440,13 +100510,13 @@ "decorators": [] }, { - "$id": "7645", + "$id": "7650", "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": "7646", + "$id": "7651", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100464,7 +100534,7 @@ ], "response": { "type": { - "$ref": "2704" + "$ref": "2708" } }, "isOverride": false, @@ -100473,26 +100543,26 @@ "crossLanguageDefinitionId": "OpenAI.Batches.listBatches" }, { - "$id": "7647", + "$id": "7652", "kind": "basic", "name": "GetBatch", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a batch.", "operation": { - "$id": "7648", + "$id": "7653", "name": "GetBatch", "resourceName": "Batches", "summary": "Retrieves a batch.", "accessibility": "public", "parameters": [ { - "$id": "7649", + "$id": "7654", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1807" + "$ref": "1811" }, "isApiVersion": false, "optional": false, @@ -100503,13 +100573,13 @@ "crossLanguageDefinitionId": "OpenAI.Batches.retrieveBatch.accept" }, { - "$id": "7650", + "$id": "7655", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the batch to retrieve.", "type": { - "$id": "7651", + "$id": "7656", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100533,7 +100603,7 @@ 200 ], "bodyType": { - "$ref": "2637" + "$ref": "2641" }, "headers": [], "isErrorResponse": false, @@ -100553,12 +100623,12 @@ }, "parameters": [ { - "$id": "7652", + "$id": "7657", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1809" + "$ref": "1813" }, "location": "Header", "isApiVersion": false, @@ -100570,13 +100640,13 @@ "decorators": [] }, { - "$id": "7653", + "$id": "7658", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the batch to retrieve.", "type": { - "$id": "7654", + "$id": "7659", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100594,7 +100664,7 @@ ], "response": { "type": { - "$ref": "2637" + "$ref": "2641" } }, "isOverride": false, @@ -100603,26 +100673,26 @@ "crossLanguageDefinitionId": "OpenAI.Batches.retrieveBatch" }, { - "$id": "7655", + "$id": "7660", "kind": "basic", "name": "cancelBatch", "accessibility": "public", "apiVersions": [], "summary": "Cancels an in-progress batch.", "operation": { - "$id": "7656", + "$id": "7661", "name": "cancelBatch", "resourceName": "Batches", "summary": "Cancels an in-progress batch.", "accessibility": "public", "parameters": [ { - "$id": "7657", + "$id": "7662", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1811" + "$ref": "1815" }, "isApiVersion": false, "optional": false, @@ -100633,13 +100703,13 @@ "crossLanguageDefinitionId": "OpenAI.Batches.cancelBatch.accept" }, { - "$id": "7658", + "$id": "7663", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the batch to cancel.", "type": { - "$id": "7659", + "$id": "7664", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100663,7 +100733,7 @@ 200 ], "bodyType": { - "$ref": "2637" + "$ref": "2641" }, "headers": [], "isErrorResponse": false, @@ -100683,12 +100753,12 @@ }, "parameters": [ { - "$id": "7660", + "$id": "7665", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1813" + "$ref": "1817" }, "location": "Header", "isApiVersion": false, @@ -100700,13 +100770,13 @@ "decorators": [] }, { - "$id": "7661", + "$id": "7666", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the batch to cancel.", "type": { - "$id": "7662", + "$id": "7667", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100724,7 +100794,7 @@ ], "response": { "type": { - "$ref": "2637" + "$ref": "2641" } }, "isOverride": false, @@ -100735,13 +100805,13 @@ ], "parameters": [ { - "$id": "7663", + "$id": "7668", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "7664", + "$id": "7669", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -100752,7 +100822,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "7665", + "$id": "7670", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -100769,37 +100839,37 @@ "crossLanguageDefinitionId": "OpenAI.Batches", "apiVersions": [], "parent": { - "$ref": "7513" + "$ref": "7518" } }, { - "$id": "7666", + "$id": "7671", "kind": "client", "name": "Chat", "namespace": "OpenAI", "methods": [ { - "$id": "7667", + "$id": "7672", "kind": "paging", "name": "listChatCompletions", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of chat completions.", "operation": { - "$id": "7668", + "$id": "7673", "name": "listChatCompletions", "resourceName": "Chat", "summary": "Returns a list of chat completions.", "accessibility": "public", "parameters": [ { - "$id": "7669", + "$id": "7674", "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": "7670", + "$id": "7675", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100814,13 +100884,13 @@ "readOnly": false }, { - "$id": "7671", + "$id": "7676", "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": "7672", + "$id": "7677", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100835,13 +100905,13 @@ "readOnly": false }, { - "$id": "7673", + "$id": "7678", "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": "1359" + "$ref": "1363" }, "isApiVersion": false, "explode": false, @@ -100852,12 +100922,12 @@ "readOnly": false }, { - "$id": "7674", + "$id": "7679", "kind": "query", "name": "metadata", "serializedName": "metadata", "type": { - "$ref": "2346" + "$ref": "2350" }, "isApiVersion": false, "explode": false, @@ -100868,12 +100938,12 @@ "readOnly": false }, { - "$id": "7675", + "$id": "7680", "kind": "query", "name": "model", "serializedName": "model", "type": { - "$id": "7676", + "$id": "7681", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100888,12 +100958,12 @@ "readOnly": false }, { - "$id": "7677", + "$id": "7682", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1815" + "$ref": "1819" }, "isApiVersion": false, "optional": false, @@ -100910,7 +100980,7 @@ 200 ], "bodyType": { - "$ref": "2714" + "$ref": "2718" }, "headers": [], "isErrorResponse": false, @@ -100930,13 +101000,13 @@ }, "parameters": [ { - "$id": "7678", + "$id": "7683", "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": "7679", + "$id": "7684", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100952,13 +101022,13 @@ "decorators": [] }, { - "$id": "7680", + "$id": "7685", "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": "7681", + "$id": "7686", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100974,13 +101044,13 @@ "decorators": [] }, { - "$id": "7682", + "$id": "7687", "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": "1359" + "$ref": "1363" }, "location": "Query", "isApiVersion": false, @@ -100992,12 +101062,12 @@ "decorators": [] }, { - "$id": "7683", + "$id": "7688", "kind": "method", "name": "metadata", "serializedName": "metadata", "type": { - "$ref": "2346" + "$ref": "2350" }, "location": "Query", "isApiVersion": false, @@ -101009,12 +101079,12 @@ "decorators": [] }, { - "$id": "7684", + "$id": "7689", "kind": "method", "name": "model", "serializedName": "model", "type": { - "$id": "7685", + "$id": "7690", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101030,12 +101100,12 @@ "decorators": [] }, { - "$id": "7686", + "$id": "7691", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1815" + "$ref": "1819" }, "location": "Header", "isApiVersion": false, @@ -101049,7 +101119,7 @@ ], "response": { "type": { - "$ref": "2717" + "$ref": "2721" }, "resultSegments": [ "data" @@ -101065,7 +101135,7 @@ ], "continuationToken": { "parameter": { - "$ref": "7669" + "$ref": "7674" }, "responseSegments": [ "last_id" @@ -101075,26 +101145,26 @@ } }, { - "$id": "7687", + "$id": "7692", "kind": "basic", "name": "CompleteChat", "accessibility": "public", "apiVersions": [], "summary": "Creates a model response for the given chat conversation.", "operation": { - "$id": "7688", + "$id": "7693", "name": "CompleteChat", "resourceName": "Chat", "summary": "Creates a model response for the given chat conversation.", "accessibility": "public", "parameters": [ { - "$id": "7689", + "$id": "7694", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1817" + "$ref": "1821" }, "isApiVersion": false, "optional": false, @@ -101105,13 +101175,13 @@ "crossLanguageDefinitionId": "OpenAI.Chat.createChatCompletion.accept" }, { - "$id": "7690", + "$id": "7695", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1819" + "$ref": "1823" }, "isApiVersion": false, "optional": false, @@ -101122,12 +101192,12 @@ "crossLanguageDefinitionId": "OpenAI.Chat.createChatCompletion.contentType" }, { - "$id": "7691", + "$id": "7696", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "2845" + "$ref": "2849" }, "isApiVersion": false, "contentTypes": [ @@ -101147,15 +101217,15 @@ 200 ], "bodyType": { - "$id": "7692", + "$id": "7697", "kind": "union", "name": "", "variantTypes": [ { - "$ref": "2718" + "$ref": "2722" }, { - "$ref": "3086" + "$ref": "3090" } ], "namespace": "", @@ -101166,7 +101236,7 @@ "name": "contentType", "nameInResponse": "Content-Type", "type": { - "$ref": "1821" + "$ref": "1825" } } ], @@ -101191,12 +101261,12 @@ }, "parameters": [ { - "$id": "7693", + "$id": "7698", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1823" + "$ref": "1827" }, "location": "Header", "isApiVersion": false, @@ -101208,12 +101278,12 @@ "decorators": [] }, { - "$id": "7694", + "$id": "7699", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "2845" + "$ref": "2849" }, "location": "Body", "isApiVersion": false, @@ -101225,13 +101295,13 @@ "decorators": [] }, { - "$id": "7695", + "$id": "7700", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1819" + "$ref": "1823" }, "location": "Header", "isApiVersion": false, @@ -101245,7 +101315,7 @@ ], "response": { "type": { - "$ref": "7692" + "$ref": "7697" } }, "isOverride": false, @@ -101254,27 +101324,27 @@ "crossLanguageDefinitionId": "OpenAI.Chat.createChatCompletion" }, { - "$id": "7696", + "$id": "7701", "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": "7697", + "$id": "7702", "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": "7698", + "$id": "7703", "kind": "path", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to retrieve.", "type": { - "$id": "7699", + "$id": "7704", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101292,12 +101362,12 @@ "crossLanguageDefinitionId": "OpenAI.Chat.getChatCompletion.completion_id" }, { - "$id": "7700", + "$id": "7705", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1825" + "$ref": "1829" }, "isApiVersion": false, "optional": false, @@ -101314,7 +101384,7 @@ 200 ], "bodyType": { - "$ref": "2718" + "$ref": "2722" }, "headers": [], "isErrorResponse": false, @@ -101334,13 +101404,13 @@ }, "parameters": [ { - "$id": "7701", + "$id": "7706", "kind": "method", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to retrieve.", "type": { - "$id": "7702", + "$id": "7707", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101356,12 +101426,12 @@ "decorators": [] }, { - "$id": "7703", + "$id": "7708", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1825" + "$ref": "1829" }, "location": "Header", "isApiVersion": false, @@ -101375,7 +101445,7 @@ ], "response": { "type": { - "$ref": "2718" + "$ref": "2722" } }, "isOverride": false, @@ -101384,27 +101454,27 @@ "crossLanguageDefinitionId": "OpenAI.Chat.getChatCompletion" }, { - "$id": "7704", + "$id": "7709", "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": "7705", + "$id": "7710", "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": "7706", + "$id": "7711", "kind": "path", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to update.", "type": { - "$id": "7707", + "$id": "7712", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101422,13 +101492,13 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion.completion_id" }, { - "$id": "7708", + "$id": "7713", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1827" + "$ref": "1831" }, "isApiVersion": false, "optional": false, @@ -101439,12 +101509,12 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion.contentType" }, { - "$id": "7709", + "$id": "7714", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1829" + "$ref": "1833" }, "isApiVersion": false, "optional": false, @@ -101455,12 +101525,12 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion.accept" }, { - "$id": "7710", + "$id": "7715", "kind": "body", "name": "updateChatCompletionRequest", "serializedName": "updateChatCompletionRequest", "type": { - "$ref": "3154" + "$ref": "3158" }, "isApiVersion": false, "contentTypes": [ @@ -101480,7 +101550,7 @@ 200 ], "bodyType": { - "$ref": "2718" + "$ref": "2722" }, "headers": [], "isErrorResponse": false, @@ -101503,13 +101573,13 @@ }, "parameters": [ { - "$id": "7711", + "$id": "7716", "kind": "method", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to update.", "type": { - "$id": "7712", + "$id": "7717", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101525,13 +101595,13 @@ "decorators": [] }, { - "$id": "7713", + "$id": "7718", "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": "2346" + "$ref": "2350" }, "location": "Body", "isApiVersion": false, @@ -101543,13 +101613,13 @@ "decorators": [] }, { - "$id": "7714", + "$id": "7719", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1827" + "$ref": "1831" }, "location": "Header", "isApiVersion": false, @@ -101561,12 +101631,12 @@ "decorators": [] }, { - "$id": "7715", + "$id": "7720", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1829" + "$ref": "1833" }, "location": "Header", "isApiVersion": false, @@ -101580,7 +101650,7 @@ ], "response": { "type": { - "$ref": "2718" + "$ref": "2722" } }, "isOverride": false, @@ -101589,27 +101659,27 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion" }, { - "$id": "7716", + "$id": "7721", "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": "7717", + "$id": "7722", "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": "7718", + "$id": "7723", "kind": "path", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to delete.", "type": { - "$id": "7719", + "$id": "7724", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101627,12 +101697,12 @@ "crossLanguageDefinitionId": "OpenAI.Chat.deleteChatCompletion.completion_id" }, { - "$id": "7720", + "$id": "7725", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1831" + "$ref": "1835" }, "isApiVersion": false, "optional": false, @@ -101649,7 +101719,7 @@ 200 ], "bodyType": { - "$ref": "3156" + "$ref": "3160" }, "headers": [], "isErrorResponse": false, @@ -101669,13 +101739,13 @@ }, "parameters": [ { - "$id": "7721", + "$id": "7726", "kind": "method", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to delete.", "type": { - "$id": "7722", + "$id": "7727", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101691,12 +101761,12 @@ "decorators": [] }, { - "$id": "7723", + "$id": "7728", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1831" + "$ref": "1835" }, "location": "Header", "isApiVersion": false, @@ -101710,7 +101780,7 @@ ], "response": { "type": { - "$ref": "3156" + "$ref": "3160" } }, "isOverride": false, @@ -101719,27 +101789,27 @@ "crossLanguageDefinitionId": "OpenAI.Chat.deleteChatCompletion" }, { - "$id": "7724", + "$id": "7729", "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": "7725", + "$id": "7730", "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": "7726", + "$id": "7731", "kind": "path", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to retrieve messages for.", "type": { - "$id": "7727", + "$id": "7732", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101757,13 +101827,13 @@ "crossLanguageDefinitionId": "OpenAI.Chat.getChatCompletionMessages.completion_id" }, { - "$id": "7728", + "$id": "7733", "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": "7729", + "$id": "7734", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101778,13 +101848,13 @@ "readOnly": false }, { - "$id": "7730", + "$id": "7735", "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": "7731", + "$id": "7736", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101799,13 +101869,13 @@ "readOnly": false }, { - "$id": "7732", + "$id": "7737", "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": "1359" + "$ref": "1363" }, "isApiVersion": false, "explode": false, @@ -101816,12 +101886,12 @@ "readOnly": false }, { - "$id": "7733", + "$id": "7738", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1833" + "$ref": "1837" }, "isApiVersion": false, "optional": false, @@ -101838,7 +101908,7 @@ 200 ], "bodyType": { - "$ref": "3162" + "$ref": "3166" }, "headers": [], "isErrorResponse": false, @@ -101858,13 +101928,13 @@ }, "parameters": [ { - "$id": "7734", + "$id": "7739", "kind": "method", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to retrieve messages for.", "type": { - "$id": "7735", + "$id": "7740", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101880,13 +101950,13 @@ "decorators": [] }, { - "$id": "7736", + "$id": "7741", "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": "7737", + "$id": "7742", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101902,13 +101972,13 @@ "decorators": [] }, { - "$id": "7738", + "$id": "7743", "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": "7739", + "$id": "7744", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101924,13 +101994,13 @@ "decorators": [] }, { - "$id": "7740", + "$id": "7745", "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": "1359" + "$ref": "1363" }, "location": "Query", "isApiVersion": false, @@ -101942,12 +102012,12 @@ "decorators": [] }, { - "$id": "7741", + "$id": "7746", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1833" + "$ref": "1837" }, "location": "Header", "isApiVersion": false, @@ -101961,7 +102031,7 @@ ], "response": { "type": { - "$ref": "3165" + "$ref": "3169" }, "resultSegments": [ "data" @@ -101977,7 +102047,7 @@ ], "continuationToken": { "parameter": { - "$ref": "7728" + "$ref": "7733" }, "responseSegments": [ "last_id" @@ -101989,13 +102059,13 @@ ], "parameters": [ { - "$id": "7742", + "$id": "7747", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "7743", + "$id": "7748", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -102006,7 +102076,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "7744", + "$id": "7749", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -102023,35 +102093,35 @@ "crossLanguageDefinitionId": "OpenAI.Chat", "apiVersions": [], "parent": { - "$ref": "7513" + "$ref": "7518" } }, { - "$id": "7745", + "$id": "7750", "kind": "client", "name": "Containers", "namespace": "OpenAI", "methods": [ { - "$id": "7746", + "$id": "7751", "kind": "paging", "name": "listContainers", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "7747", + "$id": "7752", "name": "listContainers", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "7748", + "$id": "7753", "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": "7749", + "$id": "7754", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102066,13 +102136,13 @@ "readOnly": false }, { - "$id": "7750", + "$id": "7755", "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": "1359" + "$ref": "1363" }, "isApiVersion": false, "explode": false, @@ -102083,13 +102153,13 @@ "readOnly": false }, { - "$id": "7751", + "$id": "7756", "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": "7752", + "$id": "7757", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102104,12 +102174,12 @@ "readOnly": false }, { - "$id": "7753", + "$id": "7758", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1835" + "$ref": "1839" }, "isApiVersion": false, "optional": false, @@ -102126,7 +102196,7 @@ 200 ], "bodyType": { - "$ref": "3183" + "$ref": "3187" }, "headers": [], "isErrorResponse": false, @@ -102146,13 +102216,13 @@ }, "parameters": [ { - "$id": "7754", + "$id": "7759", "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": "7755", + "$id": "7760", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102168,13 +102238,13 @@ "decorators": [] }, { - "$id": "7756", + "$id": "7761", "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": "1359" + "$ref": "1363" }, "location": "Query", "isApiVersion": false, @@ -102186,13 +102256,13 @@ "decorators": [] }, { - "$id": "7757", + "$id": "7762", "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": "7758", + "$id": "7763", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102208,12 +102278,12 @@ "decorators": [] }, { - "$id": "7759", + "$id": "7764", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1835" + "$ref": "1839" }, "location": "Header", "isApiVersion": false, @@ -102227,7 +102297,7 @@ ], "response": { "type": { - "$ref": "3186" + "$ref": "3190" }, "resultSegments": [ "data" @@ -102243,7 +102313,7 @@ ], "continuationToken": { "parameter": { - "$ref": "7751" + "$ref": "7756" }, "responseSegments": [ "last_id" @@ -102253,25 +102323,25 @@ } }, { - "$id": "7760", + "$id": "7765", "kind": "basic", "name": "createContainer", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "7761", + "$id": "7766", "name": "createContainer", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "7762", + "$id": "7767", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1837" + "$ref": "1841" }, "isApiVersion": false, "optional": false, @@ -102282,12 +102352,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainer.contentType" }, { - "$id": "7763", + "$id": "7768", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1839" + "$ref": "1843" }, "isApiVersion": false, "optional": false, @@ -102298,12 +102368,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainer.accept" }, { - "$id": "7764", + "$id": "7769", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$ref": "3210" + "$ref": "3214" }, "isApiVersion": false, "contentTypes": [ @@ -102323,7 +102393,7 @@ 200 ], "bodyType": { - "$ref": "3187" + "$ref": "3191" }, "headers": [], "isErrorResponse": false, @@ -102346,12 +102416,12 @@ }, "parameters": [ { - "$id": "7765", + "$id": "7770", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "3210" + "$ref": "3214" }, "location": "Body", "isApiVersion": false, @@ -102363,13 +102433,13 @@ "decorators": [] }, { - "$id": "7766", + "$id": "7771", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1837" + "$ref": "1841" }, "location": "Header", "isApiVersion": false, @@ -102381,12 +102451,12 @@ "decorators": [] }, { - "$id": "7767", + "$id": "7772", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1839" + "$ref": "1843" }, "location": "Header", "isApiVersion": false, @@ -102400,7 +102470,7 @@ ], "response": { "type": { - "$ref": "3187" + "$ref": "3191" } }, "isOverride": false, @@ -102409,24 +102479,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainer" }, { - "$id": "7768", + "$id": "7773", "kind": "basic", "name": "GetContainer", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "7769", + "$id": "7774", "name": "GetContainer", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "7770", + "$id": "7775", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "7771", + "$id": "7776", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102444,12 +102514,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainer.container_id" }, { - "$id": "7772", + "$id": "7777", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1841" + "$ref": "1845" }, "isApiVersion": false, "optional": false, @@ -102466,7 +102536,7 @@ 200 ], "bodyType": { - "$ref": "3187" + "$ref": "3191" }, "headers": [], "isErrorResponse": false, @@ -102486,12 +102556,12 @@ }, "parameters": [ { - "$id": "7773", + "$id": "7778", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "7774", + "$id": "7779", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102507,12 +102577,12 @@ "decorators": [] }, { - "$id": "7775", + "$id": "7780", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1841" + "$ref": "1845" }, "location": "Header", "isApiVersion": false, @@ -102526,7 +102596,7 @@ ], "response": { "type": { - "$ref": "3187" + "$ref": "3191" } }, "isOverride": false, @@ -102535,24 +102605,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainer" }, { - "$id": "7776", + "$id": "7781", "kind": "basic", "name": "deleteContainer", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "7777", + "$id": "7782", "name": "deleteContainer", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "7778", + "$id": "7783", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "7779", + "$id": "7784", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102570,12 +102640,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainer.container_id" }, { - "$id": "7780", + "$id": "7785", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1843" + "$ref": "1847" }, "isApiVersion": false, "optional": false, @@ -102592,7 +102662,7 @@ 200 ], "bodyType": { - "$ref": "3219" + "$ref": "3223" }, "headers": [], "isErrorResponse": false, @@ -102612,12 +102682,12 @@ }, "parameters": [ { - "$id": "7781", + "$id": "7786", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "7782", + "$id": "7787", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102633,12 +102703,12 @@ "decorators": [] }, { - "$id": "7783", + "$id": "7788", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1843" + "$ref": "1847" }, "location": "Header", "isApiVersion": false, @@ -102652,7 +102722,7 @@ ], "response": { "type": { - "$ref": "3219" + "$ref": "3223" } }, "isOverride": false, @@ -102661,24 +102731,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainer" }, { - "$id": "7784", + "$id": "7789", "kind": "basic", "name": "createContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "7785", + "$id": "7790", "name": "createContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "7786", + "$id": "7791", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "7787", + "$id": "7792", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102696,12 +102766,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile.container_id" }, { - "$id": "7788", + "$id": "7793", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "1845" + "$ref": "1849" }, "isApiVersion": false, "optional": false, @@ -102712,12 +102782,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile.contentType" }, { - "$id": "7789", + "$id": "7794", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1847" + "$ref": "1851" }, "isApiVersion": false, "optional": false, @@ -102728,12 +102798,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile.accept" }, { - "$id": "7790", + "$id": "7795", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$ref": "3224" + "$ref": "3228" }, "isApiVersion": false, "contentTypes": [ @@ -102753,7 +102823,7 @@ 200 ], "bodyType": { - "$ref": "3229" + "$ref": "3233" }, "headers": [], "isErrorResponse": false, @@ -102776,12 +102846,12 @@ }, "parameters": [ { - "$id": "7791", + "$id": "7796", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "7792", + "$id": "7797", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102797,12 +102867,12 @@ "decorators": [] }, { - "$id": "7793", + "$id": "7798", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "1849" + "$ref": "1853" }, "location": "Header", "isApiVersion": false, @@ -102814,12 +102884,12 @@ "decorators": [] }, { - "$id": "7794", + "$id": "7799", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "3224" + "$ref": "3228" }, "location": "Body", "isApiVersion": false, @@ -102831,12 +102901,12 @@ "decorators": [] }, { - "$id": "7795", + "$id": "7800", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1847" + "$ref": "1851" }, "location": "Header", "isApiVersion": false, @@ -102850,7 +102920,7 @@ ], "response": { "type": { - "$ref": "3229" + "$ref": "3233" } }, "isOverride": false, @@ -102859,24 +102929,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile" }, { - "$id": "7796", + "$id": "7801", "kind": "paging", "name": "listContainerFiles", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "7797", + "$id": "7802", "name": "listContainerFiles", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "7798", + "$id": "7803", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "7799", + "$id": "7804", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102894,13 +102964,13 @@ "crossLanguageDefinitionId": "OpenAI.Containers.listContainerFiles.container_id" }, { - "$id": "7800", + "$id": "7805", "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": "7801", + "$id": "7806", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102915,13 +102985,13 @@ "readOnly": false }, { - "$id": "7802", + "$id": "7807", "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": "1359" + "$ref": "1363" }, "isApiVersion": false, "explode": false, @@ -102932,13 +103002,13 @@ "readOnly": false }, { - "$id": "7803", + "$id": "7808", "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": "7804", + "$id": "7809", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102953,12 +103023,12 @@ "readOnly": false }, { - "$id": "7805", + "$id": "7810", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1851" + "$ref": "1855" }, "isApiVersion": false, "optional": false, @@ -102975,7 +103045,7 @@ 200 ], "bodyType": { - "$ref": "3245" + "$ref": "3249" }, "headers": [], "isErrorResponse": false, @@ -102995,12 +103065,12 @@ }, "parameters": [ { - "$id": "7806", + "$id": "7811", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "7807", + "$id": "7812", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103016,13 +103086,13 @@ "decorators": [] }, { - "$id": "7808", + "$id": "7813", "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": "7809", + "$id": "7814", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103038,13 +103108,13 @@ "decorators": [] }, { - "$id": "7810", + "$id": "7815", "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": "1359" + "$ref": "1363" }, "location": "Query", "isApiVersion": false, @@ -103056,13 +103126,13 @@ "decorators": [] }, { - "$id": "7811", + "$id": "7816", "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": "7812", + "$id": "7817", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103078,12 +103148,12 @@ "decorators": [] }, { - "$id": "7813", + "$id": "7818", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1851" + "$ref": "1855" }, "location": "Header", "isApiVersion": false, @@ -103097,7 +103167,7 @@ ], "response": { "type": { - "$ref": "3248" + "$ref": "3252" }, "resultSegments": [ "data" @@ -103113,7 +103183,7 @@ ], "continuationToken": { "parameter": { - "$ref": "7803" + "$ref": "7808" }, "responseSegments": [ "last_id" @@ -103123,24 +103193,24 @@ } }, { - "$id": "7814", + "$id": "7819", "kind": "basic", "name": "GetContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "7815", + "$id": "7820", "name": "GetContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "7816", + "$id": "7821", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "7817", + "$id": "7822", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103158,12 +103228,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFile.container_id" }, { - "$id": "7818", + "$id": "7823", "kind": "path", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "7819", + "$id": "7824", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103181,12 +103251,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFile.file_id" }, { - "$id": "7820", + "$id": "7825", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1853" + "$ref": "1857" }, "isApiVersion": false, "optional": false, @@ -103203,7 +103273,7 @@ 200 ], "bodyType": { - "$ref": "3229" + "$ref": "3233" }, "headers": [], "isErrorResponse": false, @@ -103223,12 +103293,12 @@ }, "parameters": [ { - "$id": "7821", + "$id": "7826", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "7822", + "$id": "7827", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103244,12 +103314,12 @@ "decorators": [] }, { - "$id": "7823", + "$id": "7828", "kind": "method", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "7824", + "$id": "7829", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103265,12 +103335,12 @@ "decorators": [] }, { - "$id": "7825", + "$id": "7830", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1853" + "$ref": "1857" }, "location": "Header", "isApiVersion": false, @@ -103284,7 +103354,7 @@ ], "response": { "type": { - "$ref": "3229" + "$ref": "3233" } }, "isOverride": false, @@ -103293,24 +103363,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFile" }, { - "$id": "7826", + "$id": "7831", "kind": "basic", "name": "deleteContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "7827", + "$id": "7832", "name": "deleteContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "7828", + "$id": "7833", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "7829", + "$id": "7834", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103328,12 +103398,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainerFile.container_id" }, { - "$id": "7830", + "$id": "7835", "kind": "path", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "7831", + "$id": "7836", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103351,12 +103421,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainerFile.file_id" }, { - "$id": "7832", + "$id": "7837", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1855" + "$ref": "1859" }, "isApiVersion": false, "optional": false, @@ -103373,7 +103443,7 @@ 200 ], "bodyType": { - "$ref": "3255" + "$ref": "3259" }, "headers": [], "isErrorResponse": false, @@ -103393,12 +103463,12 @@ }, "parameters": [ { - "$id": "7833", + "$id": "7838", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "7834", + "$id": "7839", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103414,12 +103484,12 @@ "decorators": [] }, { - "$id": "7835", + "$id": "7840", "kind": "method", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "7836", + "$id": "7841", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103435,12 +103505,12 @@ "decorators": [] }, { - "$id": "7837", + "$id": "7842", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1855" + "$ref": "1859" }, "location": "Header", "isApiVersion": false, @@ -103454,7 +103524,7 @@ ], "response": { "type": { - "$ref": "3255" + "$ref": "3259" } }, "isOverride": false, @@ -103463,24 +103533,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainerFile" }, { - "$id": "7838", + "$id": "7843", "kind": "basic", "name": "GetContainerFileContent", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "7839", + "$id": "7844", "name": "GetContainerFileContent", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "7840", + "$id": "7845", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "7841", + "$id": "7846", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103498,12 +103568,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFileContent.container_id" }, { - "$id": "7842", + "$id": "7847", "kind": "path", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "7843", + "$id": "7848", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103521,12 +103591,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFileContent.file_id" }, { - "$id": "7844", + "$id": "7849", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1857" + "$ref": "1861" }, "isApiVersion": false, "optional": false, @@ -103543,7 +103613,7 @@ 200 ], "bodyType": { - "$id": "7845", + "$id": "7850", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -103568,12 +103638,12 @@ }, "parameters": [ { - "$id": "7846", + "$id": "7851", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "7847", + "$id": "7852", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103589,12 +103659,12 @@ "decorators": [] }, { - "$id": "7848", + "$id": "7853", "kind": "method", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "7849", + "$id": "7854", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103610,12 +103680,12 @@ "decorators": [] }, { - "$id": "7850", + "$id": "7855", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1857" + "$ref": "1861" }, "location": "Header", "isApiVersion": false, @@ -103629,7 +103699,7 @@ ], "response": { "type": { - "$ref": "7845" + "$ref": "7850" } }, "isOverride": false, @@ -103640,13 +103710,13 @@ ], "parameters": [ { - "$id": "7851", + "$id": "7856", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "7852", + "$id": "7857", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -103657,7 +103727,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "7853", + "$id": "7858", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -103674,36 +103744,36 @@ "crossLanguageDefinitionId": "OpenAI.Containers", "apiVersions": [], "parent": { - "$ref": "7513" + "$ref": "7518" } }, { - "$id": "7854", + "$id": "7859", "kind": "client", "name": "Embeddings", "namespace": "OpenAI", "methods": [ { - "$id": "7855", + "$id": "7860", "kind": "basic", "name": "GenerateEmbeddings", "accessibility": "public", "apiVersions": [], "summary": "Creates an embedding vector representing the input text.", "operation": { - "$id": "7856", + "$id": "7861", "name": "GenerateEmbeddings", "resourceName": "Embeddings", "summary": "Creates an embedding vector representing the input text.", "accessibility": "public", "parameters": [ { - "$id": "7857", + "$id": "7862", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1859" + "$ref": "1863" }, "isApiVersion": false, "optional": false, @@ -103714,13 +103784,13 @@ "crossLanguageDefinitionId": "OpenAI.Embeddings.createEmbedding.accept" }, { - "$id": "7858", + "$id": "7863", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1861" + "$ref": "1865" }, "isApiVersion": false, "optional": false, @@ -103731,12 +103801,12 @@ "crossLanguageDefinitionId": "OpenAI.Embeddings.createEmbedding.contentType" }, { - "$id": "7859", + "$id": "7864", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "3260" + "$ref": "3264" }, "isApiVersion": false, "contentTypes": [ @@ -103756,7 +103826,7 @@ 200 ], "bodyType": { - "$ref": "3271" + "$ref": "3275" }, "headers": [], "isErrorResponse": false, @@ -103779,12 +103849,12 @@ }, "parameters": [ { - "$id": "7860", + "$id": "7865", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1863" + "$ref": "1867" }, "location": "Header", "isApiVersion": false, @@ -103796,12 +103866,12 @@ "decorators": [] }, { - "$id": "7861", + "$id": "7866", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "3260" + "$ref": "3264" }, "location": "Body", "isApiVersion": false, @@ -103813,13 +103883,13 @@ "decorators": [] }, { - "$id": "7862", + "$id": "7867", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1861" + "$ref": "1865" }, "location": "Header", "isApiVersion": false, @@ -103833,7 +103903,7 @@ ], "response": { "type": { - "$ref": "3271" + "$ref": "3275" } }, "isOverride": false, @@ -103844,13 +103914,13 @@ ], "parameters": [ { - "$id": "7863", + "$id": "7868", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "7864", + "$id": "7869", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -103861,7 +103931,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "7865", + "$id": "7870", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -103878,36 +103948,36 @@ "crossLanguageDefinitionId": "OpenAI.Embeddings", "apiVersions": [], "parent": { - "$ref": "7513" + "$ref": "7518" } }, { - "$id": "7866", + "$id": "7871", "kind": "client", "name": "Files", "namespace": "OpenAI", "methods": [ { - "$id": "7867", + "$id": "7872", "kind": "basic", "name": "GetFiles", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of files that belong to the user's organization.", "operation": { - "$id": "7868", + "$id": "7873", "name": "GetFiles", "resourceName": "Files", "summary": "Returns a list of files that belong to the user's organization.", "accessibility": "public", "parameters": [ { - "$id": "7869", + "$id": "7874", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1865" + "$ref": "1869" }, "isApiVersion": false, "optional": false, @@ -103918,13 +103988,13 @@ "crossLanguageDefinitionId": "OpenAI.Files.listFiles.accept" }, { - "$id": "7870", + "$id": "7875", "kind": "query", "name": "purpose", "serializedName": "purpose", "doc": "Only return files with the given purpose.", "type": { - "$id": "7871", + "$id": "7876", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103945,7 +104015,7 @@ 200 ], "bodyType": { - "$ref": "3292" + "$ref": "3296" }, "headers": [], "isErrorResponse": false, @@ -103965,12 +104035,12 @@ }, "parameters": [ { - "$id": "7872", + "$id": "7877", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1867" + "$ref": "1871" }, "location": "Header", "isApiVersion": false, @@ -103982,13 +104052,13 @@ "decorators": [] }, { - "$id": "7873", + "$id": "7878", "kind": "method", "name": "purpose", "serializedName": "purpose", "doc": "Only return files with the given purpose.", "type": { - "$id": "7874", + "$id": "7879", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104006,7 +104076,7 @@ ], "response": { "type": { - "$ref": "3292" + "$ref": "3296" } }, "isOverride": false, @@ -104015,26 +104085,26 @@ "crossLanguageDefinitionId": "OpenAI.Files.listFiles" }, { - "$id": "7875", + "$id": "7880", "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": "7876", + "$id": "7881", "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": "7877", + "$id": "7882", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1869" + "$ref": "1873" }, "isApiVersion": false, "optional": false, @@ -104045,12 +104115,12 @@ "crossLanguageDefinitionId": "OpenAI.Files.createFile.accept" }, { - "$id": "7878", + "$id": "7883", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "1871" + "$ref": "1875" }, "isApiVersion": false, "optional": false, @@ -104061,12 +104131,12 @@ "crossLanguageDefinitionId": "OpenAI.Files.createFile.contentType" }, { - "$id": "7879", + "$id": "7884", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "3321" + "$ref": "3325" }, "isApiVersion": false, "contentTypes": [ @@ -104086,7 +104156,7 @@ 200 ], "bodyType": { - "$ref": "3296" + "$ref": "3300" }, "headers": [], "isErrorResponse": false, @@ -104109,12 +104179,12 @@ }, "parameters": [ { - "$id": "7880", + "$id": "7885", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1873" + "$ref": "1877" }, "location": "Header", "isApiVersion": false, @@ -104126,12 +104196,12 @@ "decorators": [] }, { - "$id": "7881", + "$id": "7886", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "1875" + "$ref": "1879" }, "location": "Header", "isApiVersion": false, @@ -104143,12 +104213,12 @@ "decorators": [] }, { - "$id": "7882", + "$id": "7887", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "3321" + "$ref": "3325" }, "location": "Body", "isApiVersion": false, @@ -104162,7 +104232,7 @@ ], "response": { "type": { - "$ref": "3296" + "$ref": "3300" } }, "isOverride": false, @@ -104171,26 +104241,26 @@ "crossLanguageDefinitionId": "OpenAI.Files.createFile" }, { - "$id": "7883", + "$id": "7888", "kind": "basic", "name": "deleteFile", "accessibility": "public", "apiVersions": [], "summary": "Delete a file", "operation": { - "$id": "7884", + "$id": "7889", "name": "deleteFile", "resourceName": "Files", "summary": "Delete a file", "accessibility": "public", "parameters": [ { - "$id": "7885", + "$id": "7890", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1877" + "$ref": "1881" }, "isApiVersion": false, "optional": false, @@ -104201,13 +104271,13 @@ "crossLanguageDefinitionId": "OpenAI.Files.deleteFile.accept" }, { - "$id": "7886", + "$id": "7891", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "7887", + "$id": "7892", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104231,7 +104301,7 @@ 200 ], "bodyType": { - "$ref": "3325" + "$ref": "3329" }, "headers": [], "isErrorResponse": false, @@ -104251,12 +104321,12 @@ }, "parameters": [ { - "$id": "7888", + "$id": "7893", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1879" + "$ref": "1883" }, "location": "Header", "isApiVersion": false, @@ -104268,13 +104338,13 @@ "decorators": [] }, { - "$id": "7889", + "$id": "7894", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "7890", + "$id": "7895", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104292,7 +104362,7 @@ ], "response": { "type": { - "$ref": "3325" + "$ref": "3329" } }, "isOverride": false, @@ -104301,26 +104371,26 @@ "crossLanguageDefinitionId": "OpenAI.Files.deleteFile" }, { - "$id": "7891", + "$id": "7896", "kind": "basic", "name": "GetFile", "accessibility": "public", "apiVersions": [], "summary": "Returns information about a specific file.", "operation": { - "$id": "7892", + "$id": "7897", "name": "GetFile", "resourceName": "Files", "summary": "Returns information about a specific file.", "accessibility": "public", "parameters": [ { - "$id": "7893", + "$id": "7898", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1881" + "$ref": "1885" }, "isApiVersion": false, "optional": false, @@ -104331,13 +104401,13 @@ "crossLanguageDefinitionId": "OpenAI.Files.retrieveFile.accept" }, { - "$id": "7894", + "$id": "7899", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "7895", + "$id": "7900", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104361,7 +104431,7 @@ 200 ], "bodyType": { - "$ref": "3296" + "$ref": "3300" }, "headers": [], "isErrorResponse": false, @@ -104381,12 +104451,12 @@ }, "parameters": [ { - "$id": "7896", + "$id": "7901", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1883" + "$ref": "1887" }, "location": "Header", "isApiVersion": false, @@ -104398,13 +104468,13 @@ "decorators": [] }, { - "$id": "7897", + "$id": "7902", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "7898", + "$id": "7903", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104422,7 +104492,7 @@ ], "response": { "type": { - "$ref": "3296" + "$ref": "3300" } }, "isOverride": false, @@ -104431,26 +104501,26 @@ "crossLanguageDefinitionId": "OpenAI.Files.retrieveFile" }, { - "$id": "7899", + "$id": "7904", "kind": "basic", "name": "downloadFile", "accessibility": "public", "apiVersions": [], "summary": "Returns the contents of the specified file.", "operation": { - "$id": "7900", + "$id": "7905", "name": "downloadFile", "resourceName": "Files", "summary": "Returns the contents of the specified file.", "accessibility": "public", "parameters": [ { - "$id": "7901", + "$id": "7906", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1885" + "$ref": "1889" }, "isApiVersion": false, "optional": false, @@ -104461,13 +104531,13 @@ "crossLanguageDefinitionId": "OpenAI.Files.downloadFile.accept" }, { - "$id": "7902", + "$id": "7907", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "7903", + "$id": "7908", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104491,7 +104561,7 @@ 200 ], "bodyType": { - "$id": "7904", + "$id": "7909", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -104516,12 +104586,12 @@ }, "parameters": [ { - "$id": "7905", + "$id": "7910", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1887" + "$ref": "1891" }, "location": "Header", "isApiVersion": false, @@ -104533,13 +104603,13 @@ "decorators": [] }, { - "$id": "7906", + "$id": "7911", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "7907", + "$id": "7912", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104557,7 +104627,7 @@ ], "response": { "type": { - "$ref": "7904" + "$ref": "7909" } }, "isOverride": false, @@ -104568,13 +104638,13 @@ ], "parameters": [ { - "$id": "7908", + "$id": "7913", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "7909", + "$id": "7914", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -104585,7 +104655,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "7910", + "$id": "7915", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -104602,37 +104672,37 @@ "crossLanguageDefinitionId": "OpenAI.Files", "apiVersions": [], "parent": { - "$ref": "7513" + "$ref": "7518" } }, { - "$id": "7911", + "$id": "7916", "kind": "client", "name": "FineTuning", "namespace": "OpenAI", "methods": [ { - "$id": "7912", + "$id": "7917", "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": "7913", + "$id": "7918", "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": "7914", + "$id": "7919", "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": "7915", + "$id": "7920", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104650,13 +104720,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningCheckpointPermissions.fine_tuned_model_checkpoint" }, { - "$id": "7916", + "$id": "7921", "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": "7917", + "$id": "7922", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104671,13 +104741,13 @@ "readOnly": false }, { - "$id": "7918", + "$id": "7923", "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": "7919", + "$id": "7924", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104692,13 +104762,13 @@ "readOnly": false }, { - "$id": "7920", + "$id": "7925", "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": "1359" + "$ref": "1363" }, "isApiVersion": false, "explode": false, @@ -104709,13 +104779,13 @@ "readOnly": false }, { - "$id": "7921", + "$id": "7926", "kind": "query", "name": "project_id", "serializedName": "project_id", "doc": "The ID of the project to get permissions for.", "type": { - "$id": "7922", + "$id": "7927", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104730,12 +104800,12 @@ "readOnly": false }, { - "$id": "7923", + "$id": "7928", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1889" + "$ref": "1893" }, "isApiVersion": false, "optional": false, @@ -104752,7 +104822,7 @@ 200 ], "bodyType": { - "$ref": "3331" + "$ref": "3335" }, "headers": [], "isErrorResponse": false, @@ -104772,13 +104842,13 @@ }, "parameters": [ { - "$id": "7924", + "$id": "7929", "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": "7925", + "$id": "7930", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104794,13 +104864,13 @@ "decorators": [] }, { - "$id": "7926", + "$id": "7931", "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": "7927", + "$id": "7932", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104816,13 +104886,13 @@ "decorators": [] }, { - "$id": "7928", + "$id": "7933", "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": "7929", + "$id": "7934", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104838,13 +104908,13 @@ "decorators": [] }, { - "$id": "7930", + "$id": "7935", "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": "1359" + "$ref": "1363" }, "location": "Query", "isApiVersion": false, @@ -104856,13 +104926,13 @@ "decorators": [] }, { - "$id": "7931", + "$id": "7936", "kind": "method", "name": "project_id", "serializedName": "project_id", "doc": "The ID of the project to get permissions for.", "type": { - "$id": "7932", + "$id": "7937", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104878,12 +104948,12 @@ "decorators": [] }, { - "$id": "7933", + "$id": "7938", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1889" + "$ref": "1893" }, "location": "Header", "isApiVersion": false, @@ -104897,7 +104967,7 @@ ], "response": { "type": { - "$ref": "3331" + "$ref": "3335" } }, "isOverride": false, @@ -104906,27 +104976,27 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningCheckpointPermissions" }, { - "$id": "7934", + "$id": "7939", "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": "7935", + "$id": "7940", "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": "7936", + "$id": "7941", "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": "7937", + "$id": "7942", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104944,13 +105014,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission.fine_tuned_model_checkpoint" }, { - "$id": "7938", + "$id": "7943", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1891" + "$ref": "1895" }, "isApiVersion": false, "optional": false, @@ -104961,12 +105031,12 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission.contentType" }, { - "$id": "7939", + "$id": "7944", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1893" + "$ref": "1897" }, "isApiVersion": false, "optional": false, @@ -104977,12 +105047,12 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission.accept" }, { - "$id": "7940", + "$id": "7945", "kind": "body", "name": "createFineTuningCheckpointPermissionRequest", "serializedName": "createFineTuningCheckpointPermissionRequest", "type": { - "$ref": "3352" + "$ref": "3356" }, "isApiVersion": false, "contentTypes": [ @@ -105002,7 +105072,7 @@ 200 ], "bodyType": { - "$ref": "3331" + "$ref": "3335" }, "headers": [], "isErrorResponse": false, @@ -105025,13 +105095,13 @@ }, "parameters": [ { - "$id": "7941", + "$id": "7946", "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": "7942", + "$id": "7947", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105047,13 +105117,13 @@ "decorators": [] }, { - "$id": "7943", + "$id": "7948", "kind": "method", "name": "project_ids", "serializedName": "project_ids", "doc": "The project identifiers to grant access to.", "type": { - "$ref": "2339" + "$ref": "2343" }, "location": "Body", "isApiVersion": false, @@ -105065,13 +105135,13 @@ "decorators": [] }, { - "$id": "7944", + "$id": "7949", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1891" + "$ref": "1895" }, "location": "Header", "isApiVersion": false, @@ -105083,12 +105153,12 @@ "decorators": [] }, { - "$id": "7945", + "$id": "7950", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1893" + "$ref": "1897" }, "location": "Header", "isApiVersion": false, @@ -105102,7 +105172,7 @@ ], "response": { "type": { - "$ref": "3331" + "$ref": "3335" } }, "isOverride": false, @@ -105111,27 +105181,27 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission" }, { - "$id": "7946", + "$id": "7951", "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": "7947", + "$id": "7952", "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": "7948", + "$id": "7953", "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": "7949", + "$id": "7954", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105149,13 +105219,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.deleteFineTuningCheckpointPermission.fine_tuned_model_checkpoint" }, { - "$id": "7950", + "$id": "7955", "kind": "path", "name": "permission_id", "serializedName": "permission_id", "doc": "The ID of the permission to delete.", "type": { - "$id": "7951", + "$id": "7956", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105173,12 +105243,12 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.deleteFineTuningCheckpointPermission.permission_id" }, { - "$id": "7952", + "$id": "7957", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1895" + "$ref": "1899" }, "isApiVersion": false, "optional": false, @@ -105195,7 +105265,7 @@ 200 ], "bodyType": { - "$ref": "3354" + "$ref": "3358" }, "headers": [], "isErrorResponse": false, @@ -105215,13 +105285,13 @@ }, "parameters": [ { - "$id": "7953", + "$id": "7958", "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": "7954", + "$id": "7959", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105237,13 +105307,13 @@ "decorators": [] }, { - "$id": "7955", + "$id": "7960", "kind": "method", "name": "permission_id", "serializedName": "permission_id", "doc": "The ID of the permission to delete.", "type": { - "$id": "7956", + "$id": "7961", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105259,12 +105329,12 @@ "decorators": [] }, { - "$id": "7957", + "$id": "7962", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1895" + "$ref": "1899" }, "location": "Header", "isApiVersion": false, @@ -105278,7 +105348,7 @@ ], "response": { "type": { - "$ref": "3354" + "$ref": "3358" } }, "isOverride": false, @@ -105287,26 +105357,26 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.deleteFineTuningCheckpointPermission" }, { - "$id": "7958", + "$id": "7963", "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": "7959", + "$id": "7964", "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": "7960", + "$id": "7965", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1897" + "$ref": "1901" }, "isApiVersion": false, "optional": false, @@ -105317,13 +105387,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningJob.accept" }, { - "$id": "7961", + "$id": "7966", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1899" + "$ref": "1903" }, "isApiVersion": false, "optional": false, @@ -105334,12 +105404,12 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningJob.contentType" }, { - "$id": "7962", + "$id": "7967", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "3360" + "$ref": "3364" }, "isApiVersion": false, "contentTypes": [ @@ -105359,7 +105429,7 @@ 200 ], "bodyType": { - "$ref": "3533" + "$ref": "3537" }, "headers": [], "isErrorResponse": false, @@ -105382,12 +105452,12 @@ }, "parameters": [ { - "$id": "7963", + "$id": "7968", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1901" + "$ref": "1905" }, "location": "Header", "isApiVersion": false, @@ -105399,12 +105469,12 @@ "decorators": [] }, { - "$id": "7964", + "$id": "7969", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "3360" + "$ref": "3364" }, "location": "Body", "isApiVersion": false, @@ -105416,13 +105486,13 @@ "decorators": [] }, { - "$id": "7965", + "$id": "7970", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1899" + "$ref": "1903" }, "location": "Header", "isApiVersion": false, @@ -105436,7 +105506,7 @@ ], "response": { "type": { - "$ref": "3533" + "$ref": "3537" } }, "isOverride": false, @@ -105445,26 +105515,26 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningJob" }, { - "$id": "7966", + "$id": "7971", "kind": "basic", "name": "listPaginatedFineTuningJobs", "accessibility": "public", "apiVersions": [], "summary": "List your organization's fine-tuning jobs", "operation": { - "$id": "7967", + "$id": "7972", "name": "listPaginatedFineTuningJobs", "resourceName": "FineTuning", "summary": "List your organization's fine-tuning jobs", "accessibility": "public", "parameters": [ { - "$id": "7968", + "$id": "7973", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1903" + "$ref": "1907" }, "isApiVersion": false, "optional": false, @@ -105475,13 +105545,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listPaginatedFineTuningJobs.accept" }, { - "$id": "7969", + "$id": "7974", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last job from the previous pagination request.", "type": { - "$id": "7970", + "$id": "7975", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105496,13 +105566,13 @@ "readOnly": false }, { - "$id": "7971", + "$id": "7976", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "Number of fine-tuning jobs to retrieve.", "type": { - "$id": "7972", + "$id": "7977", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105523,7 +105593,7 @@ 200 ], "bodyType": { - "$ref": "3612" + "$ref": "3616" }, "headers": [], "isErrorResponse": false, @@ -105543,12 +105613,12 @@ }, "parameters": [ { - "$id": "7973", + "$id": "7978", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1905" + "$ref": "1909" }, "location": "Header", "isApiVersion": false, @@ -105560,13 +105630,13 @@ "decorators": [] }, { - "$id": "7974", + "$id": "7979", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last job from the previous pagination request.", "type": { - "$id": "7975", + "$id": "7980", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105582,13 +105652,13 @@ "decorators": [] }, { - "$id": "7976", + "$id": "7981", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "Number of fine-tuning jobs to retrieve.", "type": { - "$id": "7977", + "$id": "7982", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105606,7 +105676,7 @@ ], "response": { "type": { - "$ref": "3612" + "$ref": "3616" } }, "isOverride": false, @@ -105615,26 +105685,26 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listPaginatedFineTuningJobs" }, { - "$id": "7978", + "$id": "7983", "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": "7979", + "$id": "7984", "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": "7980", + "$id": "7985", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1907" + "$ref": "1911" }, "isApiVersion": false, "optional": false, @@ -105645,13 +105715,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.retrieveFineTuningJob.accept" }, { - "$id": "7981", + "$id": "7986", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job.", "type": { - "$id": "7982", + "$id": "7987", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105675,7 +105745,7 @@ 200 ], "bodyType": { - "$ref": "3533" + "$ref": "3537" }, "headers": [], "isErrorResponse": false, @@ -105695,12 +105765,12 @@ }, "parameters": [ { - "$id": "7983", + "$id": "7988", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1909" + "$ref": "1913" }, "location": "Header", "isApiVersion": false, @@ -105712,13 +105782,13 @@ "decorators": [] }, { - "$id": "7984", + "$id": "7989", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job.", "type": { - "$id": "7985", + "$id": "7990", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105736,7 +105806,7 @@ ], "response": { "type": { - "$ref": "3533" + "$ref": "3537" } }, "isOverride": false, @@ -105745,26 +105815,26 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.retrieveFineTuningJob" }, { - "$id": "7986", + "$id": "7991", "kind": "basic", "name": "cancelFineTuningJob", "accessibility": "public", "apiVersions": [], "summary": "Immediately cancel a fine-tune job.", "operation": { - "$id": "7987", + "$id": "7992", "name": "cancelFineTuningJob", "resourceName": "FineTuning", "summary": "Immediately cancel a fine-tune job.", "accessibility": "public", "parameters": [ { - "$id": "7988", + "$id": "7993", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1911" + "$ref": "1915" }, "isApiVersion": false, "optional": false, @@ -105775,13 +105845,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.cancelFineTuningJob.accept" }, { - "$id": "7989", + "$id": "7994", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to cancel.", "type": { - "$id": "7990", + "$id": "7995", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105805,7 +105875,7 @@ 200 ], "bodyType": { - "$ref": "3533" + "$ref": "3537" }, "headers": [], "isErrorResponse": false, @@ -105825,12 +105895,12 @@ }, "parameters": [ { - "$id": "7991", + "$id": "7996", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1913" + "$ref": "1917" }, "location": "Header", "isApiVersion": false, @@ -105842,13 +105912,13 @@ "decorators": [] }, { - "$id": "7992", + "$id": "7997", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to cancel.", "type": { - "$id": "7993", + "$id": "7998", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105866,7 +105936,7 @@ ], "response": { "type": { - "$ref": "3533" + "$ref": "3537" } }, "isOverride": false, @@ -105875,26 +105945,26 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.cancelFineTuningJob" }, { - "$id": "7994", + "$id": "7999", "kind": "basic", "name": "listFineTuningJobCheckpoints", "accessibility": "public", "apiVersions": [], "summary": "List the checkpoints for a fine-tuning job.", "operation": { - "$id": "7995", + "$id": "8000", "name": "listFineTuningJobCheckpoints", "resourceName": "FineTuning", "summary": "List the checkpoints for a fine-tuning job.", "accessibility": "public", "parameters": [ { - "$id": "7996", + "$id": "8001", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1915" + "$ref": "1919" }, "isApiVersion": false, "optional": false, @@ -105905,13 +105975,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningJobCheckpoints.accept" }, { - "$id": "7997", + "$id": "8002", "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": "7998", + "$id": "8003", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105929,13 +105999,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningJobCheckpoints.fine_tuning_job_id" }, { - "$id": "7999", + "$id": "8004", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last checkpoint ID from the previous pagination request.", "type": { - "$id": "8000", + "$id": "8005", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105950,13 +106020,13 @@ "readOnly": false }, { - "$id": "8001", + "$id": "8006", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "Number of checkpoints to retrieve.", "type": { - "$id": "8002", + "$id": "8007", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105977,7 +106047,7 @@ 200 ], "bodyType": { - "$ref": "3618" + "$ref": "3622" }, "headers": [], "isErrorResponse": false, @@ -105997,12 +106067,12 @@ }, "parameters": [ { - "$id": "8003", + "$id": "8008", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1917" + "$ref": "1921" }, "location": "Header", "isApiVersion": false, @@ -106014,13 +106084,13 @@ "decorators": [] }, { - "$id": "8004", + "$id": "8009", "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": "8005", + "$id": "8010", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106036,13 +106106,13 @@ "decorators": [] }, { - "$id": "8006", + "$id": "8011", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last checkpoint ID from the previous pagination request.", "type": { - "$id": "8007", + "$id": "8012", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106058,13 +106128,13 @@ "decorators": [] }, { - "$id": "8008", + "$id": "8013", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "Number of checkpoints to retrieve.", "type": { - "$id": "8009", + "$id": "8014", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106082,7 +106152,7 @@ ], "response": { "type": { - "$ref": "3618" + "$ref": "3622" } }, "isOverride": false, @@ -106091,26 +106161,26 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningJobCheckpoints" }, { - "$id": "8010", + "$id": "8015", "kind": "basic", "name": "listFineTuningEvents", "accessibility": "public", "apiVersions": [], "summary": "Get status updates for a fine-tuning job.", "operation": { - "$id": "8011", + "$id": "8016", "name": "listFineTuningEvents", "resourceName": "FineTuning", "summary": "Get status updates for a fine-tuning job.", "accessibility": "public", "parameters": [ { - "$id": "8012", + "$id": "8017", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1919" + "$ref": "1923" }, "isApiVersion": false, "optional": false, @@ -106121,13 +106191,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningEvents.accept" }, { - "$id": "8013", + "$id": "8018", "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": "8014", + "$id": "8019", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106145,13 +106215,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningEvents.fine_tuning_job_id" }, { - "$id": "8015", + "$id": "8020", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last event from the previous pagination request.", "type": { - "$id": "8016", + "$id": "8021", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106166,13 +106236,13 @@ "readOnly": false }, { - "$id": "8017", + "$id": "8022", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "Number of events to retrieve.", "type": { - "$id": "8018", + "$id": "8023", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106193,7 +106263,7 @@ 200 ], "bodyType": { - "$ref": "3659" + "$ref": "3663" }, "headers": [], "isErrorResponse": false, @@ -106213,12 +106283,12 @@ }, "parameters": [ { - "$id": "8019", + "$id": "8024", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1921" + "$ref": "1925" }, "location": "Header", "isApiVersion": false, @@ -106230,13 +106300,13 @@ "decorators": [] }, { - "$id": "8020", + "$id": "8025", "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": "8021", + "$id": "8026", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106252,13 +106322,13 @@ "decorators": [] }, { - "$id": "8022", + "$id": "8027", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last event from the previous pagination request.", "type": { - "$id": "8023", + "$id": "8028", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106274,13 +106344,13 @@ "decorators": [] }, { - "$id": "8024", + "$id": "8029", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "Number of events to retrieve.", "type": { - "$id": "8025", + "$id": "8030", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106298,7 +106368,7 @@ ], "response": { "type": { - "$ref": "3659" + "$ref": "3663" } }, "isOverride": false, @@ -106307,27 +106377,27 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningEvents" }, { - "$id": "8026", + "$id": "8031", "kind": "basic", "name": "pauseFineTuningJob", "accessibility": "public", "apiVersions": [], "summary": "Pause a fine-tune job.", "operation": { - "$id": "8027", + "$id": "8032", "name": "pauseFineTuningJob", "resourceName": "FineTuning", "summary": "Pause a fine-tune job.", "accessibility": "public", "parameters": [ { - "$id": "8028", + "$id": "8033", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to pause.", "type": { - "$id": "8029", + "$id": "8034", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106345,12 +106415,12 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.pauseFineTuningJob.fine_tuning_job_id" }, { - "$id": "8030", + "$id": "8035", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1923" + "$ref": "1927" }, "isApiVersion": false, "optional": false, @@ -106367,7 +106437,7 @@ 200 ], "bodyType": { - "$ref": "3533" + "$ref": "3537" }, "headers": [], "isErrorResponse": false, @@ -106387,13 +106457,13 @@ }, "parameters": [ { - "$id": "8031", + "$id": "8036", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to pause.", "type": { - "$id": "8032", + "$id": "8037", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106409,12 +106479,12 @@ "decorators": [] }, { - "$id": "8033", + "$id": "8038", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1923" + "$ref": "1927" }, "location": "Header", "isApiVersion": false, @@ -106428,7 +106498,7 @@ ], "response": { "type": { - "$ref": "3533" + "$ref": "3537" } }, "isOverride": false, @@ -106437,27 +106507,27 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.pauseFineTuningJob" }, { - "$id": "8034", + "$id": "8039", "kind": "basic", "name": "resumeFineTuningJob", "accessibility": "public", "apiVersions": [], "summary": "Resume a paused fine-tune job.", "operation": { - "$id": "8035", + "$id": "8040", "name": "resumeFineTuningJob", "resourceName": "FineTuning", "summary": "Resume a paused fine-tune job.", "accessibility": "public", "parameters": [ { - "$id": "8036", + "$id": "8041", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to resume.", "type": { - "$id": "8037", + "$id": "8042", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106475,12 +106545,12 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.resumeFineTuningJob.fine_tuning_job_id" }, { - "$id": "8038", + "$id": "8043", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1925" + "$ref": "1929" }, "isApiVersion": false, "optional": false, @@ -106497,7 +106567,7 @@ 200 ], "bodyType": { - "$ref": "3533" + "$ref": "3537" }, "headers": [], "isErrorResponse": false, @@ -106517,13 +106587,13 @@ }, "parameters": [ { - "$id": "8039", + "$id": "8044", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to resume.", "type": { - "$id": "8040", + "$id": "8045", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106539,12 +106609,12 @@ "decorators": [] }, { - "$id": "8041", + "$id": "8046", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1925" + "$ref": "1929" }, "location": "Header", "isApiVersion": false, @@ -106558,7 +106628,7 @@ ], "response": { "type": { - "$ref": "3533" + "$ref": "3537" } }, "isOverride": false, @@ -106569,13 +106639,13 @@ ], "parameters": [ { - "$id": "8042", + "$id": "8047", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8043", + "$id": "8048", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -106586,7 +106656,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8044", + "$id": "8049", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -106603,37 +106673,37 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning", "apiVersions": [], "parent": { - "$ref": "7513" + "$ref": "7518" } }, { - "$id": "8045", + "$id": "8050", "kind": "client", "name": "Graders", "namespace": "OpenAI", "methods": [ { - "$id": "8046", + "$id": "8051", "kind": "basic", "name": "runGrader", "accessibility": "public", "apiVersions": [], "summary": "Run a grader.", "operation": { - "$id": "8047", + "$id": "8052", "name": "runGrader", "resourceName": "Graders", "summary": "Run a grader.", "accessibility": "public", "parameters": [ { - "$id": "8048", + "$id": "8053", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1927" + "$ref": "1931" }, "isApiVersion": false, "optional": false, @@ -106644,12 +106714,12 @@ "crossLanguageDefinitionId": "OpenAI.Graders.runGrader.contentType" }, { - "$id": "8049", + "$id": "8054", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1929" + "$ref": "1933" }, "isApiVersion": false, "optional": false, @@ -106660,12 +106730,12 @@ "crossLanguageDefinitionId": "OpenAI.Graders.runGrader.accept" }, { - "$id": "8050", + "$id": "8055", "kind": "body", "name": "request", "serializedName": "request", "type": { - "$ref": "3678" + "$ref": "3682" }, "isApiVersion": false, "contentTypes": [ @@ -106685,7 +106755,7 @@ 200 ], "bodyType": { - "$ref": "3685" + "$ref": "3689" }, "headers": [], "isErrorResponse": false, @@ -106708,12 +106778,12 @@ }, "parameters": [ { - "$id": "8051", + "$id": "8056", "kind": "method", "name": "request", "serializedName": "request", "type": { - "$ref": "3678" + "$ref": "3682" }, "location": "Body", "isApiVersion": false, @@ -106725,13 +106795,13 @@ "decorators": [] }, { - "$id": "8052", + "$id": "8057", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1927" + "$ref": "1931" }, "location": "Header", "isApiVersion": false, @@ -106743,12 +106813,12 @@ "decorators": [] }, { - "$id": "8053", + "$id": "8058", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1929" + "$ref": "1933" }, "location": "Header", "isApiVersion": false, @@ -106762,7 +106832,7 @@ ], "response": { "type": { - "$ref": "3685" + "$ref": "3689" } }, "isOverride": false, @@ -106771,27 +106841,27 @@ "crossLanguageDefinitionId": "OpenAI.Graders.runGrader" }, { - "$id": "8054", + "$id": "8059", "kind": "basic", "name": "validateGrader", "accessibility": "public", "apiVersions": [], "summary": "Validate a grader.", "operation": { - "$id": "8055", + "$id": "8060", "name": "validateGrader", "resourceName": "Graders", "summary": "Validate a grader.", "accessibility": "public", "parameters": [ { - "$id": "8056", + "$id": "8061", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1931" + "$ref": "1935" }, "isApiVersion": false, "optional": false, @@ -106802,12 +106872,12 @@ "crossLanguageDefinitionId": "OpenAI.Graders.validateGrader.contentType" }, { - "$id": "8057", + "$id": "8062", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1933" + "$ref": "1937" }, "isApiVersion": false, "optional": false, @@ -106818,12 +106888,12 @@ "crossLanguageDefinitionId": "OpenAI.Graders.validateGrader.accept" }, { - "$id": "8058", + "$id": "8063", "kind": "body", "name": "request", "serializedName": "request", "type": { - "$ref": "3741" + "$ref": "3745" }, "isApiVersion": false, "contentTypes": [ @@ -106843,7 +106913,7 @@ 200 ], "bodyType": { - "$ref": "3744" + "$ref": "3748" }, "headers": [], "isErrorResponse": false, @@ -106866,12 +106936,12 @@ }, "parameters": [ { - "$id": "8059", + "$id": "8064", "kind": "method", "name": "request", "serializedName": "request", "type": { - "$ref": "3741" + "$ref": "3745" }, "location": "Body", "isApiVersion": false, @@ -106883,13 +106953,13 @@ "decorators": [] }, { - "$id": "8060", + "$id": "8065", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1931" + "$ref": "1935" }, "location": "Header", "isApiVersion": false, @@ -106901,12 +106971,12 @@ "decorators": [] }, { - "$id": "8061", + "$id": "8066", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1933" + "$ref": "1937" }, "location": "Header", "isApiVersion": false, @@ -106920,7 +106990,7 @@ ], "response": { "type": { - "$ref": "3744" + "$ref": "3748" } }, "isOverride": false, @@ -106931,13 +107001,13 @@ ], "parameters": [ { - "$id": "8062", + "$id": "8067", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8063", + "$id": "8068", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -106948,7 +107018,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8064", + "$id": "8069", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -106965,37 +107035,37 @@ "crossLanguageDefinitionId": "OpenAI.Graders", "apiVersions": [], "parent": { - "$ref": "7513" + "$ref": "7518" } }, { - "$id": "8065", + "$id": "8070", "kind": "client", "name": "Evals", "namespace": "OpenAI", "methods": [ { - "$id": "8066", + "$id": "8071", "kind": "basic", "name": "listEvals", "accessibility": "public", "apiVersions": [], "summary": "List evaluations for a project.", "operation": { - "$id": "8067", + "$id": "8072", "name": "listEvals", "resourceName": "Evals", "summary": "List evaluations for a project.", "accessibility": "public", "parameters": [ { - "$id": "8068", + "$id": "8073", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last eval from the previous pagination request.", "type": { - "$id": "8069", + "$id": "8074", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107010,13 +107080,13 @@ "readOnly": false }, { - "$id": "8070", + "$id": "8075", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of evals to be returned in a single pagination response.", "type": { - "$id": "8071", + "$id": "8076", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -107031,13 +107101,13 @@ "readOnly": false }, { - "$id": "8072", + "$id": "8077", "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": "1377" + "$ref": "1381" }, "isApiVersion": false, "explode": false, @@ -107048,13 +107118,13 @@ "readOnly": false }, { - "$id": "8073", + "$id": "8078", "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": "1381" + "$ref": "1385" }, "isApiVersion": false, "explode": false, @@ -107065,12 +107135,12 @@ "readOnly": false }, { - "$id": "8074", + "$id": "8079", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1935" + "$ref": "1939" }, "isApiVersion": false, "optional": false, @@ -107087,7 +107157,7 @@ 200 ], "bodyType": { - "$ref": "3747" + "$ref": "3751" }, "headers": [], "isErrorResponse": false, @@ -107107,13 +107177,13 @@ }, "parameters": [ { - "$id": "8075", + "$id": "8080", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last eval from the previous pagination request.", "type": { - "$id": "8076", + "$id": "8081", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107129,13 +107199,13 @@ "decorators": [] }, { - "$id": "8077", + "$id": "8082", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of evals to be returned in a single pagination response.", "type": { - "$id": "8078", + "$id": "8083", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -107151,13 +107221,13 @@ "decorators": [] }, { - "$id": "8079", + "$id": "8084", "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": "1377" + "$ref": "1381" }, "location": "Query", "isApiVersion": false, @@ -107169,13 +107239,13 @@ "decorators": [] }, { - "$id": "8080", + "$id": "8085", "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": "1381" + "$ref": "1385" }, "location": "Query", "isApiVersion": false, @@ -107187,12 +107257,12 @@ "decorators": [] }, { - "$id": "8081", + "$id": "8086", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1935" + "$ref": "1939" }, "location": "Header", "isApiVersion": false, @@ -107206,7 +107276,7 @@ ], "response": { "type": { - "$ref": "3747" + "$ref": "3751" } }, "isOverride": false, @@ -107215,27 +107285,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.listEvals" }, { - "$id": "8082", + "$id": "8087", "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": "8083", + "$id": "8088", "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": "8084", + "$id": "8089", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1937" + "$ref": "1941" }, "isApiVersion": false, "optional": false, @@ -107246,12 +107316,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEval.contentType" }, { - "$id": "8085", + "$id": "8090", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1939" + "$ref": "1943" }, "isApiVersion": false, "optional": false, @@ -107262,12 +107332,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEval.accept" }, { - "$id": "8086", + "$id": "8091", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$ref": "3831" + "$ref": "3835" }, "isApiVersion": false, "contentTypes": [ @@ -107287,7 +107357,7 @@ 201 ], "bodyType": { - "$ref": "3751" + "$ref": "3755" }, "headers": [], "isErrorResponse": false, @@ -107310,12 +107380,12 @@ }, "parameters": [ { - "$id": "8087", + "$id": "8092", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "3831" + "$ref": "3835" }, "location": "Body", "isApiVersion": false, @@ -107327,13 +107397,13 @@ "decorators": [] }, { - "$id": "8088", + "$id": "8093", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1937" + "$ref": "1941" }, "location": "Header", "isApiVersion": false, @@ -107345,12 +107415,12 @@ "decorators": [] }, { - "$id": "8089", + "$id": "8094", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1939" + "$ref": "1943" }, "location": "Header", "isApiVersion": false, @@ -107364,7 +107434,7 @@ ], "response": { "type": { - "$ref": "3751" + "$ref": "3755" } }, "isOverride": false, @@ -107373,26 +107443,26 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEval" }, { - "$id": "8090", + "$id": "8095", "kind": "basic", "name": "getEval", "accessibility": "public", "apiVersions": [], "summary": "Retrieve an evaluation by its ID.", "operation": { - "$id": "8091", + "$id": "8096", "name": "getEval", "resourceName": "Evals", "summary": "Retrieve an evaluation by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8092", + "$id": "8097", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "type": { - "$id": "8093", + "$id": "8098", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107410,12 +107480,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEval.eval_id" }, { - "$id": "8094", + "$id": "8099", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1941" + "$ref": "1945" }, "isApiVersion": false, "optional": false, @@ -107432,7 +107502,7 @@ 200 ], "bodyType": { - "$ref": "3751" + "$ref": "3755" }, "headers": [], "isErrorResponse": false, @@ -107452,12 +107522,12 @@ }, "parameters": [ { - "$id": "8095", + "$id": "8100", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "type": { - "$id": "8096", + "$id": "8101", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107473,12 +107543,12 @@ "decorators": [] }, { - "$id": "8097", + "$id": "8102", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1941" + "$ref": "1945" }, "location": "Header", "isApiVersion": false, @@ -107492,7 +107562,7 @@ ], "response": { "type": { - "$ref": "3751" + "$ref": "3755" } }, "isOverride": false, @@ -107501,27 +107571,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEval" }, { - "$id": "8098", + "$id": "8103", "kind": "basic", "name": "updateEval", "accessibility": "public", "apiVersions": [], "doc": "Update select, mutable properties of a specified evaluation.", "operation": { - "$id": "8099", + "$id": "8104", "name": "updateEval", "resourceName": "Evals", "doc": "Update select, mutable properties of a specified evaluation.", "accessibility": "public", "parameters": [ { - "$id": "8100", + "$id": "8105", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to update.", "type": { - "$id": "8101", + "$id": "8106", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107539,13 +107609,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.updateEval.eval_id" }, { - "$id": "8102", + "$id": "8107", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1943" + "$ref": "1947" }, "isApiVersion": false, "optional": false, @@ -107556,12 +107626,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.updateEval.contentType" }, { - "$id": "8103", + "$id": "8108", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1945" + "$ref": "1949" }, "isApiVersion": false, "optional": false, @@ -107572,12 +107642,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.updateEval.accept" }, { - "$id": "8104", + "$id": "8109", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$ref": "3911" + "$ref": "3915" }, "isApiVersion": false, "contentTypes": [ @@ -107597,7 +107667,7 @@ 200 ], "bodyType": { - "$ref": "3751" + "$ref": "3755" }, "headers": [], "isErrorResponse": false, @@ -107620,13 +107690,13 @@ }, "parameters": [ { - "$id": "8105", + "$id": "8110", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to update.", "type": { - "$id": "8106", + "$id": "8111", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107642,12 +107712,12 @@ "decorators": [] }, { - "$id": "8107", + "$id": "8112", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "3911" + "$ref": "3915" }, "location": "Body", "isApiVersion": false, @@ -107659,13 +107729,13 @@ "decorators": [] }, { - "$id": "8108", + "$id": "8113", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1943" + "$ref": "1947" }, "location": "Header", "isApiVersion": false, @@ -107677,12 +107747,12 @@ "decorators": [] }, { - "$id": "8109", + "$id": "8114", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1945" + "$ref": "1949" }, "location": "Header", "isApiVersion": false, @@ -107696,7 +107766,7 @@ ], "response": { "type": { - "$ref": "3751" + "$ref": "3755" } }, "isOverride": false, @@ -107705,27 +107775,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.updateEval" }, { - "$id": "8110", + "$id": "8115", "kind": "basic", "name": "deleteEval", "accessibility": "public", "apiVersions": [], "doc": "Delete a specified evaluation.", "operation": { - "$id": "8111", + "$id": "8116", "name": "deleteEval", "resourceName": "Evals", "doc": "Delete a specified evaluation.", "accessibility": "public", "parameters": [ { - "$id": "8112", + "$id": "8117", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to delete.", "type": { - "$id": "8113", + "$id": "8118", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107743,12 +107813,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEval.eval_id" }, { - "$id": "8114", + "$id": "8119", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1947" + "$ref": "1951" }, "isApiVersion": false, "optional": false, @@ -107765,7 +107835,7 @@ 200 ], "bodyType": { - "$ref": "3917" + "$ref": "3921" }, "headers": [], "isErrorResponse": false, @@ -107785,13 +107855,13 @@ }, "parameters": [ { - "$id": "8115", + "$id": "8120", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to delete.", "type": { - "$id": "8116", + "$id": "8121", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107807,12 +107877,12 @@ "decorators": [] }, { - "$id": "8117", + "$id": "8122", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1947" + "$ref": "1951" }, "location": "Header", "isApiVersion": false, @@ -107826,7 +107896,7 @@ ], "response": { "type": { - "$ref": "3917" + "$ref": "3921" } }, "isOverride": false, @@ -107835,7 +107905,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEval" }, { - "$id": "8118", + "$id": "8123", "kind": "basic", "name": "getEvalRuns", "accessibility": "public", @@ -107843,7 +107913,7 @@ "doc": "Retrieve a list of runs for a specified evaluation.", "summary": "", "operation": { - "$id": "8119", + "$id": "8124", "name": "getEvalRuns", "resourceName": "Evals", "summary": "", @@ -107851,13 +107921,13 @@ "accessibility": "public", "parameters": [ { - "$id": "8120", + "$id": "8125", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to retrieve runs for.", "type": { - "$id": "8121", + "$id": "8126", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107875,13 +107945,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRuns.eval_id" }, { - "$id": "8122", + "$id": "8127", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last run from the previous pagination request.", "type": { - "$id": "8123", + "$id": "8128", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107896,13 +107966,13 @@ "readOnly": false }, { - "$id": "8124", + "$id": "8129", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of runs to be returned in a single pagination response.", "type": { - "$id": "8125", + "$id": "8130", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -107917,13 +107987,13 @@ "readOnly": false }, { - "$id": "8126", + "$id": "8131", "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": "1385" + "$ref": "1389" }, "isApiVersion": false, "explode": false, @@ -107934,13 +108004,13 @@ "readOnly": false }, { - "$id": "8127", + "$id": "8132", "kind": "query", "name": "status", "serializedName": "status", "doc": "Filter runs by their status. Possible values are `queued`, `in_progress`, `completed`, `canceled`, and `failed`.", "type": { - "$ref": "1389" + "$ref": "1393" }, "isApiVersion": false, "explode": false, @@ -107951,12 +108021,12 @@ "readOnly": false }, { - "$id": "8128", + "$id": "8133", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1949" + "$ref": "1953" }, "isApiVersion": false, "optional": false, @@ -107973,7 +108043,7 @@ 200 ], "bodyType": { - "$ref": "3923" + "$ref": "3927" }, "headers": [], "isErrorResponse": false, @@ -107993,13 +108063,13 @@ }, "parameters": [ { - "$id": "8129", + "$id": "8134", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to retrieve runs for.", "type": { - "$id": "8130", + "$id": "8135", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108015,13 +108085,13 @@ "decorators": [] }, { - "$id": "8131", + "$id": "8136", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last run from the previous pagination request.", "type": { - "$id": "8132", + "$id": "8137", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108037,13 +108107,13 @@ "decorators": [] }, { - "$id": "8133", + "$id": "8138", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of runs to be returned in a single pagination response.", "type": { - "$id": "8134", + "$id": "8139", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -108059,13 +108129,13 @@ "decorators": [] }, { - "$id": "8135", + "$id": "8140", "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": "1385" + "$ref": "1389" }, "location": "Query", "isApiVersion": false, @@ -108077,13 +108147,13 @@ "decorators": [] }, { - "$id": "8136", + "$id": "8141", "kind": "method", "name": "status", "serializedName": "status", "doc": "Filter runs by their status. Possible values are `queued`, `in_progress`, `completed`, `canceled`, and `failed`.", "type": { - "$ref": "1389" + "$ref": "1393" }, "location": "Query", "isApiVersion": false, @@ -108095,12 +108165,12 @@ "decorators": [] }, { - "$id": "8137", + "$id": "8142", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1949" + "$ref": "1953" }, "location": "Header", "isApiVersion": false, @@ -108114,7 +108184,7 @@ ], "response": { "type": { - "$ref": "3923" + "$ref": "3927" } }, "isOverride": false, @@ -108123,27 +108193,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRuns" }, { - "$id": "8138", + "$id": "8143", "kind": "basic", "name": "createEvalRun", "accessibility": "public", "apiVersions": [], "doc": "Create a new evaluation run, beginning the grading process.", "operation": { - "$id": "8139", + "$id": "8144", "name": "createEvalRun", "resourceName": "Evals", "doc": "Create a new evaluation run, beginning the grading process.", "accessibility": "public", "parameters": [ { - "$id": "8140", + "$id": "8145", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to run.", "type": { - "$id": "8141", + "$id": "8146", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108161,13 +108231,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEvalRun.eval_id" }, { - "$id": "8142", + "$id": "8147", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1951" + "$ref": "1955" }, "isApiVersion": false, "optional": false, @@ -108178,12 +108248,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEvalRun.contentType" }, { - "$id": "8143", + "$id": "8148", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1953" + "$ref": "1957" }, "isApiVersion": false, "optional": false, @@ -108194,12 +108264,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEvalRun.accept" }, { - "$id": "8144", + "$id": "8149", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$ref": "3994" + "$ref": "3998" }, "isApiVersion": false, "contentTypes": [ @@ -108219,7 +108289,7 @@ 201 ], "bodyType": { - "$ref": "3927" + "$ref": "3931" }, "headers": [], "isErrorResponse": false, @@ -108242,13 +108312,13 @@ }, "parameters": [ { - "$id": "8145", + "$id": "8150", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to run.", "type": { - "$id": "8146", + "$id": "8151", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108264,12 +108334,12 @@ "decorators": [] }, { - "$id": "8147", + "$id": "8152", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "3994" + "$ref": "3998" }, "location": "Body", "isApiVersion": false, @@ -108281,13 +108351,13 @@ "decorators": [] }, { - "$id": "8148", + "$id": "8153", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1951" + "$ref": "1955" }, "location": "Header", "isApiVersion": false, @@ -108299,12 +108369,12 @@ "decorators": [] }, { - "$id": "8149", + "$id": "8154", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1953" + "$ref": "1957" }, "location": "Header", "isApiVersion": false, @@ -108318,7 +108388,7 @@ ], "response": { "type": { - "$ref": "3927" + "$ref": "3931" } }, "isOverride": false, @@ -108327,27 +108397,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEvalRun" }, { - "$id": "8150", + "$id": "8155", "kind": "basic", "name": "getEvalRun", "accessibility": "public", "apiVersions": [], "doc": "Retrieve a specific evaluation run by its ID.", "operation": { - "$id": "8151", + "$id": "8156", "name": "getEvalRun", "resourceName": "Evals", "doc": "Retrieve a specific evaluation run by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8152", + "$id": "8157", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8153", + "$id": "8158", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108365,13 +108435,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRun.eval_id" }, { - "$id": "8154", + "$id": "8159", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to retrieve.", "type": { - "$id": "8155", + "$id": "8160", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108389,12 +108459,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRun.run_id" }, { - "$id": "8156", + "$id": "8161", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1955" + "$ref": "1959" }, "isApiVersion": false, "optional": false, @@ -108411,7 +108481,7 @@ 200 ], "bodyType": { - "$ref": "3927" + "$ref": "3931" }, "headers": [], "isErrorResponse": false, @@ -108431,13 +108501,13 @@ }, "parameters": [ { - "$id": "8157", + "$id": "8162", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8158", + "$id": "8163", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108453,13 +108523,13 @@ "decorators": [] }, { - "$id": "8159", + "$id": "8164", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to retrieve.", "type": { - "$id": "8160", + "$id": "8165", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108475,12 +108545,12 @@ "decorators": [] }, { - "$id": "8161", + "$id": "8166", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1955" + "$ref": "1959" }, "location": "Header", "isApiVersion": false, @@ -108494,7 +108564,7 @@ ], "response": { "type": { - "$ref": "3927" + "$ref": "3931" } }, "isOverride": false, @@ -108503,27 +108573,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRun" }, { - "$id": "8162", + "$id": "8167", "kind": "basic", "name": "cancelEvalRun", "accessibility": "public", "apiVersions": [], "doc": "Cancel a specific evaluation run by its ID.", "operation": { - "$id": "8163", + "$id": "8168", "name": "cancelEvalRun", "resourceName": "Evals", "doc": "Cancel a specific evaluation run by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8164", + "$id": "8169", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8165", + "$id": "8170", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108541,13 +108611,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.cancelEvalRun.eval_id" }, { - "$id": "8166", + "$id": "8171", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to cancel.", "type": { - "$id": "8167", + "$id": "8172", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108565,12 +108635,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.cancelEvalRun.run_id" }, { - "$id": "8168", + "$id": "8173", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1957" + "$ref": "1961" }, "isApiVersion": false, "optional": false, @@ -108587,7 +108657,7 @@ 200 ], "bodyType": { - "$ref": "3927" + "$ref": "3931" }, "headers": [], "isErrorResponse": false, @@ -108607,13 +108677,13 @@ }, "parameters": [ { - "$id": "8169", + "$id": "8174", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8170", + "$id": "8175", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108629,13 +108699,13 @@ "decorators": [] }, { - "$id": "8171", + "$id": "8176", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to cancel.", "type": { - "$id": "8172", + "$id": "8177", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108651,12 +108721,12 @@ "decorators": [] }, { - "$id": "8173", + "$id": "8178", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1957" + "$ref": "1961" }, "location": "Header", "isApiVersion": false, @@ -108670,7 +108740,7 @@ ], "response": { "type": { - "$ref": "3927" + "$ref": "3931" } }, "isOverride": false, @@ -108679,27 +108749,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.cancelEvalRun" }, { - "$id": "8174", + "$id": "8179", "kind": "basic", "name": "deleteEvalRun", "accessibility": "public", "apiVersions": [], "doc": "Delete a specific evaluation run by its ID.", "operation": { - "$id": "8175", + "$id": "8180", "name": "deleteEvalRun", "resourceName": "Evals", "doc": "Delete a specific evaluation run by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8176", + "$id": "8181", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8177", + "$id": "8182", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108717,13 +108787,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEvalRun.eval_id" }, { - "$id": "8178", + "$id": "8183", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to delete.", "type": { - "$id": "8179", + "$id": "8184", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108741,12 +108811,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEvalRun.run_id" }, { - "$id": "8180", + "$id": "8185", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1959" + "$ref": "1963" }, "isApiVersion": false, "optional": false, @@ -108763,7 +108833,7 @@ 200 ], "bodyType": { - "$ref": "4286" + "$ref": "4291" }, "headers": [], "isErrorResponse": false, @@ -108783,13 +108853,13 @@ }, "parameters": [ { - "$id": "8181", + "$id": "8186", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8182", + "$id": "8187", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108805,13 +108875,13 @@ "decorators": [] }, { - "$id": "8183", + "$id": "8188", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to delete.", "type": { - "$id": "8184", + "$id": "8189", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108827,12 +108897,12 @@ "decorators": [] }, { - "$id": "8185", + "$id": "8190", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1959" + "$ref": "1963" }, "location": "Header", "isApiVersion": false, @@ -108846,7 +108916,7 @@ ], "response": { "type": { - "$ref": "4286" + "$ref": "4291" } }, "isOverride": false, @@ -108855,27 +108925,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEvalRun" }, { - "$id": "8186", + "$id": "8191", "kind": "basic", "name": "getEvalRunOutputItems", "accessibility": "public", "apiVersions": [], "doc": "Get a list of output items for a specified evaluation run.", "operation": { - "$id": "8187", + "$id": "8192", "name": "getEvalRunOutputItems", "resourceName": "Evals", "doc": "Get a list of output items for a specified evaluation run.", "accessibility": "public", "parameters": [ { - "$id": "8188", + "$id": "8193", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8189", + "$id": "8194", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108893,13 +108963,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItems.eval_id" }, { - "$id": "8190", + "$id": "8195", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to retrieve output items for.", "type": { - "$id": "8191", + "$id": "8196", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108917,13 +108987,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItems.run_id" }, { - "$id": "8192", + "$id": "8197", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last output item from the previous pagination request.", "type": { - "$id": "8193", + "$id": "8198", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108938,13 +109008,13 @@ "readOnly": false }, { - "$id": "8194", + "$id": "8199", "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": "8195", + "$id": "8200", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -108959,13 +109029,13 @@ "readOnly": false }, { - "$id": "8196", + "$id": "8201", "kind": "query", "name": "status", "serializedName": "status", "doc": "Filter output items by their status. Possible values are `fail` and `pass`.", "type": { - "$ref": "1396" + "$ref": "1400" }, "isApiVersion": false, "explode": false, @@ -108976,13 +109046,13 @@ "readOnly": false }, { - "$id": "8197", + "$id": "8202", "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": "1400" + "$ref": "1404" }, "isApiVersion": false, "explode": false, @@ -108993,12 +109063,12 @@ "readOnly": false }, { - "$id": "8198", + "$id": "8203", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1961" + "$ref": "1965" }, "isApiVersion": false, "optional": false, @@ -109015,7 +109085,7 @@ 200 ], "bodyType": { - "$ref": "4292" + "$ref": "4297" }, "headers": [], "isErrorResponse": false, @@ -109035,13 +109105,13 @@ }, "parameters": [ { - "$id": "8199", + "$id": "8204", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8200", + "$id": "8205", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109057,13 +109127,13 @@ "decorators": [] }, { - "$id": "8201", + "$id": "8206", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to retrieve output items for.", "type": { - "$id": "8202", + "$id": "8207", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109079,13 +109149,13 @@ "decorators": [] }, { - "$id": "8203", + "$id": "8208", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last output item from the previous pagination request.", "type": { - "$id": "8204", + "$id": "8209", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109101,13 +109171,13 @@ "decorators": [] }, { - "$id": "8205", + "$id": "8210", "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": "8206", + "$id": "8211", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -109123,13 +109193,13 @@ "decorators": [] }, { - "$id": "8207", + "$id": "8212", "kind": "method", "name": "status", "serializedName": "status", "doc": "Filter output items by their status. Possible values are `fail` and `pass`.", "type": { - "$ref": "1396" + "$ref": "1400" }, "location": "Query", "isApiVersion": false, @@ -109141,13 +109211,13 @@ "decorators": [] }, { - "$id": "8208", + "$id": "8213", "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": "1400" + "$ref": "1404" }, "location": "Query", "isApiVersion": false, @@ -109159,12 +109229,12 @@ "decorators": [] }, { - "$id": "8209", + "$id": "8214", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1961" + "$ref": "1965" }, "location": "Header", "isApiVersion": false, @@ -109178,7 +109248,7 @@ ], "response": { "type": { - "$ref": "4292" + "$ref": "4297" } }, "isOverride": false, @@ -109187,27 +109257,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItems" }, { - "$id": "8210", + "$id": "8215", "kind": "basic", "name": "getEvalRunOutputItem", "accessibility": "public", "apiVersions": [], "doc": "Retrieve a specific output item from an evaluation run by its ID.", "operation": { - "$id": "8211", + "$id": "8216", "name": "getEvalRunOutputItem", "resourceName": "Evals", "doc": "Retrieve a specific output item from an evaluation run by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8212", + "$id": "8217", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8213", + "$id": "8218", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109225,13 +109295,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItem.eval_id" }, { - "$id": "8214", + "$id": "8219", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run the output item belongs to.", "type": { - "$id": "8215", + "$id": "8220", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109249,13 +109319,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItem.run_id" }, { - "$id": "8216", + "$id": "8221", "kind": "path", "name": "output_item_id", "serializedName": "output_item_id", "doc": "The ID of the output item to retrieve.", "type": { - "$id": "8217", + "$id": "8222", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109273,12 +109343,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItem.output_item_id" }, { - "$id": "8218", + "$id": "8223", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1963" + "$ref": "1967" }, "isApiVersion": false, "optional": false, @@ -109295,7 +109365,7 @@ 200 ], "bodyType": { - "$ref": "4296" + "$ref": "4301" }, "headers": [], "isErrorResponse": false, @@ -109315,13 +109385,13 @@ }, "parameters": [ { - "$id": "8219", + "$id": "8224", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8220", + "$id": "8225", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109337,13 +109407,13 @@ "decorators": [] }, { - "$id": "8221", + "$id": "8226", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run the output item belongs to.", "type": { - "$id": "8222", + "$id": "8227", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109359,13 +109429,13 @@ "decorators": [] }, { - "$id": "8223", + "$id": "8228", "kind": "method", "name": "output_item_id", "serializedName": "output_item_id", "doc": "The ID of the output item to retrieve.", "type": { - "$id": "8224", + "$id": "8229", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109381,12 +109451,12 @@ "decorators": [] }, { - "$id": "8225", + "$id": "8230", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1963" + "$ref": "1967" }, "location": "Header", "isApiVersion": false, @@ -109400,7 +109470,7 @@ ], "response": { "type": { - "$ref": "4296" + "$ref": "4301" } }, "isOverride": false, @@ -109411,13 +109481,13 @@ ], "parameters": [ { - "$id": "8226", + "$id": "8231", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8227", + "$id": "8232", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -109428,7 +109498,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8228", + "$id": "8233", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -109445,36 +109515,36 @@ "crossLanguageDefinitionId": "OpenAI.Evals", "apiVersions": [], "parent": { - "$ref": "7513" + "$ref": "7518" } }, { - "$id": "8229", + "$id": "8234", "kind": "client", "name": "Responses", "namespace": "OpenAI", "methods": [ { - "$id": "8230", + "$id": "8235", "kind": "basic", "name": "createResponse", "accessibility": "public", "apiVersions": [], "doc": "Creates a model response.", "operation": { - "$id": "8231", + "$id": "8236", "name": "createResponse", "resourceName": "Responses", "doc": "Creates a model response.", "accessibility": "public", "parameters": [ { - "$id": "8232", + "$id": "8237", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1373" + "$ref": "1377" }, "isApiVersion": false, "optional": false, @@ -109485,13 +109555,13 @@ "crossLanguageDefinitionId": "OpenAI.Responses.createResponse.accept" }, { - "$id": "8233", + "$id": "8238", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1965" + "$ref": "1969" }, "isApiVersion": false, "optional": false, @@ -109502,12 +109572,12 @@ "crossLanguageDefinitionId": "OpenAI.Responses.createResponse.contentType" }, { - "$id": "8234", + "$id": "8239", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "4359" + "$ref": "4364" }, "isApiVersion": false, "contentTypes": [ @@ -109527,15 +109597,15 @@ 200 ], "bodyType": { - "$id": "8235", + "$id": "8240", "kind": "union", "name": "", "variantTypes": [ { - "$ref": "4762" + "$ref": "4767" }, { - "$ref": "4947" + "$ref": "4952" } ], "namespace": "", @@ -109546,7 +109616,7 @@ "name": "contentType", "nameInResponse": "Content-Type", "type": { - "$ref": "1967" + "$ref": "1971" } } ], @@ -109571,12 +109641,12 @@ }, "parameters": [ { - "$id": "8236", + "$id": "8241", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1373" + "$ref": "1377" }, "location": "Header", "isApiVersion": false, @@ -109588,12 +109658,12 @@ "decorators": [] }, { - "$id": "8237", + "$id": "8242", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "4359" + "$ref": "4364" }, "location": "Body", "isApiVersion": false, @@ -109605,13 +109675,13 @@ "decorators": [] }, { - "$id": "8238", + "$id": "8243", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1965" + "$ref": "1969" }, "location": "Header", "isApiVersion": false, @@ -109625,7 +109695,7 @@ ], "response": { "type": { - "$ref": "8235" + "$ref": "8240" } }, "isOverride": false, @@ -109634,27 +109704,27 @@ "crossLanguageDefinitionId": "OpenAI.Responses.createResponse" }, { - "$id": "8239", + "$id": "8244", "kind": "basic", "name": "getResponse", "accessibility": "public", "apiVersions": [], "doc": "Retrieves a model response with the given ID.", "operation": { - "$id": "8240", + "$id": "8245", "name": "getResponse", "resourceName": "Responses", "doc": "Retrieves a model response with the given ID.", "accessibility": "public", "parameters": [ { - "$id": "8241", + "$id": "8246", "kind": "path", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to retrieve.", "type": { - "$id": "8242", + "$id": "8247", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109672,12 +109742,12 @@ "crossLanguageDefinitionId": "OpenAI.Responses.getResponse.response_id" }, { - "$id": "8243", + "$id": "8248", "kind": "query", "name": "includables", "serializedName": "include[]", "type": { - "$ref": "4752" + "$ref": "4757" }, "isApiVersion": false, "explode": true, @@ -109688,13 +109758,13 @@ "readOnly": false }, { - "$id": "8244", + "$id": "8249", "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": "8245", + "$id": "8250", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -109709,13 +109779,13 @@ "readOnly": false }, { - "$id": "8246", + "$id": "8251", "kind": "query", "name": "starting_after", "serializedName": "starting_after", "doc": "The sequence number of the event after which to start streaming.", "type": { - "$id": "8247", + "$id": "8252", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -109730,12 +109800,12 @@ "readOnly": false }, { - "$id": "8248", + "$id": "8253", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$id": "8249", + "$id": "8254", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109756,15 +109826,15 @@ 200 ], "bodyType": { - "$id": "8250", + "$id": "8255", "kind": "union", "name": "", "variantTypes": [ { - "$ref": "4762" + "$ref": "4767" }, { - "$ref": "4947" + "$ref": "4952" } ], "namespace": "", @@ -109775,7 +109845,7 @@ "name": "contentType", "nameInResponse": "Content-Type", "type": { - "$ref": "1969" + "$ref": "1973" } } ], @@ -109797,13 +109867,13 @@ }, "parameters": [ { - "$id": "8251", + "$id": "8256", "kind": "method", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to retrieve.", "type": { - "$id": "8252", + "$id": "8257", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109819,12 +109889,12 @@ "decorators": [] }, { - "$id": "8253", + "$id": "8258", "kind": "method", "name": "includables", "serializedName": "include[]", "type": { - "$ref": "4752" + "$ref": "4757" }, "location": "Query", "isApiVersion": false, @@ -109836,13 +109906,13 @@ "decorators": [] }, { - "$id": "8254", + "$id": "8259", "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": "8255", + "$id": "8260", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -109858,13 +109928,13 @@ "decorators": [] }, { - "$id": "8256", + "$id": "8261", "kind": "method", "name": "starting_after", "serializedName": "starting_after", "doc": "The sequence number of the event after which to start streaming.", "type": { - "$id": "8257", + "$id": "8262", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -109880,12 +109950,12 @@ "decorators": [] }, { - "$id": "8258", + "$id": "8263", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "8249" + "$ref": "8254" }, "location": "Header", "isApiVersion": false, @@ -109899,7 +109969,7 @@ ], "response": { "type": { - "$ref": "8250" + "$ref": "8255" } }, "isOverride": false, @@ -109908,25 +109978,25 @@ "crossLanguageDefinitionId": "OpenAI.Responses.getResponse" }, { - "$id": "8259", + "$id": "8264", "kind": "basic", "name": "deleteResponse", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8260", + "$id": "8265", "name": "deleteResponse", "resourceName": "Responses", "accessibility": "public", "parameters": [ { - "$id": "8261", + "$id": "8266", "kind": "path", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to delete.", "type": { - "$id": "8262", + "$id": "8267", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109944,12 +110014,12 @@ "crossLanguageDefinitionId": "OpenAI.Responses.deleteResponse.response_id" }, { - "$id": "8263", + "$id": "8268", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1971" + "$ref": "1975" }, "isApiVersion": false, "optional": false, @@ -109966,7 +110036,7 @@ 200 ], "bodyType": { - "$ref": "5305" + "$ref": "5310" }, "headers": [], "isErrorResponse": false, @@ -109986,13 +110056,13 @@ }, "parameters": [ { - "$id": "8264", + "$id": "8269", "kind": "method", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to delete.", "type": { - "$id": "8265", + "$id": "8270", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110008,12 +110078,12 @@ "decorators": [] }, { - "$id": "8266", + "$id": "8271", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1971" + "$ref": "1975" }, "location": "Header", "isApiVersion": false, @@ -110027,7 +110097,7 @@ ], "response": { "type": { - "$ref": "5305" + "$ref": "5310" } }, "isOverride": false, @@ -110036,25 +110106,25 @@ "crossLanguageDefinitionId": "OpenAI.Responses.deleteResponse" }, { - "$id": "8267", + "$id": "8272", "kind": "basic", "name": "cancelResponse", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8268", + "$id": "8273", "name": "cancelResponse", "resourceName": "Responses", "accessibility": "public", "parameters": [ { - "$id": "8269", + "$id": "8274", "kind": "path", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to cancel.", "type": { - "$id": "8270", + "$id": "8275", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110072,12 +110142,12 @@ "crossLanguageDefinitionId": "OpenAI.Responses.cancelResponse.response_id" }, { - "$id": "8271", + "$id": "8276", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1973" + "$ref": "1977" }, "isApiVersion": false, "optional": false, @@ -110094,7 +110164,7 @@ 200 ], "bodyType": { - "$ref": "4762" + "$ref": "4767" }, "headers": [], "isErrorResponse": false, @@ -110114,13 +110184,13 @@ }, "parameters": [ { - "$id": "8272", + "$id": "8277", "kind": "method", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to cancel.", "type": { - "$id": "8273", + "$id": "8278", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110136,12 +110206,12 @@ "decorators": [] }, { - "$id": "8274", + "$id": "8279", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1973" + "$ref": "1977" }, "location": "Header", "isApiVersion": false, @@ -110155,7 +110225,7 @@ ], "response": { "type": { - "$ref": "4762" + "$ref": "4767" } }, "isOverride": false, @@ -110164,27 +110234,27 @@ "crossLanguageDefinitionId": "OpenAI.Responses.cancelResponse" }, { - "$id": "8275", + "$id": "8280", "kind": "paging", "name": "listInputItems", "accessibility": "public", "apiVersions": [], "doc": "Returns a list of input items for a given response.", "operation": { - "$id": "8276", + "$id": "8281", "name": "listInputItems", "resourceName": "Responses", "doc": "Returns a list of input items for a given response.", "accessibility": "public", "parameters": [ { - "$id": "8277", + "$id": "8282", "kind": "path", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to retrieve.", "type": { - "$id": "8278", + "$id": "8283", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110202,13 +110272,13 @@ "crossLanguageDefinitionId": "OpenAI.Responses.listInputItems.response_id" }, { - "$id": "8279", + "$id": "8284", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the\ndefault is 20.", "type": { - "$id": "8280", + "$id": "8285", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -110223,13 +110293,13 @@ "readOnly": false }, { - "$id": "8281", + "$id": "8286", "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": "1359" + "$ref": "1363" }, "isApiVersion": false, "explode": false, @@ -110240,13 +110310,13 @@ "readOnly": false }, { - "$id": "8282", + "$id": "8287", "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": "8283", + "$id": "8288", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110261,13 +110331,13 @@ "readOnly": false }, { - "$id": "8284", + "$id": "8289", "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": "8285", + "$id": "8290", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110282,12 +110352,12 @@ "readOnly": false }, { - "$id": "8286", + "$id": "8291", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1975" + "$ref": "1979" }, "isApiVersion": false, "optional": false, @@ -110304,7 +110374,7 @@ 200 ], "bodyType": { - "$ref": "5310" + "$ref": "5315" }, "headers": [], "isErrorResponse": false, @@ -110324,13 +110394,13 @@ }, "parameters": [ { - "$id": "8287", + "$id": "8292", "kind": "method", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to retrieve.", "type": { - "$id": "8288", + "$id": "8293", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110346,13 +110416,13 @@ "decorators": [] }, { - "$id": "8289", + "$id": "8294", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the\ndefault is 20.", "type": { - "$id": "8290", + "$id": "8295", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -110368,13 +110438,13 @@ "decorators": [] }, { - "$id": "8291", + "$id": "8296", "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": "1359" + "$ref": "1363" }, "location": "Query", "isApiVersion": false, @@ -110386,13 +110456,13 @@ "decorators": [] }, { - "$id": "8292", + "$id": "8297", "kind": "method", "name": "after", "serializedName": "after", "doc": "A cursor for use in pagination. `after` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include after=obj_foo in order to fetch the next page of the list.", "type": { - "$id": "8293", + "$id": "8298", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110408,13 +110478,13 @@ "decorators": [] }, { - "$id": "8294", + "$id": "8299", "kind": "method", "name": "before", "serializedName": "before", "doc": "A cursor for use in pagination. `before` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include before=obj_foo in order to fetch the previous page of the list.", "type": { - "$id": "8295", + "$id": "8300", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110430,12 +110500,12 @@ "decorators": [] }, { - "$id": "8296", + "$id": "8301", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1975" + "$ref": "1979" }, "location": "Header", "isApiVersion": false, @@ -110449,7 +110519,7 @@ ], "response": { "type": { - "$ref": "4802" + "$ref": "4807" }, "resultSegments": [ "data" @@ -110465,7 +110535,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8282" + "$ref": "8287" }, "responseSegments": [ "last_id" @@ -110477,13 +110547,13 @@ ], "parameters": [ { - "$id": "8297", + "$id": "8302", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8298", + "$id": "8303", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -110494,7 +110564,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8299", + "$id": "8304", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -110511,36 +110581,36 @@ "crossLanguageDefinitionId": "OpenAI.Responses", "apiVersions": [], "parent": { - "$ref": "7513" + "$ref": "7518" } }, { - "$id": "8300", + "$id": "8305", "kind": "client", "name": "Images", "namespace": "OpenAI", "methods": [ { - "$id": "8301", + "$id": "8306", "kind": "basic", "name": "GenerateImages", "accessibility": "public", "apiVersions": [], "summary": "Creates an image given a prompt", "operation": { - "$id": "8302", + "$id": "8307", "name": "GenerateImages", "resourceName": "Images", "summary": "Creates an image given a prompt", "accessibility": "public", "parameters": [ { - "$id": "8303", + "$id": "8308", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1977" + "$ref": "1981" }, "isApiVersion": false, "optional": false, @@ -110551,13 +110621,13 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImage.accept" }, { - "$id": "8304", + "$id": "8309", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1979" + "$ref": "1983" }, "isApiVersion": false, "optional": false, @@ -110568,12 +110638,12 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImage.contentType" }, { - "$id": "8305", + "$id": "8310", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5319" + "$ref": "5324" }, "isApiVersion": false, "contentTypes": [ @@ -110593,7 +110663,7 @@ 200 ], "bodyType": { - "$ref": "5346" + "$ref": "5351" }, "headers": [], "isErrorResponse": false, @@ -110616,12 +110686,12 @@ }, "parameters": [ { - "$id": "8306", + "$id": "8311", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1981" + "$ref": "1985" }, "location": "Header", "isApiVersion": false, @@ -110633,12 +110703,12 @@ "decorators": [] }, { - "$id": "8307", + "$id": "8312", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5319" + "$ref": "5324" }, "location": "Body", "isApiVersion": false, @@ -110650,13 +110720,13 @@ "decorators": [] }, { - "$id": "8308", + "$id": "8313", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1979" + "$ref": "1983" }, "location": "Header", "isApiVersion": false, @@ -110670,7 +110740,7 @@ ], "response": { "type": { - "$ref": "5346" + "$ref": "5351" } }, "isOverride": false, @@ -110679,26 +110749,26 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImage" }, { - "$id": "8309", + "$id": "8314", "kind": "basic", "name": "GenerateImageEdits", "accessibility": "public", "apiVersions": [], "summary": "Creates an edited or extended image given an original image and a prompt.", "operation": { - "$id": "8310", + "$id": "8315", "name": "GenerateImageEdits", "resourceName": "Images", "summary": "Creates an edited or extended image given an original image and a prompt.", "accessibility": "public", "parameters": [ { - "$id": "8311", + "$id": "8316", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1983" + "$ref": "1987" }, "isApiVersion": false, "optional": false, @@ -110709,12 +110779,12 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageEdit.accept" }, { - "$id": "8312", + "$id": "8317", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "1985" + "$ref": "1989" }, "isApiVersion": false, "optional": false, @@ -110725,12 +110795,12 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageEdit.contentType" }, { - "$id": "8313", + "$id": "8318", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5373" + "$ref": "5378" }, "isApiVersion": false, "contentTypes": [ @@ -110750,7 +110820,7 @@ 200 ], "bodyType": { - "$ref": "5346" + "$ref": "5351" }, "headers": [], "isErrorResponse": false, @@ -110773,12 +110843,12 @@ }, "parameters": [ { - "$id": "8314", + "$id": "8319", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1987" + "$ref": "1991" }, "location": "Header", "isApiVersion": false, @@ -110790,12 +110860,12 @@ "decorators": [] }, { - "$id": "8315", + "$id": "8320", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "1989" + "$ref": "1993" }, "location": "Header", "isApiVersion": false, @@ -110807,12 +110877,12 @@ "decorators": [] }, { - "$id": "8316", + "$id": "8321", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5373" + "$ref": "5378" }, "location": "Body", "isApiVersion": false, @@ -110826,7 +110896,7 @@ ], "response": { "type": { - "$ref": "5346" + "$ref": "5351" } }, "isOverride": false, @@ -110835,26 +110905,26 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageEdit" }, { - "$id": "8317", + "$id": "8322", "kind": "basic", "name": "GenerateImageVariations", "accessibility": "public", "apiVersions": [], "summary": "Creates an edited or extended image given an original image and a prompt.", "operation": { - "$id": "8318", + "$id": "8323", "name": "GenerateImageVariations", "resourceName": "Images", "summary": "Creates an edited or extended image given an original image and a prompt.", "accessibility": "public", "parameters": [ { - "$id": "8319", + "$id": "8324", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1991" + "$ref": "1995" }, "isApiVersion": false, "optional": false, @@ -110865,12 +110935,12 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageVariation.accept" }, { - "$id": "8320", + "$id": "8325", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "1993" + "$ref": "1997" }, "isApiVersion": false, "optional": false, @@ -110881,12 +110951,12 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageVariation.contentType" }, { - "$id": "8321", + "$id": "8326", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5399" + "$ref": "5404" }, "isApiVersion": false, "contentTypes": [ @@ -110906,7 +110976,7 @@ 200 ], "bodyType": { - "$ref": "5346" + "$ref": "5351" }, "headers": [], "isErrorResponse": false, @@ -110929,12 +110999,12 @@ }, "parameters": [ { - "$id": "8322", + "$id": "8327", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1995" + "$ref": "1999" }, "location": "Header", "isApiVersion": false, @@ -110946,12 +111016,12 @@ "decorators": [] }, { - "$id": "8323", + "$id": "8328", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "1997" + "$ref": "2001" }, "location": "Header", "isApiVersion": false, @@ -110963,12 +111033,12 @@ "decorators": [] }, { - "$id": "8324", + "$id": "8329", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5399" + "$ref": "5404" }, "location": "Body", "isApiVersion": false, @@ -110982,7 +111052,7 @@ ], "response": { "type": { - "$ref": "5346" + "$ref": "5351" } }, "isOverride": false, @@ -110993,13 +111063,13 @@ ], "parameters": [ { - "$id": "8325", + "$id": "8330", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8326", + "$id": "8331", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -111010,7 +111080,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8327", + "$id": "8332", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -111027,36 +111097,36 @@ "crossLanguageDefinitionId": "OpenAI.Images", "apiVersions": [], "parent": { - "$ref": "7513" + "$ref": "7518" } }, { - "$id": "8328", + "$id": "8333", "kind": "client", "name": "Messages", "namespace": "OpenAI", "methods": [ { - "$id": "8329", + "$id": "8334", "kind": "basic", "name": "createMessage", "accessibility": "public", "apiVersions": [], "summary": "Create a message.", "operation": { - "$id": "8330", + "$id": "8335", "name": "createMessage", "resourceName": "Messages", "summary": "Create a message.", "accessibility": "public", "parameters": [ { - "$id": "8331", + "$id": "8336", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1999" + "$ref": "2003" }, "isApiVersion": false, "optional": false, @@ -111067,12 +111137,12 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage.accept" }, { - "$id": "8332", + "$id": "8337", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2001" + "$ref": "2005" }, "isApiVersion": false, "optional": false, @@ -111083,13 +111153,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage.openAIBeta" }, { - "$id": "8333", + "$id": "8338", "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": "8334", + "$id": "8339", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111107,13 +111177,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage.thread_id" }, { - "$id": "8335", + "$id": "8340", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2003" + "$ref": "2007" }, "isApiVersion": false, "optional": false, @@ -111124,12 +111194,12 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage.contentType" }, { - "$id": "8336", + "$id": "8341", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5414" + "$ref": "5419" }, "isApiVersion": false, "contentTypes": [ @@ -111149,7 +111219,7 @@ 200 ], "bodyType": { - "$ref": "5486" + "$ref": "5491" }, "headers": [], "isErrorResponse": false, @@ -111172,12 +111242,12 @@ }, "parameters": [ { - "$id": "8337", + "$id": "8342", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2005" + "$ref": "2009" }, "location": "Header", "isApiVersion": false, @@ -111189,12 +111259,12 @@ "decorators": [] }, { - "$id": "8338", + "$id": "8343", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2007" + "$ref": "2011" }, "location": "Header", "isApiVersion": false, @@ -111206,13 +111276,13 @@ "decorators": [] }, { - "$id": "8339", + "$id": "8344", "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": "8340", + "$id": "8345", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111228,12 +111298,12 @@ "decorators": [] }, { - "$id": "8341", + "$id": "8346", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5414" + "$ref": "5419" }, "location": "Body", "isApiVersion": false, @@ -111245,13 +111315,13 @@ "decorators": [] }, { - "$id": "8342", + "$id": "8347", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2003" + "$ref": "2007" }, "location": "Header", "isApiVersion": false, @@ -111265,7 +111335,7 @@ ], "response": { "type": { - "$ref": "5486" + "$ref": "5491" } }, "isOverride": false, @@ -111274,26 +111344,26 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage" }, { - "$id": "8343", + "$id": "8348", "kind": "paging", "name": "listMessages", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of messages for a given thread.", "operation": { - "$id": "8344", + "$id": "8349", "name": "listMessages", "resourceName": "Messages", "summary": "Returns a list of messages for a given thread.", "accessibility": "public", "parameters": [ { - "$id": "8345", + "$id": "8350", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2009" + "$ref": "2013" }, "isApiVersion": false, "optional": false, @@ -111304,12 +111374,12 @@ "crossLanguageDefinitionId": "OpenAI.Messages.listMessages.accept" }, { - "$id": "8346", + "$id": "8351", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2011" + "$ref": "2015" }, "isApiVersion": false, "optional": false, @@ -111320,13 +111390,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.listMessages.openAIBeta" }, { - "$id": "8347", + "$id": "8352", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) the messages belong to.", "type": { - "$id": "8348", + "$id": "8353", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111344,13 +111414,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.listMessages.thread_id" }, { - "$id": "8349", + "$id": "8354", "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": "8350", + "$id": "8355", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -111365,13 +111435,13 @@ "readOnly": false }, { - "$id": "8351", + "$id": "8356", "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": "1359" + "$ref": "1363" }, "isApiVersion": false, "explode": false, @@ -111382,13 +111452,13 @@ "readOnly": false }, { - "$id": "8352", + "$id": "8357", "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": "8353", + "$id": "8358", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111403,13 +111473,13 @@ "readOnly": false }, { - "$id": "8354", + "$id": "8359", "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": "8355", + "$id": "8360", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111430,7 +111500,7 @@ 200 ], "bodyType": { - "$ref": "5526" + "$ref": "5531" }, "headers": [], "isErrorResponse": false, @@ -111450,12 +111520,12 @@ }, "parameters": [ { - "$id": "8356", + "$id": "8361", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2013" + "$ref": "2017" }, "location": "Header", "isApiVersion": false, @@ -111467,12 +111537,12 @@ "decorators": [] }, { - "$id": "8357", + "$id": "8362", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2015" + "$ref": "2019" }, "location": "Header", "isApiVersion": false, @@ -111484,13 +111554,13 @@ "decorators": [] }, { - "$id": "8358", + "$id": "8363", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) the messages belong to.", "type": { - "$id": "8359", + "$id": "8364", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111506,13 +111576,13 @@ "decorators": [] }, { - "$id": "8360", + "$id": "8365", "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": "8361", + "$id": "8366", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -111528,13 +111598,13 @@ "decorators": [] }, { - "$id": "8362", + "$id": "8367", "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": "1359" + "$ref": "1363" }, "location": "Query", "isApiVersion": false, @@ -111546,13 +111616,13 @@ "decorators": [] }, { - "$id": "8363", + "$id": "8368", "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": "8364", + "$id": "8369", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111568,13 +111638,13 @@ "decorators": [] }, { - "$id": "8365", + "$id": "8370", "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": "8366", + "$id": "8371", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111592,7 +111662,7 @@ ], "response": { "type": { - "$ref": "5529" + "$ref": "5534" }, "resultSegments": [ "data" @@ -111608,7 +111678,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8352" + "$ref": "8357" }, "responseSegments": [ "last_id" @@ -111618,26 +111688,26 @@ } }, { - "$id": "8367", + "$id": "8372", "kind": "basic", "name": "getMessage", "accessibility": "public", "apiVersions": [], "summary": "Retrieve a message.", "operation": { - "$id": "8368", + "$id": "8373", "name": "getMessage", "resourceName": "Messages", "summary": "Retrieve a message.", "accessibility": "public", "parameters": [ { - "$id": "8369", + "$id": "8374", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2017" + "$ref": "2021" }, "isApiVersion": false, "optional": false, @@ -111648,12 +111718,12 @@ "crossLanguageDefinitionId": "OpenAI.Messages.getMessage.accept" }, { - "$id": "8370", + "$id": "8375", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2019" + "$ref": "2023" }, "isApiVersion": false, "optional": false, @@ -111664,13 +111734,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.getMessage.openAIBeta" }, { - "$id": "8371", + "$id": "8376", "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": "8372", + "$id": "8377", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111688,13 +111758,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.getMessage.thread_id" }, { - "$id": "8373", + "$id": "8378", "kind": "path", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to retrieve.", "type": { - "$id": "8374", + "$id": "8379", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111718,7 +111788,7 @@ 200 ], "bodyType": { - "$ref": "5486" + "$ref": "5491" }, "headers": [], "isErrorResponse": false, @@ -111738,12 +111808,12 @@ }, "parameters": [ { - "$id": "8375", + "$id": "8380", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2021" + "$ref": "2025" }, "location": "Header", "isApiVersion": false, @@ -111755,12 +111825,12 @@ "decorators": [] }, { - "$id": "8376", + "$id": "8381", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2023" + "$ref": "2027" }, "location": "Header", "isApiVersion": false, @@ -111772,13 +111842,13 @@ "decorators": [] }, { - "$id": "8377", + "$id": "8382", "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": "8378", + "$id": "8383", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111794,13 +111864,13 @@ "decorators": [] }, { - "$id": "8379", + "$id": "8384", "kind": "method", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to retrieve.", "type": { - "$id": "8380", + "$id": "8385", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111818,7 +111888,7 @@ ], "response": { "type": { - "$ref": "5486" + "$ref": "5491" } }, "isOverride": false, @@ -111827,26 +111897,26 @@ "crossLanguageDefinitionId": "OpenAI.Messages.getMessage" }, { - "$id": "8381", + "$id": "8386", "kind": "basic", "name": "modifyMessage", "accessibility": "public", "apiVersions": [], "summary": "Modifies a message.", "operation": { - "$id": "8382", + "$id": "8387", "name": "modifyMessage", "resourceName": "Messages", "summary": "Modifies a message.", "accessibility": "public", "parameters": [ { - "$id": "8383", + "$id": "8388", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2025" + "$ref": "2029" }, "isApiVersion": false, "optional": false, @@ -111857,12 +111927,12 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.accept" }, { - "$id": "8384", + "$id": "8389", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2027" + "$ref": "2031" }, "isApiVersion": false, "optional": false, @@ -111873,13 +111943,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.openAIBeta" }, { - "$id": "8385", + "$id": "8390", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this message belongs.", "type": { - "$id": "8386", + "$id": "8391", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111897,13 +111967,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.thread_id" }, { - "$id": "8387", + "$id": "8392", "kind": "path", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to modify.", "type": { - "$id": "8388", + "$id": "8393", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111921,13 +111991,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.message_id" }, { - "$id": "8389", + "$id": "8394", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2029" + "$ref": "2033" }, "isApiVersion": false, "optional": false, @@ -111938,12 +112008,12 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.contentType" }, { - "$id": "8390", + "$id": "8395", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5536" + "$ref": "5541" }, "isApiVersion": false, "contentTypes": [ @@ -111963,7 +112033,7 @@ 200 ], "bodyType": { - "$ref": "5486" + "$ref": "5491" }, "headers": [], "isErrorResponse": false, @@ -111986,12 +112056,12 @@ }, "parameters": [ { - "$id": "8391", + "$id": "8396", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2031" + "$ref": "2035" }, "location": "Header", "isApiVersion": false, @@ -112003,12 +112073,12 @@ "decorators": [] }, { - "$id": "8392", + "$id": "8397", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2033" + "$ref": "2037" }, "location": "Header", "isApiVersion": false, @@ -112020,13 +112090,13 @@ "decorators": [] }, { - "$id": "8393", + "$id": "8398", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this message belongs.", "type": { - "$id": "8394", + "$id": "8399", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112042,13 +112112,13 @@ "decorators": [] }, { - "$id": "8395", + "$id": "8400", "kind": "method", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to modify.", "type": { - "$id": "8396", + "$id": "8401", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112064,12 +112134,12 @@ "decorators": [] }, { - "$id": "8397", + "$id": "8402", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5536" + "$ref": "5541" }, "location": "Body", "isApiVersion": false, @@ -112081,13 +112151,13 @@ "decorators": [] }, { - "$id": "8398", + "$id": "8403", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2029" + "$ref": "2033" }, "location": "Header", "isApiVersion": false, @@ -112101,7 +112171,7 @@ ], "response": { "type": { - "$ref": "5486" + "$ref": "5491" } }, "isOverride": false, @@ -112110,26 +112180,26 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage" }, { - "$id": "8399", + "$id": "8404", "kind": "basic", "name": "deleteMessage", "accessibility": "public", "apiVersions": [], "summary": "Deletes a message.", "operation": { - "$id": "8400", + "$id": "8405", "name": "deleteMessage", "resourceName": "Messages", "summary": "Deletes a message.", "accessibility": "public", "parameters": [ { - "$id": "8401", + "$id": "8406", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2035" + "$ref": "2039" }, "isApiVersion": false, "optional": false, @@ -112140,12 +112210,12 @@ "crossLanguageDefinitionId": "OpenAI.Messages.deleteMessage.accept" }, { - "$id": "8402", + "$id": "8407", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2037" + "$ref": "2041" }, "isApiVersion": false, "optional": false, @@ -112156,13 +112226,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.deleteMessage.openAIBeta" }, { - "$id": "8403", + "$id": "8408", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this message belongs.", "type": { - "$id": "8404", + "$id": "8409", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112180,13 +112250,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.deleteMessage.thread_id" }, { - "$id": "8405", + "$id": "8410", "kind": "path", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to delete.", "type": { - "$id": "8406", + "$id": "8411", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112210,7 +112280,7 @@ 200 ], "bodyType": { - "$ref": "5538" + "$ref": "5543" }, "headers": [], "isErrorResponse": false, @@ -112230,12 +112300,12 @@ }, "parameters": [ { - "$id": "8407", + "$id": "8412", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2039" + "$ref": "2043" }, "location": "Header", "isApiVersion": false, @@ -112247,12 +112317,12 @@ "decorators": [] }, { - "$id": "8408", + "$id": "8413", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2041" + "$ref": "2045" }, "location": "Header", "isApiVersion": false, @@ -112264,13 +112334,13 @@ "decorators": [] }, { - "$id": "8409", + "$id": "8414", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this message belongs.", "type": { - "$id": "8410", + "$id": "8415", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112286,13 +112356,13 @@ "decorators": [] }, { - "$id": "8411", + "$id": "8416", "kind": "method", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to delete.", "type": { - "$id": "8412", + "$id": "8417", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112310,7 +112380,7 @@ ], "response": { "type": { - "$ref": "5538" + "$ref": "5543" } }, "isOverride": false, @@ -112321,13 +112391,13 @@ ], "parameters": [ { - "$id": "8413", + "$id": "8418", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8414", + "$id": "8419", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -112338,7 +112408,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8415", + "$id": "8420", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -112355,36 +112425,36 @@ "crossLanguageDefinitionId": "OpenAI.Messages", "apiVersions": [], "parent": { - "$ref": "7513" + "$ref": "7518" } }, { - "$id": "8416", + "$id": "8421", "kind": "client", "name": "Moderations", "namespace": "OpenAI", "methods": [ { - "$id": "8417", + "$id": "8422", "kind": "basic", "name": "ClassifyText", "accessibility": "public", "apiVersions": [], "summary": "Classifies if text is potentially harmful.", "operation": { - "$id": "8418", + "$id": "8423", "name": "ClassifyText", "resourceName": "Moderations", "summary": "Classifies if text is potentially harmful.", "accessibility": "public", "parameters": [ { - "$id": "8419", + "$id": "8424", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2043" + "$ref": "2047" }, "isApiVersion": false, "optional": false, @@ -112395,13 +112465,13 @@ "crossLanguageDefinitionId": "OpenAI.Moderations.createModeration.accept" }, { - "$id": "8420", + "$id": "8425", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2045" + "$ref": "2049" }, "isApiVersion": false, "optional": false, @@ -112412,12 +112482,12 @@ "crossLanguageDefinitionId": "OpenAI.Moderations.createModeration.contentType" }, { - "$id": "8421", + "$id": "8426", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5544" + "$ref": "5549" }, "isApiVersion": false, "contentTypes": [ @@ -112437,7 +112507,7 @@ 200 ], "bodyType": { - "$ref": "5561" + "$ref": "5566" }, "headers": [], "isErrorResponse": false, @@ -112460,12 +112530,12 @@ }, "parameters": [ { - "$id": "8422", + "$id": "8427", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2047" + "$ref": "2051" }, "location": "Header", "isApiVersion": false, @@ -112477,12 +112547,12 @@ "decorators": [] }, { - "$id": "8423", + "$id": "8428", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5544" + "$ref": "5549" }, "location": "Body", "isApiVersion": false, @@ -112494,13 +112564,13 @@ "decorators": [] }, { - "$id": "8424", + "$id": "8429", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2045" + "$ref": "2049" }, "location": "Header", "isApiVersion": false, @@ -112514,7 +112584,7 @@ ], "response": { "type": { - "$ref": "5561" + "$ref": "5566" } }, "isOverride": false, @@ -112525,13 +112595,13 @@ ], "parameters": [ { - "$id": "8425", + "$id": "8430", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8426", + "$id": "8431", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -112542,7 +112612,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8427", + "$id": "8432", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -112559,36 +112629,36 @@ "crossLanguageDefinitionId": "OpenAI.Moderations", "apiVersions": [], "parent": { - "$ref": "7513" + "$ref": "7518" } }, { - "$id": "8428", + "$id": "8433", "kind": "client", "name": "Runs", "namespace": "OpenAI", "methods": [ { - "$id": "8429", + "$id": "8434", "kind": "basic", "name": "createThreadAndRun", "accessibility": "public", "apiVersions": [], "summary": "Create a thread and run it in one request.", "operation": { - "$id": "8430", + "$id": "8435", "name": "createThreadAndRun", "resourceName": "Runs", "summary": "Create a thread and run it in one request.", "accessibility": "public", "parameters": [ { - "$id": "8431", + "$id": "8436", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1373" + "$ref": "1377" }, "isApiVersion": false, "optional": false, @@ -112599,12 +112669,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createThreadAndRun.accept" }, { - "$id": "8432", + "$id": "8437", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2049" + "$ref": "2053" }, "isApiVersion": false, "optional": false, @@ -112615,13 +112685,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createThreadAndRun.openAIBeta" }, { - "$id": "8433", + "$id": "8438", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2051" + "$ref": "2055" }, "isApiVersion": false, "optional": false, @@ -112632,12 +112702,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createThreadAndRun.contentType" }, { - "$id": "8434", + "$id": "8439", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5656" + "$ref": "5661" }, "isApiVersion": false, "contentTypes": [ @@ -112657,7 +112727,7 @@ 200 ], "bodyType": { - "$ref": "5722" + "$ref": "5727" }, "headers": [], "isErrorResponse": false, @@ -112680,12 +112750,12 @@ }, "parameters": [ { - "$id": "8435", + "$id": "8440", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1373" + "$ref": "1377" }, "location": "Header", "isApiVersion": false, @@ -112697,12 +112767,12 @@ "decorators": [] }, { - "$id": "8436", + "$id": "8441", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2053" + "$ref": "2057" }, "location": "Header", "isApiVersion": false, @@ -112714,12 +112784,12 @@ "decorators": [] }, { - "$id": "8437", + "$id": "8442", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5656" + "$ref": "5661" }, "location": "Body", "isApiVersion": false, @@ -112731,13 +112801,13 @@ "decorators": [] }, { - "$id": "8438", + "$id": "8443", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2051" + "$ref": "2055" }, "location": "Header", "isApiVersion": false, @@ -112751,7 +112821,7 @@ ], "response": { "type": { - "$ref": "5722" + "$ref": "5727" } }, "isOverride": false, @@ -112760,26 +112830,26 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createThreadAndRun" }, { - "$id": "8439", + "$id": "8444", "kind": "basic", "name": "createRun", "accessibility": "public", "apiVersions": [], "summary": "Create a run.", "operation": { - "$id": "8440", + "$id": "8445", "name": "createRun", "resourceName": "Runs", "summary": "Create a run.", "accessibility": "public", "parameters": [ { - "$id": "8441", + "$id": "8446", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1373" + "$ref": "1377" }, "isApiVersion": false, "optional": false, @@ -112790,12 +112860,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun.accept" }, { - "$id": "8442", + "$id": "8447", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2055" + "$ref": "2059" }, "isApiVersion": false, "optional": false, @@ -112806,13 +112876,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun.openAIBeta" }, { - "$id": "8443", + "$id": "8448", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to run.", "type": { - "$id": "8444", + "$id": "8449", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112830,17 +112900,17 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun.thread_id" }, { - "$id": "8445", + "$id": "8450", "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": "8446", + "$id": "8451", "kind": "array", "name": "ArrayIncludedRunStepProperty", "valueType": { - "$ref": "1404" + "$ref": "1408" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -112855,13 +112925,13 @@ "readOnly": false }, { - "$id": "8447", + "$id": "8452", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2057" + "$ref": "2061" }, "isApiVersion": false, "optional": false, @@ -112872,12 +112942,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun.contentType" }, { - "$id": "8448", + "$id": "8453", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5818" + "$ref": "5823" }, "isApiVersion": false, "contentTypes": [ @@ -112897,7 +112967,7 @@ 200 ], "bodyType": { - "$ref": "5722" + "$ref": "5727" }, "headers": [], "isErrorResponse": false, @@ -112920,12 +112990,12 @@ }, "parameters": [ { - "$id": "8449", + "$id": "8454", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1373" + "$ref": "1377" }, "location": "Header", "isApiVersion": false, @@ -112937,12 +113007,12 @@ "decorators": [] }, { - "$id": "8450", + "$id": "8455", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2059" + "$ref": "2063" }, "location": "Header", "isApiVersion": false, @@ -112954,13 +113024,13 @@ "decorators": [] }, { - "$id": "8451", + "$id": "8456", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to run.", "type": { - "$id": "8452", + "$id": "8457", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112976,13 +113046,13 @@ "decorators": [] }, { - "$id": "8453", + "$id": "8458", "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": "8446" + "$ref": "8451" }, "location": "Query", "isApiVersion": false, @@ -112994,12 +113064,12 @@ "decorators": [] }, { - "$id": "8454", + "$id": "8459", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5818" + "$ref": "5823" }, "location": "Body", "isApiVersion": false, @@ -113011,13 +113081,13 @@ "decorators": [] }, { - "$id": "8455", + "$id": "8460", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2057" + "$ref": "2061" }, "location": "Header", "isApiVersion": false, @@ -113031,7 +113101,7 @@ ], "response": { "type": { - "$ref": "5722" + "$ref": "5727" } }, "isOverride": false, @@ -113040,26 +113110,26 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun" }, { - "$id": "8456", + "$id": "8461", "kind": "paging", "name": "listRuns", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of runs belonging to a thread.", "operation": { - "$id": "8457", + "$id": "8462", "name": "listRuns", "resourceName": "Runs", "summary": "Returns a list of runs belonging to a thread.", "accessibility": "public", "parameters": [ { - "$id": "8458", + "$id": "8463", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2061" + "$ref": "2065" }, "isApiVersion": false, "optional": false, @@ -113070,12 +113140,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRuns.accept" }, { - "$id": "8459", + "$id": "8464", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2063" + "$ref": "2067" }, "isApiVersion": false, "optional": false, @@ -113086,13 +113156,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRuns.openAIBeta" }, { - "$id": "8460", + "$id": "8465", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread the run belongs to.", "type": { - "$id": "8461", + "$id": "8466", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113110,13 +113180,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRuns.thread_id" }, { - "$id": "8462", + "$id": "8467", "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": "8468", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -113131,13 +113201,13 @@ "readOnly": false }, { - "$id": "8464", + "$id": "8469", "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": "1359" + "$ref": "1363" }, "isApiVersion": false, "explode": false, @@ -113148,13 +113218,13 @@ "readOnly": false }, { - "$id": "8465", + "$id": "8470", "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": "8466", + "$id": "8471", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113169,13 +113239,13 @@ "readOnly": false }, { - "$id": "8467", + "$id": "8472", "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": "8468", + "$id": "8473", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113196,7 +113266,7 @@ 200 ], "bodyType": { - "$ref": "5860" + "$ref": "5865" }, "headers": [], "isErrorResponse": false, @@ -113216,12 +113286,12 @@ }, "parameters": [ { - "$id": "8469", + "$id": "8474", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2065" + "$ref": "2069" }, "location": "Header", "isApiVersion": false, @@ -113233,12 +113303,12 @@ "decorators": [] }, { - "$id": "8470", + "$id": "8475", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2067" + "$ref": "2071" }, "location": "Header", "isApiVersion": false, @@ -113250,13 +113320,13 @@ "decorators": [] }, { - "$id": "8471", + "$id": "8476", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread the run belongs to.", "type": { - "$id": "8472", + "$id": "8477", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113272,13 +113342,13 @@ "decorators": [] }, { - "$id": "8473", + "$id": "8478", "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": "8474", + "$id": "8479", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -113294,13 +113364,13 @@ "decorators": [] }, { - "$id": "8475", + "$id": "8480", "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": "1359" + "$ref": "1363" }, "location": "Query", "isApiVersion": false, @@ -113312,13 +113382,13 @@ "decorators": [] }, { - "$id": "8476", + "$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": "8477", + "$id": "8482", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113334,13 +113404,13 @@ "decorators": [] }, { - "$id": "8478", + "$id": "8483", "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": "8479", + "$id": "8484", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113358,7 +113428,7 @@ ], "response": { "type": { - "$ref": "5863" + "$ref": "5868" }, "resultSegments": [ "data" @@ -113374,7 +113444,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8465" + "$ref": "8470" }, "responseSegments": [ "last_id" @@ -113384,26 +113454,26 @@ } }, { - "$id": "8480", + "$id": "8485", "kind": "basic", "name": "getRun", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a run.", "operation": { - "$id": "8481", + "$id": "8486", "name": "getRun", "resourceName": "Runs", "summary": "Retrieves a run.", "accessibility": "public", "parameters": [ { - "$id": "8482", + "$id": "8487", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2069" + "$ref": "2073" }, "isApiVersion": false, "optional": false, @@ -113414,12 +113484,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRun.accept" }, { - "$id": "8483", + "$id": "8488", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2071" + "$ref": "2075" }, "isApiVersion": false, "optional": false, @@ -113430,13 +113500,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRun.openAIBeta" }, { - "$id": "8484", + "$id": "8489", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "8485", + "$id": "8490", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113454,13 +113524,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRun.thread_id" }, { - "$id": "8486", + "$id": "8491", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to retrieve.", "type": { - "$id": "8487", + "$id": "8492", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113484,7 +113554,7 @@ 200 ], "bodyType": { - "$ref": "5722" + "$ref": "5727" }, "headers": [], "isErrorResponse": false, @@ -113504,12 +113574,12 @@ }, "parameters": [ { - "$id": "8488", + "$id": "8493", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2073" + "$ref": "2077" }, "location": "Header", "isApiVersion": false, @@ -113521,12 +113591,12 @@ "decorators": [] }, { - "$id": "8489", + "$id": "8494", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2075" + "$ref": "2079" }, "location": "Header", "isApiVersion": false, @@ -113538,13 +113608,13 @@ "decorators": [] }, { - "$id": "8490", + "$id": "8495", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "8491", + "$id": "8496", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113560,13 +113630,13 @@ "decorators": [] }, { - "$id": "8492", + "$id": "8497", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to retrieve.", "type": { - "$id": "8493", + "$id": "8498", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113584,7 +113654,7 @@ ], "response": { "type": { - "$ref": "5722" + "$ref": "5727" } }, "isOverride": false, @@ -113593,26 +113663,26 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRun" }, { - "$id": "8494", + "$id": "8499", "kind": "basic", "name": "modifyRun", "accessibility": "public", "apiVersions": [], "summary": "Modifies a run.", "operation": { - "$id": "8495", + "$id": "8500", "name": "modifyRun", "resourceName": "Runs", "summary": "Modifies a run.", "accessibility": "public", "parameters": [ { - "$id": "8496", + "$id": "8501", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2077" + "$ref": "2081" }, "isApiVersion": false, "optional": false, @@ -113623,12 +113693,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.accept" }, { - "$id": "8497", + "$id": "8502", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2079" + "$ref": "2083" }, "isApiVersion": false, "optional": false, @@ -113639,13 +113709,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.openAIBeta" }, { - "$id": "8498", + "$id": "8503", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "8499", + "$id": "8504", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113663,13 +113733,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.thread_id" }, { - "$id": "8500", + "$id": "8505", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to modify.", "type": { - "$id": "8501", + "$id": "8506", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113687,13 +113757,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.run_id" }, { - "$id": "8502", + "$id": "8507", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2081" + "$ref": "2085" }, "isApiVersion": false, "optional": false, @@ -113704,12 +113774,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.contentType" }, { - "$id": "8503", + "$id": "8508", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5870" + "$ref": "5875" }, "isApiVersion": false, "contentTypes": [ @@ -113729,7 +113799,7 @@ 200 ], "bodyType": { - "$ref": "5722" + "$ref": "5727" }, "headers": [], "isErrorResponse": false, @@ -113752,12 +113822,12 @@ }, "parameters": [ { - "$id": "8504", + "$id": "8509", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2083" + "$ref": "2087" }, "location": "Header", "isApiVersion": false, @@ -113769,12 +113839,12 @@ "decorators": [] }, { - "$id": "8505", + "$id": "8510", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2085" + "$ref": "2089" }, "location": "Header", "isApiVersion": false, @@ -113786,13 +113856,13 @@ "decorators": [] }, { - "$id": "8506", + "$id": "8511", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "8507", + "$id": "8512", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113808,13 +113878,13 @@ "decorators": [] }, { - "$id": "8508", + "$id": "8513", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to modify.", "type": { - "$id": "8509", + "$id": "8514", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113830,12 +113900,12 @@ "decorators": [] }, { - "$id": "8510", + "$id": "8515", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5870" + "$ref": "5875" }, "location": "Body", "isApiVersion": false, @@ -113847,13 +113917,13 @@ "decorators": [] }, { - "$id": "8511", + "$id": "8516", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2081" + "$ref": "2085" }, "location": "Header", "isApiVersion": false, @@ -113867,7 +113937,7 @@ ], "response": { "type": { - "$ref": "5722" + "$ref": "5727" } }, "isOverride": false, @@ -113876,26 +113946,26 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun" }, { - "$id": "8512", + "$id": "8517", "kind": "basic", "name": "cancelRun", "accessibility": "public", "apiVersions": [], "summary": "Cancels a run that is `in_progress`.", "operation": { - "$id": "8513", + "$id": "8518", "name": "cancelRun", "resourceName": "Runs", "summary": "Cancels a run that is `in_progress`.", "accessibility": "public", "parameters": [ { - "$id": "8514", + "$id": "8519", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2087" + "$ref": "2091" }, "isApiVersion": false, "optional": false, @@ -113906,12 +113976,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.cancelRun.accept" }, { - "$id": "8515", + "$id": "8520", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2089" + "$ref": "2093" }, "isApiVersion": false, "optional": false, @@ -113922,13 +113992,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.cancelRun.openAIBeta" }, { - "$id": "8516", + "$id": "8521", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this run belongs.", "type": { - "$id": "8517", + "$id": "8522", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113946,13 +114016,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.cancelRun.thread_id" }, { - "$id": "8518", + "$id": "8523", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to cancel.", "type": { - "$id": "8519", + "$id": "8524", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113976,7 +114046,7 @@ 200 ], "bodyType": { - "$ref": "5722" + "$ref": "5727" }, "headers": [], "isErrorResponse": false, @@ -113996,12 +114066,12 @@ }, "parameters": [ { - "$id": "8520", + "$id": "8525", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2091" + "$ref": "2095" }, "location": "Header", "isApiVersion": false, @@ -114013,12 +114083,12 @@ "decorators": [] }, { - "$id": "8521", + "$id": "8526", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2093" + "$ref": "2097" }, "location": "Header", "isApiVersion": false, @@ -114030,13 +114100,13 @@ "decorators": [] }, { - "$id": "8522", + "$id": "8527", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this run belongs.", "type": { - "$id": "8523", + "$id": "8528", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114052,13 +114122,13 @@ "decorators": [] }, { - "$id": "8524", + "$id": "8529", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to cancel.", "type": { - "$id": "8525", + "$id": "8530", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114076,7 +114146,7 @@ ], "response": { "type": { - "$ref": "5722" + "$ref": "5727" } }, "isOverride": false, @@ -114085,26 +114155,26 @@ "crossLanguageDefinitionId": "OpenAI.Runs.cancelRun" }, { - "$id": "8526", + "$id": "8531", "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": "8527", + "$id": "8532", "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": "8528", + "$id": "8533", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1373" + "$ref": "1377" }, "isApiVersion": false, "optional": false, @@ -114115,12 +114185,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.accept" }, { - "$id": "8529", + "$id": "8534", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2095" + "$ref": "2099" }, "isApiVersion": false, "optional": false, @@ -114131,13 +114201,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.openAIBeta" }, { - "$id": "8530", + "$id": "8535", "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": "8531", + "$id": "8536", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114155,13 +114225,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.thread_id" }, { - "$id": "8532", + "$id": "8537", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run that requires the tool output submission.", "type": { - "$id": "8533", + "$id": "8538", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114179,13 +114249,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.run_id" }, { - "$id": "8534", + "$id": "8539", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2097" + "$ref": "2101" }, "isApiVersion": false, "optional": false, @@ -114196,12 +114266,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.contentType" }, { - "$id": "8535", + "$id": "8540", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5872" + "$ref": "5877" }, "isApiVersion": false, "contentTypes": [ @@ -114221,7 +114291,7 @@ 200 ], "bodyType": { - "$ref": "5722" + "$ref": "5727" }, "headers": [], "isErrorResponse": false, @@ -114244,12 +114314,12 @@ }, "parameters": [ { - "$id": "8536", + "$id": "8541", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "1373" + "$ref": "1377" }, "location": "Header", "isApiVersion": false, @@ -114261,12 +114331,12 @@ "decorators": [] }, { - "$id": "8537", + "$id": "8542", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2099" + "$ref": "2103" }, "location": "Header", "isApiVersion": false, @@ -114278,13 +114348,13 @@ "decorators": [] }, { - "$id": "8538", + "$id": "8543", "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": "8539", + "$id": "8544", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114300,13 +114370,13 @@ "decorators": [] }, { - "$id": "8540", + "$id": "8545", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run that requires the tool output submission.", "type": { - "$id": "8541", + "$id": "8546", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114322,12 +114392,12 @@ "decorators": [] }, { - "$id": "8542", + "$id": "8547", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5872" + "$ref": "5877" }, "location": "Body", "isApiVersion": false, @@ -114339,13 +114409,13 @@ "decorators": [] }, { - "$id": "8543", + "$id": "8548", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2097" + "$ref": "2101" }, "location": "Header", "isApiVersion": false, @@ -114359,7 +114429,7 @@ ], "response": { "type": { - "$ref": "5722" + "$ref": "5727" } }, "isOverride": false, @@ -114368,26 +114438,26 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun" }, { - "$id": "8544", + "$id": "8549", "kind": "paging", "name": "listRunSteps", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of run steps belonging to a run.", "operation": { - "$id": "8545", + "$id": "8550", "name": "listRunSteps", "resourceName": "Runs", "summary": "Returns a list of run steps belonging to a run.", "accessibility": "public", "parameters": [ { - "$id": "8546", + "$id": "8551", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2101" + "$ref": "2105" }, "isApiVersion": false, "optional": false, @@ -114398,12 +114468,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRunSteps.accept" }, { - "$id": "8547", + "$id": "8552", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2103" + "$ref": "2107" }, "isApiVersion": false, "optional": false, @@ -114414,13 +114484,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRunSteps.openAIBeta" }, { - "$id": "8548", + "$id": "8553", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread the run and run steps belong to.", "type": { - "$id": "8549", + "$id": "8554", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114438,13 +114508,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRunSteps.thread_id" }, { - "$id": "8550", + "$id": "8555", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run the run steps belong to.", "type": { - "$id": "8551", + "$id": "8556", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114462,13 +114532,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRunSteps.run_id" }, { - "$id": "8552", + "$id": "8557", "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": "8553", + "$id": "8558", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -114483,13 +114553,13 @@ "readOnly": false }, { - "$id": "8554", + "$id": "8559", "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": "1359" + "$ref": "1363" }, "isApiVersion": false, "explode": false, @@ -114500,13 +114570,13 @@ "readOnly": false }, { - "$id": "8555", + "$id": "8560", "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": "8556", + "$id": "8561", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114521,13 +114591,13 @@ "readOnly": false }, { - "$id": "8557", + "$id": "8562", "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": "8558", + "$id": "8563", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114542,13 +114612,13 @@ "readOnly": false }, { - "$id": "8559", + "$id": "8564", "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": "8446" + "$ref": "8451" }, "isApiVersion": false, "explode": false, @@ -114566,7 +114636,7 @@ 200 ], "bodyType": { - "$ref": "5883" + "$ref": "5888" }, "headers": [], "isErrorResponse": false, @@ -114586,12 +114656,12 @@ }, "parameters": [ { - "$id": "8560", + "$id": "8565", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2105" + "$ref": "2109" }, "location": "Header", "isApiVersion": false, @@ -114603,12 +114673,12 @@ "decorators": [] }, { - "$id": "8561", + "$id": "8566", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2107" + "$ref": "2111" }, "location": "Header", "isApiVersion": false, @@ -114620,13 +114690,13 @@ "decorators": [] }, { - "$id": "8562", + "$id": "8567", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread the run and run steps belong to.", "type": { - "$id": "8563", + "$id": "8568", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114642,13 +114712,13 @@ "decorators": [] }, { - "$id": "8564", + "$id": "8569", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run the run steps belong to.", "type": { - "$id": "8565", + "$id": "8570", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114664,13 +114734,13 @@ "decorators": [] }, { - "$id": "8566", + "$id": "8571", "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": "8567", + "$id": "8572", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -114686,13 +114756,13 @@ "decorators": [] }, { - "$id": "8568", + "$id": "8573", "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": "1359" + "$ref": "1363" }, "location": "Query", "isApiVersion": false, @@ -114704,13 +114774,13 @@ "decorators": [] }, { - "$id": "8569", + "$id": "8574", "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": "8570", + "$id": "8575", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114726,13 +114796,13 @@ "decorators": [] }, { - "$id": "8571", + "$id": "8576", "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": "8572", + "$id": "8577", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114748,13 +114818,13 @@ "decorators": [] }, { - "$id": "8573", + "$id": "8578", "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": "8446" + "$ref": "8451" }, "location": "Query", "isApiVersion": false, @@ -114768,7 +114838,7 @@ ], "response": { "type": { - "$ref": "5886" + "$ref": "5891" }, "resultSegments": [ "data" @@ -114784,7 +114854,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8555" + "$ref": "8560" }, "responseSegments": [ "last_id" @@ -114794,26 +114864,26 @@ } }, { - "$id": "8574", + "$id": "8579", "kind": "basic", "name": "getRunStep", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a run step.", "operation": { - "$id": "8575", + "$id": "8580", "name": "getRunStep", "resourceName": "Runs", "summary": "Retrieves a run step.", "accessibility": "public", "parameters": [ { - "$id": "8576", + "$id": "8581", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2109" + "$ref": "2113" }, "isApiVersion": false, "optional": false, @@ -114824,12 +114894,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.accept" }, { - "$id": "8577", + "$id": "8582", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2111" + "$ref": "2115" }, "isApiVersion": false, "optional": false, @@ -114840,13 +114910,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.openAIBeta" }, { - "$id": "8578", + "$id": "8583", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which the run and run step belongs.", "type": { - "$id": "8579", + "$id": "8584", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114864,13 +114934,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.thread_id" }, { - "$id": "8580", + "$id": "8585", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to which the run step belongs.", "type": { - "$id": "8581", + "$id": "8586", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114888,13 +114958,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.run_id" }, { - "$id": "8582", + "$id": "8587", "kind": "path", "name": "step_id", "serializedName": "step_id", "doc": "The ID of the run step to retrieve.", "type": { - "$id": "8583", + "$id": "8588", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114912,13 +114982,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.step_id" }, { - "$id": "8584", + "$id": "8589", "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": "8446" + "$ref": "8451" }, "isApiVersion": false, "explode": false, @@ -114936,7 +115006,7 @@ 200 ], "bodyType": { - "$ref": "5887" + "$ref": "5892" }, "headers": [], "isErrorResponse": false, @@ -114956,12 +115026,12 @@ }, "parameters": [ { - "$id": "8585", + "$id": "8590", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2113" + "$ref": "2117" }, "location": "Header", "isApiVersion": false, @@ -114973,12 +115043,12 @@ "decorators": [] }, { - "$id": "8586", + "$id": "8591", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2115" + "$ref": "2119" }, "location": "Header", "isApiVersion": false, @@ -114990,13 +115060,13 @@ "decorators": [] }, { - "$id": "8587", + "$id": "8592", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which the run and run step belongs.", "type": { - "$id": "8588", + "$id": "8593", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115012,13 +115082,13 @@ "decorators": [] }, { - "$id": "8589", + "$id": "8594", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to which the run step belongs.", "type": { - "$id": "8590", + "$id": "8595", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115034,13 +115104,13 @@ "decorators": [] }, { - "$id": "8591", + "$id": "8596", "kind": "method", "name": "step_id", "serializedName": "step_id", "doc": "The ID of the run step to retrieve.", "type": { - "$id": "8592", + "$id": "8597", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115056,13 +115126,13 @@ "decorators": [] }, { - "$id": "8593", + "$id": "8598", "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": "8446" + "$ref": "8451" }, "location": "Query", "isApiVersion": false, @@ -115076,7 +115146,7 @@ ], "response": { "type": { - "$ref": "5887" + "$ref": "5892" } }, "isOverride": false, @@ -115087,13 +115157,13 @@ ], "parameters": [ { - "$id": "8594", + "$id": "8599", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8595", + "$id": "8600", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -115104,7 +115174,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8596", + "$id": "8601", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -115121,36 +115191,36 @@ "crossLanguageDefinitionId": "OpenAI.Runs", "apiVersions": [], "parent": { - "$ref": "7513" + "$ref": "7518" } }, { - "$id": "8597", + "$id": "8602", "kind": "client", "name": "Threads", "namespace": "OpenAI", "methods": [ { - "$id": "8598", + "$id": "8603", "kind": "basic", "name": "createThread", "accessibility": "public", "apiVersions": [], "summary": "Create a thread.", "operation": { - "$id": "8599", + "$id": "8604", "name": "createThread", "resourceName": "Threads", "summary": "Create a thread.", "accessibility": "public", "parameters": [ { - "$id": "8600", + "$id": "8605", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2117" + "$ref": "2121" }, "isApiVersion": false, "optional": false, @@ -115161,12 +115231,12 @@ "crossLanguageDefinitionId": "OpenAI.Threads.createThread.accept" }, { - "$id": "8601", + "$id": "8606", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2119" + "$ref": "2123" }, "isApiVersion": false, "optional": false, @@ -115177,13 +115247,13 @@ "crossLanguageDefinitionId": "OpenAI.Threads.createThread.openAIBeta" }, { - "$id": "8602", + "$id": "8607", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2121" + "$ref": "2125" }, "isApiVersion": false, "optional": false, @@ -115194,12 +115264,12 @@ "crossLanguageDefinitionId": "OpenAI.Threads.createThread.contentType" }, { - "$id": "8603", + "$id": "8608", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5660" + "$ref": "5665" }, "isApiVersion": false, "contentTypes": [ @@ -115219,7 +115289,7 @@ 200 ], "bodyType": { - "$ref": "6013" + "$ref": "6018" }, "headers": [], "isErrorResponse": false, @@ -115242,12 +115312,12 @@ }, "parameters": [ { - "$id": "8604", + "$id": "8609", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2123" + "$ref": "2127" }, "location": "Header", "isApiVersion": false, @@ -115259,12 +115329,12 @@ "decorators": [] }, { - "$id": "8605", + "$id": "8610", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2125" + "$ref": "2129" }, "location": "Header", "isApiVersion": false, @@ -115276,12 +115346,12 @@ "decorators": [] }, { - "$id": "8606", + "$id": "8611", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5660" + "$ref": "5665" }, "location": "Body", "isApiVersion": false, @@ -115293,13 +115363,13 @@ "decorators": [] }, { - "$id": "8607", + "$id": "8612", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2121" + "$ref": "2125" }, "location": "Header", "isApiVersion": false, @@ -115313,7 +115383,7 @@ ], "response": { "type": { - "$ref": "6013" + "$ref": "6018" } }, "isOverride": false, @@ -115322,26 +115392,26 @@ "crossLanguageDefinitionId": "OpenAI.Threads.createThread" }, { - "$id": "8608", + "$id": "8613", "kind": "basic", "name": "getThread", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a thread.", "operation": { - "$id": "8609", + "$id": "8614", "name": "getThread", "resourceName": "Threads", "summary": "Retrieves a thread.", "accessibility": "public", "parameters": [ { - "$id": "8610", + "$id": "8615", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2127" + "$ref": "2131" }, "isApiVersion": false, "optional": false, @@ -115352,12 +115422,12 @@ "crossLanguageDefinitionId": "OpenAI.Threads.getThread.accept" }, { - "$id": "8611", + "$id": "8616", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2129" + "$ref": "2133" }, "isApiVersion": false, "optional": false, @@ -115368,13 +115438,13 @@ "crossLanguageDefinitionId": "OpenAI.Threads.getThread.openAIBeta" }, { - "$id": "8612", + "$id": "8617", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to retrieve.", "type": { - "$id": "8613", + "$id": "8618", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115398,7 +115468,7 @@ 200 ], "bodyType": { - "$ref": "6013" + "$ref": "6018" }, "headers": [], "isErrorResponse": false, @@ -115418,12 +115488,12 @@ }, "parameters": [ { - "$id": "8614", + "$id": "8619", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2131" + "$ref": "2135" }, "location": "Header", "isApiVersion": false, @@ -115435,12 +115505,12 @@ "decorators": [] }, { - "$id": "8615", + "$id": "8620", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2133" + "$ref": "2137" }, "location": "Header", "isApiVersion": false, @@ -115452,13 +115522,13 @@ "decorators": [] }, { - "$id": "8616", + "$id": "8621", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to retrieve.", "type": { - "$id": "8617", + "$id": "8622", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115476,7 +115546,7 @@ ], "response": { "type": { - "$ref": "6013" + "$ref": "6018" } }, "isOverride": false, @@ -115485,26 +115555,26 @@ "crossLanguageDefinitionId": "OpenAI.Threads.getThread" }, { - "$id": "8618", + "$id": "8623", "kind": "basic", "name": "modifyThread", "accessibility": "public", "apiVersions": [], "summary": "Modifies a thread.", "operation": { - "$id": "8619", + "$id": "8624", "name": "modifyThread", "resourceName": "Threads", "summary": "Modifies a thread.", "accessibility": "public", "parameters": [ { - "$id": "8620", + "$id": "8625", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2135" + "$ref": "2139" }, "isApiVersion": false, "optional": false, @@ -115515,12 +115585,12 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread.accept" }, { - "$id": "8621", + "$id": "8626", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2137" + "$ref": "2141" }, "isApiVersion": false, "optional": false, @@ -115531,13 +115601,13 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread.openAIBeta" }, { - "$id": "8622", + "$id": "8627", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to modify. Only the `metadata` can be modified.", "type": { - "$id": "8623", + "$id": "8628", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115555,13 +115625,13 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread.thread_id" }, { - "$id": "8624", + "$id": "8629", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2139" + "$ref": "2143" }, "isApiVersion": false, "optional": false, @@ -115572,12 +115642,12 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread.contentType" }, { - "$id": "8625", + "$id": "8630", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6030" + "$ref": "6035" }, "isApiVersion": false, "contentTypes": [ @@ -115597,7 +115667,7 @@ 200 ], "bodyType": { - "$ref": "6013" + "$ref": "6018" }, "headers": [], "isErrorResponse": false, @@ -115620,12 +115690,12 @@ }, "parameters": [ { - "$id": "8626", + "$id": "8631", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2141" + "$ref": "2145" }, "location": "Header", "isApiVersion": false, @@ -115637,12 +115707,12 @@ "decorators": [] }, { - "$id": "8627", + "$id": "8632", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2143" + "$ref": "2147" }, "location": "Header", "isApiVersion": false, @@ -115654,13 +115724,13 @@ "decorators": [] }, { - "$id": "8628", + "$id": "8633", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to modify. Only the `metadata` can be modified.", "type": { - "$id": "8629", + "$id": "8634", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115676,12 +115746,12 @@ "decorators": [] }, { - "$id": "8630", + "$id": "8635", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6030" + "$ref": "6035" }, "location": "Body", "isApiVersion": false, @@ -115693,13 +115763,13 @@ "decorators": [] }, { - "$id": "8631", + "$id": "8636", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2139" + "$ref": "2143" }, "location": "Header", "isApiVersion": false, @@ -115713,7 +115783,7 @@ ], "response": { "type": { - "$ref": "6013" + "$ref": "6018" } }, "isOverride": false, @@ -115722,26 +115792,26 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread" }, { - "$id": "8632", + "$id": "8637", "kind": "basic", "name": "deleteThread", "accessibility": "public", "apiVersions": [], "summary": "Delete a thread.", "operation": { - "$id": "8633", + "$id": "8638", "name": "deleteThread", "resourceName": "Threads", "summary": "Delete a thread.", "accessibility": "public", "parameters": [ { - "$id": "8634", + "$id": "8639", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2145" + "$ref": "2149" }, "isApiVersion": false, "optional": false, @@ -115752,12 +115822,12 @@ "crossLanguageDefinitionId": "OpenAI.Threads.deleteThread.accept" }, { - "$id": "8635", + "$id": "8640", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2147" + "$ref": "2151" }, "isApiVersion": false, "optional": false, @@ -115768,13 +115838,13 @@ "crossLanguageDefinitionId": "OpenAI.Threads.deleteThread.openAIBeta" }, { - "$id": "8636", + "$id": "8641", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to delete.", "type": { - "$id": "8637", + "$id": "8642", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115798,7 +115868,7 @@ 200 ], "bodyType": { - "$ref": "6039" + "$ref": "6044" }, "headers": [], "isErrorResponse": false, @@ -115818,12 +115888,12 @@ }, "parameters": [ { - "$id": "8638", + "$id": "8643", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2149" + "$ref": "2153" }, "location": "Header", "isApiVersion": false, @@ -115835,12 +115905,12 @@ "decorators": [] }, { - "$id": "8639", + "$id": "8644", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2151" + "$ref": "2155" }, "location": "Header", "isApiVersion": false, @@ -115852,13 +115922,13 @@ "decorators": [] }, { - "$id": "8640", + "$id": "8645", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to delete.", "type": { - "$id": "8641", + "$id": "8646", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115876,7 +115946,7 @@ ], "response": { "type": { - "$ref": "6039" + "$ref": "6044" } }, "isOverride": false, @@ -115887,13 +115957,13 @@ ], "parameters": [ { - "$id": "8642", + "$id": "8647", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8643", + "$id": "8648", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -115904,7 +115974,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8644", + "$id": "8649", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -115921,36 +115991,36 @@ "crossLanguageDefinitionId": "OpenAI.Threads", "apiVersions": [], "parent": { - "$ref": "7513" + "$ref": "7518" } }, { - "$id": "8645", + "$id": "8650", "kind": "client", "name": "VectorStores", "namespace": "OpenAI", "methods": [ { - "$id": "8646", + "$id": "8651", "kind": "paging", "name": "GetVectorStores", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of vector stores.", "operation": { - "$id": "8647", + "$id": "8652", "name": "GetVectorStores", "resourceName": "VectorStores", "summary": "Returns a list of vector stores.", "accessibility": "public", "parameters": [ { - "$id": "8648", + "$id": "8653", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2153" + "$ref": "2157" }, "isApiVersion": false, "optional": false, @@ -115961,13 +116031,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listVectorStores.accept" }, { - "$id": "8649", + "$id": "8654", "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": "8650", + "$id": "8655", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -115982,13 +116052,13 @@ "readOnly": false }, { - "$id": "8651", + "$id": "8656", "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": "1359" + "$ref": "1363" }, "isApiVersion": false, "explode": false, @@ -115999,13 +116069,13 @@ "readOnly": false }, { - "$id": "8652", + "$id": "8657", "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": "8653", + "$id": "8658", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116020,13 +116090,13 @@ "readOnly": false }, { - "$id": "8654", + "$id": "8659", "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": "8655", + "$id": "8660", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116047,7 +116117,7 @@ 200 ], "bodyType": { - "$ref": "6045" + "$ref": "6050" }, "headers": [], "isErrorResponse": false, @@ -116067,12 +116137,12 @@ }, "parameters": [ { - "$id": "8656", + "$id": "8661", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2155" + "$ref": "2159" }, "location": "Header", "isApiVersion": false, @@ -116084,13 +116154,13 @@ "decorators": [] }, { - "$id": "8657", + "$id": "8662", "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": "8658", + "$id": "8663", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -116106,13 +116176,13 @@ "decorators": [] }, { - "$id": "8659", + "$id": "8664", "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": "1359" + "$ref": "1363" }, "location": "Query", "isApiVersion": false, @@ -116124,13 +116194,13 @@ "decorators": [] }, { - "$id": "8660", + "$id": "8665", "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": "8661", + "$id": "8666", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116146,13 +116216,13 @@ "decorators": [] }, { - "$id": "8662", + "$id": "8667", "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": "8663", + "$id": "8668", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116170,7 +116240,7 @@ ], "response": { "type": { - "$ref": "6048" + "$ref": "6053" }, "resultSegments": [ "data" @@ -116186,7 +116256,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8652" + "$ref": "8657" }, "responseSegments": [ "last_id" @@ -116196,26 +116266,26 @@ } }, { - "$id": "8664", + "$id": "8669", "kind": "basic", "name": "createVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Creates a vector store.", "operation": { - "$id": "8665", + "$id": "8670", "name": "createVectorStore", "resourceName": "VectorStores", "summary": "Creates a vector store.", "accessibility": "public", "parameters": [ { - "$id": "8666", + "$id": "8671", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2157" + "$ref": "2161" }, "isApiVersion": false, "optional": false, @@ -116226,13 +116296,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStore.accept" }, { - "$id": "8667", + "$id": "8672", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2159" + "$ref": "2163" }, "isApiVersion": false, "optional": false, @@ -116243,12 +116313,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStore.contentType" }, { - "$id": "8668", + "$id": "8673", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6094" + "$ref": "6099" }, "isApiVersion": false, "contentTypes": [ @@ -116268,7 +116338,7 @@ 200 ], "bodyType": { - "$ref": "6049" + "$ref": "6054" }, "headers": [], "isErrorResponse": false, @@ -116291,12 +116361,12 @@ }, "parameters": [ { - "$id": "8669", + "$id": "8674", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2161" + "$ref": "2165" }, "location": "Header", "isApiVersion": false, @@ -116308,12 +116378,12 @@ "decorators": [] }, { - "$id": "8670", + "$id": "8675", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6094" + "$ref": "6099" }, "location": "Body", "isApiVersion": false, @@ -116325,13 +116395,13 @@ "decorators": [] }, { - "$id": "8671", + "$id": "8676", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2159" + "$ref": "2163" }, "location": "Header", "isApiVersion": false, @@ -116345,7 +116415,7 @@ ], "response": { "type": { - "$ref": "6049" + "$ref": "6054" } }, "isOverride": false, @@ -116354,26 +116424,26 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStore" }, { - "$id": "8672", + "$id": "8677", "kind": "basic", "name": "getVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a vector store.", "operation": { - "$id": "8673", + "$id": "8678", "name": "getVectorStore", "resourceName": "VectorStores", "summary": "Retrieves a vector store.", "accessibility": "public", "parameters": [ { - "$id": "8674", + "$id": "8679", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2163" + "$ref": "2167" }, "isApiVersion": false, "optional": false, @@ -116384,13 +116454,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStore.accept" }, { - "$id": "8675", + "$id": "8680", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to retrieve.", "type": { - "$id": "8676", + "$id": "8681", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116414,7 +116484,7 @@ 200 ], "bodyType": { - "$ref": "6049" + "$ref": "6054" }, "headers": [], "isErrorResponse": false, @@ -116434,12 +116504,12 @@ }, "parameters": [ { - "$id": "8677", + "$id": "8682", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2165" + "$ref": "2169" }, "location": "Header", "isApiVersion": false, @@ -116451,13 +116521,13 @@ "decorators": [] }, { - "$id": "8678", + "$id": "8683", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to retrieve.", "type": { - "$id": "8679", + "$id": "8684", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116475,7 +116545,7 @@ ], "response": { "type": { - "$ref": "6049" + "$ref": "6054" } }, "isOverride": false, @@ -116484,26 +116554,26 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStore" }, { - "$id": "8680", + "$id": "8685", "kind": "basic", "name": "modifyVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Modifies a vector store.", "operation": { - "$id": "8681", + "$id": "8686", "name": "modifyVectorStore", "resourceName": "VectorStores", "summary": "Modifies a vector store.", "accessibility": "public", "parameters": [ { - "$id": "8682", + "$id": "8687", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2167" + "$ref": "2171" }, "isApiVersion": false, "optional": false, @@ -116514,13 +116584,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.modifyVectorStore.accept" }, { - "$id": "8683", + "$id": "8688", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to modify.", "type": { - "$id": "8684", + "$id": "8689", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116538,13 +116608,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.modifyVectorStore.vector_store_id" }, { - "$id": "8685", + "$id": "8690", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2169" + "$ref": "2173" }, "isApiVersion": false, "optional": false, @@ -116555,12 +116625,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.modifyVectorStore.contentType" }, { - "$id": "8686", + "$id": "8691", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6102" + "$ref": "6107" }, "isApiVersion": false, "contentTypes": [ @@ -116580,7 +116650,7 @@ 200 ], "bodyType": { - "$ref": "6049" + "$ref": "6054" }, "headers": [], "isErrorResponse": false, @@ -116603,12 +116673,12 @@ }, "parameters": [ { - "$id": "8687", + "$id": "8692", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2171" + "$ref": "2175" }, "location": "Header", "isApiVersion": false, @@ -116620,13 +116690,13 @@ "decorators": [] }, { - "$id": "8688", + "$id": "8693", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to modify.", "type": { - "$id": "8689", + "$id": "8694", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116642,12 +116712,12 @@ "decorators": [] }, { - "$id": "8690", + "$id": "8695", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6102" + "$ref": "6107" }, "location": "Body", "isApiVersion": false, @@ -116659,13 +116729,13 @@ "decorators": [] }, { - "$id": "8691", + "$id": "8696", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2169" + "$ref": "2173" }, "location": "Header", "isApiVersion": false, @@ -116679,7 +116749,7 @@ ], "response": { "type": { - "$ref": "6049" + "$ref": "6054" } }, "isOverride": false, @@ -116688,26 +116758,26 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.modifyVectorStore" }, { - "$id": "8692", + "$id": "8697", "kind": "basic", "name": "deleteVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Delete a vector store.", "operation": { - "$id": "8693", + "$id": "8698", "name": "deleteVectorStore", "resourceName": "VectorStores", "summary": "Delete a vector store.", "accessibility": "public", "parameters": [ { - "$id": "8694", + "$id": "8699", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2173" + "$ref": "2177" }, "isApiVersion": false, "optional": false, @@ -116718,13 +116788,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStore.accept" }, { - "$id": "8695", + "$id": "8700", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to delete.", "type": { - "$id": "8696", + "$id": "8701", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116748,7 +116818,7 @@ 200 ], "bodyType": { - "$ref": "6109" + "$ref": "6114" }, "headers": [], "isErrorResponse": false, @@ -116768,12 +116838,12 @@ }, "parameters": [ { - "$id": "8697", + "$id": "8702", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2175" + "$ref": "2179" }, "location": "Header", "isApiVersion": false, @@ -116785,13 +116855,13 @@ "decorators": [] }, { - "$id": "8698", + "$id": "8703", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to delete.", "type": { - "$id": "8699", + "$id": "8704", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116809,7 +116879,7 @@ ], "response": { "type": { - "$ref": "6109" + "$ref": "6114" } }, "isOverride": false, @@ -116818,26 +116888,26 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStore" }, { - "$id": "8700", + "$id": "8705", "kind": "basic", "name": "AddFileBatchToVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Create a vector store file batch.", "operation": { - "$id": "8701", + "$id": "8706", "name": "AddFileBatchToVectorStore", "resourceName": "VectorStores", "summary": "Create a vector store file batch.", "accessibility": "public", "parameters": [ { - "$id": "8702", + "$id": "8707", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2177" + "$ref": "2181" }, "isApiVersion": false, "optional": false, @@ -116848,13 +116918,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFileBatch.accept" }, { - "$id": "8703", + "$id": "8708", "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": "8704", + "$id": "8709", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116872,13 +116942,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFileBatch.vector_store_id" }, { - "$id": "8705", + "$id": "8710", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2179" + "$ref": "2183" }, "isApiVersion": false, "optional": false, @@ -116889,12 +116959,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFileBatch.contentType" }, { - "$id": "8706", + "$id": "8711", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6115" + "$ref": "6120" }, "isApiVersion": false, "contentTypes": [ @@ -116914,7 +116984,7 @@ 200 ], "bodyType": { - "$ref": "6120" + "$ref": "6125" }, "headers": [], "isErrorResponse": false, @@ -116937,12 +117007,12 @@ }, "parameters": [ { - "$id": "8707", + "$id": "8712", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2181" + "$ref": "2185" }, "location": "Header", "isApiVersion": false, @@ -116954,13 +117024,13 @@ "decorators": [] }, { - "$id": "8708", + "$id": "8713", "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": "8709", + "$id": "8714", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116976,12 +117046,12 @@ "decorators": [] }, { - "$id": "8710", + "$id": "8715", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6115" + "$ref": "6120" }, "location": "Body", "isApiVersion": false, @@ -116993,13 +117063,13 @@ "decorators": [] }, { - "$id": "8711", + "$id": "8716", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2179" + "$ref": "2183" }, "location": "Header", "isApiVersion": false, @@ -117013,7 +117083,7 @@ ], "response": { "type": { - "$ref": "6120" + "$ref": "6125" } }, "isOverride": false, @@ -117022,26 +117092,26 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFileBatch" }, { - "$id": "8712", + "$id": "8717", "kind": "basic", "name": "getVectorStoreFileBatch", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a vector store file batch.", "operation": { - "$id": "8713", + "$id": "8718", "name": "getVectorStoreFileBatch", "resourceName": "VectorStores", "summary": "Retrieves a vector store file batch.", "accessibility": "public", "parameters": [ { - "$id": "8714", + "$id": "8719", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2183" + "$ref": "2187" }, "isApiVersion": false, "optional": false, @@ -117052,13 +117122,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFileBatch.accept" }, { - "$id": "8715", + "$id": "8720", "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": "8716", + "$id": "8721", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117076,13 +117146,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFileBatch.vector_store_id" }, { - "$id": "8717", + "$id": "8722", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch being retrieved.", "type": { - "$id": "8718", + "$id": "8723", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117106,7 +117176,7 @@ 200 ], "bodyType": { - "$ref": "6120" + "$ref": "6125" }, "headers": [], "isErrorResponse": false, @@ -117126,12 +117196,12 @@ }, "parameters": [ { - "$id": "8719", + "$id": "8724", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2185" + "$ref": "2189" }, "location": "Header", "isApiVersion": false, @@ -117143,13 +117213,13 @@ "decorators": [] }, { - "$id": "8720", + "$id": "8725", "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": "8721", + "$id": "8726", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117165,13 +117235,13 @@ "decorators": [] }, { - "$id": "8722", + "$id": "8727", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch being retrieved.", "type": { - "$id": "8723", + "$id": "8728", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117189,7 +117259,7 @@ ], "response": { "type": { - "$ref": "6120" + "$ref": "6125" } }, "isOverride": false, @@ -117198,26 +117268,26 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFileBatch" }, { - "$id": "8724", + "$id": "8729", "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": "8725", + "$id": "8730", "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": "8726", + "$id": "8731", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2187" + "$ref": "2191" }, "isApiVersion": false, "optional": false, @@ -117228,13 +117298,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.cancelVectorStoreFileBatch.accept" }, { - "$id": "8727", + "$id": "8732", "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": "8728", + "$id": "8733", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117252,13 +117322,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.cancelVectorStoreFileBatch.vector_store_id" }, { - "$id": "8729", + "$id": "8734", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch to cancel.", "type": { - "$id": "8730", + "$id": "8735", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117282,7 +117352,7 @@ 200 ], "bodyType": { - "$ref": "6120" + "$ref": "6125" }, "headers": [], "isErrorResponse": false, @@ -117302,12 +117372,12 @@ }, "parameters": [ { - "$id": "8731", + "$id": "8736", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2189" + "$ref": "2193" }, "location": "Header", "isApiVersion": false, @@ -117319,13 +117389,13 @@ "decorators": [] }, { - "$id": "8732", + "$id": "8737", "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": "8733", + "$id": "8738", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117341,13 +117411,13 @@ "decorators": [] }, { - "$id": "8734", + "$id": "8739", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch to cancel.", "type": { - "$id": "8735", + "$id": "8740", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117365,7 +117435,7 @@ ], "response": { "type": { - "$ref": "6120" + "$ref": "6125" } }, "isOverride": false, @@ -117374,26 +117444,26 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.cancelVectorStoreFileBatch" }, { - "$id": "8736", + "$id": "8741", "kind": "paging", "name": "GetVectorStoreFilesInBatch", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of vector store files in a batch.", "operation": { - "$id": "8737", + "$id": "8742", "name": "GetVectorStoreFilesInBatch", "resourceName": "VectorStores", "summary": "Returns a list of vector store files in a batch.", "accessibility": "public", "parameters": [ { - "$id": "8738", + "$id": "8743", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2191" + "$ref": "2195" }, "isApiVersion": false, "optional": false, @@ -117404,13 +117474,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listFilesInVectorStoreBatch.accept" }, { - "$id": "8739", + "$id": "8744", "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": "8740", + "$id": "8745", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117428,13 +117498,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listFilesInVectorStoreBatch.vector_store_id" }, { - "$id": "8741", + "$id": "8746", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch that the files belong to.", "type": { - "$id": "8742", + "$id": "8747", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117452,13 +117522,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listFilesInVectorStoreBatch.batch_id" }, { - "$id": "8743", + "$id": "8748", "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": "8744", + "$id": "8749", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -117473,13 +117543,13 @@ "readOnly": false }, { - "$id": "8745", + "$id": "8750", "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": "1359" + "$ref": "1363" }, "isApiVersion": false, "explode": false, @@ -117490,13 +117560,13 @@ "readOnly": false }, { - "$id": "8746", + "$id": "8751", "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": "8747", + "$id": "8752", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117511,13 +117581,13 @@ "readOnly": false }, { - "$id": "8748", + "$id": "8753", "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": "8749", + "$id": "8754", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117532,13 +117602,13 @@ "readOnly": false }, { - "$id": "8750", + "$id": "8755", "kind": "query", "name": "filter", "serializedName": "filter", "doc": "Filter by file status. One of `in_progress`, `completed`, `failed`, `cancelled`.", "type": { - "$ref": "1367" + "$ref": "1371" }, "isApiVersion": false, "explode": false, @@ -117555,7 +117625,7 @@ 200 ], "bodyType": { - "$ref": "6142" + "$ref": "6147" }, "headers": [], "isErrorResponse": false, @@ -117575,12 +117645,12 @@ }, "parameters": [ { - "$id": "8751", + "$id": "8756", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2193" + "$ref": "2197" }, "location": "Header", "isApiVersion": false, @@ -117592,13 +117662,13 @@ "decorators": [] }, { - "$id": "8752", + "$id": "8757", "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": "8753", + "$id": "8758", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117614,13 +117684,13 @@ "decorators": [] }, { - "$id": "8754", + "$id": "8759", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch that the files belong to.", "type": { - "$id": "8755", + "$id": "8760", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117636,13 +117706,13 @@ "decorators": [] }, { - "$id": "8756", + "$id": "8761", "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": "8757", + "$id": "8762", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -117658,13 +117728,13 @@ "decorators": [] }, { - "$id": "8758", + "$id": "8763", "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": "1359" + "$ref": "1363" }, "location": "Query", "isApiVersion": false, @@ -117676,13 +117746,13 @@ "decorators": [] }, { - "$id": "8759", + "$id": "8764", "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": "8760", + "$id": "8765", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117698,13 +117768,13 @@ "decorators": [] }, { - "$id": "8761", + "$id": "8766", "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": "8762", + "$id": "8767", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117720,13 +117790,13 @@ "decorators": [] }, { - "$id": "8763", + "$id": "8768", "kind": "method", "name": "filter", "serializedName": "filter", "doc": "Filter by file status. One of `in_progress`, `completed`, `failed`, `cancelled`.", "type": { - "$ref": "1367" + "$ref": "1371" }, "location": "Query", "isApiVersion": false, @@ -117740,7 +117810,7 @@ ], "response": { "type": { - "$ref": "6145" + "$ref": "6150" }, "resultSegments": [ "data" @@ -117756,7 +117826,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8746" + "$ref": "8751" }, "responseSegments": [ "last_id" @@ -117766,26 +117836,26 @@ } }, { - "$id": "8764", + "$id": "8769", "kind": "paging", "name": "listVectorStoreFiles", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of vector store files.", "operation": { - "$id": "8765", + "$id": "8770", "name": "listVectorStoreFiles", "resourceName": "VectorStores", "summary": "Returns a list of vector store files.", "accessibility": "public", "parameters": [ { - "$id": "8766", + "$id": "8771", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2195" + "$ref": "2199" }, "isApiVersion": false, "optional": false, @@ -117796,13 +117866,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listVectorStoreFiles.accept" }, { - "$id": "8767", + "$id": "8772", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the files belong to.", "type": { - "$id": "8768", + "$id": "8773", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117820,13 +117890,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listVectorStoreFiles.vector_store_id" }, { - "$id": "8769", + "$id": "8774", "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": "8770", + "$id": "8775", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -117841,13 +117911,13 @@ "readOnly": false }, { - "$id": "8771", + "$id": "8776", "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": "1359" + "$ref": "1363" }, "isApiVersion": false, "explode": false, @@ -117858,13 +117928,13 @@ "readOnly": false }, { - "$id": "8772", + "$id": "8777", "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": "8773", + "$id": "8778", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117879,13 +117949,13 @@ "readOnly": false }, { - "$id": "8774", + "$id": "8779", "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": "8775", + "$id": "8780", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117900,13 +117970,13 @@ "readOnly": false }, { - "$id": "8776", + "$id": "8781", "kind": "query", "name": "filter", "serializedName": "filter", "doc": "Filter by file status. One of `in_progress`, `completed`, `failed`, `cancelled`.", "type": { - "$ref": "1367" + "$ref": "1371" }, "isApiVersion": false, "explode": false, @@ -117923,7 +117993,7 @@ 200 ], "bodyType": { - "$ref": "6142" + "$ref": "6147" }, "headers": [], "isErrorResponse": false, @@ -117943,12 +118013,12 @@ }, "parameters": [ { - "$id": "8777", + "$id": "8782", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2197" + "$ref": "2201" }, "location": "Header", "isApiVersion": false, @@ -117960,13 +118030,13 @@ "decorators": [] }, { - "$id": "8778", + "$id": "8783", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the files belong to.", "type": { - "$id": "8779", + "$id": "8784", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117982,13 +118052,13 @@ "decorators": [] }, { - "$id": "8780", + "$id": "8785", "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": "8781", + "$id": "8786", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -118004,13 +118074,13 @@ "decorators": [] }, { - "$id": "8782", + "$id": "8787", "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": "1359" + "$ref": "1363" }, "location": "Query", "isApiVersion": false, @@ -118022,13 +118092,13 @@ "decorators": [] }, { - "$id": "8783", + "$id": "8788", "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": "8784", + "$id": "8789", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118044,13 +118114,13 @@ "decorators": [] }, { - "$id": "8785", + "$id": "8790", "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": "8786", + "$id": "8791", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118066,13 +118136,13 @@ "decorators": [] }, { - "$id": "8787", + "$id": "8792", "kind": "method", "name": "filter", "serializedName": "filter", "doc": "Filter by file status. One of `in_progress`, `completed`, `failed`, `cancelled`.", "type": { - "$ref": "1367" + "$ref": "1371" }, "location": "Query", "isApiVersion": false, @@ -118086,7 +118156,7 @@ ], "response": { "type": { - "$ref": "6145" + "$ref": "6150" }, "resultSegments": [ "data" @@ -118102,7 +118172,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8772" + "$ref": "8777" }, "responseSegments": [ "last_id" @@ -118112,26 +118182,26 @@ } }, { - "$id": "8788", + "$id": "8793", "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": "8789", + "$id": "8794", "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": "8790", + "$id": "8795", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2199" + "$ref": "2203" }, "isApiVersion": false, "optional": false, @@ -118142,13 +118212,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFile.accept" }, { - "$id": "8791", + "$id": "8796", "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": "8792", + "$id": "8797", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118166,13 +118236,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFile.vector_store_id" }, { - "$id": "8793", + "$id": "8798", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2201" + "$ref": "2205" }, "isApiVersion": false, "optional": false, @@ -118183,12 +118253,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFile.contentType" }, { - "$id": "8794", + "$id": "8799", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6180" + "$ref": "6185" }, "isApiVersion": false, "contentTypes": [ @@ -118208,7 +118278,7 @@ 200 ], "bodyType": { - "$ref": "6146" + "$ref": "6151" }, "headers": [], "isErrorResponse": false, @@ -118231,12 +118301,12 @@ }, "parameters": [ { - "$id": "8795", + "$id": "8800", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2203" + "$ref": "2207" }, "location": "Header", "isApiVersion": false, @@ -118248,13 +118318,13 @@ "decorators": [] }, { - "$id": "8796", + "$id": "8801", "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": "8797", + "$id": "8802", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118270,12 +118340,12 @@ "decorators": [] }, { - "$id": "8798", + "$id": "8803", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6180" + "$ref": "6185" }, "location": "Body", "isApiVersion": false, @@ -118287,13 +118357,13 @@ "decorators": [] }, { - "$id": "8799", + "$id": "8804", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2201" + "$ref": "2205" }, "location": "Header", "isApiVersion": false, @@ -118307,7 +118377,7 @@ ], "response": { "type": { - "$ref": "6146" + "$ref": "6151" } }, "isOverride": false, @@ -118316,26 +118386,26 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFile" }, { - "$id": "8800", + "$id": "8805", "kind": "basic", "name": "getVectorStoreFile", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a vector store file.", "operation": { - "$id": "8801", + "$id": "8806", "name": "getVectorStoreFile", "resourceName": "VectorStores", "summary": "Retrieves a vector store file.", "accessibility": "public", "parameters": [ { - "$id": "8802", + "$id": "8807", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2205" + "$ref": "2209" }, "isApiVersion": false, "optional": false, @@ -118346,13 +118416,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFile.accept" }, { - "$id": "8803", + "$id": "8808", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "8804", + "$id": "8809", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118370,13 +118440,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFile.vector_store_id" }, { - "$id": "8805", + "$id": "8810", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file being retrieved.", "type": { - "$id": "8806", + "$id": "8811", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118400,7 +118470,7 @@ 200 ], "bodyType": { - "$ref": "6146" + "$ref": "6151" }, "headers": [], "isErrorResponse": false, @@ -118420,12 +118490,12 @@ }, "parameters": [ { - "$id": "8807", + "$id": "8812", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2207" + "$ref": "2211" }, "location": "Header", "isApiVersion": false, @@ -118437,13 +118507,13 @@ "decorators": [] }, { - "$id": "8808", + "$id": "8813", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "8809", + "$id": "8814", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118459,13 +118529,13 @@ "decorators": [] }, { - "$id": "8810", + "$id": "8815", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file being retrieved.", "type": { - "$id": "8811", + "$id": "8816", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118483,7 +118553,7 @@ ], "response": { "type": { - "$ref": "6146" + "$ref": "6151" } }, "isOverride": false, @@ -118492,26 +118562,26 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFile" }, { - "$id": "8812", + "$id": "8817", "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": "8813", + "$id": "8818", "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": "8814", + "$id": "8819", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2209" + "$ref": "2213" }, "isApiVersion": false, "optional": false, @@ -118522,13 +118592,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStoreFile.accept" }, { - "$id": "8815", + "$id": "8820", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "8816", + "$id": "8821", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118546,13 +118616,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStoreFile.vector_store_id" }, { - "$id": "8817", + "$id": "8822", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to delete.", "type": { - "$id": "8818", + "$id": "8823", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118576,7 +118646,7 @@ 200 ], "bodyType": { - "$ref": "6186" + "$ref": "6191" }, "headers": [], "isErrorResponse": false, @@ -118596,12 +118666,12 @@ }, "parameters": [ { - "$id": "8819", + "$id": "8824", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2211" + "$ref": "2215" }, "location": "Header", "isApiVersion": false, @@ -118613,13 +118683,13 @@ "decorators": [] }, { - "$id": "8820", + "$id": "8825", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "8821", + "$id": "8826", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118635,13 +118705,13 @@ "decorators": [] }, { - "$id": "8822", + "$id": "8827", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to delete.", "type": { - "$id": "8823", + "$id": "8828", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118659,7 +118729,7 @@ ], "response": { "type": { - "$ref": "6186" + "$ref": "6191" } }, "isOverride": false, @@ -118668,27 +118738,27 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStoreFile" }, { - "$id": "8824", + "$id": "8829", "kind": "basic", "name": "updateVectorStoreFileAttributes", "accessibility": "public", "apiVersions": [], "summary": "Update the attributes of a vector store file.", "operation": { - "$id": "8825", + "$id": "8830", "name": "updateVectorStoreFileAttributes", "resourceName": "VectorStores", "summary": "Update the attributes of a vector store file.", "accessibility": "public", "parameters": [ { - "$id": "8826", + "$id": "8831", "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": "8827", + "$id": "8832", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118706,13 +118776,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes.vector_store_id" }, { - "$id": "8828", + "$id": "8833", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to update attributes for.", "type": { - "$id": "8829", + "$id": "8834", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118730,13 +118800,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes.file_id" }, { - "$id": "8830", + "$id": "8835", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2213" + "$ref": "2217" }, "isApiVersion": false, "optional": false, @@ -118747,12 +118817,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes.contentType" }, { - "$id": "8831", + "$id": "8836", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2215" + "$ref": "2219" }, "isApiVersion": false, "optional": false, @@ -118763,12 +118833,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes.accept" }, { - "$id": "8832", + "$id": "8837", "kind": "body", "name": "updateVectorStoreFileAttributesRequest", "serializedName": "updateVectorStoreFileAttributesRequest", "type": { - "$ref": "6192" + "$ref": "6197" }, "isApiVersion": false, "contentTypes": [ @@ -118788,7 +118858,7 @@ 200 ], "bodyType": { - "$ref": "6146" + "$ref": "6151" }, "headers": [], "isErrorResponse": false, @@ -118811,13 +118881,13 @@ }, "parameters": [ { - "$id": "8833", + "$id": "8838", "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": "8834", + "$id": "8839", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118833,13 +118903,13 @@ "decorators": [] }, { - "$id": "8835", + "$id": "8840", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to update attributes for.", "type": { - "$id": "8836", + "$id": "8841", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118855,12 +118925,12 @@ "decorators": [] }, { - "$id": "8837", + "$id": "8842", "kind": "method", "name": "attributes", "serializedName": "attributes", "type": { - "$ref": "6194" + "$ref": "6199" }, "location": "Body", "isApiVersion": false, @@ -118872,13 +118942,13 @@ "decorators": [] }, { - "$id": "8838", + "$id": "8843", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2213" + "$ref": "2217" }, "location": "Header", "isApiVersion": false, @@ -118890,12 +118960,12 @@ "decorators": [] }, { - "$id": "8839", + "$id": "8844", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2215" + "$ref": "2219" }, "location": "Header", "isApiVersion": false, @@ -118909,7 +118979,7 @@ ], "response": { "type": { - "$ref": "6146" + "$ref": "6151" } }, "isOverride": false, @@ -118918,27 +118988,27 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes" }, { - "$id": "8840", + "$id": "8845", "kind": "basic", "name": "retrieveVectorStoreFileContent", "accessibility": "public", "apiVersions": [], "summary": "Retrieves the content of a vector store file.", "operation": { - "$id": "8841", + "$id": "8846", "name": "retrieveVectorStoreFileContent", "resourceName": "VectorStores", "summary": "Retrieves the content of a vector store file.", "accessibility": "public", "parameters": [ { - "$id": "8842", + "$id": "8847", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "8843", + "$id": "8848", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118956,13 +119026,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.retrieveVectorStoreFileContent.vector_store_id" }, { - "$id": "8844", + "$id": "8849", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file with content being retrieved.", "type": { - "$id": "8845", + "$id": "8850", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118980,12 +119050,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.retrieveVectorStoreFileContent.file_id" }, { - "$id": "8846", + "$id": "8851", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2217" + "$ref": "2221" }, "isApiVersion": false, "optional": false, @@ -119002,7 +119072,7 @@ 200 ], "bodyType": { - "$ref": "6195" + "$ref": "6200" }, "headers": [], "isErrorResponse": false, @@ -119022,13 +119092,13 @@ }, "parameters": [ { - "$id": "8847", + "$id": "8852", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "8848", + "$id": "8853", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119044,13 +119114,13 @@ "decorators": [] }, { - "$id": "8849", + "$id": "8854", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file with content being retrieved.", "type": { - "$id": "8850", + "$id": "8855", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119066,12 +119136,12 @@ "decorators": [] }, { - "$id": "8851", + "$id": "8856", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2217" + "$ref": "2221" }, "location": "Header", "isApiVersion": false, @@ -119085,7 +119155,7 @@ ], "response": { "type": { - "$ref": "6195" + "$ref": "6200" } }, "isOverride": false, @@ -119094,27 +119164,27 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.retrieveVectorStoreFileContent" }, { - "$id": "8852", + "$id": "8857", "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": "8853", + "$id": "8858", "name": "searchVectorStore", "resourceName": "VectorStores", "summary": "Searches a vector store for relevant chunks based on a query and file attributes filter.", "accessibility": "public", "parameters": [ { - "$id": "8854", + "$id": "8859", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to search.", "type": { - "$id": "8855", + "$id": "8860", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119132,13 +119202,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.searchVectorStore.vector_store_id" }, { - "$id": "8856", + "$id": "8861", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2219" + "$ref": "2223" }, "isApiVersion": false, "optional": false, @@ -119149,12 +119219,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.searchVectorStore.contentType" }, { - "$id": "8857", + "$id": "8862", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2221" + "$ref": "2225" }, "isApiVersion": false, "optional": false, @@ -119165,12 +119235,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.searchVectorStore.accept" }, { - "$id": "8858", + "$id": "8863", "kind": "body", "name": "vectorStoreSearchRequest", "serializedName": "vectorStoreSearchRequest", "type": { - "$ref": "6213" + "$ref": "6218" }, "isApiVersion": false, "contentTypes": [ @@ -119190,7 +119260,7 @@ 200 ], "bodyType": { - "$ref": "6224" + "$ref": "6229" }, "headers": [], "isErrorResponse": false, @@ -119213,13 +119283,13 @@ }, "parameters": [ { - "$id": "8859", + "$id": "8864", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to search.", "type": { - "$id": "8860", + "$id": "8865", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119235,13 +119305,13 @@ "decorators": [] }, { - "$id": "8861", + "$id": "8866", "kind": "method", "name": "query", "serializedName": "query", "doc": "A query string for a search", "type": { - "$ref": "6215" + "$ref": "6220" }, "location": "Body", "isApiVersion": false, @@ -119253,13 +119323,13 @@ "decorators": [] }, { - "$id": "8862", + "$id": "8867", "kind": "method", "name": "rewrite_query", "serializedName": "rewrite_query", "doc": "Whether to rewrite the natural language query for vector search.", "type": { - "$id": "8863", + "$id": "8868", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -119275,13 +119345,13 @@ "decorators": [] }, { - "$id": "8864", + "$id": "8869", "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": "8865", + "$id": "8870", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -119297,13 +119367,13 @@ "decorators": [] }, { - "$id": "8866", + "$id": "8871", "kind": "method", "name": "filters", "serializedName": "filters", "doc": "A filter to apply based on file attributes.", "type": { - "$ref": "6222" + "$ref": "6227" }, "location": "Body", "isApiVersion": false, @@ -119315,13 +119385,13 @@ "decorators": [] }, { - "$id": "8867", + "$id": "8872", "kind": "method", "name": "ranking_options", "serializedName": "ranking_options", "doc": "Ranking options for search.", "type": { - "$ref": "6209" + "$ref": "6214" }, "location": "Body", "isApiVersion": false, @@ -119333,13 +119403,13 @@ "decorators": [] }, { - "$id": "8868", + "$id": "8873", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2219" + "$ref": "2223" }, "location": "Header", "isApiVersion": false, @@ -119351,12 +119421,12 @@ "decorators": [] }, { - "$id": "8869", + "$id": "8874", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2221" + "$ref": "2225" }, "location": "Header", "isApiVersion": false, @@ -119370,7 +119440,7 @@ ], "response": { "type": { - "$ref": "6224" + "$ref": "6229" } }, "isOverride": false, @@ -119381,13 +119451,13 @@ ], "parameters": [ { - "$id": "8870", + "$id": "8875", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8871", + "$id": "8876", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -119398,7 +119468,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8872", + "$id": "8877", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -119415,36 +119485,36 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores", "apiVersions": [], "parent": { - "$ref": "7513" + "$ref": "7518" } }, { - "$id": "8873", + "$id": "8878", "kind": "client", "name": "Completions", "namespace": "OpenAI", "methods": [ { - "$id": "8874", + "$id": "8879", "kind": "basic", "name": "createCompletion", "accessibility": "public", "apiVersions": [], "summary": "Creates a completion for the provided prompt and parameters.", "operation": { - "$id": "8875", + "$id": "8880", "name": "createCompletion", "resourceName": "Completions", "summary": "Creates a completion for the provided prompt and parameters.", "accessibility": "public", "parameters": [ { - "$id": "8876", + "$id": "8881", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2223" + "$ref": "2227" }, "isApiVersion": false, "optional": false, @@ -119455,13 +119525,13 @@ "crossLanguageDefinitionId": "OpenAI.Completions.createCompletion.accept" }, { - "$id": "8877", + "$id": "8882", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2225" + "$ref": "2229" }, "isApiVersion": false, "optional": false, @@ -119472,12 +119542,12 @@ "crossLanguageDefinitionId": "OpenAI.Completions.createCompletion.contentType" }, { - "$id": "8878", + "$id": "8883", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6249" + "$ref": "6254" }, "isApiVersion": false, "contentTypes": [ @@ -119497,7 +119567,7 @@ 200 ], "bodyType": { - "$ref": "6299" + "$ref": "6304" }, "headers": [], "isErrorResponse": false, @@ -119520,12 +119590,12 @@ }, "parameters": [ { - "$id": "8879", + "$id": "8884", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2227" + "$ref": "2231" }, "location": "Header", "isApiVersion": false, @@ -119537,12 +119607,12 @@ "decorators": [] }, { - "$id": "8880", + "$id": "8885", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6249" + "$ref": "6254" }, "location": "Body", "isApiVersion": false, @@ -119554,13 +119624,13 @@ "decorators": [] }, { - "$id": "8881", + "$id": "8886", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2225" + "$ref": "2229" }, "location": "Header", "isApiVersion": false, @@ -119574,7 +119644,7 @@ ], "response": { "type": { - "$ref": "6299" + "$ref": "6304" } }, "isOverride": false, @@ -119585,13 +119655,13 @@ ], "parameters": [ { - "$id": "8882", + "$id": "8887", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8883", + "$id": "8888", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -119602,7 +119672,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8884", + "$id": "8889", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -119619,36 +119689,36 @@ "crossLanguageDefinitionId": "OpenAI.Completions", "apiVersions": [], "parent": { - "$ref": "7513" + "$ref": "7518" } }, { - "$id": "8885", + "$id": "8890", "kind": "client", "name": "Models", "namespace": "OpenAI", "methods": [ { - "$id": "8886", + "$id": "8891", "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": "8887", + "$id": "8892", "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": "8888", + "$id": "8893", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2229" + "$ref": "2233" }, "isApiVersion": false, "optional": false, @@ -119665,7 +119735,7 @@ 200 ], "bodyType": { - "$ref": "6330" + "$ref": "6335" }, "headers": [], "isErrorResponse": false, @@ -119685,12 +119755,12 @@ }, "parameters": [ { - "$id": "8889", + "$id": "8894", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2231" + "$ref": "2235" }, "location": "Header", "isApiVersion": false, @@ -119704,7 +119774,7 @@ ], "response": { "type": { - "$ref": "6330" + "$ref": "6335" } }, "isOverride": false, @@ -119713,26 +119783,26 @@ "crossLanguageDefinitionId": "OpenAI.Models.listModels" }, { - "$id": "8890", + "$id": "8895", "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": "8891", + "$id": "8896", "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": "8892", + "$id": "8897", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2233" + "$ref": "2237" }, "isApiVersion": false, "optional": false, @@ -119743,13 +119813,13 @@ "crossLanguageDefinitionId": "OpenAI.Models.retrieveModel.accept" }, { - "$id": "8893", + "$id": "8898", "kind": "path", "name": "model", "serializedName": "model", "doc": "The ID of the model to use for this request.", "type": { - "$id": "8894", + "$id": "8899", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119773,7 +119843,7 @@ 200 ], "bodyType": { - "$ref": "6334" + "$ref": "6339" }, "headers": [], "isErrorResponse": false, @@ -119793,12 +119863,12 @@ }, "parameters": [ { - "$id": "8895", + "$id": "8900", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2235" + "$ref": "2239" }, "location": "Header", "isApiVersion": false, @@ -119810,13 +119880,13 @@ "decorators": [] }, { - "$id": "8896", + "$id": "8901", "kind": "method", "name": "model", "serializedName": "model", "doc": "The ID of the model to use for this request.", "type": { - "$id": "8897", + "$id": "8902", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119834,7 +119904,7 @@ ], "response": { "type": { - "$ref": "6334" + "$ref": "6339" } }, "isOverride": false, @@ -119843,26 +119913,26 @@ "crossLanguageDefinitionId": "OpenAI.Models.retrieveModel" }, { - "$id": "8898", + "$id": "8903", "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": "8899", + "$id": "8904", "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": "8900", + "$id": "8905", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2237" + "$ref": "2241" }, "isApiVersion": false, "optional": false, @@ -119873,13 +119943,13 @@ "crossLanguageDefinitionId": "OpenAI.Models.deleteModel.accept" }, { - "$id": "8901", + "$id": "8906", "kind": "path", "name": "model", "serializedName": "model", "doc": "The model to delete", "type": { - "$id": "8902", + "$id": "8907", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119903,7 +119973,7 @@ 200 ], "bodyType": { - "$ref": "6343" + "$ref": "6348" }, "headers": [], "isErrorResponse": false, @@ -119923,12 +119993,12 @@ }, "parameters": [ { - "$id": "8903", + "$id": "8908", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2239" + "$ref": "2243" }, "location": "Header", "isApiVersion": false, @@ -119940,13 +120010,13 @@ "decorators": [] }, { - "$id": "8904", + "$id": "8909", "kind": "method", "name": "model", "serializedName": "model", "doc": "The model to delete", "type": { - "$id": "8905", + "$id": "8910", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119964,7 +120034,7 @@ ], "response": { "type": { - "$ref": "6343" + "$ref": "6348" } }, "isOverride": false, @@ -119975,13 +120045,13 @@ ], "parameters": [ { - "$id": "8906", + "$id": "8911", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8907", + "$id": "8912", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -119992,7 +120062,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8908", + "$id": "8913", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -120009,36 +120079,36 @@ "crossLanguageDefinitionId": "OpenAI.Models", "apiVersions": [], "parent": { - "$ref": "7513" + "$ref": "7518" } }, { - "$id": "8909", + "$id": "8914", "kind": "client", "name": "Realtime", "namespace": "OpenAI", "methods": [ { - "$id": "8910", + "$id": "8915", "kind": "basic", "name": "startRealtimeSession", "accessibility": "public", "apiVersions": [], "summary": "Starts a real-time session for conversation or transcription.", "operation": { - "$id": "8911", + "$id": "8916", "name": "startRealtimeSession", "resourceName": "Realtime", "summary": "Starts a real-time session for conversation or transcription.", "accessibility": "public", "parameters": [ { - "$id": "8912", + "$id": "8917", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2241" + "$ref": "2245" }, "isApiVersion": false, "optional": false, @@ -120049,13 +120119,13 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.startRealtimeSession.openAIBeta" }, { - "$id": "8913", + "$id": "8918", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2243" + "$ref": "2247" }, "isApiVersion": false, "optional": false, @@ -120066,12 +120136,12 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.startRealtimeSession.contentType" }, { - "$id": "8914", + "$id": "8919", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2245" + "$ref": "2249" }, "isApiVersion": false, "optional": false, @@ -120082,16 +120152,16 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.startRealtimeSession.accept" }, { - "$id": "8915", + "$id": "8920", "kind": "body", "name": "requestMessages", "serializedName": "requestMessages", "type": { - "$id": "8916", + "$id": "8921", "kind": "array", "name": "ArrayRealtimeClientEvent", "valueType": { - "$ref": "6349" + "$ref": "6354" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -120114,11 +120184,11 @@ 200 ], "bodyType": { - "$id": "8917", + "$id": "8922", "kind": "array", "name": "ArrayRealtimeServerEvent", "valueType": { - "$ref": "6579" + "$ref": "6584" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -120144,12 +120214,12 @@ }, "parameters": [ { - "$id": "8918", + "$id": "8923", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", "type": { - "$ref": "2247" + "$ref": "2251" }, "location": "Header", "isApiVersion": false, @@ -120161,12 +120231,12 @@ "decorators": [] }, { - "$id": "8919", + "$id": "8924", "kind": "method", "name": "requestMessages", "serializedName": "requestMessages", "type": { - "$ref": "8916" + "$ref": "8921" }, "location": "Body", "isApiVersion": false, @@ -120178,13 +120248,13 @@ "decorators": [] }, { - "$id": "8920", + "$id": "8925", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2243" + "$ref": "2247" }, "location": "Header", "isApiVersion": false, @@ -120196,12 +120266,12 @@ "decorators": [] }, { - "$id": "8921", + "$id": "8926", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2245" + "$ref": "2249" }, "location": "Header", "isApiVersion": false, @@ -120215,7 +120285,7 @@ ], "response": { "type": { - "$ref": "8917" + "$ref": "8922" } }, "isOverride": false, @@ -120224,27 +120294,27 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.startRealtimeSession" }, { - "$id": "8922", + "$id": "8927", "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": "8923", + "$id": "8928", "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": "8924", + "$id": "8929", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2249" + "$ref": "2253" }, "isApiVersion": false, "optional": false, @@ -120255,12 +120325,12 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralToken.contentType" }, { - "$id": "8925", + "$id": "8930", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2251" + "$ref": "2255" }, "isApiVersion": false, "optional": false, @@ -120271,12 +120341,12 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralToken.accept" }, { - "$id": "8926", + "$id": "8931", "kind": "body", "name": "request", "serializedName": "request", "type": { - "$ref": "6993" + "$ref": "6998" }, "isApiVersion": false, "contentTypes": [ @@ -120296,7 +120366,7 @@ 200 ], "bodyType": { - "$ref": "7053" + "$ref": "7058" }, "headers": [], "isErrorResponse": false, @@ -120319,12 +120389,12 @@ }, "parameters": [ { - "$id": "8927", + "$id": "8932", "kind": "method", "name": "request", "serializedName": "request", "type": { - "$ref": "6993" + "$ref": "6998" }, "location": "Body", "isApiVersion": false, @@ -120336,13 +120406,13 @@ "decorators": [] }, { - "$id": "8928", + "$id": "8933", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2249" + "$ref": "2253" }, "location": "Header", "isApiVersion": false, @@ -120354,12 +120424,12 @@ "decorators": [] }, { - "$id": "8929", + "$id": "8934", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2251" + "$ref": "2255" }, "location": "Header", "isApiVersion": false, @@ -120373,7 +120443,7 @@ ], "response": { "type": { - "$ref": "7053" + "$ref": "7058" } }, "isOverride": false, @@ -120382,27 +120452,27 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralToken" }, { - "$id": "8930", + "$id": "8935", "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": "8931", + "$id": "8936", "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": "8932", + "$id": "8937", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2253" + "$ref": "2257" }, "isApiVersion": false, "optional": false, @@ -120413,12 +120483,12 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralTranscriptionToken.contentType" }, { - "$id": "8933", + "$id": "8938", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2255" + "$ref": "2259" }, "isApiVersion": false, "optional": false, @@ -120429,12 +120499,12 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralTranscriptionToken.accept" }, { - "$id": "8934", + "$id": "8939", "kind": "body", "name": "request", "serializedName": "request", "type": { - "$ref": "6542" + "$ref": "6547" }, "isApiVersion": false, "contentTypes": [ @@ -120454,7 +120524,7 @@ 200 ], "bodyType": { - "$ref": "6964" + "$ref": "6969" }, "headers": [], "isErrorResponse": false, @@ -120477,12 +120547,12 @@ }, "parameters": [ { - "$id": "8935", + "$id": "8940", "kind": "method", "name": "request", "serializedName": "request", "type": { - "$ref": "6542" + "$ref": "6547" }, "location": "Body", "isApiVersion": false, @@ -120494,13 +120564,13 @@ "decorators": [] }, { - "$id": "8936", + "$id": "8941", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2253" + "$ref": "2257" }, "location": "Header", "isApiVersion": false, @@ -120512,12 +120582,12 @@ "decorators": [] }, { - "$id": "8937", + "$id": "8942", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2255" + "$ref": "2259" }, "location": "Header", "isApiVersion": false, @@ -120531,7 +120601,7 @@ ], "response": { "type": { - "$ref": "6964" + "$ref": "6969" } }, "isOverride": false, @@ -120542,13 +120612,13 @@ ], "parameters": [ { - "$id": "8938", + "$id": "8943", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8939", + "$id": "8944", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -120559,7 +120629,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8940", + "$id": "8945", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -120576,36 +120646,36 @@ "crossLanguageDefinitionId": "OpenAI.Realtime", "apiVersions": [], "parent": { - "$ref": "7513" + "$ref": "7518" } }, { - "$id": "8941", + "$id": "8946", "kind": "client", "name": "Uploads", "namespace": "OpenAI", "methods": [ { - "$id": "8942", + "$id": "8947", "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": "8943", + "$id": "8948", "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": "8944", + "$id": "8949", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2257" + "$ref": "2261" }, "isApiVersion": false, "optional": false, @@ -120616,13 +120686,13 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.createUpload.accept" }, { - "$id": "8945", + "$id": "8950", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2259" + "$ref": "2263" }, "isApiVersion": false, "optional": false, @@ -120633,12 +120703,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.createUpload.contentType" }, { - "$id": "8946", + "$id": "8951", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7100" + "$ref": "7105" }, "isApiVersion": false, "contentTypes": [ @@ -120658,7 +120728,7 @@ 200 ], "bodyType": { - "$ref": "7108" + "$ref": "7113" }, "headers": [], "isErrorResponse": false, @@ -120681,12 +120751,12 @@ }, "parameters": [ { - "$id": "8947", + "$id": "8952", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2261" + "$ref": "2265" }, "location": "Header", "isApiVersion": false, @@ -120698,12 +120768,12 @@ "decorators": [] }, { - "$id": "8948", + "$id": "8953", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7100" + "$ref": "7105" }, "location": "Body", "isApiVersion": false, @@ -120715,13 +120785,13 @@ "decorators": [] }, { - "$id": "8949", + "$id": "8954", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2259" + "$ref": "2263" }, "location": "Header", "isApiVersion": false, @@ -120735,7 +120805,7 @@ ], "response": { "type": { - "$ref": "7108" + "$ref": "7113" } }, "isOverride": false, @@ -120744,26 +120814,26 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.createUpload" }, { - "$id": "8950", + "$id": "8955", "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": "8951", + "$id": "8956", "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": "8952", + "$id": "8957", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2263" + "$ref": "2267" }, "isApiVersion": false, "optional": false, @@ -120774,12 +120844,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.addUploadPart.accept" }, { - "$id": "8953", + "$id": "8958", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "2265" + "$ref": "2269" }, "isApiVersion": false, "optional": false, @@ -120790,12 +120860,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.addUploadPart.contentType" }, { - "$id": "8954", + "$id": "8959", "kind": "path", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "8955", + "$id": "8960", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120813,12 +120883,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.addUploadPart.upload_id" }, { - "$id": "8956", + "$id": "8961", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7127" + "$ref": "7132" }, "isApiVersion": false, "contentTypes": [ @@ -120838,7 +120908,7 @@ 200 ], "bodyType": { - "$ref": "7130" + "$ref": "7135" }, "headers": [], "isErrorResponse": false, @@ -120861,12 +120931,12 @@ }, "parameters": [ { - "$id": "8957", + "$id": "8962", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2267" + "$ref": "2271" }, "location": "Header", "isApiVersion": false, @@ -120878,12 +120948,12 @@ "decorators": [] }, { - "$id": "8958", + "$id": "8963", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "type": { - "$ref": "2269" + "$ref": "2273" }, "location": "Header", "isApiVersion": false, @@ -120895,12 +120965,12 @@ "decorators": [] }, { - "$id": "8959", + "$id": "8964", "kind": "method", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "8960", + "$id": "8965", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120916,12 +120986,12 @@ "decorators": [] }, { - "$id": "8961", + "$id": "8966", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7127" + "$ref": "7132" }, "location": "Body", "isApiVersion": false, @@ -120935,7 +121005,7 @@ ], "response": { "type": { - "$ref": "7130" + "$ref": "7135" } }, "isOverride": false, @@ -120944,26 +121014,26 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.addUploadPart" }, { - "$id": "8962", + "$id": "8967", "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": "8963", + "$id": "8968", "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": "8964", + "$id": "8969", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2271" + "$ref": "2275" }, "isApiVersion": false, "optional": false, @@ -120974,12 +121044,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.completeUpload.accept" }, { - "$id": "8965", + "$id": "8970", "kind": "path", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "8966", + "$id": "8971", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120997,13 +121067,13 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.completeUpload.upload_id" }, { - "$id": "8967", + "$id": "8972", "kind": "header", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2273" + "$ref": "2277" }, "isApiVersion": false, "optional": false, @@ -121014,12 +121084,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.completeUpload.contentType" }, { - "$id": "8968", + "$id": "8973", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7139" + "$ref": "7144" }, "isApiVersion": false, "contentTypes": [ @@ -121039,7 +121109,7 @@ 200 ], "bodyType": { - "$ref": "7108" + "$ref": "7113" }, "headers": [], "isErrorResponse": false, @@ -121062,12 +121132,12 @@ }, "parameters": [ { - "$id": "8969", + "$id": "8974", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2275" + "$ref": "2279" }, "location": "Header", "isApiVersion": false, @@ -121079,12 +121149,12 @@ "decorators": [] }, { - "$id": "8970", + "$id": "8975", "kind": "method", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "8971", + "$id": "8976", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121100,12 +121170,12 @@ "decorators": [] }, { - "$id": "8972", + "$id": "8977", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7139" + "$ref": "7144" }, "location": "Body", "isApiVersion": false, @@ -121117,13 +121187,13 @@ "decorators": [] }, { - "$id": "8973", + "$id": "8978", "kind": "method", "name": "contentType", "serializedName": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2273" + "$ref": "2277" }, "location": "Header", "isApiVersion": false, @@ -121137,7 +121207,7 @@ ], "response": { "type": { - "$ref": "7108" + "$ref": "7113" } }, "isOverride": false, @@ -121146,26 +121216,26 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.completeUpload" }, { - "$id": "8974", + "$id": "8979", "kind": "basic", "name": "cancelUpload", "accessibility": "public", "apiVersions": [], "summary": "Cancels the Upload. No Parts may be added after an Upload is cancelled.", "operation": { - "$id": "8975", + "$id": "8980", "name": "cancelUpload", "resourceName": "Uploads", "summary": "Cancels the Upload. No Parts may be added after an Upload is cancelled.", "accessibility": "public", "parameters": [ { - "$id": "8976", + "$id": "8981", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2277" + "$ref": "2281" }, "isApiVersion": false, "optional": false, @@ -121176,12 +121246,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.cancelUpload.accept" }, { - "$id": "8977", + "$id": "8982", "kind": "path", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "8978", + "$id": "8983", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121205,7 +121275,7 @@ 200 ], "bodyType": { - "$ref": "7108" + "$ref": "7113" }, "headers": [], "isErrorResponse": false, @@ -121225,12 +121295,12 @@ }, "parameters": [ { - "$id": "8979", + "$id": "8984", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "2279" + "$ref": "2283" }, "location": "Header", "isApiVersion": false, @@ -121242,12 +121312,12 @@ "decorators": [] }, { - "$id": "8980", + "$id": "8985", "kind": "method", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "8981", + "$id": "8986", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121265,7 +121335,7 @@ ], "response": { "type": { - "$ref": "7108" + "$ref": "7113" } }, "isOverride": false, @@ -121276,13 +121346,13 @@ ], "parameters": [ { - "$id": "8982", + "$id": "8987", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8983", + "$id": "8988", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -121293,7 +121363,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8984", + "$id": "8989", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -121310,7 +121380,7 @@ "crossLanguageDefinitionId": "OpenAI.Uploads", "apiVersions": [], "parent": { - "$ref": "7513" + "$ref": "7518" } } ]